Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 "intrinsics_arm64.h" |
| 18 | |
Serban Constantinescu | 579885a | 2015-02-22 20:51:33 +0000 | [diff] [blame] | 19 | #include "arch/arm64/instruction_set_features_arm64.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 20 | #include "art_method.h" |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 21 | #include "code_generator_arm64.h" |
| 22 | #include "common_arm64.h" |
| 23 | #include "entrypoints/quick/quick_entrypoints.h" |
| 24 | #include "intrinsics.h" |
| 25 | #include "mirror/array-inl.h" |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 26 | #include "mirror/string.h" |
| 27 | #include "thread.h" |
| 28 | #include "utils/arm64/assembler_arm64.h" |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 29 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 30 | using namespace vixl::aarch64; // NOLINT(build/namespaces) |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 31 | |
Artem Serov | af4e42a | 2016-08-08 15:11:24 +0100 | [diff] [blame] | 32 | // TODO(VIXL): Make VIXL compile with -Wshadow. |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 33 | #pragma GCC diagnostic push |
| 34 | #pragma GCC diagnostic ignored "-Wshadow" |
Artem Serov | af4e42a | 2016-08-08 15:11:24 +0100 | [diff] [blame] | 35 | #include "aarch64/disasm-aarch64.h" |
| 36 | #include "aarch64/macro-assembler-aarch64.h" |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 37 | #pragma GCC diagnostic pop |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 38 | |
| 39 | namespace art { |
| 40 | |
| 41 | namespace arm64 { |
| 42 | |
| 43 | using helpers::DRegisterFrom; |
| 44 | using helpers::FPRegisterFrom; |
| 45 | using helpers::HeapOperand; |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 46 | using helpers::LocationFrom; |
Scott Wakeling | 9ee23f4 | 2015-07-23 10:44:35 +0100 | [diff] [blame] | 47 | using helpers::OperandFrom; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 48 | using helpers::RegisterFrom; |
| 49 | using helpers::SRegisterFrom; |
| 50 | using helpers::WRegisterFrom; |
| 51 | using helpers::XRegisterFrom; |
xueliang.zhong | 49924c9 | 2016-03-03 10:52:51 +0000 | [diff] [blame] | 52 | using helpers::InputRegisterAt; |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 53 | using helpers::OutputRegister; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 54 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 55 | namespace { |
| 56 | |
| 57 | ALWAYS_INLINE inline MemOperand AbsoluteHeapOperandFrom(Location location, size_t offset = 0) { |
| 58 | return MemOperand(XRegisterFrom(location), offset); |
| 59 | } |
| 60 | |
| 61 | } // namespace |
| 62 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 63 | MacroAssembler* IntrinsicCodeGeneratorARM64::GetVIXLAssembler() { |
Alexandre Rames | 087930f | 2016-08-02 13:45:28 +0100 | [diff] [blame] | 64 | return codegen_->GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | ArenaAllocator* IntrinsicCodeGeneratorARM64::GetAllocator() { |
| 68 | return codegen_->GetGraph()->GetArena(); |
| 69 | } |
| 70 | |
Alexandre Rames | 087930f | 2016-08-02 13:45:28 +0100 | [diff] [blame] | 71 | #define __ codegen->GetVIXLAssembler()-> |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 72 | |
| 73 | static void MoveFromReturnRegister(Location trg, |
| 74 | Primitive::Type type, |
| 75 | CodeGeneratorARM64* codegen) { |
| 76 | if (!trg.IsValid()) { |
| 77 | DCHECK(type == Primitive::kPrimVoid); |
| 78 | return; |
| 79 | } |
| 80 | |
| 81 | DCHECK_NE(type, Primitive::kPrimVoid); |
| 82 | |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 83 | if (Primitive::IsIntegralType(type) || type == Primitive::kPrimNot) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 84 | Register trg_reg = RegisterFrom(trg, type); |
| 85 | Register res_reg = RegisterFrom(ARM64ReturnLocation(type), type); |
| 86 | __ Mov(trg_reg, res_reg, kDiscardForSameWReg); |
| 87 | } else { |
| 88 | FPRegister trg_reg = FPRegisterFrom(trg, type); |
| 89 | FPRegister res_reg = FPRegisterFrom(ARM64ReturnLocation(type), type); |
| 90 | __ Fmov(trg_reg, res_reg); |
| 91 | } |
| 92 | } |
| 93 | |
Roland Levillain | ec525fc | 2015-04-28 15:50:20 +0100 | [diff] [blame] | 94 | static void MoveArguments(HInvoke* invoke, CodeGeneratorARM64* codegen) { |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 95 | InvokeDexCallingConventionVisitorARM64 calling_convention_visitor; |
Roland Levillain | ec525fc | 2015-04-28 15:50:20 +0100 | [diff] [blame] | 96 | IntrinsicVisitor::MoveArguments(invoke, codegen, &calling_convention_visitor); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | // Slow-path for fallback (calling the managed code to handle the intrinsic) in an intrinsified |
| 100 | // call. This will copy the arguments into the positions for a regular call. |
| 101 | // |
| 102 | // Note: The actual parameters are required to be in the locations given by the invoke's location |
| 103 | // summary. If an intrinsic modifies those locations before a slowpath call, they must be |
| 104 | // restored! |
| 105 | class IntrinsicSlowPathARM64 : public SlowPathCodeARM64 { |
| 106 | public: |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 107 | explicit IntrinsicSlowPathARM64(HInvoke* invoke) |
| 108 | : SlowPathCodeARM64(invoke), invoke_(invoke) { } |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 109 | |
| 110 | void EmitNativeCode(CodeGenerator* codegen_in) OVERRIDE { |
| 111 | CodeGeneratorARM64* codegen = down_cast<CodeGeneratorARM64*>(codegen_in); |
| 112 | __ Bind(GetEntryLabel()); |
| 113 | |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 114 | SaveLiveRegisters(codegen, invoke_->GetLocations()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 115 | |
Roland Levillain | ec525fc | 2015-04-28 15:50:20 +0100 | [diff] [blame] | 116 | MoveArguments(invoke_, codegen); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 117 | |
| 118 | if (invoke_->IsInvokeStaticOrDirect()) { |
Nicolas Geoffray | 94015b9 | 2015-06-04 18:21:04 +0100 | [diff] [blame] | 119 | codegen->GenerateStaticOrDirectCall(invoke_->AsInvokeStaticOrDirect(), |
| 120 | LocationFrom(kArtMethodRegister)); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 121 | } else { |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 122 | codegen->GenerateVirtualCall(invoke_->AsInvokeVirtual(), LocationFrom(kArtMethodRegister)); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 123 | } |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 124 | codegen->RecordPcInfo(invoke_, invoke_->GetDexPc(), this); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 125 | |
| 126 | // Copy the result back to the expected output. |
| 127 | Location out = invoke_->GetLocations()->Out(); |
| 128 | if (out.IsValid()) { |
| 129 | DCHECK(out.IsRegister()); // TODO: Replace this when we support output in memory. |
| 130 | DCHECK(!invoke_->GetLocations()->GetLiveRegisters()->ContainsCoreRegister(out.reg())); |
| 131 | MoveFromReturnRegister(out, invoke_->GetType(), codegen); |
| 132 | } |
| 133 | |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 134 | RestoreLiveRegisters(codegen, invoke_->GetLocations()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 135 | __ B(GetExitLabel()); |
| 136 | } |
| 137 | |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 138 | const char* GetDescription() const OVERRIDE { return "IntrinsicSlowPathARM64"; } |
| 139 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 140 | private: |
| 141 | // The instruction where this slow path is happening. |
| 142 | HInvoke* const invoke_; |
| 143 | |
| 144 | DISALLOW_COPY_AND_ASSIGN(IntrinsicSlowPathARM64); |
| 145 | }; |
| 146 | |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 147 | // Slow path implementing the SystemArrayCopy intrinsic copy loop with read barriers. |
| 148 | class ReadBarrierSystemArrayCopySlowPathARM64 : public SlowPathCodeARM64 { |
| 149 | public: |
| 150 | ReadBarrierSystemArrayCopySlowPathARM64(HInstruction* instruction, Location tmp) |
| 151 | : SlowPathCodeARM64(instruction), tmp_(tmp) { |
| 152 | DCHECK(kEmitCompilerReadBarrier); |
| 153 | DCHECK(kUseBakerReadBarrier); |
| 154 | } |
| 155 | |
| 156 | void EmitNativeCode(CodeGenerator* codegen_in) OVERRIDE { |
| 157 | CodeGeneratorARM64* codegen = down_cast<CodeGeneratorARM64*>(codegen_in); |
| 158 | LocationSummary* locations = instruction_->GetLocations(); |
| 159 | DCHECK(locations->CanCall()); |
| 160 | DCHECK(instruction_->IsInvokeStaticOrDirect()) |
| 161 | << "Unexpected instruction in read barrier arraycopy slow path: " |
| 162 | << instruction_->DebugName(); |
| 163 | DCHECK(instruction_->GetLocations()->Intrinsified()); |
| 164 | DCHECK_EQ(instruction_->AsInvoke()->GetIntrinsic(), Intrinsics::kSystemArrayCopy); |
| 165 | |
| 166 | const int32_t element_size = Primitive::ComponentSize(Primitive::kPrimNot); |
| 167 | |
| 168 | Register src_curr_addr = XRegisterFrom(locations->GetTemp(0)); |
| 169 | Register dst_curr_addr = XRegisterFrom(locations->GetTemp(1)); |
| 170 | Register src_stop_addr = XRegisterFrom(locations->GetTemp(2)); |
| 171 | Register tmp_reg = WRegisterFrom(tmp_); |
| 172 | |
| 173 | __ Bind(GetEntryLabel()); |
| 174 | vixl::aarch64::Label slow_copy_loop; |
| 175 | __ Bind(&slow_copy_loop); |
| 176 | __ Ldr(tmp_reg, MemOperand(src_curr_addr, element_size, PostIndex)); |
| 177 | codegen->GetAssembler()->MaybeUnpoisonHeapReference(tmp_reg); |
| 178 | // TODO: Inline the mark bit check before calling the runtime? |
| 179 | // tmp_reg = ReadBarrier::Mark(tmp_reg); |
| 180 | // No need to save live registers; it's taken care of by the |
| 181 | // entrypoint. Also, there is no need to update the stack mask, |
| 182 | // as this runtime call will not trigger a garbage collection. |
| 183 | // (See ReadBarrierMarkSlowPathARM64::EmitNativeCode for more |
| 184 | // explanations.) |
| 185 | DCHECK_NE(tmp_.reg(), LR); |
| 186 | DCHECK_NE(tmp_.reg(), WSP); |
| 187 | DCHECK_NE(tmp_.reg(), WZR); |
| 188 | // IP0 is used internally by the ReadBarrierMarkRegX entry point |
| 189 | // as a temporary (and not preserved). It thus cannot be used by |
| 190 | // any live register in this slow path. |
| 191 | DCHECK_NE(LocationFrom(src_curr_addr).reg(), IP0); |
| 192 | DCHECK_NE(LocationFrom(dst_curr_addr).reg(), IP0); |
| 193 | DCHECK_NE(LocationFrom(src_stop_addr).reg(), IP0); |
| 194 | DCHECK_NE(tmp_.reg(), IP0); |
| 195 | DCHECK(0 <= tmp_.reg() && tmp_.reg() < kNumberOfWRegisters) << tmp_.reg(); |
| 196 | int32_t entry_point_offset = |
| 197 | CodeGenerator::GetReadBarrierMarkEntryPointsOffset<kArm64PointerSize>(tmp_.reg()); |
| 198 | // This runtime call does not require a stack map. |
| 199 | codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this); |
| 200 | codegen->GetAssembler()->MaybePoisonHeapReference(tmp_reg); |
| 201 | __ Str(tmp_reg, MemOperand(dst_curr_addr, element_size, PostIndex)); |
| 202 | __ Cmp(src_curr_addr, src_stop_addr); |
| 203 | __ B(&slow_copy_loop, ne); |
| 204 | __ B(GetExitLabel()); |
| 205 | } |
| 206 | |
| 207 | const char* GetDescription() const OVERRIDE { return "ReadBarrierSystemArrayCopySlowPathARM64"; } |
| 208 | |
| 209 | private: |
| 210 | Location tmp_; |
| 211 | |
| 212 | DISALLOW_COPY_AND_ASSIGN(ReadBarrierSystemArrayCopySlowPathARM64); |
| 213 | }; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 214 | #undef __ |
| 215 | |
| 216 | bool IntrinsicLocationsBuilderARM64::TryDispatch(HInvoke* invoke) { |
| 217 | Dispatch(invoke); |
| 218 | LocationSummary* res = invoke->GetLocations(); |
Roland Levillain | 22ccc3a | 2015-11-24 13:10:05 +0000 | [diff] [blame] | 219 | if (res == nullptr) { |
| 220 | return false; |
| 221 | } |
Roland Levillain | 22ccc3a | 2015-11-24 13:10:05 +0000 | [diff] [blame] | 222 | return res->Intrinsified(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | #define __ masm-> |
| 226 | |
| 227 | static void CreateFPToIntLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 228 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 229 | LocationSummary::kNoCall, |
| 230 | kIntrinsified); |
| 231 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 232 | locations->SetOut(Location::RequiresRegister()); |
| 233 | } |
| 234 | |
| 235 | static void CreateIntToFPLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 236 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 237 | LocationSummary::kNoCall, |
| 238 | kIntrinsified); |
| 239 | locations->SetInAt(0, Location::RequiresRegister()); |
| 240 | locations->SetOut(Location::RequiresFpuRegister()); |
| 241 | } |
| 242 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 243 | static void MoveFPToInt(LocationSummary* locations, bool is64bit, MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 244 | Location input = locations->InAt(0); |
| 245 | Location output = locations->Out(); |
| 246 | __ Fmov(is64bit ? XRegisterFrom(output) : WRegisterFrom(output), |
| 247 | is64bit ? DRegisterFrom(input) : SRegisterFrom(input)); |
| 248 | } |
| 249 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 250 | static void MoveIntToFP(LocationSummary* locations, bool is64bit, MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 251 | Location input = locations->InAt(0); |
| 252 | Location output = locations->Out(); |
| 253 | __ Fmov(is64bit ? DRegisterFrom(output) : SRegisterFrom(output), |
| 254 | is64bit ? XRegisterFrom(input) : WRegisterFrom(input)); |
| 255 | } |
| 256 | |
| 257 | void IntrinsicLocationsBuilderARM64::VisitDoubleDoubleToRawLongBits(HInvoke* invoke) { |
| 258 | CreateFPToIntLocations(arena_, invoke); |
| 259 | } |
| 260 | void IntrinsicLocationsBuilderARM64::VisitDoubleLongBitsToDouble(HInvoke* invoke) { |
| 261 | CreateIntToFPLocations(arena_, invoke); |
| 262 | } |
| 263 | |
| 264 | void IntrinsicCodeGeneratorARM64::VisitDoubleDoubleToRawLongBits(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 265 | MoveFPToInt(invoke->GetLocations(), /* is64bit */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 266 | } |
| 267 | void IntrinsicCodeGeneratorARM64::VisitDoubleLongBitsToDouble(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 268 | MoveIntToFP(invoke->GetLocations(), /* is64bit */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | void IntrinsicLocationsBuilderARM64::VisitFloatFloatToRawIntBits(HInvoke* invoke) { |
| 272 | CreateFPToIntLocations(arena_, invoke); |
| 273 | } |
| 274 | void IntrinsicLocationsBuilderARM64::VisitFloatIntBitsToFloat(HInvoke* invoke) { |
| 275 | CreateIntToFPLocations(arena_, invoke); |
| 276 | } |
| 277 | |
| 278 | void IntrinsicCodeGeneratorARM64::VisitFloatFloatToRawIntBits(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 279 | MoveFPToInt(invoke->GetLocations(), /* is64bit */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 280 | } |
| 281 | void IntrinsicCodeGeneratorARM64::VisitFloatIntBitsToFloat(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 282 | MoveIntToFP(invoke->GetLocations(), /* is64bit */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | static void CreateIntToIntLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 286 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 287 | LocationSummary::kNoCall, |
| 288 | kIntrinsified); |
| 289 | locations->SetInAt(0, Location::RequiresRegister()); |
| 290 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 291 | } |
| 292 | |
| 293 | static void GenReverseBytes(LocationSummary* locations, |
| 294 | Primitive::Type type, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 295 | MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 296 | Location in = locations->InAt(0); |
| 297 | Location out = locations->Out(); |
| 298 | |
| 299 | switch (type) { |
| 300 | case Primitive::kPrimShort: |
| 301 | __ Rev16(WRegisterFrom(out), WRegisterFrom(in)); |
| 302 | __ Sxth(WRegisterFrom(out), WRegisterFrom(out)); |
| 303 | break; |
| 304 | case Primitive::kPrimInt: |
| 305 | case Primitive::kPrimLong: |
| 306 | __ Rev(RegisterFrom(out, type), RegisterFrom(in, type)); |
| 307 | break; |
| 308 | default: |
| 309 | LOG(FATAL) << "Unexpected size for reverse-bytes: " << type; |
| 310 | UNREACHABLE(); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | void IntrinsicLocationsBuilderARM64::VisitIntegerReverseBytes(HInvoke* invoke) { |
| 315 | CreateIntToIntLocations(arena_, invoke); |
| 316 | } |
| 317 | |
| 318 | void IntrinsicCodeGeneratorARM64::VisitIntegerReverseBytes(HInvoke* invoke) { |
| 319 | GenReverseBytes(invoke->GetLocations(), Primitive::kPrimInt, GetVIXLAssembler()); |
| 320 | } |
| 321 | |
| 322 | void IntrinsicLocationsBuilderARM64::VisitLongReverseBytes(HInvoke* invoke) { |
| 323 | CreateIntToIntLocations(arena_, invoke); |
| 324 | } |
| 325 | |
| 326 | void IntrinsicCodeGeneratorARM64::VisitLongReverseBytes(HInvoke* invoke) { |
| 327 | GenReverseBytes(invoke->GetLocations(), Primitive::kPrimLong, GetVIXLAssembler()); |
| 328 | } |
| 329 | |
| 330 | void IntrinsicLocationsBuilderARM64::VisitShortReverseBytes(HInvoke* invoke) { |
| 331 | CreateIntToIntLocations(arena_, invoke); |
| 332 | } |
| 333 | |
| 334 | void IntrinsicCodeGeneratorARM64::VisitShortReverseBytes(HInvoke* invoke) { |
| 335 | GenReverseBytes(invoke->GetLocations(), Primitive::kPrimShort, GetVIXLAssembler()); |
| 336 | } |
| 337 | |
Aart Bik | 7b56502 | 2016-01-28 14:36:22 -0800 | [diff] [blame] | 338 | static void CreateIntIntToIntLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 339 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 340 | LocationSummary::kNoCall, |
| 341 | kIntrinsified); |
| 342 | locations->SetInAt(0, Location::RequiresRegister()); |
| 343 | locations->SetInAt(1, Location::RequiresRegister()); |
| 344 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 345 | } |
| 346 | |
Scott Wakeling | 611d339 | 2015-07-10 11:42:06 +0100 | [diff] [blame] | 347 | static void GenNumberOfLeadingZeros(LocationSummary* locations, |
| 348 | Primitive::Type type, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 349 | MacroAssembler* masm) { |
Scott Wakeling | 611d339 | 2015-07-10 11:42:06 +0100 | [diff] [blame] | 350 | DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong); |
| 351 | |
| 352 | Location in = locations->InAt(0); |
| 353 | Location out = locations->Out(); |
| 354 | |
| 355 | __ Clz(RegisterFrom(out, type), RegisterFrom(in, type)); |
| 356 | } |
| 357 | |
| 358 | void IntrinsicLocationsBuilderARM64::VisitIntegerNumberOfLeadingZeros(HInvoke* invoke) { |
| 359 | CreateIntToIntLocations(arena_, invoke); |
| 360 | } |
| 361 | |
| 362 | void IntrinsicCodeGeneratorARM64::VisitIntegerNumberOfLeadingZeros(HInvoke* invoke) { |
| 363 | GenNumberOfLeadingZeros(invoke->GetLocations(), Primitive::kPrimInt, GetVIXLAssembler()); |
| 364 | } |
| 365 | |
| 366 | void IntrinsicLocationsBuilderARM64::VisitLongNumberOfLeadingZeros(HInvoke* invoke) { |
| 367 | CreateIntToIntLocations(arena_, invoke); |
| 368 | } |
| 369 | |
| 370 | void IntrinsicCodeGeneratorARM64::VisitLongNumberOfLeadingZeros(HInvoke* invoke) { |
| 371 | GenNumberOfLeadingZeros(invoke->GetLocations(), Primitive::kPrimLong, GetVIXLAssembler()); |
| 372 | } |
| 373 | |
Scott Wakeling | 9ee23f4 | 2015-07-23 10:44:35 +0100 | [diff] [blame] | 374 | static void GenNumberOfTrailingZeros(LocationSummary* locations, |
| 375 | Primitive::Type type, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 376 | MacroAssembler* masm) { |
Scott Wakeling | 9ee23f4 | 2015-07-23 10:44:35 +0100 | [diff] [blame] | 377 | DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong); |
| 378 | |
| 379 | Location in = locations->InAt(0); |
| 380 | Location out = locations->Out(); |
| 381 | |
| 382 | __ Rbit(RegisterFrom(out, type), RegisterFrom(in, type)); |
| 383 | __ Clz(RegisterFrom(out, type), RegisterFrom(out, type)); |
| 384 | } |
| 385 | |
| 386 | void IntrinsicLocationsBuilderARM64::VisitIntegerNumberOfTrailingZeros(HInvoke* invoke) { |
| 387 | CreateIntToIntLocations(arena_, invoke); |
| 388 | } |
| 389 | |
| 390 | void IntrinsicCodeGeneratorARM64::VisitIntegerNumberOfTrailingZeros(HInvoke* invoke) { |
| 391 | GenNumberOfTrailingZeros(invoke->GetLocations(), Primitive::kPrimInt, GetVIXLAssembler()); |
| 392 | } |
| 393 | |
| 394 | void IntrinsicLocationsBuilderARM64::VisitLongNumberOfTrailingZeros(HInvoke* invoke) { |
| 395 | CreateIntToIntLocations(arena_, invoke); |
| 396 | } |
| 397 | |
| 398 | void IntrinsicCodeGeneratorARM64::VisitLongNumberOfTrailingZeros(HInvoke* invoke) { |
| 399 | GenNumberOfTrailingZeros(invoke->GetLocations(), Primitive::kPrimLong, GetVIXLAssembler()); |
| 400 | } |
| 401 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 402 | static void GenReverse(LocationSummary* locations, |
| 403 | Primitive::Type type, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 404 | MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 405 | DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong); |
| 406 | |
| 407 | Location in = locations->InAt(0); |
| 408 | Location out = locations->Out(); |
| 409 | |
| 410 | __ Rbit(RegisterFrom(out, type), RegisterFrom(in, type)); |
| 411 | } |
| 412 | |
| 413 | void IntrinsicLocationsBuilderARM64::VisitIntegerReverse(HInvoke* invoke) { |
| 414 | CreateIntToIntLocations(arena_, invoke); |
| 415 | } |
| 416 | |
| 417 | void IntrinsicCodeGeneratorARM64::VisitIntegerReverse(HInvoke* invoke) { |
| 418 | GenReverse(invoke->GetLocations(), Primitive::kPrimInt, GetVIXLAssembler()); |
| 419 | } |
| 420 | |
| 421 | void IntrinsicLocationsBuilderARM64::VisitLongReverse(HInvoke* invoke) { |
| 422 | CreateIntToIntLocations(arena_, invoke); |
| 423 | } |
| 424 | |
| 425 | void IntrinsicCodeGeneratorARM64::VisitLongReverse(HInvoke* invoke) { |
| 426 | GenReverse(invoke->GetLocations(), Primitive::kPrimLong, GetVIXLAssembler()); |
| 427 | } |
| 428 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 429 | static void GenBitCount(HInvoke* instr, Primitive::Type type, MacroAssembler* masm) { |
Roland Levillain | fa3912e | 2016-04-01 18:21:55 +0100 | [diff] [blame] | 430 | DCHECK(Primitive::IsIntOrLongType(type)) << type; |
| 431 | DCHECK_EQ(instr->GetType(), Primitive::kPrimInt); |
| 432 | DCHECK_EQ(Primitive::PrimitiveKind(instr->InputAt(0)->GetType()), type); |
xueliang.zhong | 49924c9 | 2016-03-03 10:52:51 +0000 | [diff] [blame] | 433 | |
xueliang.zhong | 49924c9 | 2016-03-03 10:52:51 +0000 | [diff] [blame] | 434 | UseScratchRegisterScope temps(masm); |
| 435 | |
Nicolas Geoffray | 457413a | 2016-03-04 11:10:17 +0000 | [diff] [blame] | 436 | Register src = InputRegisterAt(instr, 0); |
Roland Levillain | fa3912e | 2016-04-01 18:21:55 +0100 | [diff] [blame] | 437 | Register dst = RegisterFrom(instr->GetLocations()->Out(), type); |
| 438 | FPRegister fpr = (type == Primitive::kPrimLong) ? temps.AcquireD() : temps.AcquireS(); |
xueliang.zhong | 49924c9 | 2016-03-03 10:52:51 +0000 | [diff] [blame] | 439 | |
| 440 | __ Fmov(fpr, src); |
Nicolas Geoffray | 457413a | 2016-03-04 11:10:17 +0000 | [diff] [blame] | 441 | __ Cnt(fpr.V8B(), fpr.V8B()); |
| 442 | __ Addv(fpr.B(), fpr.V8B()); |
xueliang.zhong | 49924c9 | 2016-03-03 10:52:51 +0000 | [diff] [blame] | 443 | __ Fmov(dst, fpr); |
| 444 | } |
| 445 | |
| 446 | void IntrinsicLocationsBuilderARM64::VisitLongBitCount(HInvoke* invoke) { |
| 447 | CreateIntToIntLocations(arena_, invoke); |
| 448 | } |
| 449 | |
| 450 | void IntrinsicCodeGeneratorARM64::VisitLongBitCount(HInvoke* invoke) { |
Roland Levillain | fa3912e | 2016-04-01 18:21:55 +0100 | [diff] [blame] | 451 | GenBitCount(invoke, Primitive::kPrimLong, GetVIXLAssembler()); |
xueliang.zhong | 49924c9 | 2016-03-03 10:52:51 +0000 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | void IntrinsicLocationsBuilderARM64::VisitIntegerBitCount(HInvoke* invoke) { |
| 455 | CreateIntToIntLocations(arena_, invoke); |
| 456 | } |
| 457 | |
| 458 | void IntrinsicCodeGeneratorARM64::VisitIntegerBitCount(HInvoke* invoke) { |
Roland Levillain | fa3912e | 2016-04-01 18:21:55 +0100 | [diff] [blame] | 459 | GenBitCount(invoke, Primitive::kPrimInt, GetVIXLAssembler()); |
xueliang.zhong | 49924c9 | 2016-03-03 10:52:51 +0000 | [diff] [blame] | 460 | } |
| 461 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 462 | static void CreateFPToFPLocations(ArenaAllocator* arena, HInvoke* invoke) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 463 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 464 | LocationSummary::kNoCall, |
| 465 | kIntrinsified); |
| 466 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 467 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
| 468 | } |
| 469 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 470 | static void MathAbsFP(LocationSummary* locations, bool is64bit, MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 471 | Location in = locations->InAt(0); |
| 472 | Location out = locations->Out(); |
| 473 | |
| 474 | FPRegister in_reg = is64bit ? DRegisterFrom(in) : SRegisterFrom(in); |
| 475 | FPRegister out_reg = is64bit ? DRegisterFrom(out) : SRegisterFrom(out); |
| 476 | |
| 477 | __ Fabs(out_reg, in_reg); |
| 478 | } |
| 479 | |
| 480 | void IntrinsicLocationsBuilderARM64::VisitMathAbsDouble(HInvoke* invoke) { |
| 481 | CreateFPToFPLocations(arena_, invoke); |
| 482 | } |
| 483 | |
| 484 | void IntrinsicCodeGeneratorARM64::VisitMathAbsDouble(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 485 | MathAbsFP(invoke->GetLocations(), /* is64bit */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | void IntrinsicLocationsBuilderARM64::VisitMathAbsFloat(HInvoke* invoke) { |
| 489 | CreateFPToFPLocations(arena_, invoke); |
| 490 | } |
| 491 | |
| 492 | void IntrinsicCodeGeneratorARM64::VisitMathAbsFloat(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 493 | MathAbsFP(invoke->GetLocations(), /* is64bit */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | static void CreateIntToInt(ArenaAllocator* arena, HInvoke* invoke) { |
| 497 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 498 | LocationSummary::kNoCall, |
| 499 | kIntrinsified); |
| 500 | locations->SetInAt(0, Location::RequiresRegister()); |
| 501 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 502 | } |
| 503 | |
| 504 | static void GenAbsInteger(LocationSummary* locations, |
| 505 | bool is64bit, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 506 | MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 507 | Location in = locations->InAt(0); |
| 508 | Location output = locations->Out(); |
| 509 | |
| 510 | Register in_reg = is64bit ? XRegisterFrom(in) : WRegisterFrom(in); |
| 511 | Register out_reg = is64bit ? XRegisterFrom(output) : WRegisterFrom(output); |
| 512 | |
| 513 | __ Cmp(in_reg, Operand(0)); |
| 514 | __ Cneg(out_reg, in_reg, lt); |
| 515 | } |
| 516 | |
| 517 | void IntrinsicLocationsBuilderARM64::VisitMathAbsInt(HInvoke* invoke) { |
| 518 | CreateIntToInt(arena_, invoke); |
| 519 | } |
| 520 | |
| 521 | void IntrinsicCodeGeneratorARM64::VisitMathAbsInt(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 522 | GenAbsInteger(invoke->GetLocations(), /* is64bit */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | void IntrinsicLocationsBuilderARM64::VisitMathAbsLong(HInvoke* invoke) { |
| 526 | CreateIntToInt(arena_, invoke); |
| 527 | } |
| 528 | |
| 529 | void IntrinsicCodeGeneratorARM64::VisitMathAbsLong(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 530 | GenAbsInteger(invoke->GetLocations(), /* is64bit */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | static void GenMinMaxFP(LocationSummary* locations, |
| 534 | bool is_min, |
| 535 | bool is_double, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 536 | MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 537 | Location op1 = locations->InAt(0); |
| 538 | Location op2 = locations->InAt(1); |
| 539 | Location out = locations->Out(); |
| 540 | |
| 541 | FPRegister op1_reg = is_double ? DRegisterFrom(op1) : SRegisterFrom(op1); |
| 542 | FPRegister op2_reg = is_double ? DRegisterFrom(op2) : SRegisterFrom(op2); |
| 543 | FPRegister out_reg = is_double ? DRegisterFrom(out) : SRegisterFrom(out); |
| 544 | if (is_min) { |
| 545 | __ Fmin(out_reg, op1_reg, op2_reg); |
| 546 | } else { |
| 547 | __ Fmax(out_reg, op1_reg, op2_reg); |
| 548 | } |
| 549 | } |
| 550 | |
| 551 | static void CreateFPFPToFPLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 552 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 553 | LocationSummary::kNoCall, |
| 554 | kIntrinsified); |
| 555 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 556 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 557 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
| 558 | } |
| 559 | |
| 560 | void IntrinsicLocationsBuilderARM64::VisitMathMinDoubleDouble(HInvoke* invoke) { |
| 561 | CreateFPFPToFPLocations(arena_, invoke); |
| 562 | } |
| 563 | |
| 564 | void IntrinsicCodeGeneratorARM64::VisitMathMinDoubleDouble(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 565 | GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, /* is_double */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | void IntrinsicLocationsBuilderARM64::VisitMathMinFloatFloat(HInvoke* invoke) { |
| 569 | CreateFPFPToFPLocations(arena_, invoke); |
| 570 | } |
| 571 | |
| 572 | void IntrinsicCodeGeneratorARM64::VisitMathMinFloatFloat(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 573 | GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, /* is_double */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | void IntrinsicLocationsBuilderARM64::VisitMathMaxDoubleDouble(HInvoke* invoke) { |
| 577 | CreateFPFPToFPLocations(arena_, invoke); |
| 578 | } |
| 579 | |
| 580 | void IntrinsicCodeGeneratorARM64::VisitMathMaxDoubleDouble(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 581 | GenMinMaxFP(invoke->GetLocations(), /* is_min */ false, /* is_double */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | void IntrinsicLocationsBuilderARM64::VisitMathMaxFloatFloat(HInvoke* invoke) { |
| 585 | CreateFPFPToFPLocations(arena_, invoke); |
| 586 | } |
| 587 | |
| 588 | void IntrinsicCodeGeneratorARM64::VisitMathMaxFloatFloat(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 589 | GenMinMaxFP( |
| 590 | invoke->GetLocations(), /* is_min */ false, /* is_double */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | static void GenMinMax(LocationSummary* locations, |
| 594 | bool is_min, |
| 595 | bool is_long, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 596 | MacroAssembler* masm) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 597 | Location op1 = locations->InAt(0); |
| 598 | Location op2 = locations->InAt(1); |
| 599 | Location out = locations->Out(); |
| 600 | |
| 601 | Register op1_reg = is_long ? XRegisterFrom(op1) : WRegisterFrom(op1); |
| 602 | Register op2_reg = is_long ? XRegisterFrom(op2) : WRegisterFrom(op2); |
| 603 | Register out_reg = is_long ? XRegisterFrom(out) : WRegisterFrom(out); |
| 604 | |
| 605 | __ Cmp(op1_reg, op2_reg); |
| 606 | __ Csel(out_reg, op1_reg, op2_reg, is_min ? lt : gt); |
| 607 | } |
| 608 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 609 | void IntrinsicLocationsBuilderARM64::VisitMathMinIntInt(HInvoke* invoke) { |
| 610 | CreateIntIntToIntLocations(arena_, invoke); |
| 611 | } |
| 612 | |
| 613 | void IntrinsicCodeGeneratorARM64::VisitMathMinIntInt(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 614 | GenMinMax(invoke->GetLocations(), /* is_min */ true, /* is_long */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | void IntrinsicLocationsBuilderARM64::VisitMathMinLongLong(HInvoke* invoke) { |
| 618 | CreateIntIntToIntLocations(arena_, invoke); |
| 619 | } |
| 620 | |
| 621 | void IntrinsicCodeGeneratorARM64::VisitMathMinLongLong(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 622 | GenMinMax(invoke->GetLocations(), /* is_min */ true, /* is_long */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | void IntrinsicLocationsBuilderARM64::VisitMathMaxIntInt(HInvoke* invoke) { |
| 626 | CreateIntIntToIntLocations(arena_, invoke); |
| 627 | } |
| 628 | |
| 629 | void IntrinsicCodeGeneratorARM64::VisitMathMaxIntInt(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 630 | GenMinMax(invoke->GetLocations(), /* is_min */ false, /* is_long */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | void IntrinsicLocationsBuilderARM64::VisitMathMaxLongLong(HInvoke* invoke) { |
| 634 | CreateIntIntToIntLocations(arena_, invoke); |
| 635 | } |
| 636 | |
| 637 | void IntrinsicCodeGeneratorARM64::VisitMathMaxLongLong(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 638 | GenMinMax(invoke->GetLocations(), /* is_min */ false, /* is_long */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | void IntrinsicLocationsBuilderARM64::VisitMathSqrt(HInvoke* invoke) { |
| 642 | CreateFPToFPLocations(arena_, invoke); |
| 643 | } |
| 644 | |
| 645 | void IntrinsicCodeGeneratorARM64::VisitMathSqrt(HInvoke* invoke) { |
| 646 | LocationSummary* locations = invoke->GetLocations(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 647 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 648 | __ Fsqrt(DRegisterFrom(locations->Out()), DRegisterFrom(locations->InAt(0))); |
| 649 | } |
| 650 | |
| 651 | void IntrinsicLocationsBuilderARM64::VisitMathCeil(HInvoke* invoke) { |
| 652 | CreateFPToFPLocations(arena_, invoke); |
| 653 | } |
| 654 | |
| 655 | void IntrinsicCodeGeneratorARM64::VisitMathCeil(HInvoke* invoke) { |
| 656 | LocationSummary* locations = invoke->GetLocations(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 657 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 658 | __ Frintp(DRegisterFrom(locations->Out()), DRegisterFrom(locations->InAt(0))); |
| 659 | } |
| 660 | |
| 661 | void IntrinsicLocationsBuilderARM64::VisitMathFloor(HInvoke* invoke) { |
| 662 | CreateFPToFPLocations(arena_, invoke); |
| 663 | } |
| 664 | |
| 665 | void IntrinsicCodeGeneratorARM64::VisitMathFloor(HInvoke* invoke) { |
| 666 | LocationSummary* locations = invoke->GetLocations(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 667 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 668 | __ Frintm(DRegisterFrom(locations->Out()), DRegisterFrom(locations->InAt(0))); |
| 669 | } |
| 670 | |
| 671 | void IntrinsicLocationsBuilderARM64::VisitMathRint(HInvoke* invoke) { |
| 672 | CreateFPToFPLocations(arena_, invoke); |
| 673 | } |
| 674 | |
| 675 | void IntrinsicCodeGeneratorARM64::VisitMathRint(HInvoke* invoke) { |
| 676 | LocationSummary* locations = invoke->GetLocations(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 677 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 678 | __ Frintn(DRegisterFrom(locations->Out()), DRegisterFrom(locations->InAt(0))); |
| 679 | } |
| 680 | |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 681 | static void CreateFPToIntPlusFPTempLocations(ArenaAllocator* arena, HInvoke* invoke) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 682 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 683 | LocationSummary::kNoCall, |
| 684 | kIntrinsified); |
| 685 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 686 | locations->SetOut(Location::RequiresRegister()); |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 687 | locations->AddTemp(Location::RequiresFpuRegister()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 688 | } |
| 689 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 690 | static void GenMathRound(HInvoke* invoke, bool is_double, vixl::aarch64::MacroAssembler* masm) { |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 691 | // Java 8 API definition for Math.round(): |
| 692 | // Return the closest long or int to the argument, with ties rounding to positive infinity. |
| 693 | // |
| 694 | // There is no single instruction in ARMv8 that can support the above definition. |
| 695 | // We choose to use FCVTAS here, because it has closest semantic. |
| 696 | // FCVTAS performs rounding to nearest integer, ties away from zero. |
| 697 | // For most inputs (positive values, zero or NaN), this instruction is enough. |
| 698 | // We only need a few handling code after FCVTAS if the input is negative half value. |
| 699 | // |
| 700 | // The reason why we didn't choose FCVTPS instruction here is that |
| 701 | // although it performs rounding toward positive infinity, it doesn't perform rounding to nearest. |
| 702 | // For example, FCVTPS(-1.9) = -1 and FCVTPS(1.1) = 2. |
| 703 | // If we were using this instruction, for most inputs, more handling code would be needed. |
| 704 | LocationSummary* l = invoke->GetLocations(); |
| 705 | FPRegister in_reg = is_double ? DRegisterFrom(l->InAt(0)) : SRegisterFrom(l->InAt(0)); |
| 706 | FPRegister tmp_fp = is_double ? DRegisterFrom(l->GetTemp(0)) : SRegisterFrom(l->GetTemp(0)); |
| 707 | Register out_reg = is_double ? XRegisterFrom(l->Out()) : WRegisterFrom(l->Out()); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 708 | vixl::aarch64::Label done; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 709 | |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 710 | // Round to nearest integer, ties away from zero. |
| 711 | __ Fcvtas(out_reg, in_reg); |
| 712 | |
| 713 | // For positive values, zero or NaN inputs, rounding is done. |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 714 | __ Tbz(out_reg, out_reg.GetSizeInBits() - 1, &done); |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 715 | |
| 716 | // Handle input < 0 cases. |
| 717 | // If input is negative but not a tie, previous result (round to nearest) is valid. |
| 718 | // If input is a negative tie, out_reg += 1. |
| 719 | __ Frinta(tmp_fp, in_reg); |
| 720 | __ Fsub(tmp_fp, in_reg, tmp_fp); |
| 721 | __ Fcmp(tmp_fp, 0.5); |
| 722 | __ Cinc(out_reg, out_reg, eq); |
| 723 | |
| 724 | __ Bind(&done); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | void IntrinsicLocationsBuilderARM64::VisitMathRoundDouble(HInvoke* invoke) { |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 728 | CreateFPToIntPlusFPTempLocations(arena_, invoke); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | void IntrinsicCodeGeneratorARM64::VisitMathRoundDouble(HInvoke* invoke) { |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 732 | GenMathRound(invoke, /* is_double */ true, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | void IntrinsicLocationsBuilderARM64::VisitMathRoundFloat(HInvoke* invoke) { |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 736 | CreateFPToIntPlusFPTempLocations(arena_, invoke); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | void IntrinsicCodeGeneratorARM64::VisitMathRoundFloat(HInvoke* invoke) { |
xueliang.zhong | d1e153c | 2016-05-27 18:56:13 +0100 | [diff] [blame] | 740 | GenMathRound(invoke, /* is_double */ false, GetVIXLAssembler()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | void IntrinsicLocationsBuilderARM64::VisitMemoryPeekByte(HInvoke* invoke) { |
| 744 | CreateIntToIntLocations(arena_, invoke); |
| 745 | } |
| 746 | |
| 747 | void IntrinsicCodeGeneratorARM64::VisitMemoryPeekByte(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 748 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 749 | __ Ldrsb(WRegisterFrom(invoke->GetLocations()->Out()), |
| 750 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 751 | } |
| 752 | |
| 753 | void IntrinsicLocationsBuilderARM64::VisitMemoryPeekIntNative(HInvoke* invoke) { |
| 754 | CreateIntToIntLocations(arena_, invoke); |
| 755 | } |
| 756 | |
| 757 | void IntrinsicCodeGeneratorARM64::VisitMemoryPeekIntNative(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 758 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 759 | __ Ldr(WRegisterFrom(invoke->GetLocations()->Out()), |
| 760 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 761 | } |
| 762 | |
| 763 | void IntrinsicLocationsBuilderARM64::VisitMemoryPeekLongNative(HInvoke* invoke) { |
| 764 | CreateIntToIntLocations(arena_, invoke); |
| 765 | } |
| 766 | |
| 767 | void IntrinsicCodeGeneratorARM64::VisitMemoryPeekLongNative(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 768 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 769 | __ Ldr(XRegisterFrom(invoke->GetLocations()->Out()), |
| 770 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 771 | } |
| 772 | |
| 773 | void IntrinsicLocationsBuilderARM64::VisitMemoryPeekShortNative(HInvoke* invoke) { |
| 774 | CreateIntToIntLocations(arena_, invoke); |
| 775 | } |
| 776 | |
| 777 | void IntrinsicCodeGeneratorARM64::VisitMemoryPeekShortNative(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 778 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 779 | __ Ldrsh(WRegisterFrom(invoke->GetLocations()->Out()), |
| 780 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 781 | } |
| 782 | |
| 783 | static void CreateIntIntToVoidLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 784 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 785 | LocationSummary::kNoCall, |
| 786 | kIntrinsified); |
| 787 | locations->SetInAt(0, Location::RequiresRegister()); |
| 788 | locations->SetInAt(1, Location::RequiresRegister()); |
| 789 | } |
| 790 | |
| 791 | void IntrinsicLocationsBuilderARM64::VisitMemoryPokeByte(HInvoke* invoke) { |
| 792 | CreateIntIntToVoidLocations(arena_, invoke); |
| 793 | } |
| 794 | |
| 795 | void IntrinsicCodeGeneratorARM64::VisitMemoryPokeByte(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 796 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 797 | __ Strb(WRegisterFrom(invoke->GetLocations()->InAt(1)), |
| 798 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 799 | } |
| 800 | |
| 801 | void IntrinsicLocationsBuilderARM64::VisitMemoryPokeIntNative(HInvoke* invoke) { |
| 802 | CreateIntIntToVoidLocations(arena_, invoke); |
| 803 | } |
| 804 | |
| 805 | void IntrinsicCodeGeneratorARM64::VisitMemoryPokeIntNative(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 806 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 807 | __ Str(WRegisterFrom(invoke->GetLocations()->InAt(1)), |
| 808 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 809 | } |
| 810 | |
| 811 | void IntrinsicLocationsBuilderARM64::VisitMemoryPokeLongNative(HInvoke* invoke) { |
| 812 | CreateIntIntToVoidLocations(arena_, invoke); |
| 813 | } |
| 814 | |
| 815 | void IntrinsicCodeGeneratorARM64::VisitMemoryPokeLongNative(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 816 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 817 | __ Str(XRegisterFrom(invoke->GetLocations()->InAt(1)), |
| 818 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 819 | } |
| 820 | |
| 821 | void IntrinsicLocationsBuilderARM64::VisitMemoryPokeShortNative(HInvoke* invoke) { |
| 822 | CreateIntIntToVoidLocations(arena_, invoke); |
| 823 | } |
| 824 | |
| 825 | void IntrinsicCodeGeneratorARM64::VisitMemoryPokeShortNative(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 826 | MacroAssembler* masm = GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 827 | __ Strh(WRegisterFrom(invoke->GetLocations()->InAt(1)), |
| 828 | AbsoluteHeapOperandFrom(invoke->GetLocations()->InAt(0), 0)); |
| 829 | } |
| 830 | |
| 831 | void IntrinsicLocationsBuilderARM64::VisitThreadCurrentThread(HInvoke* invoke) { |
| 832 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
| 833 | LocationSummary::kNoCall, |
| 834 | kIntrinsified); |
| 835 | locations->SetOut(Location::RequiresRegister()); |
| 836 | } |
| 837 | |
| 838 | void IntrinsicCodeGeneratorARM64::VisitThreadCurrentThread(HInvoke* invoke) { |
| 839 | codegen_->Load(Primitive::kPrimNot, WRegisterFrom(invoke->GetLocations()->Out()), |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 840 | MemOperand(tr, Thread::PeerOffset<kArm64PointerSize>().Int32Value())); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | static void GenUnsafeGet(HInvoke* invoke, |
| 844 | Primitive::Type type, |
| 845 | bool is_volatile, |
| 846 | CodeGeneratorARM64* codegen) { |
| 847 | LocationSummary* locations = invoke->GetLocations(); |
| 848 | DCHECK((type == Primitive::kPrimInt) || |
| 849 | (type == Primitive::kPrimLong) || |
| 850 | (type == Primitive::kPrimNot)); |
Alexandre Rames | 087930f | 2016-08-02 13:45:28 +0100 | [diff] [blame] | 851 | MacroAssembler* masm = codegen->GetVIXLAssembler(); |
Roland Levillain | 22ccc3a | 2015-11-24 13:10:05 +0000 | [diff] [blame] | 852 | Location base_loc = locations->InAt(1); |
| 853 | Register base = WRegisterFrom(base_loc); // Object pointer. |
| 854 | Location offset_loc = locations->InAt(2); |
| 855 | Register offset = XRegisterFrom(offset_loc); // Long offset. |
| 856 | Location trg_loc = locations->Out(); |
| 857 | Register trg = RegisterFrom(trg_loc, type); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 858 | |
Roland Levillain | 4401586 | 2016-01-22 11:47:17 +0000 | [diff] [blame] | 859 | if (type == Primitive::kPrimNot && kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
| 860 | // UnsafeGetObject/UnsafeGetObjectVolatile with Baker's read barrier case. |
| 861 | UseScratchRegisterScope temps(masm); |
| 862 | Register temp = temps.AcquireW(); |
Roland Levillain | bfea335 | 2016-06-23 13:48:47 +0100 | [diff] [blame] | 863 | codegen->GenerateReferenceLoadWithBakerReadBarrier(invoke, |
| 864 | trg_loc, |
| 865 | base, |
| 866 | /* offset */ 0U, |
| 867 | /* index */ offset_loc, |
| 868 | /* scale_factor */ 0U, |
| 869 | temp, |
| 870 | /* needs_null_check */ false, |
| 871 | is_volatile); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 872 | } else { |
Roland Levillain | 4401586 | 2016-01-22 11:47:17 +0000 | [diff] [blame] | 873 | // Other cases. |
| 874 | MemOperand mem_op(base.X(), offset); |
| 875 | if (is_volatile) { |
Serban Constantinescu | 4a6a67c | 2016-01-27 09:19:56 +0000 | [diff] [blame] | 876 | codegen->LoadAcquire(invoke, trg, mem_op, /* needs_null_check */ true); |
Roland Levillain | 4401586 | 2016-01-22 11:47:17 +0000 | [diff] [blame] | 877 | } else { |
| 878 | codegen->Load(type, trg, mem_op); |
| 879 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 880 | |
Roland Levillain | 4401586 | 2016-01-22 11:47:17 +0000 | [diff] [blame] | 881 | if (type == Primitive::kPrimNot) { |
| 882 | DCHECK(trg.IsW()); |
| 883 | codegen->MaybeGenerateReadBarrierSlow(invoke, trg_loc, trg_loc, base_loc, 0U, offset_loc); |
| 884 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 885 | } |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | static void CreateIntIntIntToIntLocations(ArenaAllocator* arena, HInvoke* invoke) { |
Roland Levillain | 22ccc3a | 2015-11-24 13:10:05 +0000 | [diff] [blame] | 889 | bool can_call = kEmitCompilerReadBarrier && |
| 890 | (invoke->GetIntrinsic() == Intrinsics::kUnsafeGetObject || |
| 891 | invoke->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 892 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
Roland Levillain | 22ccc3a | 2015-11-24 13:10:05 +0000 | [diff] [blame] | 893 | can_call ? |
| 894 | LocationSummary::kCallOnSlowPath : |
| 895 | LocationSummary::kNoCall, |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 896 | kIntrinsified); |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 897 | if (can_call && kUseBakerReadBarrier) { |
| 898 | locations->SetCustomSlowPathCallerSaves(RegisterSet()); // No caller-save registers. |
| 899 | } |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 900 | locations->SetInAt(0, Location::NoLocation()); // Unused receiver. |
| 901 | locations->SetInAt(1, Location::RequiresRegister()); |
| 902 | locations->SetInAt(2, Location::RequiresRegister()); |
Roland Levillain | bfea335 | 2016-06-23 13:48:47 +0100 | [diff] [blame] | 903 | locations->SetOut(Location::RequiresRegister(), |
| 904 | can_call ? Location::kOutputOverlap : Location::kNoOutputOverlap); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | void IntrinsicLocationsBuilderARM64::VisitUnsafeGet(HInvoke* invoke) { |
| 908 | CreateIntIntIntToIntLocations(arena_, invoke); |
| 909 | } |
| 910 | void IntrinsicLocationsBuilderARM64::VisitUnsafeGetVolatile(HInvoke* invoke) { |
| 911 | CreateIntIntIntToIntLocations(arena_, invoke); |
| 912 | } |
| 913 | void IntrinsicLocationsBuilderARM64::VisitUnsafeGetLong(HInvoke* invoke) { |
| 914 | CreateIntIntIntToIntLocations(arena_, invoke); |
| 915 | } |
| 916 | void IntrinsicLocationsBuilderARM64::VisitUnsafeGetLongVolatile(HInvoke* invoke) { |
| 917 | CreateIntIntIntToIntLocations(arena_, invoke); |
| 918 | } |
| 919 | void IntrinsicLocationsBuilderARM64::VisitUnsafeGetObject(HInvoke* invoke) { |
| 920 | CreateIntIntIntToIntLocations(arena_, invoke); |
| 921 | } |
| 922 | void IntrinsicLocationsBuilderARM64::VisitUnsafeGetObjectVolatile(HInvoke* invoke) { |
| 923 | CreateIntIntIntToIntLocations(arena_, invoke); |
| 924 | } |
| 925 | |
| 926 | void IntrinsicCodeGeneratorARM64::VisitUnsafeGet(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 927 | GenUnsafeGet(invoke, Primitive::kPrimInt, /* is_volatile */ false, codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 928 | } |
| 929 | void IntrinsicCodeGeneratorARM64::VisitUnsafeGetVolatile(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 930 | GenUnsafeGet(invoke, Primitive::kPrimInt, /* is_volatile */ true, codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 931 | } |
| 932 | void IntrinsicCodeGeneratorARM64::VisitUnsafeGetLong(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 933 | GenUnsafeGet(invoke, Primitive::kPrimLong, /* is_volatile */ false, codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 934 | } |
| 935 | void IntrinsicCodeGeneratorARM64::VisitUnsafeGetLongVolatile(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 936 | GenUnsafeGet(invoke, Primitive::kPrimLong, /* is_volatile */ true, codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 937 | } |
| 938 | void IntrinsicCodeGeneratorARM64::VisitUnsafeGetObject(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 939 | GenUnsafeGet(invoke, Primitive::kPrimNot, /* is_volatile */ false, codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 940 | } |
| 941 | void IntrinsicCodeGeneratorARM64::VisitUnsafeGetObjectVolatile(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 942 | GenUnsafeGet(invoke, Primitive::kPrimNot, /* is_volatile */ true, codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 943 | } |
| 944 | |
| 945 | static void CreateIntIntIntIntToVoid(ArenaAllocator* arena, HInvoke* invoke) { |
| 946 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 947 | LocationSummary::kNoCall, |
| 948 | kIntrinsified); |
| 949 | locations->SetInAt(0, Location::NoLocation()); // Unused receiver. |
| 950 | locations->SetInAt(1, Location::RequiresRegister()); |
| 951 | locations->SetInAt(2, Location::RequiresRegister()); |
| 952 | locations->SetInAt(3, Location::RequiresRegister()); |
| 953 | } |
| 954 | |
| 955 | void IntrinsicLocationsBuilderARM64::VisitUnsafePut(HInvoke* invoke) { |
| 956 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 957 | } |
| 958 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutOrdered(HInvoke* invoke) { |
| 959 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 960 | } |
| 961 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutVolatile(HInvoke* invoke) { |
| 962 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 963 | } |
| 964 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutObject(HInvoke* invoke) { |
| 965 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 966 | } |
| 967 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutObjectOrdered(HInvoke* invoke) { |
| 968 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 969 | } |
| 970 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutObjectVolatile(HInvoke* invoke) { |
| 971 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 972 | } |
| 973 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutLong(HInvoke* invoke) { |
| 974 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 975 | } |
| 976 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutLongOrdered(HInvoke* invoke) { |
| 977 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 978 | } |
| 979 | void IntrinsicLocationsBuilderARM64::VisitUnsafePutLongVolatile(HInvoke* invoke) { |
| 980 | CreateIntIntIntIntToVoid(arena_, invoke); |
| 981 | } |
| 982 | |
| 983 | static void GenUnsafePut(LocationSummary* locations, |
| 984 | Primitive::Type type, |
| 985 | bool is_volatile, |
| 986 | bool is_ordered, |
| 987 | CodeGeneratorARM64* codegen) { |
Alexandre Rames | 087930f | 2016-08-02 13:45:28 +0100 | [diff] [blame] | 988 | MacroAssembler* masm = codegen->GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 989 | |
| 990 | Register base = WRegisterFrom(locations->InAt(1)); // Object pointer. |
| 991 | Register offset = XRegisterFrom(locations->InAt(2)); // Long offset. |
| 992 | Register value = RegisterFrom(locations->InAt(3), type); |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 993 | Register source = value; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 994 | MemOperand mem_op(base.X(), offset); |
| 995 | |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 996 | { |
| 997 | // We use a block to end the scratch scope before the write barrier, thus |
| 998 | // freeing the temporary registers so they can be used in `MarkGCCard`. |
| 999 | UseScratchRegisterScope temps(masm); |
| 1000 | |
| 1001 | if (kPoisonHeapReferences && type == Primitive::kPrimNot) { |
| 1002 | DCHECK(value.IsW()); |
| 1003 | Register temp = temps.AcquireW(); |
| 1004 | __ Mov(temp.W(), value.W()); |
| 1005 | codegen->GetAssembler()->PoisonHeapReference(temp.W()); |
| 1006 | source = temp; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1007 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 1008 | |
| 1009 | if (is_volatile || is_ordered) { |
Serban Constantinescu | 4a6a67c | 2016-01-27 09:19:56 +0000 | [diff] [blame] | 1010 | codegen->StoreRelease(type, source, mem_op); |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 1011 | } else { |
| 1012 | codegen->Store(type, source, mem_op); |
| 1013 | } |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1014 | } |
| 1015 | |
| 1016 | if (type == Primitive::kPrimNot) { |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 1017 | bool value_can_be_null = true; // TODO: Worth finding out this information? |
| 1018 | codegen->MarkGCCard(base, value, value_can_be_null); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1019 | } |
| 1020 | } |
| 1021 | |
| 1022 | void IntrinsicCodeGeneratorARM64::VisitUnsafePut(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1023 | GenUnsafePut(invoke->GetLocations(), |
| 1024 | Primitive::kPrimInt, |
| 1025 | /* is_volatile */ false, |
| 1026 | /* is_ordered */ false, |
| 1027 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1028 | } |
| 1029 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutOrdered(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1030 | GenUnsafePut(invoke->GetLocations(), |
| 1031 | Primitive::kPrimInt, |
| 1032 | /* is_volatile */ false, |
| 1033 | /* is_ordered */ true, |
| 1034 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1035 | } |
| 1036 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutVolatile(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1037 | GenUnsafePut(invoke->GetLocations(), |
| 1038 | Primitive::kPrimInt, |
| 1039 | /* is_volatile */ true, |
| 1040 | /* is_ordered */ false, |
| 1041 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1042 | } |
| 1043 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutObject(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1044 | GenUnsafePut(invoke->GetLocations(), |
| 1045 | Primitive::kPrimNot, |
| 1046 | /* is_volatile */ false, |
| 1047 | /* is_ordered */ false, |
| 1048 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1049 | } |
| 1050 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutObjectOrdered(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1051 | GenUnsafePut(invoke->GetLocations(), |
| 1052 | Primitive::kPrimNot, |
| 1053 | /* is_volatile */ false, |
| 1054 | /* is_ordered */ true, |
| 1055 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1056 | } |
| 1057 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutObjectVolatile(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1058 | GenUnsafePut(invoke->GetLocations(), |
| 1059 | Primitive::kPrimNot, |
| 1060 | /* is_volatile */ true, |
| 1061 | /* is_ordered */ false, |
| 1062 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1063 | } |
| 1064 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutLong(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1065 | GenUnsafePut(invoke->GetLocations(), |
| 1066 | Primitive::kPrimLong, |
| 1067 | /* is_volatile */ false, |
| 1068 | /* is_ordered */ false, |
| 1069 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1070 | } |
| 1071 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutLongOrdered(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1072 | GenUnsafePut(invoke->GetLocations(), |
| 1073 | Primitive::kPrimLong, |
| 1074 | /* is_volatile */ false, |
| 1075 | /* is_ordered */ true, |
| 1076 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1077 | } |
| 1078 | void IntrinsicCodeGeneratorARM64::VisitUnsafePutLongVolatile(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1079 | GenUnsafePut(invoke->GetLocations(), |
| 1080 | Primitive::kPrimLong, |
| 1081 | /* is_volatile */ true, |
| 1082 | /* is_ordered */ false, |
| 1083 | codegen_); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1084 | } |
| 1085 | |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1086 | static void CreateIntIntIntIntIntToInt(ArenaAllocator* arena, |
| 1087 | HInvoke* invoke, |
| 1088 | Primitive::Type type) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1089 | LocationSummary* locations = new (arena) LocationSummary(invoke, |
| 1090 | LocationSummary::kNoCall, |
| 1091 | kIntrinsified); |
| 1092 | locations->SetInAt(0, Location::NoLocation()); // Unused receiver. |
| 1093 | locations->SetInAt(1, Location::RequiresRegister()); |
| 1094 | locations->SetInAt(2, Location::RequiresRegister()); |
| 1095 | locations->SetInAt(3, Location::RequiresRegister()); |
| 1096 | locations->SetInAt(4, Location::RequiresRegister()); |
| 1097 | |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1098 | // If heap poisoning is enabled, we don't want the unpoisoning |
| 1099 | // operations to potentially clobber the output. |
| 1100 | Location::OutputOverlap overlaps = (kPoisonHeapReferences && type == Primitive::kPrimNot) |
| 1101 | ? Location::kOutputOverlap |
| 1102 | : Location::kNoOutputOverlap; |
| 1103 | locations->SetOut(Location::RequiresRegister(), overlaps); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1104 | } |
| 1105 | |
| 1106 | static void GenCas(LocationSummary* locations, Primitive::Type type, CodeGeneratorARM64* codegen) { |
Alexandre Rames | 087930f | 2016-08-02 13:45:28 +0100 | [diff] [blame] | 1107 | MacroAssembler* masm = codegen->GetVIXLAssembler(); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1108 | |
| 1109 | Register out = WRegisterFrom(locations->Out()); // Boolean result. |
| 1110 | |
| 1111 | Register base = WRegisterFrom(locations->InAt(1)); // Object pointer. |
| 1112 | Register offset = XRegisterFrom(locations->InAt(2)); // Long offset. |
| 1113 | Register expected = RegisterFrom(locations->InAt(3), type); // Expected. |
| 1114 | Register value = RegisterFrom(locations->InAt(4), type); // Value. |
| 1115 | |
| 1116 | // This needs to be before the temp registers, as MarkGCCard also uses VIXL temps. |
| 1117 | if (type == Primitive::kPrimNot) { |
| 1118 | // Mark card for object assuming new value is stored. |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 1119 | bool value_can_be_null = true; // TODO: Worth finding out this information? |
| 1120 | codegen->MarkGCCard(base, value, value_can_be_null); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | UseScratchRegisterScope temps(masm); |
| 1124 | Register tmp_ptr = temps.AcquireX(); // Pointer to actual memory. |
| 1125 | Register tmp_value = temps.AcquireSameSizeAs(value); // Value in memory. |
| 1126 | |
| 1127 | Register tmp_32 = tmp_value.W(); |
| 1128 | |
| 1129 | __ Add(tmp_ptr, base.X(), Operand(offset)); |
| 1130 | |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 1131 | if (kPoisonHeapReferences && type == Primitive::kPrimNot) { |
| 1132 | codegen->GetAssembler()->PoisonHeapReference(expected); |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1133 | if (value.Is(expected)) { |
| 1134 | // Do not poison `value`, as it is the same register as |
| 1135 | // `expected`, which has just been poisoned. |
| 1136 | } else { |
| 1137 | codegen->GetAssembler()->PoisonHeapReference(value); |
| 1138 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 1139 | } |
| 1140 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1141 | // do { |
| 1142 | // tmp_value = [tmp_ptr] - expected; |
| 1143 | // } while (tmp_value == 0 && failure([tmp_ptr] <- r_new_value)); |
| 1144 | // result = tmp_value != 0; |
| 1145 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1146 | vixl::aarch64::Label loop_head, exit_loop; |
Serban Constantinescu | 4a6a67c | 2016-01-27 09:19:56 +0000 | [diff] [blame] | 1147 | __ Bind(&loop_head); |
| 1148 | // TODO: When `type == Primitive::kPrimNot`, add a read barrier for |
| 1149 | // the reference stored in the object before attempting the CAS, |
| 1150 | // similar to the one in the art::Unsafe_compareAndSwapObject JNI |
| 1151 | // implementation. |
| 1152 | // |
| 1153 | // Note that this code is not (yet) used when read barriers are |
| 1154 | // enabled (see IntrinsicLocationsBuilderARM64::VisitUnsafeCASObject). |
| 1155 | DCHECK(!(type == Primitive::kPrimNot && kEmitCompilerReadBarrier)); |
| 1156 | __ Ldaxr(tmp_value, MemOperand(tmp_ptr)); |
| 1157 | __ Cmp(tmp_value, expected); |
| 1158 | __ B(&exit_loop, ne); |
| 1159 | __ Stlxr(tmp_32, value, MemOperand(tmp_ptr)); |
| 1160 | __ Cbnz(tmp_32, &loop_head); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1161 | __ Bind(&exit_loop); |
| 1162 | __ Cset(out, eq); |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 1163 | |
| 1164 | if (kPoisonHeapReferences && type == Primitive::kPrimNot) { |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 1165 | codegen->GetAssembler()->UnpoisonHeapReference(expected); |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1166 | if (value.Is(expected)) { |
| 1167 | // Do not unpoison `value`, as it is the same register as |
| 1168 | // `expected`, which has just been unpoisoned. |
| 1169 | } else { |
| 1170 | codegen->GetAssembler()->UnpoisonHeapReference(value); |
| 1171 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 1172 | } |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | void IntrinsicLocationsBuilderARM64::VisitUnsafeCASInt(HInvoke* invoke) { |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1176 | CreateIntIntIntIntIntToInt(arena_, invoke, Primitive::kPrimInt); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1177 | } |
| 1178 | void IntrinsicLocationsBuilderARM64::VisitUnsafeCASLong(HInvoke* invoke) { |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1179 | CreateIntIntIntIntIntToInt(arena_, invoke, Primitive::kPrimLong); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1180 | } |
| 1181 | void IntrinsicLocationsBuilderARM64::VisitUnsafeCASObject(HInvoke* invoke) { |
Roland Levillain | 391b866 | 2015-12-18 11:43:38 +0000 | [diff] [blame] | 1182 | // The UnsafeCASObject intrinsic is missing a read barrier, and |
| 1183 | // therefore sometimes does not work as expected (b/25883050). |
| 1184 | // Turn it off temporarily as a quick fix, until the read barrier is |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 1185 | // implemented (see TODO in GenCAS). |
Roland Levillain | 391b866 | 2015-12-18 11:43:38 +0000 | [diff] [blame] | 1186 | // |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 1187 | // TODO(rpl): Implement read barrier support in GenCAS and re-enable |
| 1188 | // this intrinsic. |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1189 | if (kEmitCompilerReadBarrier) { |
Roland Levillain | 985ff70 | 2015-10-23 13:25:35 +0100 | [diff] [blame] | 1190 | return; |
| 1191 | } |
| 1192 | |
Roland Levillain | 2e50ecb | 2016-01-27 14:08:33 +0000 | [diff] [blame] | 1193 | CreateIntIntIntIntIntToInt(arena_, invoke, Primitive::kPrimNot); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1194 | } |
| 1195 | |
| 1196 | void IntrinsicCodeGeneratorARM64::VisitUnsafeCASInt(HInvoke* invoke) { |
| 1197 | GenCas(invoke->GetLocations(), Primitive::kPrimInt, codegen_); |
| 1198 | } |
| 1199 | void IntrinsicCodeGeneratorARM64::VisitUnsafeCASLong(HInvoke* invoke) { |
| 1200 | GenCas(invoke->GetLocations(), Primitive::kPrimLong, codegen_); |
| 1201 | } |
| 1202 | void IntrinsicCodeGeneratorARM64::VisitUnsafeCASObject(HInvoke* invoke) { |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 1203 | // The UnsafeCASObject intrinsic is missing a read barrier, and |
| 1204 | // therefore sometimes does not work as expected (b/25883050). |
| 1205 | // Turn it off temporarily as a quick fix, until the read barrier is |
| 1206 | // implemented (see TODO in GenCAS). |
| 1207 | // |
| 1208 | // TODO(rpl): Implement read barrier support in GenCAS and re-enable |
| 1209 | // this intrinsic. |
| 1210 | DCHECK(!kEmitCompilerReadBarrier); |
| 1211 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1212 | GenCas(invoke->GetLocations(), Primitive::kPrimNot, codegen_); |
| 1213 | } |
| 1214 | |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1215 | void IntrinsicLocationsBuilderARM64::VisitStringCompareTo(HInvoke* invoke) { |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1216 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1217 | invoke->InputAt(1)->CanBeNull() |
| 1218 | ? LocationSummary::kCallOnSlowPath |
| 1219 | : LocationSummary::kNoCall, |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1220 | kIntrinsified); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1221 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1222 | locations->SetInAt(1, Location::RequiresRegister()); |
| 1223 | locations->AddTemp(Location::RequiresRegister()); |
| 1224 | locations->AddTemp(Location::RequiresRegister()); |
| 1225 | locations->AddTemp(Location::RequiresRegister()); |
| 1226 | locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap); |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1227 | } |
| 1228 | |
| 1229 | void IntrinsicCodeGeneratorARM64::VisitStringCompareTo(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1230 | MacroAssembler* masm = GetVIXLAssembler(); |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1231 | LocationSummary* locations = invoke->GetLocations(); |
| 1232 | |
Alexandre Rames | 2ea9153 | 2016-08-11 17:04:14 +0100 | [diff] [blame] | 1233 | Register str = InputRegisterAt(invoke, 0); |
| 1234 | Register arg = InputRegisterAt(invoke, 1); |
| 1235 | DCHECK(str.IsW()); |
| 1236 | DCHECK(arg.IsW()); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1237 | Register out = OutputRegister(invoke); |
| 1238 | |
| 1239 | Register temp0 = WRegisterFrom(locations->GetTemp(0)); |
| 1240 | Register temp1 = WRegisterFrom(locations->GetTemp(1)); |
| 1241 | Register temp2 = WRegisterFrom(locations->GetTemp(2)); |
| 1242 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1243 | vixl::aarch64::Label loop; |
| 1244 | vixl::aarch64::Label find_char_diff; |
| 1245 | vixl::aarch64::Label end; |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1246 | |
| 1247 | // Get offsets of count and value fields within a string object. |
| 1248 | const int32_t count_offset = mirror::String::CountOffset().Int32Value(); |
| 1249 | const int32_t value_offset = mirror::String::ValueOffset().Int32Value(); |
| 1250 | |
Nicolas Geoffray | 512e04d | 2015-03-27 17:21:24 +0000 | [diff] [blame] | 1251 | // Note that the null check must have been done earlier. |
Calin Juravle | 641547a | 2015-04-21 22:08:51 +0100 | [diff] [blame] | 1252 | DCHECK(!invoke->CanDoImplicitNullCheckOn(invoke->InputAt(0))); |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1253 | |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1254 | // Take slow path and throw if input can be and is null. |
| 1255 | SlowPathCodeARM64* slow_path = nullptr; |
| 1256 | const bool can_slow_path = invoke->InputAt(1)->CanBeNull(); |
| 1257 | if (can_slow_path) { |
| 1258 | slow_path = new (GetAllocator()) IntrinsicSlowPathARM64(invoke); |
| 1259 | codegen_->AddSlowPath(slow_path); |
| 1260 | __ Cbz(arg, slow_path->GetEntryLabel()); |
| 1261 | } |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1262 | |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1263 | // Reference equality check, return 0 if same reference. |
| 1264 | __ Subs(out, str, arg); |
| 1265 | __ B(&end, eq); |
| 1266 | // Load lengths of this and argument strings. |
Alexandre Rames | 2ea9153 | 2016-08-11 17:04:14 +0100 | [diff] [blame] | 1267 | __ Ldr(temp0, HeapOperand(str, count_offset)); |
| 1268 | __ Ldr(temp1, HeapOperand(arg, count_offset)); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1269 | // Return zero if both strings are empty. |
| 1270 | __ Orr(out, temp0, temp1); |
| 1271 | __ Cbz(out, &end); |
| 1272 | // out = length diff. |
| 1273 | __ Subs(out, temp0, temp1); |
| 1274 | // temp2 = min(len(str), len(arg)). |
| 1275 | __ Csel(temp2, temp1, temp0, ge); |
| 1276 | // Shorter string is empty? |
| 1277 | __ Cbz(temp2, &end); |
| 1278 | |
| 1279 | // Store offset of string value in preparation for comparison loop. |
| 1280 | __ Mov(temp1, value_offset); |
| 1281 | |
| 1282 | UseScratchRegisterScope scratch_scope(masm); |
| 1283 | Register temp4 = scratch_scope.AcquireX(); |
| 1284 | |
| 1285 | // Assertions that must hold in order to compare strings 4 characters at a time. |
| 1286 | DCHECK_ALIGNED(value_offset, 8); |
| 1287 | static_assert(IsAligned<8>(kObjectAlignment), "String of odd length is not zero padded"); |
| 1288 | |
| 1289 | const size_t char_size = Primitive::ComponentSize(Primitive::kPrimChar); |
| 1290 | DCHECK_EQ(char_size, 2u); |
| 1291 | |
| 1292 | // Promote temp0 to an X reg, ready for LDR. |
| 1293 | temp0 = temp0.X(); |
| 1294 | |
| 1295 | // Loop to compare 4x16-bit characters at a time (ok because of string data alignment). |
| 1296 | __ Bind(&loop); |
Alexandre Rames | 2ea9153 | 2016-08-11 17:04:14 +0100 | [diff] [blame] | 1297 | __ Ldr(temp4, MemOperand(str.X(), temp1.X())); |
| 1298 | __ Ldr(temp0, MemOperand(arg.X(), temp1.X())); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1299 | __ Cmp(temp4, temp0); |
| 1300 | __ B(ne, &find_char_diff); |
| 1301 | __ Add(temp1, temp1, char_size * 4); |
| 1302 | __ Subs(temp2, temp2, 4); |
| 1303 | __ B(gt, &loop); |
| 1304 | __ B(&end); |
| 1305 | |
| 1306 | // Promote temp1 to an X reg, ready for EOR. |
| 1307 | temp1 = temp1.X(); |
| 1308 | |
| 1309 | // Find the single 16-bit character difference. |
| 1310 | __ Bind(&find_char_diff); |
| 1311 | // Get the bit position of the first character that differs. |
| 1312 | __ Eor(temp1, temp0, temp4); |
| 1313 | __ Rbit(temp1, temp1); |
| 1314 | __ Clz(temp1, temp1); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1315 | // If the number of 16-bit chars remaining <= the index where the difference occurs (0-3), then |
| 1316 | // the difference occurs outside the remaining string data, so just return length diff (out). |
Alexandre Rames | 2ea9153 | 2016-08-11 17:04:14 +0100 | [diff] [blame] | 1317 | __ Cmp(temp2, Operand(temp1.W(), LSR, 4)); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1318 | __ B(le, &end); |
| 1319 | // Extract the characters and calculate the difference. |
Scott Wakeling | e5ed20b | 2016-05-20 10:41:38 +0100 | [diff] [blame] | 1320 | __ Bic(temp1, temp1, 0xf); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1321 | __ Lsr(temp0, temp0, temp1); |
| 1322 | __ Lsr(temp4, temp4, temp1); |
| 1323 | __ And(temp4, temp4, 0xffff); |
Alexandre Rames | 2ea9153 | 2016-08-11 17:04:14 +0100 | [diff] [blame] | 1324 | __ Sub(out, temp4.W(), Operand(temp0.W(), UXTH)); |
Scott Wakeling | 1f36f41 | 2016-04-21 11:13:45 +0100 | [diff] [blame] | 1325 | |
| 1326 | __ Bind(&end); |
| 1327 | |
| 1328 | if (can_slow_path) { |
| 1329 | __ Bind(slow_path->GetExitLabel()); |
| 1330 | } |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 1331 | } |
| 1332 | |
Agi Csaki | ea34b40 | 2015-08-13 17:51:19 -0700 | [diff] [blame] | 1333 | void IntrinsicLocationsBuilderARM64::VisitStringEquals(HInvoke* invoke) { |
| 1334 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
| 1335 | LocationSummary::kNoCall, |
| 1336 | kIntrinsified); |
| 1337 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1338 | locations->SetInAt(1, Location::RequiresRegister()); |
| 1339 | // Temporary registers to store lengths of strings and for calculations. |
| 1340 | locations->AddTemp(Location::RequiresRegister()); |
| 1341 | locations->AddTemp(Location::RequiresRegister()); |
| 1342 | |
| 1343 | locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap); |
| 1344 | } |
| 1345 | |
| 1346 | void IntrinsicCodeGeneratorARM64::VisitStringEquals(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1347 | MacroAssembler* masm = GetVIXLAssembler(); |
Agi Csaki | ea34b40 | 2015-08-13 17:51:19 -0700 | [diff] [blame] | 1348 | LocationSummary* locations = invoke->GetLocations(); |
| 1349 | |
| 1350 | Register str = WRegisterFrom(locations->InAt(0)); |
| 1351 | Register arg = WRegisterFrom(locations->InAt(1)); |
| 1352 | Register out = XRegisterFrom(locations->Out()); |
| 1353 | |
| 1354 | UseScratchRegisterScope scratch_scope(masm); |
| 1355 | Register temp = scratch_scope.AcquireW(); |
| 1356 | Register temp1 = WRegisterFrom(locations->GetTemp(0)); |
| 1357 | Register temp2 = WRegisterFrom(locations->GetTemp(1)); |
| 1358 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1359 | vixl::aarch64::Label loop; |
| 1360 | vixl::aarch64::Label end; |
| 1361 | vixl::aarch64::Label return_true; |
| 1362 | vixl::aarch64::Label return_false; |
Agi Csaki | ea34b40 | 2015-08-13 17:51:19 -0700 | [diff] [blame] | 1363 | |
| 1364 | // Get offsets of count, value, and class fields within a string object. |
| 1365 | const int32_t count_offset = mirror::String::CountOffset().Int32Value(); |
| 1366 | const int32_t value_offset = mirror::String::ValueOffset().Int32Value(); |
| 1367 | const int32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 1368 | |
| 1369 | // Note that the null check must have been done earlier. |
| 1370 | DCHECK(!invoke->CanDoImplicitNullCheckOn(invoke->InputAt(0))); |
| 1371 | |
Vladimir Marko | 53b5200 | 2016-05-24 19:30:45 +0100 | [diff] [blame] | 1372 | StringEqualsOptimizations optimizations(invoke); |
| 1373 | if (!optimizations.GetArgumentNotNull()) { |
| 1374 | // Check if input is null, return false if it is. |
| 1375 | __ Cbz(arg, &return_false); |
| 1376 | } |
Agi Csaki | ea34b40 | 2015-08-13 17:51:19 -0700 | [diff] [blame] | 1377 | |
| 1378 | // Reference equality check, return true if same reference. |
| 1379 | __ Cmp(str, arg); |
| 1380 | __ B(&return_true, eq); |
| 1381 | |
Vladimir Marko | 53b5200 | 2016-05-24 19:30:45 +0100 | [diff] [blame] | 1382 | if (!optimizations.GetArgumentIsString()) { |
| 1383 | // Instanceof check for the argument by comparing class fields. |
| 1384 | // All string objects must have the same type since String cannot be subclassed. |
| 1385 | // Receiver must be a string object, so its class field is equal to all strings' class fields. |
| 1386 | // If the argument is a string object, its class field must be equal to receiver's class field. |
| 1387 | __ Ldr(temp, MemOperand(str.X(), class_offset)); |
| 1388 | __ Ldr(temp1, MemOperand(arg.X(), class_offset)); |
| 1389 | __ Cmp(temp, temp1); |
| 1390 | __ B(&return_false, ne); |
| 1391 | } |
Agi Csaki | ea34b40 | 2015-08-13 17:51:19 -0700 | [diff] [blame] | 1392 | |
| 1393 | // Load lengths of this and argument strings. |
| 1394 | __ Ldr(temp, MemOperand(str.X(), count_offset)); |
| 1395 | __ Ldr(temp1, MemOperand(arg.X(), count_offset)); |
| 1396 | // Check if lengths are equal, return false if they're not. |
| 1397 | __ Cmp(temp, temp1); |
| 1398 | __ B(&return_false, ne); |
| 1399 | // Store offset of string value in preparation for comparison loop |
| 1400 | __ Mov(temp1, value_offset); |
| 1401 | // Return true if both strings are empty. |
| 1402 | __ Cbz(temp, &return_true); |
| 1403 | |
| 1404 | // Assertions that must hold in order to compare strings 4 characters at a time. |
| 1405 | DCHECK_ALIGNED(value_offset, 8); |
| 1406 | static_assert(IsAligned<8>(kObjectAlignment), "String of odd length is not zero padded"); |
| 1407 | |
| 1408 | temp1 = temp1.X(); |
| 1409 | temp2 = temp2.X(); |
| 1410 | |
| 1411 | // Loop to compare strings 4 characters at a time starting at the beginning of the string. |
| 1412 | // Ok to do this because strings are zero-padded to be 8-byte aligned. |
| 1413 | __ Bind(&loop); |
| 1414 | __ Ldr(out, MemOperand(str.X(), temp1)); |
| 1415 | __ Ldr(temp2, MemOperand(arg.X(), temp1)); |
| 1416 | __ Add(temp1, temp1, Operand(sizeof(uint64_t))); |
| 1417 | __ Cmp(out, temp2); |
| 1418 | __ B(&return_false, ne); |
| 1419 | __ Sub(temp, temp, Operand(4), SetFlags); |
| 1420 | __ B(&loop, gt); |
| 1421 | |
| 1422 | // Return true and exit the function. |
| 1423 | // If loop does not result in returning false, we return true. |
| 1424 | __ Bind(&return_true); |
| 1425 | __ Mov(out, 1); |
| 1426 | __ B(&end); |
| 1427 | |
| 1428 | // Return false and exit the function. |
| 1429 | __ Bind(&return_false); |
| 1430 | __ Mov(out, 0); |
| 1431 | __ Bind(&end); |
| 1432 | } |
| 1433 | |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1434 | static void GenerateVisitStringIndexOf(HInvoke* invoke, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1435 | MacroAssembler* masm, |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1436 | CodeGeneratorARM64* codegen, |
| 1437 | ArenaAllocator* allocator, |
| 1438 | bool start_at_zero) { |
| 1439 | LocationSummary* locations = invoke->GetLocations(); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1440 | |
| 1441 | // Note that the null check must have been done earlier. |
| 1442 | DCHECK(!invoke->CanDoImplicitNullCheckOn(invoke->InputAt(0))); |
| 1443 | |
| 1444 | // Check for code points > 0xFFFF. Either a slow-path check when we don't know statically, |
Vladimir Marko | fb6c90a | 2016-05-06 15:52:12 +0100 | [diff] [blame] | 1445 | // or directly dispatch for a large constant, or omit slow-path for a small constant or a char. |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1446 | SlowPathCodeARM64* slow_path = nullptr; |
Vladimir Marko | fb6c90a | 2016-05-06 15:52:12 +0100 | [diff] [blame] | 1447 | HInstruction* code_point = invoke->InputAt(1); |
| 1448 | if (code_point->IsIntConstant()) { |
Vladimir Marko | da05108 | 2016-05-17 16:10:20 +0100 | [diff] [blame] | 1449 | if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) > 0xFFFFU) { |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1450 | // Always needs the slow-path. We could directly dispatch to it, but this case should be |
| 1451 | // rare, so for simplicity just put the full slow-path down and branch unconditionally. |
| 1452 | slow_path = new (allocator) IntrinsicSlowPathARM64(invoke); |
| 1453 | codegen->AddSlowPath(slow_path); |
| 1454 | __ B(slow_path->GetEntryLabel()); |
| 1455 | __ Bind(slow_path->GetExitLabel()); |
| 1456 | return; |
| 1457 | } |
Vladimir Marko | fb6c90a | 2016-05-06 15:52:12 +0100 | [diff] [blame] | 1458 | } else if (code_point->GetType() != Primitive::kPrimChar) { |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1459 | Register char_reg = WRegisterFrom(locations->InAt(1)); |
Vladimir Marko | fb6c90a | 2016-05-06 15:52:12 +0100 | [diff] [blame] | 1460 | __ Tst(char_reg, 0xFFFF0000); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1461 | slow_path = new (allocator) IntrinsicSlowPathARM64(invoke); |
| 1462 | codegen->AddSlowPath(slow_path); |
Vladimir Marko | fb6c90a | 2016-05-06 15:52:12 +0100 | [diff] [blame] | 1463 | __ B(ne, slow_path->GetEntryLabel()); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1464 | } |
| 1465 | |
| 1466 | if (start_at_zero) { |
| 1467 | // Start-index = 0. |
Vladimir Marko | fb6c90a | 2016-05-06 15:52:12 +0100 | [diff] [blame] | 1468 | Register tmp_reg = WRegisterFrom(locations->GetTemp(0)); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1469 | __ Mov(tmp_reg, 0); |
| 1470 | } |
| 1471 | |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1472 | codegen->InvokeRuntime(kQuickIndexOf, invoke, invoke->GetDexPc(), slow_path); |
Roland Levillain | 42ad288 | 2016-02-29 18:26:54 +0000 | [diff] [blame] | 1473 | CheckEntrypointTypes<kQuickIndexOf, int32_t, void*, uint32_t, uint32_t>(); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1474 | |
| 1475 | if (slow_path != nullptr) { |
| 1476 | __ Bind(slow_path->GetExitLabel()); |
| 1477 | } |
| 1478 | } |
| 1479 | |
| 1480 | void IntrinsicLocationsBuilderARM64::VisitStringIndexOf(HInvoke* invoke) { |
| 1481 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
Serban Constantinescu | 806f012 | 2016-03-09 11:10:16 +0000 | [diff] [blame] | 1482 | LocationSummary::kCallOnMainAndSlowPath, |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1483 | kIntrinsified); |
| 1484 | // We have a hand-crafted assembly stub that follows the runtime calling convention. So it's |
| 1485 | // best to align the inputs accordingly. |
| 1486 | InvokeRuntimeCallingConvention calling_convention; |
| 1487 | locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0))); |
| 1488 | locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1))); |
| 1489 | locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimInt)); |
| 1490 | |
Vladimir Marko | fb6c90a | 2016-05-06 15:52:12 +0100 | [diff] [blame] | 1491 | // Need to send start_index=0. |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1492 | locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(2))); |
| 1493 | } |
| 1494 | |
| 1495 | void IntrinsicCodeGeneratorARM64::VisitStringIndexOf(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1496 | GenerateVisitStringIndexOf( |
| 1497 | invoke, GetVIXLAssembler(), codegen_, GetAllocator(), /* start_at_zero */ true); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1498 | } |
| 1499 | |
| 1500 | void IntrinsicLocationsBuilderARM64::VisitStringIndexOfAfter(HInvoke* invoke) { |
| 1501 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
Serban Constantinescu | 806f012 | 2016-03-09 11:10:16 +0000 | [diff] [blame] | 1502 | LocationSummary::kCallOnMainAndSlowPath, |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1503 | kIntrinsified); |
| 1504 | // We have a hand-crafted assembly stub that follows the runtime calling convention. So it's |
| 1505 | // best to align the inputs accordingly. |
| 1506 | InvokeRuntimeCallingConvention calling_convention; |
| 1507 | locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0))); |
| 1508 | locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1))); |
| 1509 | locations->SetInAt(2, LocationFrom(calling_convention.GetRegisterAt(2))); |
| 1510 | locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimInt)); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | void IntrinsicCodeGeneratorARM64::VisitStringIndexOfAfter(HInvoke* invoke) { |
Roland Levillain | bf84a3d | 2015-12-04 14:33:02 +0000 | [diff] [blame] | 1514 | GenerateVisitStringIndexOf( |
| 1515 | invoke, GetVIXLAssembler(), codegen_, GetAllocator(), /* start_at_zero */ false); |
Andreas Gampe | ba6fdbc | 2015-05-07 22:31:55 -0700 | [diff] [blame] | 1516 | } |
| 1517 | |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1518 | void IntrinsicLocationsBuilderARM64::VisitStringNewStringFromBytes(HInvoke* invoke) { |
| 1519 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
Serban Constantinescu | 806f012 | 2016-03-09 11:10:16 +0000 | [diff] [blame] | 1520 | LocationSummary::kCallOnMainAndSlowPath, |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1521 | kIntrinsified); |
| 1522 | InvokeRuntimeCallingConvention calling_convention; |
| 1523 | locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0))); |
| 1524 | locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1))); |
| 1525 | locations->SetInAt(2, LocationFrom(calling_convention.GetRegisterAt(2))); |
| 1526 | locations->SetInAt(3, LocationFrom(calling_convention.GetRegisterAt(3))); |
| 1527 | locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot)); |
| 1528 | } |
| 1529 | |
| 1530 | void IntrinsicCodeGeneratorARM64::VisitStringNewStringFromBytes(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1531 | MacroAssembler* masm = GetVIXLAssembler(); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1532 | LocationSummary* locations = invoke->GetLocations(); |
| 1533 | |
| 1534 | Register byte_array = WRegisterFrom(locations->InAt(0)); |
| 1535 | __ Cmp(byte_array, 0); |
| 1536 | SlowPathCodeARM64* slow_path = new (GetAllocator()) IntrinsicSlowPathARM64(invoke); |
| 1537 | codegen_->AddSlowPath(slow_path); |
| 1538 | __ B(eq, slow_path->GetEntryLabel()); |
| 1539 | |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1540 | codegen_->InvokeRuntime(kQuickAllocStringFromBytes, invoke, invoke->GetDexPc(), slow_path); |
Roland Levillain | f969a20 | 2016-03-09 16:14:00 +0000 | [diff] [blame] | 1541 | CheckEntrypointTypes<kQuickAllocStringFromBytes, void*, void*, int32_t, int32_t, int32_t>(); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1542 | __ Bind(slow_path->GetExitLabel()); |
| 1543 | } |
| 1544 | |
| 1545 | void IntrinsicLocationsBuilderARM64::VisitStringNewStringFromChars(HInvoke* invoke) { |
| 1546 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
Serban Constantinescu | 54ff482 | 2016-07-07 18:03:19 +0100 | [diff] [blame] | 1547 | LocationSummary::kCallOnMainOnly, |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1548 | kIntrinsified); |
| 1549 | InvokeRuntimeCallingConvention calling_convention; |
| 1550 | locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0))); |
| 1551 | locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1))); |
| 1552 | locations->SetInAt(2, LocationFrom(calling_convention.GetRegisterAt(2))); |
| 1553 | locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot)); |
| 1554 | } |
| 1555 | |
| 1556 | void IntrinsicCodeGeneratorARM64::VisitStringNewStringFromChars(HInvoke* invoke) { |
Roland Levillain | cc3839c | 2016-02-29 16:23:48 +0000 | [diff] [blame] | 1557 | // No need to emit code checking whether `locations->InAt(2)` is a null |
| 1558 | // pointer, as callers of the native method |
| 1559 | // |
| 1560 | // java.lang.StringFactory.newStringFromChars(int offset, int charCount, char[] data) |
| 1561 | // |
| 1562 | // all include a null check on `data` before calling that method. |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1563 | codegen_->InvokeRuntime(kQuickAllocStringFromChars, invoke, invoke->GetDexPc()); |
Roland Levillain | f969a20 | 2016-03-09 16:14:00 +0000 | [diff] [blame] | 1564 | CheckEntrypointTypes<kQuickAllocStringFromChars, void*, int32_t, int32_t, void*>(); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1565 | } |
| 1566 | |
| 1567 | void IntrinsicLocationsBuilderARM64::VisitStringNewStringFromString(HInvoke* invoke) { |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1568 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
Serban Constantinescu | 806f012 | 2016-03-09 11:10:16 +0000 | [diff] [blame] | 1569 | LocationSummary::kCallOnMainAndSlowPath, |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1570 | kIntrinsified); |
| 1571 | InvokeRuntimeCallingConvention calling_convention; |
| 1572 | locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0))); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1573 | locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot)); |
| 1574 | } |
| 1575 | |
| 1576 | void IntrinsicCodeGeneratorARM64::VisitStringNewStringFromString(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1577 | MacroAssembler* masm = GetVIXLAssembler(); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1578 | LocationSummary* locations = invoke->GetLocations(); |
| 1579 | |
| 1580 | Register string_to_copy = WRegisterFrom(locations->InAt(0)); |
| 1581 | __ Cmp(string_to_copy, 0); |
| 1582 | SlowPathCodeARM64* slow_path = new (GetAllocator()) IntrinsicSlowPathARM64(invoke); |
| 1583 | codegen_->AddSlowPath(slow_path); |
| 1584 | __ B(eq, slow_path->GetEntryLabel()); |
| 1585 | |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1586 | codegen_->InvokeRuntime(kQuickAllocStringFromString, invoke, invoke->GetDexPc(), slow_path); |
Roland Levillain | f969a20 | 2016-03-09 16:14:00 +0000 | [diff] [blame] | 1587 | CheckEntrypointTypes<kQuickAllocStringFromString, void*, void*>(); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1588 | __ Bind(slow_path->GetExitLabel()); |
| 1589 | } |
| 1590 | |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1591 | static void CreateFPToFPCallLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 1592 | DCHECK_EQ(invoke->GetNumberOfArguments(), 1U); |
| 1593 | DCHECK(Primitive::IsFloatingPointType(invoke->InputAt(0)->GetType())); |
| 1594 | DCHECK(Primitive::IsFloatingPointType(invoke->GetType())); |
| 1595 | |
| 1596 | LocationSummary* const locations = new (arena) LocationSummary(invoke, |
Serban Constantinescu | 54ff482 | 2016-07-07 18:03:19 +0100 | [diff] [blame] | 1597 | LocationSummary::kCallOnMainOnly, |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1598 | kIntrinsified); |
| 1599 | InvokeRuntimeCallingConvention calling_convention; |
| 1600 | |
| 1601 | locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0))); |
| 1602 | locations->SetOut(calling_convention.GetReturnLocation(invoke->GetType())); |
| 1603 | } |
| 1604 | |
| 1605 | static void CreateFPFPToFPCallLocations(ArenaAllocator* arena, HInvoke* invoke) { |
| 1606 | DCHECK_EQ(invoke->GetNumberOfArguments(), 2U); |
| 1607 | DCHECK(Primitive::IsFloatingPointType(invoke->InputAt(0)->GetType())); |
| 1608 | DCHECK(Primitive::IsFloatingPointType(invoke->InputAt(1)->GetType())); |
| 1609 | DCHECK(Primitive::IsFloatingPointType(invoke->GetType())); |
| 1610 | |
| 1611 | LocationSummary* const locations = new (arena) LocationSummary(invoke, |
Serban Constantinescu | 54ff482 | 2016-07-07 18:03:19 +0100 | [diff] [blame] | 1612 | LocationSummary::kCallOnMainOnly, |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1613 | kIntrinsified); |
| 1614 | InvokeRuntimeCallingConvention calling_convention; |
| 1615 | |
| 1616 | locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0))); |
| 1617 | locations->SetInAt(1, LocationFrom(calling_convention.GetFpuRegisterAt(1))); |
| 1618 | locations->SetOut(calling_convention.GetReturnLocation(invoke->GetType())); |
| 1619 | } |
| 1620 | |
| 1621 | static void GenFPToFPCall(HInvoke* invoke, |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1622 | CodeGeneratorARM64* codegen, |
| 1623 | QuickEntrypointEnum entry) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1624 | codegen->InvokeRuntime(entry, invoke, invoke->GetDexPc()); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1625 | } |
| 1626 | |
| 1627 | void IntrinsicLocationsBuilderARM64::VisitMathCos(HInvoke* invoke) { |
| 1628 | CreateFPToFPCallLocations(arena_, invoke); |
| 1629 | } |
| 1630 | |
| 1631 | void IntrinsicCodeGeneratorARM64::VisitMathCos(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1632 | GenFPToFPCall(invoke, codegen_, kQuickCos); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1633 | } |
| 1634 | |
| 1635 | void IntrinsicLocationsBuilderARM64::VisitMathSin(HInvoke* invoke) { |
| 1636 | CreateFPToFPCallLocations(arena_, invoke); |
| 1637 | } |
| 1638 | |
| 1639 | void IntrinsicCodeGeneratorARM64::VisitMathSin(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1640 | GenFPToFPCall(invoke, codegen_, kQuickSin); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1641 | } |
| 1642 | |
| 1643 | void IntrinsicLocationsBuilderARM64::VisitMathAcos(HInvoke* invoke) { |
| 1644 | CreateFPToFPCallLocations(arena_, invoke); |
| 1645 | } |
| 1646 | |
| 1647 | void IntrinsicCodeGeneratorARM64::VisitMathAcos(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1648 | GenFPToFPCall(invoke, codegen_, kQuickAcos); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | void IntrinsicLocationsBuilderARM64::VisitMathAsin(HInvoke* invoke) { |
| 1652 | CreateFPToFPCallLocations(arena_, invoke); |
| 1653 | } |
| 1654 | |
| 1655 | void IntrinsicCodeGeneratorARM64::VisitMathAsin(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1656 | GenFPToFPCall(invoke, codegen_, kQuickAsin); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1657 | } |
| 1658 | |
| 1659 | void IntrinsicLocationsBuilderARM64::VisitMathAtan(HInvoke* invoke) { |
| 1660 | CreateFPToFPCallLocations(arena_, invoke); |
| 1661 | } |
| 1662 | |
| 1663 | void IntrinsicCodeGeneratorARM64::VisitMathAtan(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1664 | GenFPToFPCall(invoke, codegen_, kQuickAtan); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1665 | } |
| 1666 | |
| 1667 | void IntrinsicLocationsBuilderARM64::VisitMathCbrt(HInvoke* invoke) { |
| 1668 | CreateFPToFPCallLocations(arena_, invoke); |
| 1669 | } |
| 1670 | |
| 1671 | void IntrinsicCodeGeneratorARM64::VisitMathCbrt(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1672 | GenFPToFPCall(invoke, codegen_, kQuickCbrt); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1673 | } |
| 1674 | |
| 1675 | void IntrinsicLocationsBuilderARM64::VisitMathCosh(HInvoke* invoke) { |
| 1676 | CreateFPToFPCallLocations(arena_, invoke); |
| 1677 | } |
| 1678 | |
| 1679 | void IntrinsicCodeGeneratorARM64::VisitMathCosh(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1680 | GenFPToFPCall(invoke, codegen_, kQuickCosh); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1681 | } |
| 1682 | |
| 1683 | void IntrinsicLocationsBuilderARM64::VisitMathExp(HInvoke* invoke) { |
| 1684 | CreateFPToFPCallLocations(arena_, invoke); |
| 1685 | } |
| 1686 | |
| 1687 | void IntrinsicCodeGeneratorARM64::VisitMathExp(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1688 | GenFPToFPCall(invoke, codegen_, kQuickExp); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | void IntrinsicLocationsBuilderARM64::VisitMathExpm1(HInvoke* invoke) { |
| 1692 | CreateFPToFPCallLocations(arena_, invoke); |
| 1693 | } |
| 1694 | |
| 1695 | void IntrinsicCodeGeneratorARM64::VisitMathExpm1(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1696 | GenFPToFPCall(invoke, codegen_, kQuickExpm1); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1697 | } |
| 1698 | |
| 1699 | void IntrinsicLocationsBuilderARM64::VisitMathLog(HInvoke* invoke) { |
| 1700 | CreateFPToFPCallLocations(arena_, invoke); |
| 1701 | } |
| 1702 | |
| 1703 | void IntrinsicCodeGeneratorARM64::VisitMathLog(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1704 | GenFPToFPCall(invoke, codegen_, kQuickLog); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1705 | } |
| 1706 | |
| 1707 | void IntrinsicLocationsBuilderARM64::VisitMathLog10(HInvoke* invoke) { |
| 1708 | CreateFPToFPCallLocations(arena_, invoke); |
| 1709 | } |
| 1710 | |
| 1711 | void IntrinsicCodeGeneratorARM64::VisitMathLog10(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1712 | GenFPToFPCall(invoke, codegen_, kQuickLog10); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1713 | } |
| 1714 | |
| 1715 | void IntrinsicLocationsBuilderARM64::VisitMathSinh(HInvoke* invoke) { |
| 1716 | CreateFPToFPCallLocations(arena_, invoke); |
| 1717 | } |
| 1718 | |
| 1719 | void IntrinsicCodeGeneratorARM64::VisitMathSinh(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1720 | GenFPToFPCall(invoke, codegen_, kQuickSinh); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1721 | } |
| 1722 | |
| 1723 | void IntrinsicLocationsBuilderARM64::VisitMathTan(HInvoke* invoke) { |
| 1724 | CreateFPToFPCallLocations(arena_, invoke); |
| 1725 | } |
| 1726 | |
| 1727 | void IntrinsicCodeGeneratorARM64::VisitMathTan(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1728 | GenFPToFPCall(invoke, codegen_, kQuickTan); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1729 | } |
| 1730 | |
| 1731 | void IntrinsicLocationsBuilderARM64::VisitMathTanh(HInvoke* invoke) { |
| 1732 | CreateFPToFPCallLocations(arena_, invoke); |
| 1733 | } |
| 1734 | |
| 1735 | void IntrinsicCodeGeneratorARM64::VisitMathTanh(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1736 | GenFPToFPCall(invoke, codegen_, kQuickTanh); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1737 | } |
| 1738 | |
| 1739 | void IntrinsicLocationsBuilderARM64::VisitMathAtan2(HInvoke* invoke) { |
| 1740 | CreateFPFPToFPCallLocations(arena_, invoke); |
| 1741 | } |
| 1742 | |
| 1743 | void IntrinsicCodeGeneratorARM64::VisitMathAtan2(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1744 | GenFPToFPCall(invoke, codegen_, kQuickAtan2); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1745 | } |
| 1746 | |
| 1747 | void IntrinsicLocationsBuilderARM64::VisitMathHypot(HInvoke* invoke) { |
| 1748 | CreateFPFPToFPCallLocations(arena_, invoke); |
| 1749 | } |
| 1750 | |
| 1751 | void IntrinsicCodeGeneratorARM64::VisitMathHypot(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1752 | GenFPToFPCall(invoke, codegen_, kQuickHypot); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1753 | } |
| 1754 | |
| 1755 | void IntrinsicLocationsBuilderARM64::VisitMathNextAfter(HInvoke* invoke) { |
| 1756 | CreateFPFPToFPCallLocations(arena_, invoke); |
| 1757 | } |
| 1758 | |
| 1759 | void IntrinsicCodeGeneratorARM64::VisitMathNextAfter(HInvoke* invoke) { |
Serban Constantinescu | 22f81d3 | 2016-02-18 16:06:31 +0000 | [diff] [blame] | 1760 | GenFPToFPCall(invoke, codegen_, kQuickNextAfter); |
Anton Kirilov | 02fc24e | 2016-01-20 16:48:19 +0000 | [diff] [blame] | 1761 | } |
| 1762 | |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1763 | void IntrinsicLocationsBuilderARM64::VisitStringGetCharsNoCheck(HInvoke* invoke) { |
| 1764 | LocationSummary* locations = new (arena_) LocationSummary(invoke, |
| 1765 | LocationSummary::kNoCall, |
| 1766 | kIntrinsified); |
| 1767 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1768 | locations->SetInAt(1, Location::RequiresRegister()); |
| 1769 | locations->SetInAt(2, Location::RequiresRegister()); |
| 1770 | locations->SetInAt(3, Location::RequiresRegister()); |
| 1771 | locations->SetInAt(4, Location::RequiresRegister()); |
| 1772 | |
| 1773 | locations->AddTemp(Location::RequiresRegister()); |
| 1774 | locations->AddTemp(Location::RequiresRegister()); |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1775 | locations->AddTemp(Location::RequiresRegister()); |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1776 | } |
| 1777 | |
| 1778 | void IntrinsicCodeGeneratorARM64::VisitStringGetCharsNoCheck(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1779 | MacroAssembler* masm = GetVIXLAssembler(); |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1780 | LocationSummary* locations = invoke->GetLocations(); |
| 1781 | |
| 1782 | // Check assumption that sizeof(Char) is 2 (used in scaling below). |
| 1783 | const size_t char_size = Primitive::ComponentSize(Primitive::kPrimChar); |
| 1784 | DCHECK_EQ(char_size, 2u); |
| 1785 | |
| 1786 | // Location of data in char array buffer. |
| 1787 | const uint32_t data_offset = mirror::Array::DataOffset(char_size).Uint32Value(); |
| 1788 | |
| 1789 | // Location of char array data in string. |
| 1790 | const uint32_t value_offset = mirror::String::ValueOffset().Uint32Value(); |
| 1791 | |
| 1792 | // void getCharsNoCheck(int srcBegin, int srcEnd, char[] dst, int dstBegin); |
| 1793 | // Since getChars() calls getCharsNoCheck() - we use registers rather than constants. |
| 1794 | Register srcObj = XRegisterFrom(locations->InAt(0)); |
| 1795 | Register srcBegin = XRegisterFrom(locations->InAt(1)); |
| 1796 | Register srcEnd = XRegisterFrom(locations->InAt(2)); |
| 1797 | Register dstObj = XRegisterFrom(locations->InAt(3)); |
| 1798 | Register dstBegin = XRegisterFrom(locations->InAt(4)); |
| 1799 | |
| 1800 | Register src_ptr = XRegisterFrom(locations->GetTemp(0)); |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1801 | Register num_chr = XRegisterFrom(locations->GetTemp(1)); |
| 1802 | Register tmp1 = XRegisterFrom(locations->GetTemp(2)); |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1803 | |
| 1804 | UseScratchRegisterScope temps(masm); |
| 1805 | Register dst_ptr = temps.AcquireX(); |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1806 | Register tmp2 = temps.AcquireX(); |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1807 | |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1808 | // src address to copy from. |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1809 | __ Add(src_ptr, srcObj, Operand(value_offset)); |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1810 | __ Add(src_ptr, src_ptr, Operand(srcBegin, LSL, 1)); |
| 1811 | |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1812 | // dst address start to copy to. |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1813 | __ Add(dst_ptr, dstObj, Operand(data_offset)); |
| 1814 | __ Add(dst_ptr, dst_ptr, Operand(dstBegin, LSL, 1)); |
| 1815 | |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1816 | __ Sub(num_chr, srcEnd, srcBegin); |
| 1817 | |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1818 | // Do the copy. |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1819 | vixl::aarch64::Label loop; |
| 1820 | vixl::aarch64::Label done; |
| 1821 | vixl::aarch64::Label remainder; |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1822 | |
| 1823 | // Early out for valid zero-length retrievals. |
| 1824 | __ Cbz(num_chr, &done); |
| 1825 | |
| 1826 | // Save repairing the value of num_chr on the < 8 character path. |
| 1827 | __ Subs(tmp1, num_chr, 8); |
| 1828 | __ B(lt, &remainder); |
| 1829 | |
| 1830 | // Keep the result of the earlier subs, we are going to fetch at least 8 characters. |
| 1831 | __ Mov(num_chr, tmp1); |
| 1832 | |
| 1833 | // Main loop used for longer fetches loads and stores 8x16-bit characters at a time. |
| 1834 | // (Unaligned addresses are acceptable here and not worth inlining extra code to rectify.) |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1835 | __ Bind(&loop); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1836 | __ Ldp(tmp1, tmp2, MemOperand(src_ptr, char_size * 8, PostIndex)); |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1837 | __ Subs(num_chr, num_chr, 8); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1838 | __ Stp(tmp1, tmp2, MemOperand(dst_ptr, char_size * 8, PostIndex)); |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1839 | __ B(ge, &loop); |
| 1840 | |
| 1841 | __ Adds(num_chr, num_chr, 8); |
| 1842 | __ B(eq, &done); |
| 1843 | |
| 1844 | // Main loop for < 8 character case and remainder handling. Loads and stores one |
| 1845 | // 16-bit Java character at a time. |
| 1846 | __ Bind(&remainder); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1847 | __ Ldrh(tmp1, MemOperand(src_ptr, char_size, PostIndex)); |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1848 | __ Subs(num_chr, num_chr, 1); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1849 | __ Strh(tmp1, MemOperand(dst_ptr, char_size, PostIndex)); |
Scott Wakeling | df109d9 | 2016-04-22 11:35:56 +0100 | [diff] [blame] | 1850 | __ B(gt, &remainder); |
| 1851 | |
Tim Zhang | 25abd6c | 2016-01-19 23:39:24 +0800 | [diff] [blame] | 1852 | __ Bind(&done); |
| 1853 | } |
| 1854 | |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1855 | // Mirrors ARRAYCOPY_SHORT_CHAR_ARRAY_THRESHOLD in libcore, so we can choose to use the native |
| 1856 | // implementation there for longer copy lengths. |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 1857 | static constexpr int32_t kSystemArrayCopyCharThreshold = 32; |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1858 | |
| 1859 | static void SetSystemArrayCopyLocationRequires(LocationSummary* locations, |
| 1860 | uint32_t at, |
| 1861 | HInstruction* input) { |
| 1862 | HIntConstant* const_input = input->AsIntConstant(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1863 | if (const_input != nullptr && !vixl::aarch64::Assembler::IsImmAddSub(const_input->GetValue())) { |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1864 | locations->SetInAt(at, Location::RequiresRegister()); |
| 1865 | } else { |
| 1866 | locations->SetInAt(at, Location::RegisterOrConstant(input)); |
| 1867 | } |
| 1868 | } |
| 1869 | |
| 1870 | void IntrinsicLocationsBuilderARM64::VisitSystemArrayCopyChar(HInvoke* invoke) { |
| 1871 | // Check to see if we have known failures that will cause us to have to bail out |
| 1872 | // to the runtime, and just generate the runtime call directly. |
| 1873 | HIntConstant* src_pos = invoke->InputAt(1)->AsIntConstant(); |
| 1874 | HIntConstant* dst_pos = invoke->InputAt(3)->AsIntConstant(); |
| 1875 | |
| 1876 | // The positions must be non-negative. |
| 1877 | if ((src_pos != nullptr && src_pos->GetValue() < 0) || |
| 1878 | (dst_pos != nullptr && dst_pos->GetValue() < 0)) { |
| 1879 | // We will have to fail anyways. |
| 1880 | return; |
| 1881 | } |
| 1882 | |
| 1883 | // The length must be >= 0 and not so long that we would (currently) prefer libcore's |
| 1884 | // native implementation. |
| 1885 | HIntConstant* length = invoke->InputAt(4)->AsIntConstant(); |
| 1886 | if (length != nullptr) { |
| 1887 | int32_t len = length->GetValue(); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 1888 | if (len < 0 || len > kSystemArrayCopyCharThreshold) { |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1889 | // Just call as normal. |
| 1890 | return; |
| 1891 | } |
| 1892 | } |
| 1893 | |
| 1894 | ArenaAllocator* allocator = invoke->GetBlock()->GetGraph()->GetArena(); |
| 1895 | LocationSummary* locations = new (allocator) LocationSummary(invoke, |
| 1896 | LocationSummary::kCallOnSlowPath, |
| 1897 | kIntrinsified); |
| 1898 | // arraycopy(char[] src, int src_pos, char[] dst, int dst_pos, int length). |
| 1899 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1900 | SetSystemArrayCopyLocationRequires(locations, 1, invoke->InputAt(1)); |
| 1901 | locations->SetInAt(2, Location::RequiresRegister()); |
| 1902 | SetSystemArrayCopyLocationRequires(locations, 3, invoke->InputAt(3)); |
| 1903 | SetSystemArrayCopyLocationRequires(locations, 4, invoke->InputAt(4)); |
| 1904 | |
| 1905 | locations->AddTemp(Location::RequiresRegister()); |
| 1906 | locations->AddTemp(Location::RequiresRegister()); |
| 1907 | locations->AddTemp(Location::RequiresRegister()); |
| 1908 | } |
| 1909 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1910 | static void CheckSystemArrayCopyPosition(MacroAssembler* masm, |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1911 | const Location& pos, |
| 1912 | const Register& input, |
| 1913 | const Location& length, |
| 1914 | SlowPathCodeARM64* slow_path, |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1915 | const Register& temp, |
| 1916 | bool length_is_input_length = false) { |
| 1917 | const int32_t length_offset = mirror::Array::LengthOffset().Int32Value(); |
| 1918 | if (pos.IsConstant()) { |
| 1919 | int32_t pos_const = pos.GetConstant()->AsIntConstant()->GetValue(); |
| 1920 | if (pos_const == 0) { |
| 1921 | if (!length_is_input_length) { |
| 1922 | // Check that length(input) >= length. |
| 1923 | __ Ldr(temp, MemOperand(input, length_offset)); |
| 1924 | __ Cmp(temp, OperandFrom(length, Primitive::kPrimInt)); |
| 1925 | __ B(slow_path->GetEntryLabel(), lt); |
| 1926 | } |
| 1927 | } else { |
| 1928 | // Check that length(input) >= pos. |
Nicolas Geoffray | fea1abd | 2016-07-06 12:09:12 +0100 | [diff] [blame] | 1929 | __ Ldr(temp, MemOperand(input, length_offset)); |
| 1930 | __ Subs(temp, temp, pos_const); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1931 | __ B(slow_path->GetEntryLabel(), lt); |
| 1932 | |
| 1933 | // Check that (length(input) - pos) >= length. |
| 1934 | __ Cmp(temp, OperandFrom(length, Primitive::kPrimInt)); |
| 1935 | __ B(slow_path->GetEntryLabel(), lt); |
| 1936 | } |
| 1937 | } else if (length_is_input_length) { |
| 1938 | // The only way the copy can succeed is if pos is zero. |
| 1939 | __ Cbnz(WRegisterFrom(pos), slow_path->GetEntryLabel()); |
| 1940 | } else { |
| 1941 | // Check that pos >= 0. |
| 1942 | Register pos_reg = WRegisterFrom(pos); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1943 | __ Tbnz(pos_reg, pos_reg.GetSizeInBits() - 1, slow_path->GetEntryLabel()); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1944 | |
| 1945 | // Check that pos <= length(input) && (length(input) - pos) >= length. |
| 1946 | __ Ldr(temp, MemOperand(input, length_offset)); |
| 1947 | __ Subs(temp, temp, pos_reg); |
| 1948 | // Ccmp if length(input) >= pos, else definitely bail to slow path (N!=V == lt). |
| 1949 | __ Ccmp(temp, OperandFrom(length, Primitive::kPrimInt), NFlag, ge); |
| 1950 | __ B(slow_path->GetEntryLabel(), lt); |
| 1951 | } |
| 1952 | } |
| 1953 | |
| 1954 | // Compute base source address, base destination address, and end source address |
| 1955 | // for System.arraycopy* intrinsics. |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1956 | static void GenSystemArrayCopyAddresses(MacroAssembler* masm, |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1957 | Primitive::Type type, |
| 1958 | const Register& src, |
| 1959 | const Location& src_pos, |
| 1960 | const Register& dst, |
| 1961 | const Location& dst_pos, |
| 1962 | const Location& copy_length, |
| 1963 | const Register& src_base, |
| 1964 | const Register& dst_base, |
| 1965 | const Register& src_end) { |
| 1966 | DCHECK(type == Primitive::kPrimNot || type == Primitive::kPrimChar) |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1967 | << "Unexpected element type: " << type; |
| 1968 | const int32_t element_size = Primitive::ComponentSize(type); |
| 1969 | const int32_t element_size_shift = Primitive::ComponentSizeShift(type); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1970 | |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1971 | uint32_t data_offset = mirror::Array::DataOffset(element_size).Uint32Value(); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1972 | if (src_pos.IsConstant()) { |
| 1973 | int32_t constant = src_pos.GetConstant()->AsIntConstant()->GetValue(); |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1974 | __ Add(src_base, src, element_size * constant + data_offset); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1975 | } else { |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1976 | __ Add(src_base, src, data_offset); |
| 1977 | __ Add(src_base, src_base, Operand(XRegisterFrom(src_pos), LSL, element_size_shift)); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1978 | } |
| 1979 | |
| 1980 | if (dst_pos.IsConstant()) { |
| 1981 | int32_t constant = dst_pos.GetConstant()->AsIntConstant()->GetValue(); |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1982 | __ Add(dst_base, dst, element_size * constant + data_offset); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1983 | } else { |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1984 | __ Add(dst_base, dst, data_offset); |
| 1985 | __ Add(dst_base, dst_base, Operand(XRegisterFrom(dst_pos), LSL, element_size_shift)); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1986 | } |
| 1987 | |
| 1988 | if (copy_length.IsConstant()) { |
| 1989 | int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1990 | __ Add(src_end, src_base, element_size * constant); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1991 | } else { |
Roland Levillain | ebea3d2 | 2016-04-12 15:42:57 +0100 | [diff] [blame] | 1992 | __ Add(src_end, src_base, Operand(XRegisterFrom(copy_length), LSL, element_size_shift)); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1993 | } |
| 1994 | } |
| 1995 | |
| 1996 | void IntrinsicCodeGeneratorARM64::VisitSystemArrayCopyChar(HInvoke* invoke) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 1997 | MacroAssembler* masm = GetVIXLAssembler(); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 1998 | LocationSummary* locations = invoke->GetLocations(); |
| 1999 | Register src = XRegisterFrom(locations->InAt(0)); |
| 2000 | Location src_pos = locations->InAt(1); |
| 2001 | Register dst = XRegisterFrom(locations->InAt(2)); |
| 2002 | Location dst_pos = locations->InAt(3); |
| 2003 | Location length = locations->InAt(4); |
| 2004 | |
| 2005 | SlowPathCodeARM64* slow_path = new (GetAllocator()) IntrinsicSlowPathARM64(invoke); |
| 2006 | codegen_->AddSlowPath(slow_path); |
| 2007 | |
| 2008 | // If source and destination are the same, take the slow path. Overlapping copy regions must be |
| 2009 | // copied in reverse and we can't know in all cases if it's needed. |
| 2010 | __ Cmp(src, dst); |
| 2011 | __ B(slow_path->GetEntryLabel(), eq); |
| 2012 | |
| 2013 | // Bail out if the source is null. |
| 2014 | __ Cbz(src, slow_path->GetEntryLabel()); |
| 2015 | |
| 2016 | // Bail out if the destination is null. |
| 2017 | __ Cbz(dst, slow_path->GetEntryLabel()); |
| 2018 | |
| 2019 | if (!length.IsConstant()) { |
| 2020 | // If the length is negative, bail out. |
| 2021 | __ Tbnz(WRegisterFrom(length), kWRegSize - 1, slow_path->GetEntryLabel()); |
| 2022 | // If the length > 32 then (currently) prefer libcore's native implementation. |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2023 | __ Cmp(WRegisterFrom(length), kSystemArrayCopyCharThreshold); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 2024 | __ B(slow_path->GetEntryLabel(), gt); |
| 2025 | } else { |
| 2026 | // We have already checked in the LocationsBuilder for the constant case. |
| 2027 | DCHECK_GE(length.GetConstant()->AsIntConstant()->GetValue(), 0); |
| 2028 | DCHECK_LE(length.GetConstant()->AsIntConstant()->GetValue(), 32); |
| 2029 | } |
| 2030 | |
| 2031 | Register src_curr_addr = WRegisterFrom(locations->GetTemp(0)); |
| 2032 | Register dst_curr_addr = WRegisterFrom(locations->GetTemp(1)); |
| 2033 | Register src_stop_addr = WRegisterFrom(locations->GetTemp(2)); |
| 2034 | |
| 2035 | CheckSystemArrayCopyPosition(masm, |
| 2036 | src_pos, |
| 2037 | src, |
| 2038 | length, |
| 2039 | slow_path, |
| 2040 | src_curr_addr, |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 2041 | false); |
| 2042 | |
| 2043 | CheckSystemArrayCopyPosition(masm, |
| 2044 | dst_pos, |
| 2045 | dst, |
| 2046 | length, |
| 2047 | slow_path, |
| 2048 | src_curr_addr, |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 2049 | false); |
| 2050 | |
| 2051 | src_curr_addr = src_curr_addr.X(); |
| 2052 | dst_curr_addr = dst_curr_addr.X(); |
| 2053 | src_stop_addr = src_stop_addr.X(); |
| 2054 | |
| 2055 | GenSystemArrayCopyAddresses(masm, |
| 2056 | Primitive::kPrimChar, |
| 2057 | src, |
| 2058 | src_pos, |
| 2059 | dst, |
| 2060 | dst_pos, |
| 2061 | length, |
| 2062 | src_curr_addr, |
| 2063 | dst_curr_addr, |
| 2064 | src_stop_addr); |
| 2065 | |
| 2066 | // Iterate over the arrays and do a raw copy of the chars. |
| 2067 | const int32_t char_size = Primitive::ComponentSize(Primitive::kPrimChar); |
| 2068 | UseScratchRegisterScope temps(masm); |
| 2069 | Register tmp = temps.AcquireW(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 2070 | vixl::aarch64::Label loop, done; |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 2071 | __ Bind(&loop); |
| 2072 | __ Cmp(src_curr_addr, src_stop_addr); |
| 2073 | __ B(&done, eq); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 2074 | __ Ldrh(tmp, MemOperand(src_curr_addr, char_size, PostIndex)); |
| 2075 | __ Strh(tmp, MemOperand(dst_curr_addr, char_size, PostIndex)); |
Scott Wakeling | d3d0da5 | 2016-02-29 15:17:20 +0000 | [diff] [blame] | 2076 | __ B(&loop); |
| 2077 | __ Bind(&done); |
| 2078 | |
| 2079 | __ Bind(slow_path->GetExitLabel()); |
| 2080 | } |
| 2081 | |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2082 | // We can choose to use the native implementation there for longer copy lengths. |
| 2083 | static constexpr int32_t kSystemArrayCopyThreshold = 128; |
| 2084 | |
| 2085 | // CodeGenerator::CreateSystemArrayCopyLocationSummary use three temporary registers. |
| 2086 | // We want to use two temporary registers in order to reduce the register pressure in arm64. |
| 2087 | // So we don't use the CodeGenerator::CreateSystemArrayCopyLocationSummary. |
| 2088 | void IntrinsicLocationsBuilderARM64::VisitSystemArrayCopy(HInvoke* invoke) { |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2089 | // The only read barrier implementation supporting the |
| 2090 | // SystemArrayCopy intrinsic is the Baker-style read barriers. |
| 2091 | if (kEmitCompilerReadBarrier && !kUseBakerReadBarrier) { |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 2092 | return; |
| 2093 | } |
| 2094 | |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2095 | // Check to see if we have known failures that will cause us to have to bail out |
| 2096 | // to the runtime, and just generate the runtime call directly. |
| 2097 | HIntConstant* src_pos = invoke->InputAt(1)->AsIntConstant(); |
| 2098 | HIntConstant* dest_pos = invoke->InputAt(3)->AsIntConstant(); |
| 2099 | |
| 2100 | // The positions must be non-negative. |
| 2101 | if ((src_pos != nullptr && src_pos->GetValue() < 0) || |
| 2102 | (dest_pos != nullptr && dest_pos->GetValue() < 0)) { |
| 2103 | // We will have to fail anyways. |
| 2104 | return; |
| 2105 | } |
| 2106 | |
| 2107 | // The length must be >= 0. |
| 2108 | HIntConstant* length = invoke->InputAt(4)->AsIntConstant(); |
| 2109 | if (length != nullptr) { |
| 2110 | int32_t len = length->GetValue(); |
| 2111 | if (len < 0 || len >= kSystemArrayCopyThreshold) { |
| 2112 | // Just call as normal. |
| 2113 | return; |
| 2114 | } |
| 2115 | } |
| 2116 | |
| 2117 | SystemArrayCopyOptimizations optimizations(invoke); |
| 2118 | |
| 2119 | if (optimizations.GetDestinationIsSource()) { |
| 2120 | if (src_pos != nullptr && dest_pos != nullptr && src_pos->GetValue() < dest_pos->GetValue()) { |
| 2121 | // We only support backward copying if source and destination are the same. |
| 2122 | return; |
| 2123 | } |
| 2124 | } |
| 2125 | |
| 2126 | if (optimizations.GetDestinationIsPrimitiveArray() || optimizations.GetSourceIsPrimitiveArray()) { |
| 2127 | // We currently don't intrinsify primitive copying. |
| 2128 | return; |
| 2129 | } |
| 2130 | |
| 2131 | ArenaAllocator* allocator = invoke->GetBlock()->GetGraph()->GetArena(); |
| 2132 | LocationSummary* locations = new (allocator) LocationSummary(invoke, |
| 2133 | LocationSummary::kCallOnSlowPath, |
| 2134 | kIntrinsified); |
| 2135 | // arraycopy(Object src, int src_pos, Object dest, int dest_pos, int length). |
| 2136 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2137 | SetSystemArrayCopyLocationRequires(locations, 1, invoke->InputAt(1)); |
| 2138 | locations->SetInAt(2, Location::RequiresRegister()); |
| 2139 | SetSystemArrayCopyLocationRequires(locations, 3, invoke->InputAt(3)); |
| 2140 | SetSystemArrayCopyLocationRequires(locations, 4, invoke->InputAt(4)); |
| 2141 | |
| 2142 | locations->AddTemp(Location::RequiresRegister()); |
| 2143 | locations->AddTemp(Location::RequiresRegister()); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2144 | if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
| 2145 | // Temporary register IP0, obtained from the VIXL scratch register |
| 2146 | // pool, cannot be used in ReadBarrierSystemArrayCopySlowPathARM64 |
| 2147 | // (because that register is clobbered by ReadBarrierMarkRegX |
| 2148 | // entry points). Get an extra temporary register from the |
| 2149 | // register allocator. |
| 2150 | locations->AddTemp(Location::RequiresRegister()); |
| 2151 | } |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2152 | } |
| 2153 | |
| 2154 | void IntrinsicCodeGeneratorARM64::VisitSystemArrayCopy(HInvoke* invoke) { |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2155 | // The only read barrier implementation supporting the |
| 2156 | // SystemArrayCopy intrinsic is the Baker-style read barriers. |
| 2157 | DCHECK(!kEmitCompilerReadBarrier || kUseBakerReadBarrier); |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 2158 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 2159 | MacroAssembler* masm = GetVIXLAssembler(); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2160 | LocationSummary* locations = invoke->GetLocations(); |
| 2161 | |
| 2162 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 2163 | uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value(); |
| 2164 | uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value(); |
| 2165 | uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value(); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2166 | uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value(); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2167 | |
| 2168 | Register src = XRegisterFrom(locations->InAt(0)); |
| 2169 | Location src_pos = locations->InAt(1); |
| 2170 | Register dest = XRegisterFrom(locations->InAt(2)); |
| 2171 | Location dest_pos = locations->InAt(3); |
| 2172 | Location length = locations->InAt(4); |
| 2173 | Register temp1 = WRegisterFrom(locations->GetTemp(0)); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2174 | Location temp1_loc = LocationFrom(temp1); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2175 | Register temp2 = WRegisterFrom(locations->GetTemp(1)); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2176 | Location temp2_loc = LocationFrom(temp2); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2177 | |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2178 | SlowPathCodeARM64* intrinsic_slow_path = new (GetAllocator()) IntrinsicSlowPathARM64(invoke); |
| 2179 | codegen_->AddSlowPath(intrinsic_slow_path); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2180 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 2181 | vixl::aarch64::Label conditions_on_positions_validated; |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2182 | SystemArrayCopyOptimizations optimizations(invoke); |
| 2183 | |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2184 | // If source and destination are the same, we go to slow path if we need to do |
| 2185 | // forward copying. |
| 2186 | if (src_pos.IsConstant()) { |
| 2187 | int32_t src_pos_constant = src_pos.GetConstant()->AsIntConstant()->GetValue(); |
| 2188 | if (dest_pos.IsConstant()) { |
Nicolas Geoffray | 9f65db8 | 2016-07-07 12:07:42 +0100 | [diff] [blame] | 2189 | int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); |
| 2190 | if (optimizations.GetDestinationIsSource()) { |
| 2191 | // Checked when building locations. |
| 2192 | DCHECK_GE(src_pos_constant, dest_pos_constant); |
| 2193 | } else if (src_pos_constant < dest_pos_constant) { |
| 2194 | __ Cmp(src, dest); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2195 | __ B(intrinsic_slow_path->GetEntryLabel(), eq); |
Nicolas Geoffray | 9f65db8 | 2016-07-07 12:07:42 +0100 | [diff] [blame] | 2196 | } |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2197 | // Checked when building locations. |
| 2198 | DCHECK(!optimizations.GetDestinationIsSource() |
| 2199 | || (src_pos_constant >= dest_pos.GetConstant()->AsIntConstant()->GetValue())); |
| 2200 | } else { |
| 2201 | if (!optimizations.GetDestinationIsSource()) { |
Nicolas Geoffray | 9f65db8 | 2016-07-07 12:07:42 +0100 | [diff] [blame] | 2202 | __ Cmp(src, dest); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2203 | __ B(&conditions_on_positions_validated, ne); |
| 2204 | } |
| 2205 | __ Cmp(WRegisterFrom(dest_pos), src_pos_constant); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2206 | __ B(intrinsic_slow_path->GetEntryLabel(), gt); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2207 | } |
| 2208 | } else { |
| 2209 | if (!optimizations.GetDestinationIsSource()) { |
Nicolas Geoffray | 9f65db8 | 2016-07-07 12:07:42 +0100 | [diff] [blame] | 2210 | __ Cmp(src, dest); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2211 | __ B(&conditions_on_positions_validated, ne); |
| 2212 | } |
| 2213 | __ Cmp(RegisterFrom(src_pos, invoke->InputAt(1)->GetType()), |
| 2214 | OperandFrom(dest_pos, invoke->InputAt(3)->GetType())); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2215 | __ B(intrinsic_slow_path->GetEntryLabel(), lt); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2216 | } |
| 2217 | |
| 2218 | __ Bind(&conditions_on_positions_validated); |
| 2219 | |
| 2220 | if (!optimizations.GetSourceIsNotNull()) { |
| 2221 | // Bail out if the source is null. |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2222 | __ Cbz(src, intrinsic_slow_path->GetEntryLabel()); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2223 | } |
| 2224 | |
| 2225 | if (!optimizations.GetDestinationIsNotNull() && !optimizations.GetDestinationIsSource()) { |
| 2226 | // Bail out if the destination is null. |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2227 | __ Cbz(dest, intrinsic_slow_path->GetEntryLabel()); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2228 | } |
| 2229 | |
| 2230 | // We have already checked in the LocationsBuilder for the constant case. |
| 2231 | if (!length.IsConstant() && |
| 2232 | !optimizations.GetCountIsSourceLength() && |
| 2233 | !optimizations.GetCountIsDestinationLength()) { |
| 2234 | // If the length is negative, bail out. |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2235 | __ Tbnz(WRegisterFrom(length), kWRegSize - 1, intrinsic_slow_path->GetEntryLabel()); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2236 | // If the length >= 128 then (currently) prefer native implementation. |
| 2237 | __ Cmp(WRegisterFrom(length), kSystemArrayCopyThreshold); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2238 | __ B(intrinsic_slow_path->GetEntryLabel(), ge); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2239 | } |
| 2240 | // Validity checks: source. |
| 2241 | CheckSystemArrayCopyPosition(masm, |
| 2242 | src_pos, |
| 2243 | src, |
| 2244 | length, |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2245 | intrinsic_slow_path, |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2246 | temp1, |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2247 | optimizations.GetCountIsSourceLength()); |
| 2248 | |
| 2249 | // Validity checks: dest. |
| 2250 | CheckSystemArrayCopyPosition(masm, |
| 2251 | dest_pos, |
| 2252 | dest, |
| 2253 | length, |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2254 | intrinsic_slow_path, |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2255 | temp1, |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2256 | optimizations.GetCountIsDestinationLength()); |
| 2257 | { |
| 2258 | // We use a block to end the scratch scope before the write barrier, thus |
| 2259 | // freeing the temporary registers so they can be used in `MarkGCCard`. |
| 2260 | UseScratchRegisterScope temps(masm); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2261 | // Note: Because it is acquired from VIXL's scratch register pool, |
| 2262 | // `temp3` might be IP0, and thus cannot be used as `ref` argument |
| 2263 | // of CodeGeneratorARM64::GenerateFieldLoadWithBakerReadBarrier |
| 2264 | // calls below (see ReadBarrierMarkSlowPathARM64 for more details). |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2265 | Register temp3 = temps.AcquireW(); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2266 | |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2267 | if (!optimizations.GetDoesNotNeedTypeCheck()) { |
| 2268 | // Check whether all elements of the source array are assignable to the component |
| 2269 | // type of the destination array. We do two checks: the classes are the same, |
| 2270 | // or the destination is Object[]. If none of these checks succeed, we go to the |
| 2271 | // slow path. |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2272 | |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2273 | if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
| 2274 | if (!optimizations.GetSourceIsNonPrimitiveArray()) { |
| 2275 | // /* HeapReference<Class> */ temp1 = src->klass_ |
| 2276 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2277 | temp1_loc, |
| 2278 | src.W(), |
| 2279 | class_offset, |
| 2280 | temp2, |
| 2281 | /* needs_null_check */ false, |
| 2282 | /* use_load_acquire */ false); |
| 2283 | // Bail out if the source is not a non primitive array. |
| 2284 | // /* HeapReference<Class> */ temp1 = temp1->component_type_ |
| 2285 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2286 | temp1_loc, |
| 2287 | temp1, |
| 2288 | component_offset, |
| 2289 | temp2, |
| 2290 | /* needs_null_check */ false, |
| 2291 | /* use_load_acquire */ false); |
| 2292 | __ Cbz(temp1, intrinsic_slow_path->GetEntryLabel()); |
| 2293 | // If heap poisoning is enabled, `temp1` has been unpoisoned |
| 2294 | // by the the previous call to GenerateFieldLoadWithBakerReadBarrier. |
| 2295 | // /* uint16_t */ temp1 = static_cast<uint16>(temp1->primitive_type_); |
| 2296 | __ Ldrh(temp1, HeapOperand(temp1, primitive_offset)); |
| 2297 | static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot"); |
| 2298 | __ Cbnz(temp1, intrinsic_slow_path->GetEntryLabel()); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2299 | } |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2300 | |
| 2301 | // /* HeapReference<Class> */ temp1 = dest->klass_ |
| 2302 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2303 | temp1_loc, |
| 2304 | dest.W(), |
| 2305 | class_offset, |
| 2306 | temp2, |
| 2307 | /* needs_null_check */ false, |
| 2308 | /* use_load_acquire */ false); |
| 2309 | |
| 2310 | if (!optimizations.GetDestinationIsNonPrimitiveArray()) { |
| 2311 | // Bail out if the destination is not a non primitive array. |
| 2312 | // |
| 2313 | // Register `temp1` is not trashed by the read barrier emitted |
| 2314 | // by GenerateFieldLoadWithBakerReadBarrier below, as that |
| 2315 | // method produces a call to a ReadBarrierMarkRegX entry point, |
| 2316 | // which saves all potentially live registers, including |
| 2317 | // temporaries such a `temp1`. |
| 2318 | // /* HeapReference<Class> */ temp2 = temp1->component_type_ |
| 2319 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2320 | temp2_loc, |
| 2321 | temp1, |
| 2322 | component_offset, |
| 2323 | temp3, |
| 2324 | /* needs_null_check */ false, |
| 2325 | /* use_load_acquire */ false); |
| 2326 | __ Cbz(temp2, intrinsic_slow_path->GetEntryLabel()); |
| 2327 | // If heap poisoning is enabled, `temp2` has been unpoisoned |
| 2328 | // by the the previous call to GenerateFieldLoadWithBakerReadBarrier. |
| 2329 | // /* uint16_t */ temp2 = static_cast<uint16>(temp2->primitive_type_); |
| 2330 | __ Ldrh(temp2, HeapOperand(temp2, primitive_offset)); |
| 2331 | static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot"); |
| 2332 | __ Cbnz(temp2, intrinsic_slow_path->GetEntryLabel()); |
| 2333 | } |
| 2334 | |
| 2335 | // For the same reason given earlier, `temp1` is not trashed by the |
| 2336 | // read barrier emitted by GenerateFieldLoadWithBakerReadBarrier below. |
| 2337 | // /* HeapReference<Class> */ temp2 = src->klass_ |
| 2338 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2339 | temp2_loc, |
| 2340 | src.W(), |
| 2341 | class_offset, |
| 2342 | temp3, |
| 2343 | /* needs_null_check */ false, |
| 2344 | /* use_load_acquire */ false); |
| 2345 | // Note: if heap poisoning is on, we are comparing two unpoisoned references here. |
| 2346 | __ Cmp(temp1, temp2); |
| 2347 | |
| 2348 | if (optimizations.GetDestinationIsTypedObjectArray()) { |
| 2349 | vixl::aarch64::Label do_copy; |
| 2350 | __ B(&do_copy, eq); |
| 2351 | // /* HeapReference<Class> */ temp1 = temp1->component_type_ |
| 2352 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2353 | temp1_loc, |
| 2354 | temp1, |
| 2355 | component_offset, |
| 2356 | temp2, |
| 2357 | /* needs_null_check */ false, |
| 2358 | /* use_load_acquire */ false); |
| 2359 | // /* HeapReference<Class> */ temp1 = temp1->super_class_ |
| 2360 | // We do not need to emit a read barrier for the following |
| 2361 | // heap reference load, as `temp1` is only used in a |
| 2362 | // comparison with null below, and this reference is not |
| 2363 | // kept afterwards. |
| 2364 | __ Ldr(temp1, HeapOperand(temp1, super_offset)); |
| 2365 | __ Cbnz(temp1, intrinsic_slow_path->GetEntryLabel()); |
| 2366 | __ Bind(&do_copy); |
| 2367 | } else { |
| 2368 | __ B(intrinsic_slow_path->GetEntryLabel(), ne); |
| 2369 | } |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2370 | } else { |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2371 | // Non read barrier code. |
| 2372 | |
| 2373 | // /* HeapReference<Class> */ temp1 = dest->klass_ |
| 2374 | __ Ldr(temp1, MemOperand(dest, class_offset)); |
| 2375 | // /* HeapReference<Class> */ temp2 = src->klass_ |
| 2376 | __ Ldr(temp2, MemOperand(src, class_offset)); |
| 2377 | bool did_unpoison = false; |
| 2378 | if (!optimizations.GetDestinationIsNonPrimitiveArray() || |
| 2379 | !optimizations.GetSourceIsNonPrimitiveArray()) { |
| 2380 | // One or two of the references need to be unpoisoned. Unpoison them |
| 2381 | // both to make the identity check valid. |
| 2382 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp1); |
| 2383 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp2); |
| 2384 | did_unpoison = true; |
| 2385 | } |
| 2386 | |
| 2387 | if (!optimizations.GetDestinationIsNonPrimitiveArray()) { |
| 2388 | // Bail out if the destination is not a non primitive array. |
| 2389 | // /* HeapReference<Class> */ temp3 = temp1->component_type_ |
| 2390 | __ Ldr(temp3, HeapOperand(temp1, component_offset)); |
| 2391 | __ Cbz(temp3, intrinsic_slow_path->GetEntryLabel()); |
| 2392 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp3); |
| 2393 | // /* uint16_t */ temp3 = static_cast<uint16>(temp3->primitive_type_); |
| 2394 | __ Ldrh(temp3, HeapOperand(temp3, primitive_offset)); |
| 2395 | static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot"); |
| 2396 | __ Cbnz(temp3, intrinsic_slow_path->GetEntryLabel()); |
| 2397 | } |
| 2398 | |
| 2399 | if (!optimizations.GetSourceIsNonPrimitiveArray()) { |
| 2400 | // Bail out if the source is not a non primitive array. |
| 2401 | // /* HeapReference<Class> */ temp3 = temp2->component_type_ |
| 2402 | __ Ldr(temp3, HeapOperand(temp2, component_offset)); |
| 2403 | __ Cbz(temp3, intrinsic_slow_path->GetEntryLabel()); |
| 2404 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp3); |
| 2405 | // /* uint16_t */ temp3 = static_cast<uint16>(temp3->primitive_type_); |
| 2406 | __ Ldrh(temp3, HeapOperand(temp3, primitive_offset)); |
| 2407 | static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot"); |
| 2408 | __ Cbnz(temp3, intrinsic_slow_path->GetEntryLabel()); |
| 2409 | } |
| 2410 | |
| 2411 | __ Cmp(temp1, temp2); |
| 2412 | |
| 2413 | if (optimizations.GetDestinationIsTypedObjectArray()) { |
| 2414 | vixl::aarch64::Label do_copy; |
| 2415 | __ B(&do_copy, eq); |
| 2416 | if (!did_unpoison) { |
| 2417 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp1); |
| 2418 | } |
| 2419 | // /* HeapReference<Class> */ temp1 = temp1->component_type_ |
| 2420 | __ Ldr(temp1, HeapOperand(temp1, component_offset)); |
| 2421 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp1); |
| 2422 | // /* HeapReference<Class> */ temp1 = temp1->super_class_ |
| 2423 | __ Ldr(temp1, HeapOperand(temp1, super_offset)); |
| 2424 | // No need to unpoison the result, we're comparing against null. |
| 2425 | __ Cbnz(temp1, intrinsic_slow_path->GetEntryLabel()); |
| 2426 | __ Bind(&do_copy); |
| 2427 | } else { |
| 2428 | __ B(intrinsic_slow_path->GetEntryLabel(), ne); |
| 2429 | } |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2430 | } |
| 2431 | } else if (!optimizations.GetSourceIsNonPrimitiveArray()) { |
| 2432 | DCHECK(optimizations.GetDestinationIsNonPrimitiveArray()); |
| 2433 | // Bail out if the source is not a non primitive array. |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2434 | if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
| 2435 | // /* HeapReference<Class> */ temp1 = src->klass_ |
| 2436 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2437 | temp1_loc, |
| 2438 | src.W(), |
| 2439 | class_offset, |
| 2440 | temp2, |
| 2441 | /* needs_null_check */ false, |
| 2442 | /* use_load_acquire */ false); |
| 2443 | // /* HeapReference<Class> */ temp2 = temp1->component_type_ |
| 2444 | codegen_->GenerateFieldLoadWithBakerReadBarrier(invoke, |
| 2445 | temp2_loc, |
| 2446 | temp1, |
| 2447 | component_offset, |
| 2448 | temp3, |
| 2449 | /* needs_null_check */ false, |
| 2450 | /* use_load_acquire */ false); |
| 2451 | __ Cbz(temp2, intrinsic_slow_path->GetEntryLabel()); |
| 2452 | // If heap poisoning is enabled, `temp2` has been unpoisoned |
| 2453 | // by the the previous call to GenerateFieldLoadWithBakerReadBarrier. |
| 2454 | } else { |
| 2455 | // /* HeapReference<Class> */ temp1 = src->klass_ |
| 2456 | __ Ldr(temp1, HeapOperand(src.W(), class_offset)); |
| 2457 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp1); |
| 2458 | // /* HeapReference<Class> */ temp2 = temp1->component_type_ |
| 2459 | __ Ldr(temp2, HeapOperand(temp1, component_offset)); |
| 2460 | __ Cbz(temp2, intrinsic_slow_path->GetEntryLabel()); |
| 2461 | codegen_->GetAssembler()->MaybeUnpoisonHeapReference(temp2); |
| 2462 | } |
| 2463 | // /* uint16_t */ temp2 = static_cast<uint16>(temp2->primitive_type_); |
| 2464 | __ Ldrh(temp2, HeapOperand(temp2, primitive_offset)); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2465 | static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot"); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2466 | __ Cbnz(temp2, intrinsic_slow_path->GetEntryLabel()); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2467 | } |
| 2468 | |
| 2469 | Register src_curr_addr = temp1.X(); |
| 2470 | Register dst_curr_addr = temp2.X(); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2471 | Register src_stop_addr; |
| 2472 | if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
| 2473 | // Temporary register IP0, obtained from the VIXL scratch |
| 2474 | // register pool as `temp3`, cannot be used in |
| 2475 | // ReadBarrierSystemArrayCopySlowPathARM64 (because that |
| 2476 | // register is clobbered by ReadBarrierMarkRegX entry points). |
| 2477 | // So another temporary register allocated by the register |
| 2478 | // allocator instead. |
| 2479 | DCHECK_EQ(LocationFrom(temp3).reg(), IP0); |
| 2480 | src_stop_addr = XRegisterFrom(locations->GetTemp(2)); |
| 2481 | } else { |
| 2482 | src_stop_addr = temp3.X(); |
| 2483 | } |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2484 | |
| 2485 | GenSystemArrayCopyAddresses(masm, |
| 2486 | Primitive::kPrimNot, |
| 2487 | src, |
| 2488 | src_pos, |
| 2489 | dest, |
| 2490 | dest_pos, |
| 2491 | length, |
| 2492 | src_curr_addr, |
| 2493 | dst_curr_addr, |
| 2494 | src_stop_addr); |
| 2495 | |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2496 | const int32_t element_size = Primitive::ComponentSize(Primitive::kPrimNot); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2497 | |
| 2498 | if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
| 2499 | // SystemArrayCopy implementation for Baker read barriers (see |
| 2500 | // also CodeGeneratorARM::GenerateReferenceLoadWithBakerReadBarrier): |
| 2501 | // |
| 2502 | // if (src_ptr != end_ptr) { |
| 2503 | // uint32_t rb_state = Lockword(src->monitor_).ReadBarrierState(); |
| 2504 | // lfence; // Load fence or artificial data dependency to prevent load-load reordering |
| 2505 | // bool is_gray = (rb_state == ReadBarrier::gray_ptr_); |
| 2506 | // if (is_gray) { |
| 2507 | // // Slow-path copy. |
| 2508 | // do { |
| 2509 | // *dest_ptr++ = MaybePoison(ReadBarrier::Mark(MaybeUnpoison(*src_ptr++))); |
| 2510 | // } while (src_ptr != end_ptr) |
| 2511 | // } else { |
| 2512 | // // Fast-path copy. |
| 2513 | // do { |
| 2514 | // *dest_ptr++ = *src_ptr++; |
| 2515 | // } while (src_ptr != end_ptr) |
| 2516 | // } |
| 2517 | // } |
| 2518 | |
| 2519 | vixl::aarch64::Label loop, done; |
| 2520 | |
| 2521 | // Don't enter copy loop if `length == 0`. |
| 2522 | __ Cmp(src_curr_addr, src_stop_addr); |
| 2523 | __ B(&done, eq); |
| 2524 | |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2525 | Register tmp = temps.AcquireW(); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2526 | // Make sure `tmp` is not IP0, as it is clobbered by |
| 2527 | // ReadBarrierMarkRegX entry points in |
| 2528 | // ReadBarrierSystemArrayCopySlowPathARM64. |
| 2529 | DCHECK_NE(LocationFrom(tmp).reg(), IP0); |
| 2530 | |
| 2531 | // /* int32_t */ monitor = src->monitor_ |
| 2532 | __ Ldr(tmp, HeapOperand(src.W(), monitor_offset)); |
| 2533 | // /* LockWord */ lock_word = LockWord(monitor) |
| 2534 | static_assert(sizeof(LockWord) == sizeof(int32_t), |
| 2535 | "art::LockWord and int32_t have different sizes."); |
| 2536 | |
| 2537 | // Introduce a dependency on the lock_word including rb_state, |
| 2538 | // to prevent load-load reordering, and without using |
| 2539 | // a memory barrier (which would be more expensive). |
| 2540 | // `src` is unchanged by this operation, but its value now depends |
| 2541 | // on `tmp`. |
| 2542 | __ Add(src.X(), src.X(), Operand(tmp.X(), LSR, 32)); |
| 2543 | |
| 2544 | // Slow path used to copy array when `src` is gray. |
| 2545 | SlowPathCodeARM64* read_barrier_slow_path = |
| 2546 | new (GetAllocator()) ReadBarrierSystemArrayCopySlowPathARM64(invoke, LocationFrom(tmp)); |
| 2547 | codegen_->AddSlowPath(read_barrier_slow_path); |
| 2548 | |
| 2549 | // Given the numeric representation, it's enough to check the low bit of the rb_state. |
| 2550 | static_assert(ReadBarrier::white_ptr_ == 0, "Expecting white to have value 0"); |
| 2551 | static_assert(ReadBarrier::gray_ptr_ == 1, "Expecting gray to have value 1"); |
| 2552 | static_assert(ReadBarrier::black_ptr_ == 2, "Expecting black to have value 2"); |
| 2553 | __ Tbnz(tmp, LockWord::kReadBarrierStateShift, read_barrier_slow_path->GetEntryLabel()); |
| 2554 | |
| 2555 | // Fast-path copy. |
| 2556 | // Iterate over the arrays and do a raw copy of the objects. We don't need to |
| 2557 | // poison/unpoison. |
| 2558 | __ Bind(&loop); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 2559 | __ Ldr(tmp, MemOperand(src_curr_addr, element_size, PostIndex)); |
| 2560 | __ Str(tmp, MemOperand(dst_curr_addr, element_size, PostIndex)); |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2561 | __ Cmp(src_curr_addr, src_stop_addr); |
| 2562 | __ B(&loop, ne); |
| 2563 | |
| 2564 | __ Bind(read_barrier_slow_path->GetExitLabel()); |
| 2565 | __ Bind(&done); |
| 2566 | } else { |
| 2567 | // Non read barrier code. |
| 2568 | |
| 2569 | // Iterate over the arrays and do a raw copy of the objects. We don't need to |
| 2570 | // poison/unpoison. |
| 2571 | vixl::aarch64::Label loop, done; |
| 2572 | __ Bind(&loop); |
| 2573 | __ Cmp(src_curr_addr, src_stop_addr); |
| 2574 | __ B(&done, eq); |
| 2575 | { |
| 2576 | Register tmp = temps.AcquireW(); |
| 2577 | __ Ldr(tmp, MemOperand(src_curr_addr, element_size, PostIndex)); |
| 2578 | __ Str(tmp, MemOperand(dst_curr_addr, element_size, PostIndex)); |
| 2579 | } |
| 2580 | __ B(&loop); |
| 2581 | __ Bind(&done); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2582 | } |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2583 | } |
| 2584 | // We only need one card marking on the destination array. |
| 2585 | codegen_->MarkGCCard(dest.W(), Register(), /* value_can_be_null */ false); |
| 2586 | |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 2587 | __ Bind(intrinsic_slow_path->GetExitLabel()); |
donghui.bai | c2ec9ad | 2016-03-10 14:02:55 +0800 | [diff] [blame] | 2588 | } |
| 2589 | |
Anton Kirilov | a3ffea2 | 2016-04-07 17:02:37 +0100 | [diff] [blame] | 2590 | static void GenIsInfinite(LocationSummary* locations, |
| 2591 | bool is64bit, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 2592 | MacroAssembler* masm) { |
Anton Kirilov | a3ffea2 | 2016-04-07 17:02:37 +0100 | [diff] [blame] | 2593 | Operand infinity; |
| 2594 | Register out; |
| 2595 | |
| 2596 | if (is64bit) { |
| 2597 | infinity = kPositiveInfinityDouble; |
| 2598 | out = XRegisterFrom(locations->Out()); |
| 2599 | } else { |
| 2600 | infinity = kPositiveInfinityFloat; |
| 2601 | out = WRegisterFrom(locations->Out()); |
| 2602 | } |
| 2603 | |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 2604 | const Register zero = vixl::aarch64::Assembler::AppropriateZeroRegFor(out); |
Anton Kirilov | a3ffea2 | 2016-04-07 17:02:37 +0100 | [diff] [blame] | 2605 | |
| 2606 | MoveFPToInt(locations, is64bit, masm); |
| 2607 | __ Eor(out, out, infinity); |
| 2608 | // We don't care about the sign bit, so shift left. |
| 2609 | __ Cmp(zero, Operand(out, LSL, 1)); |
| 2610 | __ Cset(out, eq); |
| 2611 | } |
| 2612 | |
| 2613 | void IntrinsicLocationsBuilderARM64::VisitFloatIsInfinite(HInvoke* invoke) { |
| 2614 | CreateFPToIntLocations(arena_, invoke); |
| 2615 | } |
| 2616 | |
| 2617 | void IntrinsicCodeGeneratorARM64::VisitFloatIsInfinite(HInvoke* invoke) { |
| 2618 | GenIsInfinite(invoke->GetLocations(), /* is64bit */ false, GetVIXLAssembler()); |
| 2619 | } |
| 2620 | |
| 2621 | void IntrinsicLocationsBuilderARM64::VisitDoubleIsInfinite(HInvoke* invoke) { |
| 2622 | CreateFPToIntLocations(arena_, invoke); |
| 2623 | } |
| 2624 | |
| 2625 | void IntrinsicCodeGeneratorARM64::VisitDoubleIsInfinite(HInvoke* invoke) { |
| 2626 | GenIsInfinite(invoke->GetLocations(), /* is64bit */ true, GetVIXLAssembler()); |
| 2627 | } |
| 2628 | |
Aart Bik | 2f9fcc9 | 2016-03-01 15:16:54 -0800 | [diff] [blame] | 2629 | UNIMPLEMENTED_INTRINSIC(ARM64, ReferenceGetReferent) |
Aart Bik | 2f9fcc9 | 2016-03-01 15:16:54 -0800 | [diff] [blame] | 2630 | UNIMPLEMENTED_INTRINSIC(ARM64, IntegerHighestOneBit) |
| 2631 | UNIMPLEMENTED_INTRINSIC(ARM64, LongHighestOneBit) |
| 2632 | UNIMPLEMENTED_INTRINSIC(ARM64, IntegerLowestOneBit) |
| 2633 | UNIMPLEMENTED_INTRINSIC(ARM64, LongLowestOneBit) |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 2634 | |
Aart Bik | 0e54c01 | 2016-03-04 12:08:31 -0800 | [diff] [blame] | 2635 | // 1.8. |
| 2636 | UNIMPLEMENTED_INTRINSIC(ARM64, UnsafeGetAndAddInt) |
| 2637 | UNIMPLEMENTED_INTRINSIC(ARM64, UnsafeGetAndAddLong) |
| 2638 | UNIMPLEMENTED_INTRINSIC(ARM64, UnsafeGetAndSetInt) |
| 2639 | UNIMPLEMENTED_INTRINSIC(ARM64, UnsafeGetAndSetLong) |
| 2640 | UNIMPLEMENTED_INTRINSIC(ARM64, UnsafeGetAndSetObject) |
Aart Bik | 0e54c01 | 2016-03-04 12:08:31 -0800 | [diff] [blame] | 2641 | |
Aart Bik | 2f9fcc9 | 2016-03-01 15:16:54 -0800 | [diff] [blame] | 2642 | UNREACHABLE_INTRINSICS(ARM64) |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 2643 | |
| 2644 | #undef __ |
| 2645 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 2646 | } // namespace arm64 |
| 2647 | } // namespace art |