Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "code_generator_x86_64.h" |
| 18 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 19 | #include "art_method.h" |
Vladimir Marko | 94ec2db | 2017-09-06 17:21:03 +0100 | [diff] [blame] | 20 | #include "class_table.h" |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 21 | #include "code_generator_utils.h" |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 22 | #include "compiled_method.h" |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 23 | #include "entrypoints/quick/quick_entrypoints.h" |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 24 | #include "gc/accounting/card_table.h" |
Vladimir Marko | eebb821 | 2018-06-05 14:57:24 +0100 | [diff] [blame] | 25 | #include "gc/space/image_space.h" |
Andreas Gampe | 09659c2 | 2017-09-18 18:23:32 -0700 | [diff] [blame] | 26 | #include "heap_poisoning.h" |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 27 | #include "intrinsics.h" |
| 28 | #include "intrinsics_x86_64.h" |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 29 | #include "linker/linker_patch.h" |
Andreas Gampe | d490129 | 2017-05-30 18:41:34 -0700 | [diff] [blame] | 30 | #include "lock_word.h" |
Ian Rogers | 7e70b00 | 2014-10-08 11:47:24 -0700 | [diff] [blame] | 31 | #include "mirror/array-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 32 | #include "mirror/class-inl.h" |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 33 | #include "mirror/object_reference.h" |
| 34 | #include "thread.h" |
| 35 | #include "utils/assembler.h" |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 36 | #include "utils/stack_checks.h" |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 37 | #include "utils/x86_64/assembler_x86_64.h" |
| 38 | #include "utils/x86_64/managed_register_x86_64.h" |
| 39 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 40 | namespace art { |
| 41 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 42 | template<class MirrorType> |
| 43 | class GcRoot; |
| 44 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 45 | namespace x86_64 { |
| 46 | |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 47 | static constexpr int kCurrentMethodStackOffset = 0; |
Nicolas Geoffray | 76b1e17 | 2015-05-27 17:18:33 +0100 | [diff] [blame] | 48 | static constexpr Register kMethodRegisterArgument = RDI; |
Vladimir Marko | f3e0ee2 | 2015-12-17 15:23:13 +0000 | [diff] [blame] | 49 | // The compare/jump sequence will generate about (1.5 * num_entries) instructions. A jump |
| 50 | // table version generates 7 instructions and num_entries literals. Compare/jump sequence will |
| 51 | // generates less code/data with a small num_entries. |
| 52 | static constexpr uint32_t kPackedSwitchJumpTableThreshold = 5; |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 53 | |
Nicolas Geoffray | 4597b5b | 2015-01-23 21:51:55 +0000 | [diff] [blame] | 54 | static constexpr Register kCoreCalleeSaves[] = { RBX, RBP, R12, R13, R14, R15 }; |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 55 | static constexpr FloatRegister kFpuCalleeSaves[] = { XMM12, XMM13, XMM14, XMM15 }; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 56 | |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 57 | static constexpr int kC2ConditionMask = 0x400; |
| 58 | |
Vladimir Marko | 3232dbb | 2018-07-25 15:42:46 +0100 | [diff] [blame] | 59 | static RegisterSet OneRegInReferenceOutSaveEverythingCallerSaves() { |
| 60 | // Custom calling convention: RAX serves as both input and output. |
| 61 | RegisterSet caller_saves = RegisterSet::Empty(); |
| 62 | caller_saves.Add(Location::RegisterLocation(RAX)); |
| 63 | return caller_saves; |
| 64 | } |
| 65 | |
Roland Levillain | 7cbd27f | 2016-08-11 23:53:33 +0100 | [diff] [blame] | 66 | // NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy. |
| 67 | #define __ down_cast<X86_64Assembler*>(codegen->GetAssembler())-> // NOLINT |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 68 | #define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kX86_64PointerSize, x).Int32Value() |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 69 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 70 | class NullCheckSlowPathX86_64 : public SlowPathCode { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 71 | public: |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 72 | explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : SlowPathCode(instruction) {} |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 73 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 74 | void EmitNativeCode(CodeGenerator* codegen) override { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 75 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 76 | __ Bind(GetEntryLabel()); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 77 | if (instruction_->CanThrowIntoCatchBlock()) { |
| 78 | // Live registers will be restored in the catch block if caught. |
| 79 | SaveLiveRegisters(codegen, instruction_->GetLocations()); |
| 80 | } |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 81 | x86_64_codegen->InvokeRuntime(kQuickThrowNullPointer, |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 82 | instruction_, |
| 83 | instruction_->GetDexPc(), |
| 84 | this); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 85 | CheckEntrypointTypes<kQuickThrowNullPointer, void, void>(); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 86 | } |
| 87 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 88 | bool IsFatal() const override { return true; } |
Alexandre Rames | 8158f28 | 2015-08-07 10:26:17 +0100 | [diff] [blame] | 89 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 90 | const char* GetDescription() const override { return "NullCheckSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 91 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 92 | private: |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 93 | DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86_64); |
| 94 | }; |
| 95 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 96 | class DivZeroCheckSlowPathX86_64 : public SlowPathCode { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 97 | public: |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 98 | explicit DivZeroCheckSlowPathX86_64(HDivZeroCheck* instruction) : SlowPathCode(instruction) {} |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 99 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 100 | void EmitNativeCode(CodeGenerator* codegen) override { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 101 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 102 | __ Bind(GetEntryLabel()); |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 103 | x86_64_codegen->InvokeRuntime(kQuickThrowDivZero, instruction_, instruction_->GetDexPc(), this); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 104 | CheckEntrypointTypes<kQuickThrowDivZero, void, void>(); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 107 | bool IsFatal() const override { return true; } |
Alexandre Rames | 8158f28 | 2015-08-07 10:26:17 +0100 | [diff] [blame] | 108 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 109 | const char* GetDescription() const override { return "DivZeroCheckSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 110 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 111 | private: |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 112 | DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86_64); |
| 113 | }; |
| 114 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 115 | class DivRemMinusOneSlowPathX86_64 : public SlowPathCode { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 116 | public: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 117 | DivRemMinusOneSlowPathX86_64(HInstruction* at, Register reg, DataType::Type type, bool is_div) |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 118 | : SlowPathCode(at), cpu_reg_(CpuRegister(reg)), type_(type), is_div_(is_div) {} |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 119 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 120 | void EmitNativeCode(CodeGenerator* codegen) override { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 121 | __ Bind(GetEntryLabel()); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 122 | if (type_ == DataType::Type::kInt32) { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 123 | if (is_div_) { |
| 124 | __ negl(cpu_reg_); |
| 125 | } else { |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 126 | __ xorl(cpu_reg_, cpu_reg_); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 129 | } else { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 130 | DCHECK_EQ(DataType::Type::kInt64, type_); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 131 | if (is_div_) { |
| 132 | __ negq(cpu_reg_); |
| 133 | } else { |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 134 | __ xorl(cpu_reg_, cpu_reg_); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 135 | } |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 136 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 137 | __ jmp(GetExitLabel()); |
| 138 | } |
| 139 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 140 | const char* GetDescription() const override { return "DivRemMinusOneSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 141 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 142 | private: |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 143 | const CpuRegister cpu_reg_; |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 144 | const DataType::Type type_; |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 145 | const bool is_div_; |
| 146 | DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86_64); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 147 | }; |
| 148 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 149 | class SuspendCheckSlowPathX86_64 : public SlowPathCode { |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 150 | public: |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 151 | SuspendCheckSlowPathX86_64(HSuspendCheck* instruction, HBasicBlock* successor) |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 152 | : SlowPathCode(instruction), successor_(successor) {} |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 153 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 154 | void EmitNativeCode(CodeGenerator* codegen) override { |
Aart Bik | b13c65b | 2017-03-21 20:14:07 -0700 | [diff] [blame] | 155 | LocationSummary* locations = instruction_->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 156 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 157 | __ Bind(GetEntryLabel()); |
Aart Bik | 24b905f | 2017-04-06 09:59:06 -0700 | [diff] [blame] | 158 | SaveLiveRegisters(codegen, locations); // Only saves full width XMM for SIMD. |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 159 | x86_64_codegen->InvokeRuntime(kQuickTestSuspend, instruction_, instruction_->GetDexPc(), this); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 160 | CheckEntrypointTypes<kQuickTestSuspend, void, void>(); |
Aart Bik | 24b905f | 2017-04-06 09:59:06 -0700 | [diff] [blame] | 161 | RestoreLiveRegisters(codegen, locations); // Only restores full width XMM for SIMD. |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 162 | if (successor_ == nullptr) { |
| 163 | __ jmp(GetReturnLabel()); |
| 164 | } else { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 165 | __ jmp(x86_64_codegen->GetLabelOf(successor_)); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 166 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 169 | Label* GetReturnLabel() { |
| 170 | DCHECK(successor_ == nullptr); |
| 171 | return &return_label_; |
| 172 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 173 | |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 174 | HBasicBlock* GetSuccessor() const { |
| 175 | return successor_; |
| 176 | } |
| 177 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 178 | const char* GetDescription() const override { return "SuspendCheckSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 179 | |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 180 | private: |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 181 | HBasicBlock* const successor_; |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 182 | Label return_label_; |
| 183 | |
| 184 | DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86_64); |
| 185 | }; |
| 186 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 187 | class BoundsCheckSlowPathX86_64 : public SlowPathCode { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 188 | public: |
Serban Constantinescu | 5a6cc49 | 2015-08-13 15:20:25 +0100 | [diff] [blame] | 189 | explicit BoundsCheckSlowPathX86_64(HBoundsCheck* instruction) |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 190 | : SlowPathCode(instruction) {} |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 191 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 192 | void EmitNativeCode(CodeGenerator* codegen) override { |
Serban Constantinescu | 5a6cc49 | 2015-08-13 15:20:25 +0100 | [diff] [blame] | 193 | LocationSummary* locations = instruction_->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 194 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 195 | __ Bind(GetEntryLabel()); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 196 | if (instruction_->CanThrowIntoCatchBlock()) { |
| 197 | // Live registers will be restored in the catch block if caught. |
| 198 | SaveLiveRegisters(codegen, instruction_->GetLocations()); |
| 199 | } |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 200 | // Are we using an array length from memory? |
| 201 | HInstruction* array_length = instruction_->InputAt(1); |
| 202 | Location length_loc = locations->InAt(1); |
| 203 | InvokeRuntimeCallingConvention calling_convention; |
| 204 | if (array_length->IsArrayLength() && array_length->IsEmittedAtUseSite()) { |
| 205 | // Load the array length into our temporary. |
Nicolas Geoffray | 0aff3a8 | 2017-10-13 13:12:36 +0100 | [diff] [blame] | 206 | HArrayLength* length = array_length->AsArrayLength(); |
Nicolas Geoffray | 003444a | 2017-10-17 10:58:42 +0100 | [diff] [blame] | 207 | uint32_t len_offset = CodeGenerator::GetArrayLengthOffset(length); |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 208 | Location array_loc = array_length->GetLocations()->InAt(0); |
| 209 | Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); |
| 210 | length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); |
| 211 | // Check for conflicts with index. |
| 212 | if (length_loc.Equals(locations->InAt(0))) { |
| 213 | // We know we aren't using parameter 2. |
| 214 | length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(2)); |
| 215 | } |
| 216 | __ movl(length_loc.AsRegister<CpuRegister>(), array_len); |
Nicolas Geoffray | 0aff3a8 | 2017-10-13 13:12:36 +0100 | [diff] [blame] | 217 | if (mirror::kUseStringCompression && length->IsStringLength()) { |
Vladimir Marko | fdaf0f4 | 2016-10-13 19:29:53 +0100 | [diff] [blame] | 218 | __ shrl(length_loc.AsRegister<CpuRegister>(), Immediate(1)); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 219 | } |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 220 | } |
| 221 | |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 222 | // We're moving two locations to locations that could overlap, so we need a parallel |
| 223 | // move resolver. |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 224 | codegen->EmitParallelMoves( |
Serban Constantinescu | 5a6cc49 | 2015-08-13 15:20:25 +0100 | [diff] [blame] | 225 | locations->InAt(0), |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 226 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 227 | DataType::Type::kInt32, |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 228 | length_loc, |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 229 | Location::RegisterLocation(calling_convention.GetRegisterAt(1)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 230 | DataType::Type::kInt32); |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 231 | QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt() |
| 232 | ? kQuickThrowStringBounds |
| 233 | : kQuickThrowArrayBounds; |
| 234 | x86_64_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this); |
Vladimir Marko | 87f3fcb | 2016-04-28 15:52:11 +0100 | [diff] [blame] | 235 | CheckEntrypointTypes<kQuickThrowStringBounds, void, int32_t, int32_t>(); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 236 | CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 237 | } |
| 238 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 239 | bool IsFatal() const override { return true; } |
Alexandre Rames | 8158f28 | 2015-08-07 10:26:17 +0100 | [diff] [blame] | 240 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 241 | const char* GetDescription() const override { return "BoundsCheckSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 242 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 243 | private: |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 244 | DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86_64); |
| 245 | }; |
| 246 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 247 | class LoadClassSlowPathX86_64 : public SlowPathCode { |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 248 | public: |
Vladimir Marko | a9f303c | 2018-07-20 16:43:56 +0100 | [diff] [blame] | 249 | LoadClassSlowPathX86_64(HLoadClass* cls, HInstruction* at) |
| 250 | : SlowPathCode(at), cls_(cls) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 251 | DCHECK(at->IsLoadClass() || at->IsClinitCheck()); |
Vladimir Marko | a9f303c | 2018-07-20 16:43:56 +0100 | [diff] [blame] | 252 | DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 253 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 254 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 255 | void EmitNativeCode(CodeGenerator* codegen) override { |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 256 | LocationSummary* locations = instruction_->GetLocations(); |
Vladimir Marko | a9f303c | 2018-07-20 16:43:56 +0100 | [diff] [blame] | 257 | Location out = locations->Out(); |
| 258 | const uint32_t dex_pc = instruction_->GetDexPc(); |
| 259 | bool must_resolve_type = instruction_->IsLoadClass() && cls_->MustResolveTypeOnSlowPath(); |
| 260 | bool must_do_clinit = instruction_->IsClinitCheck() || cls_->MustGenerateClinitCheck(); |
| 261 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 262 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 263 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 264 | SaveLiveRegisters(codegen, locations); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 265 | |
Vladimir Marko | ea4c126 | 2017-02-06 19:59:33 +0000 | [diff] [blame] | 266 | // Custom calling convention: RAX serves as both input and output. |
Vladimir Marko | a9f303c | 2018-07-20 16:43:56 +0100 | [diff] [blame] | 267 | if (must_resolve_type) { |
| 268 | DCHECK(IsSameDexFile(cls_->GetDexFile(), x86_64_codegen->GetGraph()->GetDexFile())); |
| 269 | dex::TypeIndex type_index = cls_->GetTypeIndex(); |
| 270 | __ movl(CpuRegister(RAX), Immediate(type_index.index_)); |
Vladimir Marko | 9d47925 | 2018-07-24 11:35:20 +0100 | [diff] [blame] | 271 | x86_64_codegen->InvokeRuntime(kQuickResolveType, instruction_, dex_pc, this); |
| 272 | CheckEntrypointTypes<kQuickResolveType, void*, uint32_t>(); |
Vladimir Marko | a9f303c | 2018-07-20 16:43:56 +0100 | [diff] [blame] | 273 | // If we also must_do_clinit, the resolved type is now in the correct register. |
| 274 | } else { |
| 275 | DCHECK(must_do_clinit); |
| 276 | Location source = instruction_->IsLoadClass() ? out : locations->InAt(0); |
| 277 | x86_64_codegen->Move(Location::RegisterLocation(RAX), source); |
| 278 | } |
| 279 | if (must_do_clinit) { |
| 280 | x86_64_codegen->InvokeRuntime(kQuickInitializeStaticStorage, instruction_, dex_pc, this); |
| 281 | CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, mirror::Class*>(); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 282 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 283 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 284 | // Move the class to the desired location. |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 285 | if (out.IsValid()) { |
| 286 | DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg())); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 287 | x86_64_codegen->Move(out, Location::RegisterLocation(RAX)); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 290 | RestoreLiveRegisters(codegen, locations); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 291 | __ jmp(GetExitLabel()); |
| 292 | } |
| 293 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 294 | const char* GetDescription() const override { return "LoadClassSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 295 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 296 | private: |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 297 | // The class this slow path will load. |
| 298 | HLoadClass* const cls_; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 299 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 300 | DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86_64); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 301 | }; |
| 302 | |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 303 | class LoadStringSlowPathX86_64 : public SlowPathCode { |
| 304 | public: |
| 305 | explicit LoadStringSlowPathX86_64(HLoadString* instruction) : SlowPathCode(instruction) {} |
| 306 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 307 | void EmitNativeCode(CodeGenerator* codegen) override { |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 308 | LocationSummary* locations = instruction_->GetLocations(); |
| 309 | DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg())); |
| 310 | |
| 311 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
| 312 | __ Bind(GetEntryLabel()); |
| 313 | SaveLiveRegisters(codegen, locations); |
| 314 | |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 315 | const dex::StringIndex string_index = instruction_->AsLoadString()->GetStringIndex(); |
Vladimir Marko | 94ce9c2 | 2016-09-30 14:50:51 +0100 | [diff] [blame] | 316 | // Custom calling convention: RAX serves as both input and output. |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 317 | __ movl(CpuRegister(RAX), Immediate(string_index.index_)); |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 318 | x86_64_codegen->InvokeRuntime(kQuickResolveString, |
| 319 | instruction_, |
| 320 | instruction_->GetDexPc(), |
| 321 | this); |
| 322 | CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>(); |
| 323 | x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX)); |
| 324 | RestoreLiveRegisters(codegen, locations); |
| 325 | |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 326 | __ jmp(GetExitLabel()); |
| 327 | } |
| 328 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 329 | const char* GetDescription() const override { return "LoadStringSlowPathX86_64"; } |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 330 | |
| 331 | private: |
| 332 | DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86_64); |
| 333 | }; |
| 334 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 335 | class TypeCheckSlowPathX86_64 : public SlowPathCode { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 336 | public: |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 337 | TypeCheckSlowPathX86_64(HInstruction* instruction, bool is_fatal) |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 338 | : SlowPathCode(instruction), is_fatal_(is_fatal) {} |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 339 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 340 | void EmitNativeCode(CodeGenerator* codegen) override { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 341 | LocationSummary* locations = instruction_->GetLocations(); |
Serban Constantinescu | 5a6cc49 | 2015-08-13 15:20:25 +0100 | [diff] [blame] | 342 | uint32_t dex_pc = instruction_->GetDexPc(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 343 | DCHECK(instruction_->IsCheckCast() |
| 344 | || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg())); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 345 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 346 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 347 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 348 | |
Vladimir Marko | e619f6c | 2017-12-12 16:00:01 +0000 | [diff] [blame] | 349 | if (kPoisonHeapReferences && |
| 350 | instruction_->IsCheckCast() && |
| 351 | instruction_->AsCheckCast()->GetTypeCheckKind() == TypeCheckKind::kInterfaceCheck) { |
| 352 | // First, unpoison the `cls` reference that was poisoned for direct memory comparison. |
| 353 | __ UnpoisonHeapReference(locations->InAt(1).AsRegister<CpuRegister>()); |
| 354 | } |
| 355 | |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 356 | if (!is_fatal_ || instruction_->CanThrowIntoCatchBlock()) { |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 357 | SaveLiveRegisters(codegen, locations); |
| 358 | } |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 359 | |
| 360 | // We're moving two locations to locations that could overlap, so we need a parallel |
| 361 | // move resolver. |
| 362 | InvokeRuntimeCallingConvention calling_convention; |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 363 | codegen->EmitParallelMoves(locations->InAt(0), |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 364 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 365 | DataType::Type::kReference, |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 366 | locations->InAt(1), |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 367 | Location::RegisterLocation(calling_convention.GetRegisterAt(1)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 368 | DataType::Type::kReference); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 369 | if (instruction_->IsInstanceOf()) { |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 370 | x86_64_codegen->InvokeRuntime(kQuickInstanceofNonTrivial, instruction_, dex_pc, this); |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 371 | CheckEntrypointTypes<kQuickInstanceofNonTrivial, size_t, mirror::Object*, mirror::Class*>(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 372 | } else { |
| 373 | DCHECK(instruction_->IsCheckCast()); |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 374 | x86_64_codegen->InvokeRuntime(kQuickCheckInstanceOf, instruction_, dex_pc, this); |
| 375 | CheckEntrypointTypes<kQuickCheckInstanceOf, void, mirror::Object*, mirror::Class*>(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 376 | } |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 377 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 378 | if (!is_fatal_) { |
| 379 | if (instruction_->IsInstanceOf()) { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 380 | x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX)); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 381 | } |
Nicolas Geoffray | 7537437 | 2015-09-17 17:12:19 +0000 | [diff] [blame] | 382 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 383 | RestoreLiveRegisters(codegen, locations); |
| 384 | __ jmp(GetExitLabel()); |
| 385 | } |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 388 | const char* GetDescription() const override { return "TypeCheckSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 389 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 390 | bool IsFatal() const override { return is_fatal_; } |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 391 | |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 392 | private: |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 393 | const bool is_fatal_; |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 394 | |
| 395 | DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86_64); |
| 396 | }; |
| 397 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 398 | class DeoptimizationSlowPathX86_64 : public SlowPathCode { |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 399 | public: |
Aart Bik | 42249c3 | 2016-01-07 15:33:50 -0800 | [diff] [blame] | 400 | explicit DeoptimizationSlowPathX86_64(HDeoptimize* instruction) |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 401 | : SlowPathCode(instruction) {} |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 402 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 403 | void EmitNativeCode(CodeGenerator* codegen) override { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 404 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 405 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | 4e92c3c | 2017-05-08 09:34:26 +0100 | [diff] [blame] | 406 | LocationSummary* locations = instruction_->GetLocations(); |
| 407 | SaveLiveRegisters(codegen, locations); |
| 408 | InvokeRuntimeCallingConvention calling_convention; |
| 409 | x86_64_codegen->Load32BitValue( |
| 410 | CpuRegister(calling_convention.GetRegisterAt(0)), |
| 411 | static_cast<uint32_t>(instruction_->AsDeoptimize()->GetDeoptimizationKind())); |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 412 | x86_64_codegen->InvokeRuntime(kQuickDeoptimize, instruction_, instruction_->GetDexPc(), this); |
Nicolas Geoffray | 4e92c3c | 2017-05-08 09:34:26 +0100 | [diff] [blame] | 413 | CheckEntrypointTypes<kQuickDeoptimize, void, DeoptimizationKind>(); |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 416 | const char* GetDescription() const override { return "DeoptimizationSlowPathX86_64"; } |
Alexandre Rames | 9931f31 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 417 | |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 418 | private: |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 419 | DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86_64); |
| 420 | }; |
| 421 | |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 422 | class ArraySetSlowPathX86_64 : public SlowPathCode { |
| 423 | public: |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 424 | explicit ArraySetSlowPathX86_64(HInstruction* instruction) : SlowPathCode(instruction) {} |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 425 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 426 | void EmitNativeCode(CodeGenerator* codegen) override { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 427 | LocationSummary* locations = instruction_->GetLocations(); |
| 428 | __ Bind(GetEntryLabel()); |
| 429 | SaveLiveRegisters(codegen, locations); |
| 430 | |
| 431 | InvokeRuntimeCallingConvention calling_convention; |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 432 | HParallelMove parallel_move(codegen->GetGraph()->GetAllocator()); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 433 | parallel_move.AddMove( |
| 434 | locations->InAt(0), |
| 435 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 436 | DataType::Type::kReference, |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 437 | nullptr); |
| 438 | parallel_move.AddMove( |
| 439 | locations->InAt(1), |
| 440 | Location::RegisterLocation(calling_convention.GetRegisterAt(1)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 441 | DataType::Type::kInt32, |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 442 | nullptr); |
| 443 | parallel_move.AddMove( |
| 444 | locations->InAt(2), |
| 445 | Location::RegisterLocation(calling_convention.GetRegisterAt(2)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 446 | DataType::Type::kReference, |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 447 | nullptr); |
| 448 | codegen->GetMoveResolver()->EmitNativeCode(¶llel_move); |
| 449 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 450 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 451 | x86_64_codegen->InvokeRuntime(kQuickAputObject, instruction_, instruction_->GetDexPc(), this); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 452 | CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>(); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 453 | RestoreLiveRegisters(codegen, locations); |
| 454 | __ jmp(GetExitLabel()); |
| 455 | } |
| 456 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 457 | const char* GetDescription() const override { return "ArraySetSlowPathX86_64"; } |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 458 | |
| 459 | private: |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 460 | DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathX86_64); |
| 461 | }; |
| 462 | |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 463 | // Slow path marking an object reference `ref` during a read |
| 464 | // barrier. The field `obj.field` in the object `obj` holding this |
| 465 | // reference does not get updated by this slow path after marking (see |
| 466 | // ReadBarrierMarkAndUpdateFieldSlowPathX86_64 below for that). |
| 467 | // |
| 468 | // This means that after the execution of this slow path, `ref` will |
| 469 | // always be up-to-date, but `obj.field` may not; i.e., after the |
| 470 | // flip, `ref` will be a to-space reference, but `obj.field` will |
| 471 | // probably still be a from-space reference (unless it gets updated by |
| 472 | // another thread, or if another thread installed another object |
| 473 | // reference (different from `ref`) in `obj.field`). |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 474 | class ReadBarrierMarkSlowPathX86_64 : public SlowPathCode { |
| 475 | public: |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 476 | ReadBarrierMarkSlowPathX86_64(HInstruction* instruction, |
| 477 | Location ref, |
| 478 | bool unpoison_ref_before_marking) |
| 479 | : SlowPathCode(instruction), |
| 480 | ref_(ref), |
| 481 | unpoison_ref_before_marking_(unpoison_ref_before_marking) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 482 | DCHECK(kEmitCompilerReadBarrier); |
| 483 | } |
| 484 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 485 | const char* GetDescription() const override { return "ReadBarrierMarkSlowPathX86_64"; } |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 486 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 487 | void EmitNativeCode(CodeGenerator* codegen) override { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 488 | LocationSummary* locations = instruction_->GetLocations(); |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 489 | CpuRegister ref_cpu_reg = ref_.AsRegister<CpuRegister>(); |
| 490 | Register ref_reg = ref_cpu_reg.AsRegister(); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 491 | DCHECK(locations->CanCall()); |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 492 | DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg; |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 493 | DCHECK(instruction_->IsInstanceFieldGet() || |
| 494 | instruction_->IsStaticFieldGet() || |
| 495 | instruction_->IsArrayGet() || |
Roland Levillain | 16d9f94 | 2016-08-25 17:27:56 +0100 | [diff] [blame] | 496 | instruction_->IsArraySet() || |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 497 | instruction_->IsLoadClass() || |
| 498 | instruction_->IsLoadString() || |
| 499 | instruction_->IsInstanceOf() || |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 500 | instruction_->IsCheckCast() || |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 501 | (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()) || |
| 502 | (instruction_->IsInvokeStaticOrDirect() && instruction_->GetLocations()->Intrinsified())) |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 503 | << "Unexpected instruction in read barrier marking slow path: " |
| 504 | << instruction_->DebugName(); |
| 505 | |
| 506 | __ Bind(GetEntryLabel()); |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 507 | if (unpoison_ref_before_marking_) { |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 508 | // Object* ref = ref_addr->AsMirrorPtr() |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 509 | __ MaybeUnpoisonHeapReference(ref_cpu_reg); |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 510 | } |
Roland Levillain | 4359e61 | 2016-07-20 11:32:19 +0100 | [diff] [blame] | 511 | // No need to save live registers; it's taken care of by the |
| 512 | // entrypoint. Also, there is no need to update the stack mask, |
| 513 | // as this runtime call will not trigger a garbage collection. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 514 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 515 | DCHECK_NE(ref_reg, RSP); |
| 516 | DCHECK(0 <= ref_reg && ref_reg < kNumberOfCpuRegisters) << ref_reg; |
Roland Levillain | 02b7580 | 2016-07-13 11:54:35 +0100 | [diff] [blame] | 517 | // "Compact" slow path, saving two moves. |
| 518 | // |
| 519 | // Instead of using the standard runtime calling convention (input |
| 520 | // and output in R0): |
| 521 | // |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 522 | // RDI <- ref |
Roland Levillain | 02b7580 | 2016-07-13 11:54:35 +0100 | [diff] [blame] | 523 | // RAX <- ReadBarrierMark(RDI) |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 524 | // ref <- RAX |
Roland Levillain | 02b7580 | 2016-07-13 11:54:35 +0100 | [diff] [blame] | 525 | // |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 526 | // we just use rX (the register containing `ref`) as input and output |
Roland Levillain | 02b7580 | 2016-07-13 11:54:35 +0100 | [diff] [blame] | 527 | // of a dedicated entrypoint: |
| 528 | // |
| 529 | // rX <- ReadBarrierMarkRegX(rX) |
| 530 | // |
| 531 | int32_t entry_point_offset = |
Roland Levillain | 97c4646 | 2017-05-11 14:04:03 +0100 | [diff] [blame] | 532 | Thread::ReadBarrierMarkEntryPointsOffset<kX86_64PointerSize>(ref_reg); |
Roland Levillain | dec8f63 | 2016-07-22 17:10:06 +0100 | [diff] [blame] | 533 | // This runtime call does not require a stack map. |
| 534 | x86_64_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 535 | __ jmp(GetExitLabel()); |
| 536 | } |
| 537 | |
| 538 | private: |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 539 | // The location (register) of the marked object reference. |
| 540 | const Location ref_; |
| 541 | // Should the reference in `ref_` be unpoisoned prior to marking it? |
| 542 | const bool unpoison_ref_before_marking_; |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 543 | |
| 544 | DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkSlowPathX86_64); |
| 545 | }; |
| 546 | |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 547 | // Slow path marking an object reference `ref` during a read barrier, |
| 548 | // and if needed, atomically updating the field `obj.field` in the |
| 549 | // object `obj` holding this reference after marking (contrary to |
| 550 | // ReadBarrierMarkSlowPathX86_64 above, which never tries to update |
| 551 | // `obj.field`). |
| 552 | // |
| 553 | // This means that after the execution of this slow path, both `ref` |
| 554 | // and `obj.field` will be up-to-date; i.e., after the flip, both will |
| 555 | // hold the same to-space reference (unless another thread installed |
| 556 | // another object reference (different from `ref`) in `obj.field`). |
| 557 | class ReadBarrierMarkAndUpdateFieldSlowPathX86_64 : public SlowPathCode { |
| 558 | public: |
| 559 | ReadBarrierMarkAndUpdateFieldSlowPathX86_64(HInstruction* instruction, |
| 560 | Location ref, |
| 561 | CpuRegister obj, |
| 562 | const Address& field_addr, |
| 563 | bool unpoison_ref_before_marking, |
| 564 | CpuRegister temp1, |
| 565 | CpuRegister temp2) |
| 566 | : SlowPathCode(instruction), |
| 567 | ref_(ref), |
| 568 | obj_(obj), |
| 569 | field_addr_(field_addr), |
| 570 | unpoison_ref_before_marking_(unpoison_ref_before_marking), |
| 571 | temp1_(temp1), |
| 572 | temp2_(temp2) { |
| 573 | DCHECK(kEmitCompilerReadBarrier); |
| 574 | } |
| 575 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 576 | const char* GetDescription() const override { |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 577 | return "ReadBarrierMarkAndUpdateFieldSlowPathX86_64"; |
| 578 | } |
| 579 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 580 | void EmitNativeCode(CodeGenerator* codegen) override { |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 581 | LocationSummary* locations = instruction_->GetLocations(); |
| 582 | CpuRegister ref_cpu_reg = ref_.AsRegister<CpuRegister>(); |
| 583 | Register ref_reg = ref_cpu_reg.AsRegister(); |
| 584 | DCHECK(locations->CanCall()); |
| 585 | DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg; |
| 586 | // This slow path is only used by the UnsafeCASObject intrinsic. |
| 587 | DCHECK((instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified())) |
| 588 | << "Unexpected instruction in read barrier marking and field updating slow path: " |
| 589 | << instruction_->DebugName(); |
| 590 | DCHECK(instruction_->GetLocations()->Intrinsified()); |
| 591 | DCHECK_EQ(instruction_->AsInvoke()->GetIntrinsic(), Intrinsics::kUnsafeCASObject); |
| 592 | |
| 593 | __ Bind(GetEntryLabel()); |
| 594 | if (unpoison_ref_before_marking_) { |
| 595 | // Object* ref = ref_addr->AsMirrorPtr() |
| 596 | __ MaybeUnpoisonHeapReference(ref_cpu_reg); |
| 597 | } |
| 598 | |
| 599 | // Save the old (unpoisoned) reference. |
| 600 | __ movl(temp1_, ref_cpu_reg); |
| 601 | |
| 602 | // No need to save live registers; it's taken care of by the |
| 603 | // entrypoint. Also, there is no need to update the stack mask, |
| 604 | // as this runtime call will not trigger a garbage collection. |
| 605 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
| 606 | DCHECK_NE(ref_reg, RSP); |
| 607 | DCHECK(0 <= ref_reg && ref_reg < kNumberOfCpuRegisters) << ref_reg; |
| 608 | // "Compact" slow path, saving two moves. |
| 609 | // |
| 610 | // Instead of using the standard runtime calling convention (input |
| 611 | // and output in R0): |
| 612 | // |
| 613 | // RDI <- ref |
| 614 | // RAX <- ReadBarrierMark(RDI) |
| 615 | // ref <- RAX |
| 616 | // |
| 617 | // we just use rX (the register containing `ref`) as input and output |
| 618 | // of a dedicated entrypoint: |
| 619 | // |
| 620 | // rX <- ReadBarrierMarkRegX(rX) |
| 621 | // |
| 622 | int32_t entry_point_offset = |
Roland Levillain | 97c4646 | 2017-05-11 14:04:03 +0100 | [diff] [blame] | 623 | Thread::ReadBarrierMarkEntryPointsOffset<kX86_64PointerSize>(ref_reg); |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 624 | // This runtime call does not require a stack map. |
| 625 | x86_64_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this); |
| 626 | |
| 627 | // If the new reference is different from the old reference, |
| 628 | // update the field in the holder (`*field_addr`). |
| 629 | // |
| 630 | // Note that this field could also hold a different object, if |
| 631 | // another thread had concurrently changed it. In that case, the |
| 632 | // LOCK CMPXCHGL instruction in the compare-and-set (CAS) |
| 633 | // operation below would abort the CAS, leaving the field as-is. |
| 634 | NearLabel done; |
| 635 | __ cmpl(temp1_, ref_cpu_reg); |
| 636 | __ j(kEqual, &done); |
| 637 | |
| 638 | // Update the the holder's field atomically. This may fail if |
| 639 | // mutator updates before us, but it's OK. This is achived |
| 640 | // using a strong compare-and-set (CAS) operation with relaxed |
| 641 | // memory synchronization ordering, where the expected value is |
| 642 | // the old reference and the desired value is the new reference. |
| 643 | // This operation is implemented with a 32-bit LOCK CMPXLCHG |
| 644 | // instruction, which requires the expected value (the old |
| 645 | // reference) to be in EAX. Save RAX beforehand, and move the |
| 646 | // expected value (stored in `temp1_`) into EAX. |
| 647 | __ movq(temp2_, CpuRegister(RAX)); |
| 648 | __ movl(CpuRegister(RAX), temp1_); |
| 649 | |
| 650 | // Convenience aliases. |
| 651 | CpuRegister base = obj_; |
| 652 | CpuRegister expected = CpuRegister(RAX); |
| 653 | CpuRegister value = ref_cpu_reg; |
| 654 | |
| 655 | bool base_equals_value = (base.AsRegister() == value.AsRegister()); |
| 656 | Register value_reg = ref_reg; |
| 657 | if (kPoisonHeapReferences) { |
| 658 | if (base_equals_value) { |
| 659 | // If `base` and `value` are the same register location, move |
| 660 | // `value_reg` to a temporary register. This way, poisoning |
| 661 | // `value_reg` won't invalidate `base`. |
| 662 | value_reg = temp1_.AsRegister(); |
| 663 | __ movl(CpuRegister(value_reg), base); |
| 664 | } |
| 665 | |
| 666 | // Check that the register allocator did not assign the location |
| 667 | // of `expected` (RAX) to `value` nor to `base`, so that heap |
| 668 | // poisoning (when enabled) works as intended below. |
| 669 | // - If `value` were equal to `expected`, both references would |
| 670 | // be poisoned twice, meaning they would not be poisoned at |
| 671 | // all, as heap poisoning uses address negation. |
| 672 | // - If `base` were equal to `expected`, poisoning `expected` |
| 673 | // would invalidate `base`. |
| 674 | DCHECK_NE(value_reg, expected.AsRegister()); |
| 675 | DCHECK_NE(base.AsRegister(), expected.AsRegister()); |
| 676 | |
| 677 | __ PoisonHeapReference(expected); |
| 678 | __ PoisonHeapReference(CpuRegister(value_reg)); |
| 679 | } |
| 680 | |
| 681 | __ LockCmpxchgl(field_addr_, CpuRegister(value_reg)); |
| 682 | |
| 683 | // If heap poisoning is enabled, we need to unpoison the values |
| 684 | // that were poisoned earlier. |
| 685 | if (kPoisonHeapReferences) { |
| 686 | if (base_equals_value) { |
| 687 | // `value_reg` has been moved to a temporary register, no need |
| 688 | // to unpoison it. |
| 689 | } else { |
| 690 | __ UnpoisonHeapReference(CpuRegister(value_reg)); |
| 691 | } |
| 692 | // No need to unpoison `expected` (RAX), as it is be overwritten below. |
| 693 | } |
| 694 | |
| 695 | // Restore RAX. |
| 696 | __ movq(CpuRegister(RAX), temp2_); |
| 697 | |
| 698 | __ Bind(&done); |
| 699 | __ jmp(GetExitLabel()); |
| 700 | } |
| 701 | |
| 702 | private: |
| 703 | // The location (register) of the marked object reference. |
| 704 | const Location ref_; |
| 705 | // The register containing the object holding the marked object reference field. |
| 706 | const CpuRegister obj_; |
| 707 | // The address of the marked reference field. The base of this address must be `obj_`. |
| 708 | const Address field_addr_; |
| 709 | |
| 710 | // Should the reference in `ref_` be unpoisoned prior to marking it? |
| 711 | const bool unpoison_ref_before_marking_; |
| 712 | |
| 713 | const CpuRegister temp1_; |
| 714 | const CpuRegister temp2_; |
| 715 | |
| 716 | DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkAndUpdateFieldSlowPathX86_64); |
| 717 | }; |
| 718 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 719 | // Slow path generating a read barrier for a heap reference. |
| 720 | class ReadBarrierForHeapReferenceSlowPathX86_64 : public SlowPathCode { |
| 721 | public: |
| 722 | ReadBarrierForHeapReferenceSlowPathX86_64(HInstruction* instruction, |
| 723 | Location out, |
| 724 | Location ref, |
| 725 | Location obj, |
| 726 | uint32_t offset, |
| 727 | Location index) |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 728 | : SlowPathCode(instruction), |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 729 | out_(out), |
| 730 | ref_(ref), |
| 731 | obj_(obj), |
| 732 | offset_(offset), |
| 733 | index_(index) { |
| 734 | DCHECK(kEmitCompilerReadBarrier); |
| 735 | // If `obj` is equal to `out` or `ref`, it means the initial |
| 736 | // object has been overwritten by (or after) the heap object |
| 737 | // reference load to be instrumented, e.g.: |
| 738 | // |
| 739 | // __ movl(out, Address(out, offset)); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 740 | // codegen_->GenerateReadBarrierSlow(instruction, out_loc, out_loc, out_loc, offset); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 741 | // |
| 742 | // In that case, we have lost the information about the original |
| 743 | // object, and the emitted read barrier cannot work properly. |
| 744 | DCHECK(!obj.Equals(out)) << "obj=" << obj << " out=" << out; |
| 745 | DCHECK(!obj.Equals(ref)) << "obj=" << obj << " ref=" << ref; |
| 746 | } |
| 747 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 748 | void EmitNativeCode(CodeGenerator* codegen) override { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 749 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
| 750 | LocationSummary* locations = instruction_->GetLocations(); |
| 751 | CpuRegister reg_out = out_.AsRegister<CpuRegister>(); |
| 752 | DCHECK(locations->CanCall()); |
| 753 | DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out.AsRegister())) << out_; |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 754 | DCHECK(instruction_->IsInstanceFieldGet() || |
| 755 | instruction_->IsStaticFieldGet() || |
| 756 | instruction_->IsArrayGet() || |
| 757 | instruction_->IsInstanceOf() || |
| 758 | instruction_->IsCheckCast() || |
Andreas Gampe | d9911ee | 2017-03-27 13:27:24 -0700 | [diff] [blame] | 759 | (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified())) |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 760 | << "Unexpected instruction in read barrier for heap reference slow path: " |
| 761 | << instruction_->DebugName(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 762 | |
| 763 | __ Bind(GetEntryLabel()); |
| 764 | SaveLiveRegisters(codegen, locations); |
| 765 | |
| 766 | // We may have to change the index's value, but as `index_` is a |
| 767 | // constant member (like other "inputs" of this slow path), |
| 768 | // introduce a copy of it, `index`. |
| 769 | Location index = index_; |
| 770 | if (index_.IsValid()) { |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 771 | // Handle `index_` for HArrayGet and UnsafeGetObject/UnsafeGetObjectVolatile intrinsics. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 772 | if (instruction_->IsArrayGet()) { |
| 773 | // Compute real offset and store it in index_. |
| 774 | Register index_reg = index_.AsRegister<CpuRegister>().AsRegister(); |
| 775 | DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_reg)); |
| 776 | if (codegen->IsCoreCalleeSaveRegister(index_reg)) { |
| 777 | // We are about to change the value of `index_reg` (see the |
| 778 | // calls to art::x86_64::X86_64Assembler::shll and |
| 779 | // art::x86_64::X86_64Assembler::AddImmediate below), but it |
| 780 | // has not been saved by the previous call to |
| 781 | // art::SlowPathCode::SaveLiveRegisters, as it is a |
| 782 | // callee-save register -- |
| 783 | // art::SlowPathCode::SaveLiveRegisters does not consider |
| 784 | // callee-save registers, as it has been designed with the |
| 785 | // assumption that callee-save registers are supposed to be |
| 786 | // handled by the called function. So, as a callee-save |
| 787 | // register, `index_reg` _would_ eventually be saved onto |
| 788 | // the stack, but it would be too late: we would have |
| 789 | // changed its value earlier. Therefore, we manually save |
| 790 | // it here into another freely available register, |
| 791 | // `free_reg`, chosen of course among the caller-save |
| 792 | // registers (as a callee-save `free_reg` register would |
| 793 | // exhibit the same problem). |
| 794 | // |
| 795 | // Note we could have requested a temporary register from |
| 796 | // the register allocator instead; but we prefer not to, as |
| 797 | // this is a slow path, and we know we can find a |
| 798 | // caller-save register that is available. |
| 799 | Register free_reg = FindAvailableCallerSaveRegister(codegen).AsRegister(); |
| 800 | __ movl(CpuRegister(free_reg), CpuRegister(index_reg)); |
| 801 | index_reg = free_reg; |
| 802 | index = Location::RegisterLocation(index_reg); |
| 803 | } else { |
| 804 | // The initial register stored in `index_` has already been |
| 805 | // saved in the call to art::SlowPathCode::SaveLiveRegisters |
| 806 | // (as it is not a callee-save register), so we can freely |
| 807 | // use it. |
| 808 | } |
| 809 | // Shifting the index value contained in `index_reg` by the |
| 810 | // scale factor (2) cannot overflow in practice, as the |
| 811 | // runtime is unable to allocate object arrays with a size |
| 812 | // larger than 2^26 - 1 (that is, 2^28 - 4 bytes). |
| 813 | __ shll(CpuRegister(index_reg), Immediate(TIMES_4)); |
| 814 | static_assert( |
| 815 | sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t), |
| 816 | "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes."); |
| 817 | __ AddImmediate(CpuRegister(index_reg), Immediate(offset_)); |
| 818 | } else { |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 819 | // In the case of the UnsafeGetObject/UnsafeGetObjectVolatile |
| 820 | // intrinsics, `index_` is not shifted by a scale factor of 2 |
| 821 | // (as in the case of ArrayGet), as it is actually an offset |
| 822 | // to an object field within an object. |
| 823 | DCHECK(instruction_->IsInvoke()) << instruction_->DebugName(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 824 | DCHECK(instruction_->GetLocations()->Intrinsified()); |
| 825 | DCHECK((instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObject) || |
| 826 | (instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile)) |
| 827 | << instruction_->AsInvoke()->GetIntrinsic(); |
| 828 | DCHECK_EQ(offset_, 0U); |
| 829 | DCHECK(index_.IsRegister()); |
| 830 | } |
| 831 | } |
| 832 | |
| 833 | // We're moving two or three locations to locations that could |
| 834 | // overlap, so we need a parallel move resolver. |
| 835 | InvokeRuntimeCallingConvention calling_convention; |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 836 | HParallelMove parallel_move(codegen->GetGraph()->GetAllocator()); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 837 | parallel_move.AddMove(ref_, |
| 838 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 839 | DataType::Type::kReference, |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 840 | nullptr); |
| 841 | parallel_move.AddMove(obj_, |
| 842 | Location::RegisterLocation(calling_convention.GetRegisterAt(1)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 843 | DataType::Type::kReference, |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 844 | nullptr); |
| 845 | if (index.IsValid()) { |
| 846 | parallel_move.AddMove(index, |
| 847 | Location::RegisterLocation(calling_convention.GetRegisterAt(2)), |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 848 | DataType::Type::kInt32, |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 849 | nullptr); |
| 850 | codegen->GetMoveResolver()->EmitNativeCode(¶llel_move); |
| 851 | } else { |
| 852 | codegen->GetMoveResolver()->EmitNativeCode(¶llel_move); |
| 853 | __ movl(CpuRegister(calling_convention.GetRegisterAt(2)), Immediate(offset_)); |
| 854 | } |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 855 | x86_64_codegen->InvokeRuntime(kQuickReadBarrierSlow, |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 856 | instruction_, |
| 857 | instruction_->GetDexPc(), |
| 858 | this); |
| 859 | CheckEntrypointTypes< |
| 860 | kQuickReadBarrierSlow, mirror::Object*, mirror::Object*, mirror::Object*, uint32_t>(); |
| 861 | x86_64_codegen->Move(out_, Location::RegisterLocation(RAX)); |
| 862 | |
| 863 | RestoreLiveRegisters(codegen, locations); |
| 864 | __ jmp(GetExitLabel()); |
| 865 | } |
| 866 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 867 | const char* GetDescription() const override { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 868 | return "ReadBarrierForHeapReferenceSlowPathX86_64"; |
| 869 | } |
| 870 | |
| 871 | private: |
| 872 | CpuRegister FindAvailableCallerSaveRegister(CodeGenerator* codegen) { |
| 873 | size_t ref = static_cast<int>(ref_.AsRegister<CpuRegister>().AsRegister()); |
| 874 | size_t obj = static_cast<int>(obj_.AsRegister<CpuRegister>().AsRegister()); |
| 875 | for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) { |
| 876 | if (i != ref && i != obj && !codegen->IsCoreCalleeSaveRegister(i)) { |
| 877 | return static_cast<CpuRegister>(i); |
| 878 | } |
| 879 | } |
| 880 | // We shall never fail to find a free caller-save register, as |
| 881 | // there are more than two core caller-save registers on x86-64 |
| 882 | // (meaning it is possible to find one which is different from |
| 883 | // `ref` and `obj`). |
| 884 | DCHECK_GT(codegen->GetNumberOfCoreCallerSaveRegisters(), 2u); |
| 885 | LOG(FATAL) << "Could not find a free caller-save register"; |
| 886 | UNREACHABLE(); |
| 887 | } |
| 888 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 889 | const Location out_; |
| 890 | const Location ref_; |
| 891 | const Location obj_; |
| 892 | const uint32_t offset_; |
| 893 | // An additional location containing an index to an array. |
| 894 | // Only used for HArrayGet and the UnsafeGetObject & |
| 895 | // UnsafeGetObjectVolatile intrinsics. |
| 896 | const Location index_; |
| 897 | |
| 898 | DISALLOW_COPY_AND_ASSIGN(ReadBarrierForHeapReferenceSlowPathX86_64); |
| 899 | }; |
| 900 | |
| 901 | // Slow path generating a read barrier for a GC root. |
| 902 | class ReadBarrierForRootSlowPathX86_64 : public SlowPathCode { |
| 903 | public: |
| 904 | ReadBarrierForRootSlowPathX86_64(HInstruction* instruction, Location out, Location root) |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 905 | : SlowPathCode(instruction), out_(out), root_(root) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 906 | DCHECK(kEmitCompilerReadBarrier); |
| 907 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 908 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 909 | void EmitNativeCode(CodeGenerator* codegen) override { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 910 | LocationSummary* locations = instruction_->GetLocations(); |
| 911 | DCHECK(locations->CanCall()); |
| 912 | DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(out_.reg())); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 913 | DCHECK(instruction_->IsLoadClass() || instruction_->IsLoadString()) |
| 914 | << "Unexpected instruction in read barrier for GC root slow path: " |
| 915 | << instruction_->DebugName(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 916 | |
| 917 | __ Bind(GetEntryLabel()); |
| 918 | SaveLiveRegisters(codegen, locations); |
| 919 | |
| 920 | InvokeRuntimeCallingConvention calling_convention; |
| 921 | CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen); |
| 922 | x86_64_codegen->Move(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), root_); |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 923 | x86_64_codegen->InvokeRuntime(kQuickReadBarrierForRootSlow, |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 924 | instruction_, |
| 925 | instruction_->GetDexPc(), |
| 926 | this); |
| 927 | CheckEntrypointTypes<kQuickReadBarrierForRootSlow, mirror::Object*, GcRoot<mirror::Object>*>(); |
| 928 | x86_64_codegen->Move(out_, Location::RegisterLocation(RAX)); |
| 929 | |
| 930 | RestoreLiveRegisters(codegen, locations); |
| 931 | __ jmp(GetExitLabel()); |
| 932 | } |
| 933 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 934 | const char* GetDescription() const override { return "ReadBarrierForRootSlowPathX86_64"; } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 935 | |
| 936 | private: |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 937 | const Location out_; |
| 938 | const Location root_; |
| 939 | |
| 940 | DISALLOW_COPY_AND_ASSIGN(ReadBarrierForRootSlowPathX86_64); |
| 941 | }; |
| 942 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 943 | #undef __ |
Roland Levillain | 7cbd27f | 2016-08-11 23:53:33 +0100 | [diff] [blame] | 944 | // NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy. |
| 945 | #define __ down_cast<X86_64Assembler*>(GetAssembler())-> // NOLINT |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 946 | |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 947 | inline Condition X86_64IntegerCondition(IfCondition cond) { |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 948 | switch (cond) { |
| 949 | case kCondEQ: return kEqual; |
| 950 | case kCondNE: return kNotEqual; |
| 951 | case kCondLT: return kLess; |
| 952 | case kCondLE: return kLessEqual; |
| 953 | case kCondGT: return kGreater; |
| 954 | case kCondGE: return kGreaterEqual; |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 955 | case kCondB: return kBelow; |
| 956 | case kCondBE: return kBelowEqual; |
| 957 | case kCondA: return kAbove; |
| 958 | case kCondAE: return kAboveEqual; |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 959 | } |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 960 | LOG(FATAL) << "Unreachable"; |
| 961 | UNREACHABLE(); |
| 962 | } |
| 963 | |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 964 | // Maps FP condition to x86_64 name. |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 965 | inline Condition X86_64FPCondition(IfCondition cond) { |
| 966 | switch (cond) { |
| 967 | case kCondEQ: return kEqual; |
| 968 | case kCondNE: return kNotEqual; |
| 969 | case kCondLT: return kBelow; |
| 970 | case kCondLE: return kBelowEqual; |
| 971 | case kCondGT: return kAbove; |
| 972 | case kCondGE: return kAboveEqual; |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 973 | default: break; // should not happen |
Igor Murashkin | 2ffb703 | 2017-11-08 13:35:21 -0800 | [diff] [blame] | 974 | } |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 975 | LOG(FATAL) << "Unreachable"; |
| 976 | UNREACHABLE(); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 977 | } |
| 978 | |
Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 979 | HInvokeStaticOrDirect::DispatchInfo CodeGeneratorX86_64::GetSupportedInvokeStaticOrDirectDispatch( |
| 980 | const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info, |
Nicolas Geoffray | bdb2ecc | 2018-09-18 14:33:55 +0100 | [diff] [blame] | 981 | ArtMethod* method ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | c1a42cf | 2016-12-18 15:52:36 +0000 | [diff] [blame] | 982 | return desired_dispatch_info; |
Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 983 | } |
| 984 | |
Vladimir Marko | e7197bf | 2017-06-02 17:00:23 +0100 | [diff] [blame] | 985 | void CodeGeneratorX86_64::GenerateStaticOrDirectCall( |
| 986 | HInvokeStaticOrDirect* invoke, Location temp, SlowPathCode* slow_path) { |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 987 | // All registers are assumed to be correctly set up. |
Vladimir Marko | 4ee8e29 | 2017-06-02 15:39:30 +0000 | [diff] [blame] | 988 | |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 989 | Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp. |
| 990 | switch (invoke->GetMethodLoadKind()) { |
Nicolas Geoffray | da079bb | 2016-09-26 17:56:07 +0100 | [diff] [blame] | 991 | case HInvokeStaticOrDirect::MethodLoadKind::kStringInit: { |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 992 | // temp = thread->string_init_entrypoint |
Nicolas Geoffray | da079bb | 2016-09-26 17:56:07 +0100 | [diff] [blame] | 993 | uint32_t offset = |
| 994 | GetThreadOffset<kX86_64PointerSize>(invoke->GetStringInitEntryPoint()).Int32Value(); |
| 995 | __ gs()->movq(temp.AsRegister<CpuRegister>(), Address::Absolute(offset, /* no_rip */ true)); |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 996 | break; |
Nicolas Geoffray | da079bb | 2016-09-26 17:56:07 +0100 | [diff] [blame] | 997 | } |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 998 | case HInvokeStaticOrDirect::MethodLoadKind::kRecursive: |
Vladimir Marko | c53c079 | 2015-11-19 15:48:33 +0000 | [diff] [blame] | 999 | callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex()); |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1000 | break; |
Vladimir Marko | 6597946 | 2017-05-19 17:25:12 +0100 | [diff] [blame] | 1001 | case HInvokeStaticOrDirect::MethodLoadKind::kBootImageLinkTimePcRelative: |
| 1002 | DCHECK(GetCompilerOptions().IsBootImage()); |
| 1003 | __ leal(temp.AsRegister<CpuRegister>(), |
| 1004 | Address::Absolute(kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1005 | RecordBootImageMethodPatch(invoke); |
Vladimir Marko | 6597946 | 2017-05-19 17:25:12 +0100 | [diff] [blame] | 1006 | break; |
Vladimir Marko | b066d43 | 2018-01-03 13:14:37 +0000 | [diff] [blame] | 1007 | case HInvokeStaticOrDirect::MethodLoadKind::kBootImageRelRo: { |
| 1008 | // Note: Boot image is in the low 4GiB and the entry is 32-bit, so emit a 32-bit load. |
| 1009 | __ movl(temp.AsRegister<CpuRegister>(), |
| 1010 | Address::Absolute(kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 1011 | RecordBootImageRelRoPatch(GetBootImageOffset(invoke)); |
Vladimir Marko | b066d43 | 2018-01-03 13:14:37 +0000 | [diff] [blame] | 1012 | break; |
| 1013 | } |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 1014 | case HInvokeStaticOrDirect::MethodLoadKind::kBssEntry: { |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1015 | __ movq(temp.AsRegister<CpuRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 1016 | Address::Absolute(kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1017 | RecordMethodBssEntryPatch(invoke); |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1018 | break; |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 1019 | } |
Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 1020 | case HInvokeStaticOrDirect::MethodLoadKind::kJitDirectAddress: |
| 1021 | Load64BitValue(temp.AsRegister<CpuRegister>(), invoke->GetMethodAddress()); |
| 1022 | break; |
Vladimir Marko | e7197bf | 2017-06-02 17:00:23 +0100 | [diff] [blame] | 1023 | case HInvokeStaticOrDirect::MethodLoadKind::kRuntimeCall: { |
| 1024 | GenerateInvokeStaticOrDirectRuntimeCall(invoke, temp, slow_path); |
| 1025 | return; // No code pointer retrieval; the runtime performs the call directly. |
Vladimir Marko | 9b688a0 | 2015-05-06 14:12:42 +0100 | [diff] [blame] | 1026 | } |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
| 1029 | switch (invoke->GetCodePtrLocation()) { |
| 1030 | case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf: |
| 1031 | __ call(&frame_entry_label_); |
| 1032 | break; |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1033 | case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod: |
| 1034 | // (callee_method + offset_of_quick_compiled_code)() |
| 1035 | __ call(Address(callee_method.AsRegister<CpuRegister>(), |
| 1036 | ArtMethod::EntryPointFromQuickCompiledCodeOffset( |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1037 | kX86_64PointerSize).SizeValue())); |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1038 | break; |
Nicolas Geoffray | 1cf9528 | 2014-12-12 19:22:03 +0000 | [diff] [blame] | 1039 | } |
Vladimir Marko | e7197bf | 2017-06-02 17:00:23 +0100 | [diff] [blame] | 1040 | RecordPcInfo(invoke, invoke->GetDexPc(), slow_path); |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 1041 | |
| 1042 | DCHECK(!IsLeafMethod()); |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 1043 | } |
| 1044 | |
Vladimir Marko | e7197bf | 2017-06-02 17:00:23 +0100 | [diff] [blame] | 1045 | void CodeGeneratorX86_64::GenerateVirtualCall( |
| 1046 | HInvokeVirtual* invoke, Location temp_in, SlowPathCode* slow_path) { |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 1047 | CpuRegister temp = temp_in.AsRegister<CpuRegister>(); |
| 1048 | size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( |
| 1049 | invoke->GetVTableIndex(), kX86_64PointerSize).SizeValue(); |
Nicolas Geoffray | e523423 | 2015-12-02 09:06:11 +0000 | [diff] [blame] | 1050 | |
| 1051 | // Use the calling convention instead of the location of the receiver, as |
| 1052 | // intrinsics may have put the receiver in a different register. In the intrinsics |
| 1053 | // slow path, the arguments have been moved to the right place, so here we are |
| 1054 | // guaranteed that the receiver is the first register of the calling convention. |
| 1055 | InvokeDexCallingConvention calling_convention; |
| 1056 | Register receiver = calling_convention.GetRegisterAt(0); |
| 1057 | |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 1058 | size_t class_offset = mirror::Object::ClassOffset().SizeValue(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 1059 | // /* HeapReference<Class> */ temp = receiver->klass_ |
Nicolas Geoffray | e523423 | 2015-12-02 09:06:11 +0000 | [diff] [blame] | 1060 | __ movl(temp, Address(CpuRegister(receiver), class_offset)); |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 1061 | MaybeRecordImplicitNullCheck(invoke); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 1062 | // Instead of simply (possibly) unpoisoning `temp` here, we should |
| 1063 | // emit a read barrier for the previous class reference load. |
| 1064 | // However this is not required in practice, as this is an |
| 1065 | // intermediate/temporary reference and because the current |
| 1066 | // concurrent copying collector keeps the from-space memory |
| 1067 | // intact/accessible until the end of the marking phase (the |
| 1068 | // concurrent copying collector may not in the future). |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 1069 | __ MaybeUnpoisonHeapReference(temp); |
| 1070 | // temp = temp->GetMethodAt(method_offset); |
| 1071 | __ movq(temp, Address(temp, method_offset)); |
| 1072 | // call temp->GetEntryPoint(); |
| 1073 | __ call(Address(temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset( |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1074 | kX86_64PointerSize).SizeValue())); |
Vladimir Marko | e7197bf | 2017-06-02 17:00:23 +0100 | [diff] [blame] | 1075 | RecordPcInfo(invoke, invoke->GetDexPc(), slow_path); |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 1076 | } |
| 1077 | |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1078 | void CodeGeneratorX86_64::RecordBootImageIntrinsicPatch(uint32_t intrinsic_data) { |
| 1079 | boot_image_intrinsic_patches_.emplace_back(/* target_dex_file */ nullptr, intrinsic_data); |
| 1080 | __ Bind(&boot_image_intrinsic_patches_.back().label); |
| 1081 | } |
| 1082 | |
Vladimir Marko | b066d43 | 2018-01-03 13:14:37 +0000 | [diff] [blame] | 1083 | void CodeGeneratorX86_64::RecordBootImageRelRoPatch(uint32_t boot_image_offset) { |
| 1084 | boot_image_method_patches_.emplace_back(/* target_dex_file */ nullptr, boot_image_offset); |
| 1085 | __ Bind(&boot_image_method_patches_.back().label); |
| 1086 | } |
| 1087 | |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1088 | void CodeGeneratorX86_64::RecordBootImageMethodPatch(HInvokeStaticOrDirect* invoke) { |
| 1089 | boot_image_method_patches_.emplace_back( |
| 1090 | invoke->GetTargetMethod().dex_file, invoke->GetTargetMethod().index); |
Vladimir Marko | 6597946 | 2017-05-19 17:25:12 +0100 | [diff] [blame] | 1091 | __ Bind(&boot_image_method_patches_.back().label); |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 1092 | } |
| 1093 | |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1094 | void CodeGeneratorX86_64::RecordMethodBssEntryPatch(HInvokeStaticOrDirect* invoke) { |
| 1095 | method_bss_entry_patches_.emplace_back(&GetGraph()->GetDexFile(), invoke->GetDexMethodIndex()); |
| 1096 | __ Bind(&method_bss_entry_patches_.back().label); |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 1097 | } |
| 1098 | |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1099 | void CodeGeneratorX86_64::RecordBootImageTypePatch(HLoadClass* load_class) { |
| 1100 | boot_image_type_patches_.emplace_back( |
| 1101 | &load_class->GetDexFile(), load_class->GetTypeIndex().index_); |
Vladimir Marko | 1998cd0 | 2017-01-13 13:02:58 +0000 | [diff] [blame] | 1102 | __ Bind(&boot_image_type_patches_.back().label); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 1103 | } |
| 1104 | |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 1105 | Label* CodeGeneratorX86_64::NewTypeBssEntryPatch(HLoadClass* load_class) { |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1106 | type_bss_entry_patches_.emplace_back( |
| 1107 | &load_class->GetDexFile(), load_class->GetTypeIndex().index_); |
Vladimir Marko | 1998cd0 | 2017-01-13 13:02:58 +0000 | [diff] [blame] | 1108 | return &type_bss_entry_patches_.back().label; |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 1109 | } |
| 1110 | |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1111 | void CodeGeneratorX86_64::RecordBootImageStringPatch(HLoadString* load_string) { |
| 1112 | boot_image_string_patches_.emplace_back( |
| 1113 | &load_string->GetDexFile(), load_string->GetStringIndex().index_); |
| 1114 | __ Bind(&boot_image_string_patches_.back().label); |
Vladimir Marko | 6597946 | 2017-05-19 17:25:12 +0100 | [diff] [blame] | 1115 | } |
| 1116 | |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1117 | Label* CodeGeneratorX86_64::NewStringBssEntryPatch(HLoadString* load_string) { |
| 1118 | DCHECK(!GetCompilerOptions().IsBootImage()); |
Vladimir Marko | 6cfbdbc | 2017-07-25 13:26:39 +0100 | [diff] [blame] | 1119 | string_bss_entry_patches_.emplace_back( |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1120 | &load_string->GetDexFile(), load_string->GetStringIndex().index_); |
Vladimir Marko | 6cfbdbc | 2017-07-25 13:26:39 +0100 | [diff] [blame] | 1121 | return &string_bss_entry_patches_.back().label; |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1122 | } |
| 1123 | |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1124 | void CodeGeneratorX86_64::LoadBootImageAddress(CpuRegister reg, uint32_t boot_image_reference) { |
| 1125 | if (GetCompilerOptions().IsBootImage()) { |
| 1126 | __ leal(reg, Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, /* no_rip */ false)); |
| 1127 | RecordBootImageIntrinsicPatch(boot_image_reference); |
Vladimir Marko | a2da9b9 | 2018-10-10 14:21:55 +0100 | [diff] [blame] | 1128 | } else if (GetCompilerOptions().GetCompilePic()) { |
Vladimir Marko | eebb821 | 2018-06-05 14:57:24 +0100 | [diff] [blame] | 1129 | __ movl(reg, Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1130 | RecordBootImageRelRoPatch(boot_image_reference); |
Vladimir Marko | eebb821 | 2018-06-05 14:57:24 +0100 | [diff] [blame] | 1131 | } else { |
Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 1132 | DCHECK(Runtime::Current()->UseJitCompilation()); |
Vladimir Marko | eebb821 | 2018-06-05 14:57:24 +0100 | [diff] [blame] | 1133 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1134 | DCHECK(!heap->GetBootImageSpaces().empty()); |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1135 | const uint8_t* address = heap->GetBootImageSpaces()[0]->Begin() + boot_image_reference; |
Vladimir Marko | eebb821 | 2018-06-05 14:57:24 +0100 | [diff] [blame] | 1136 | __ movl(reg, Immediate(dchecked_integral_cast<uint32_t>(reinterpret_cast<uintptr_t>(address)))); |
| 1137 | } |
| 1138 | } |
| 1139 | |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1140 | void CodeGeneratorX86_64::AllocateInstanceForIntrinsic(HInvokeStaticOrDirect* invoke, |
| 1141 | uint32_t boot_image_offset) { |
| 1142 | DCHECK(invoke->IsStatic()); |
| 1143 | InvokeRuntimeCallingConvention calling_convention; |
| 1144 | CpuRegister argument = CpuRegister(calling_convention.GetRegisterAt(0)); |
| 1145 | if (GetCompilerOptions().IsBootImage()) { |
| 1146 | DCHECK_EQ(boot_image_offset, IntrinsicVisitor::IntegerValueOfInfo::kInvalidReference); |
| 1147 | // Load the class the same way as for HLoadClass::LoadKind::kBootImageLinkTimePcRelative. |
| 1148 | __ leal(argument, |
| 1149 | Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, /* no_rip */ false)); |
| 1150 | MethodReference target_method = invoke->GetTargetMethod(); |
| 1151 | dex::TypeIndex type_idx = target_method.dex_file->GetMethodId(target_method.index).class_idx_; |
| 1152 | boot_image_type_patches_.emplace_back(target_method.dex_file, type_idx.index_); |
| 1153 | __ Bind(&boot_image_type_patches_.back().label); |
| 1154 | } else { |
| 1155 | LoadBootImageAddress(argument, boot_image_offset); |
| 1156 | } |
| 1157 | InvokeRuntime(kQuickAllocObjectInitialized, invoke, invoke->GetDexPc()); |
| 1158 | CheckEntrypointTypes<kQuickAllocObjectWithChecks, void*, mirror::Class*>(); |
| 1159 | } |
| 1160 | |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1161 | // The label points to the end of the "movl" or another instruction but the literal offset |
| 1162 | // for method patch needs to point to the embedded constant which occupies the last 4 bytes. |
| 1163 | constexpr uint32_t kLabelPositionToLiteralOffsetAdjustment = 4u; |
| 1164 | |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 1165 | template <linker::LinkerPatch (*Factory)(size_t, const DexFile*, uint32_t, uint32_t)> |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1166 | inline void CodeGeneratorX86_64::EmitPcRelativeLinkerPatches( |
| 1167 | const ArenaDeque<PatchInfo<Label>>& infos, |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 1168 | ArenaVector<linker::LinkerPatch>* linker_patches) { |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1169 | for (const PatchInfo<Label>& info : infos) { |
| 1170 | uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment; |
| 1171 | linker_patches->push_back( |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1172 | Factory(literal_offset, info.target_dex_file, info.label.Position(), info.offset_or_index)); |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1173 | } |
| 1174 | } |
| 1175 | |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1176 | template <linker::LinkerPatch (*Factory)(size_t, uint32_t, uint32_t)> |
| 1177 | linker::LinkerPatch NoDexFileAdapter(size_t literal_offset, |
| 1178 | const DexFile* target_dex_file, |
| 1179 | uint32_t pc_insn_offset, |
| 1180 | uint32_t boot_image_offset) { |
| 1181 | DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. |
| 1182 | return Factory(literal_offset, pc_insn_offset, boot_image_offset); |
Vladimir Marko | b066d43 | 2018-01-03 13:14:37 +0000 | [diff] [blame] | 1183 | } |
| 1184 | |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 1185 | void CodeGeneratorX86_64::EmitLinkerPatches(ArenaVector<linker::LinkerPatch>* linker_patches) { |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1186 | DCHECK(linker_patches->empty()); |
| 1187 | size_t size = |
Vladimir Marko | 6597946 | 2017-05-19 17:25:12 +0100 | [diff] [blame] | 1188 | boot_image_method_patches_.size() + |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 1189 | method_bss_entry_patches_.size() + |
Vladimir Marko | 1998cd0 | 2017-01-13 13:02:58 +0000 | [diff] [blame] | 1190 | boot_image_type_patches_.size() + |
Vladimir Marko | 6597946 | 2017-05-19 17:25:12 +0100 | [diff] [blame] | 1191 | type_bss_entry_patches_.size() + |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1192 | boot_image_string_patches_.size() + |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1193 | string_bss_entry_patches_.size() + |
| 1194 | boot_image_intrinsic_patches_.size(); |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1195 | linker_patches->reserve(size); |
Vladimir Marko | 764d454 | 2017-05-16 10:31:41 +0100 | [diff] [blame] | 1196 | if (GetCompilerOptions().IsBootImage()) { |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 1197 | EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeMethodPatch>( |
| 1198 | boot_image_method_patches_, linker_patches); |
| 1199 | EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeTypePatch>( |
| 1200 | boot_image_type_patches_, linker_patches); |
| 1201 | EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeStringPatch>( |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1202 | boot_image_string_patches_, linker_patches); |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1203 | EmitPcRelativeLinkerPatches<NoDexFileAdapter<linker::LinkerPatch::IntrinsicReferencePatch>>( |
| 1204 | boot_image_intrinsic_patches_, linker_patches); |
Vladimir Marko | 764d454 | 2017-05-16 10:31:41 +0100 | [diff] [blame] | 1205 | } else { |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1206 | EmitPcRelativeLinkerPatches<NoDexFileAdapter<linker::LinkerPatch::DataBimgRelRoPatch>>( |
Vladimir Marko | b066d43 | 2018-01-03 13:14:37 +0000 | [diff] [blame] | 1207 | boot_image_method_patches_, linker_patches); |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 1208 | DCHECK(boot_image_type_patches_.empty()); |
| 1209 | DCHECK(boot_image_string_patches_.empty()); |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1210 | DCHECK(boot_image_intrinsic_patches_.empty()); |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 1211 | } |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 1212 | EmitPcRelativeLinkerPatches<linker::LinkerPatch::MethodBssEntryPatch>( |
| 1213 | method_bss_entry_patches_, linker_patches); |
| 1214 | EmitPcRelativeLinkerPatches<linker::LinkerPatch::TypeBssEntryPatch>( |
| 1215 | type_bss_entry_patches_, linker_patches); |
| 1216 | EmitPcRelativeLinkerPatches<linker::LinkerPatch::StringBssEntryPatch>( |
| 1217 | string_bss_entry_patches_, linker_patches); |
Vladimir Marko | 1998cd0 | 2017-01-13 13:02:58 +0000 | [diff] [blame] | 1218 | DCHECK_EQ(size, linker_patches->size()); |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1219 | } |
| 1220 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1221 | void CodeGeneratorX86_64::DumpCoreRegister(std::ostream& stream, int reg) const { |
David Brazdil | c7465286 | 2015-05-13 17:50:09 +0100 | [diff] [blame] | 1222 | stream << Register(reg); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1223 | } |
| 1224 | |
| 1225 | void CodeGeneratorX86_64::DumpFloatingPointRegister(std::ostream& stream, int reg) const { |
David Brazdil | c7465286 | 2015-05-13 17:50:09 +0100 | [diff] [blame] | 1226 | stream << FloatRegister(reg); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1227 | } |
| 1228 | |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 1229 | const X86_64InstructionSetFeatures& CodeGeneratorX86_64::GetInstructionSetFeatures() const { |
| 1230 | return *GetCompilerOptions().GetInstructionSetFeatures()->AsX86_64InstructionSetFeatures(); |
| 1231 | } |
| 1232 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1233 | size_t CodeGeneratorX86_64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) { |
| 1234 | __ movq(Address(CpuRegister(RSP), stack_index), CpuRegister(reg_id)); |
| 1235 | return kX86_64WordSize; |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 1236 | } |
| 1237 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1238 | size_t CodeGeneratorX86_64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) { |
| 1239 | __ movq(CpuRegister(reg_id), Address(CpuRegister(RSP), stack_index)); |
| 1240 | return kX86_64WordSize; |
| 1241 | } |
| 1242 | |
| 1243 | size_t CodeGeneratorX86_64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) { |
Aart Bik | b13c65b | 2017-03-21 20:14:07 -0700 | [diff] [blame] | 1244 | if (GetGraph()->HasSIMD()) { |
Aart Bik | 5576f37 | 2017-03-23 16:17:37 -0700 | [diff] [blame] | 1245 | __ movups(Address(CpuRegister(RSP), stack_index), XmmRegister(reg_id)); |
Aart Bik | b13c65b | 2017-03-21 20:14:07 -0700 | [diff] [blame] | 1246 | } else { |
| 1247 | __ movsd(Address(CpuRegister(RSP), stack_index), XmmRegister(reg_id)); |
| 1248 | } |
| 1249 | return GetFloatingPointSpillSlotSize(); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1250 | } |
| 1251 | |
| 1252 | size_t CodeGeneratorX86_64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) { |
Aart Bik | b13c65b | 2017-03-21 20:14:07 -0700 | [diff] [blame] | 1253 | if (GetGraph()->HasSIMD()) { |
Aart Bik | 5576f37 | 2017-03-23 16:17:37 -0700 | [diff] [blame] | 1254 | __ movups(XmmRegister(reg_id), Address(CpuRegister(RSP), stack_index)); |
Aart Bik | b13c65b | 2017-03-21 20:14:07 -0700 | [diff] [blame] | 1255 | } else { |
| 1256 | __ movsd(XmmRegister(reg_id), Address(CpuRegister(RSP), stack_index)); |
| 1257 | } |
| 1258 | return GetFloatingPointSpillSlotSize(); |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 1259 | } |
| 1260 | |
Calin Juravle | 175dc73 | 2015-08-25 15:42:32 +0100 | [diff] [blame] | 1261 | void CodeGeneratorX86_64::InvokeRuntime(QuickEntrypointEnum entrypoint, |
| 1262 | HInstruction* instruction, |
| 1263 | uint32_t dex_pc, |
| 1264 | SlowPathCode* slow_path) { |
Alexandre Rames | 91a6516 | 2016-09-19 13:54:30 +0100 | [diff] [blame] | 1265 | ValidateInvokeRuntime(entrypoint, instruction, slow_path); |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 1266 | GenerateInvokeRuntime(GetThreadOffset<kX86_64PointerSize>(entrypoint).Int32Value()); |
| 1267 | if (EntrypointRequiresStackMap(entrypoint)) { |
| 1268 | RecordPcInfo(instruction, dex_pc, slow_path); |
| 1269 | } |
Alexandre Rames | 8158f28 | 2015-08-07 10:26:17 +0100 | [diff] [blame] | 1270 | } |
| 1271 | |
Roland Levillain | dec8f63 | 2016-07-22 17:10:06 +0100 | [diff] [blame] | 1272 | void CodeGeneratorX86_64::InvokeRuntimeWithoutRecordingPcInfo(int32_t entry_point_offset, |
| 1273 | HInstruction* instruction, |
| 1274 | SlowPathCode* slow_path) { |
| 1275 | ValidateInvokeRuntimeWithoutRecordingPcInfo(instruction, slow_path); |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 1276 | GenerateInvokeRuntime(entry_point_offset); |
| 1277 | } |
| 1278 | |
| 1279 | void CodeGeneratorX86_64::GenerateInvokeRuntime(int32_t entry_point_offset) { |
Roland Levillain | dec8f63 | 2016-07-22 17:10:06 +0100 | [diff] [blame] | 1280 | __ gs()->call(Address::Absolute(entry_point_offset, /* no_rip */ true)); |
| 1281 | } |
| 1282 | |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1283 | static constexpr int kNumberOfCpuRegisterPairs = 0; |
Nicolas Geoffray | 4597b5b | 2015-01-23 21:51:55 +0000 | [diff] [blame] | 1284 | // Use a fake return address register to mimic Quick. |
| 1285 | static constexpr Register kFakeReturnRegister = Register(kLastCpuRegister + 1); |
Mark Mendell | fb8d279 | 2015-03-31 22:16:59 -0400 | [diff] [blame] | 1286 | CodeGeneratorX86_64::CodeGeneratorX86_64(HGraph* graph, |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 1287 | const CompilerOptions& compiler_options, |
| 1288 | OptimizingCompilerStats* stats) |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 1289 | : CodeGenerator(graph, |
| 1290 | kNumberOfCpuRegisters, |
| 1291 | kNumberOfFloatRegisters, |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1292 | kNumberOfCpuRegisterPairs, |
Nicolas Geoffray | 4dee636 | 2015-01-23 18:23:14 +0000 | [diff] [blame] | 1293 | ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves), |
| 1294 | arraysize(kCoreCalleeSaves)) |
Nicolas Geoffray | 4597b5b | 2015-01-23 21:51:55 +0000 | [diff] [blame] | 1295 | | (1 << kFakeReturnRegister), |
Nicolas Geoffray | 4dee636 | 2015-01-23 18:23:14 +0000 | [diff] [blame] | 1296 | ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves), |
| 1297 | arraysize(kFpuCalleeSaves)), |
Serban Constantinescu | ecc4366 | 2015-08-13 13:33:12 +0100 | [diff] [blame] | 1298 | compiler_options, |
| 1299 | stats), |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 1300 | block_labels_(nullptr), |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1301 | location_builder_(graph, this), |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 1302 | instruction_visitor_(graph, this), |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1303 | move_resolver_(graph->GetAllocator(), this), |
| 1304 | assembler_(graph->GetAllocator()), |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 1305 | constant_area_start_(0), |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1306 | boot_image_method_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
| 1307 | method_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
| 1308 | boot_image_type_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
| 1309 | type_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 1310 | boot_image_string_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1311 | string_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
Vladimir Marko | 6fd1606 | 2018-06-26 11:02:04 +0100 | [diff] [blame] | 1312 | boot_image_intrinsic_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1313 | jit_string_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
| 1314 | jit_class_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), |
| 1315 | fixups_to_jump_tables_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)) { |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1316 | AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister)); |
| 1317 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1318 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 1319 | InstructionCodeGeneratorX86_64::InstructionCodeGeneratorX86_64(HGraph* graph, |
| 1320 | CodeGeneratorX86_64* codegen) |
Aart Bik | 42249c3 | 2016-01-07 15:33:50 -0800 | [diff] [blame] | 1321 | : InstructionCodeGenerator(graph, codegen), |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1322 | assembler_(codegen->GetAssembler()), |
| 1323 | codegen_(codegen) {} |
| 1324 | |
David Brazdil | 58282f4 | 2016-01-14 12:45:10 +0000 | [diff] [blame] | 1325 | void CodeGeneratorX86_64::SetupBlockedRegisters() const { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1326 | // Stack register is always reserved. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 1327 | blocked_core_registers_[RSP] = true; |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1328 | |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 1329 | // Block the register used as TMP. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 1330 | blocked_core_registers_[TMP] = true; |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1331 | } |
| 1332 | |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1333 | static dwarf::Reg DWARFReg(Register reg) { |
David Srbecky | 9d8606d | 2015-04-12 09:35:32 +0100 | [diff] [blame] | 1334 | return dwarf::Reg::X86_64Core(static_cast<int>(reg)); |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1335 | } |
David Srbecky | 9d8606d | 2015-04-12 09:35:32 +0100 | [diff] [blame] | 1336 | |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1337 | static dwarf::Reg DWARFReg(FloatRegister reg) { |
David Srbecky | 9d8606d | 2015-04-12 09:35:32 +0100 | [diff] [blame] | 1338 | return dwarf::Reg::X86_64Fp(static_cast<int>(reg)); |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1339 | } |
| 1340 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1341 | void CodeGeneratorX86_64::GenerateFrameEntry() { |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1342 | __ cfi().SetCurrentCFAOffset(kX86_64WordSize); // return address |
Nicolas Geoffray | 1cf9528 | 2014-12-12 19:22:03 +0000 | [diff] [blame] | 1343 | __ Bind(&frame_entry_label_); |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 1344 | bool skip_overflow_check = IsLeafMethod() |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 1345 | && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64); |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1346 | DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks()); |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 1347 | |
Nicolas Geoffray | 8d72832 | 2018-01-18 22:44:32 +0000 | [diff] [blame] | 1348 | if (GetCompilerOptions().CountHotnessInCompiledCode()) { |
| 1349 | __ addw(Address(CpuRegister(kMethodRegisterArgument), |
| 1350 | ArtMethod::HotnessCountOffset().Int32Value()), |
| 1351 | Immediate(1)); |
| 1352 | } |
| 1353 | |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1354 | if (!skip_overflow_check) { |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 1355 | size_t reserved_bytes = GetStackOverflowReservedBytes(InstructionSet::kX86_64); |
| 1356 | __ testq(CpuRegister(RAX), Address(CpuRegister(RSP), -static_cast<int32_t>(reserved_bytes))); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1357 | RecordPcInfo(nullptr, 0); |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 1358 | } |
Nicolas Geoffray | a26369a | 2015-01-22 08:46:05 +0000 | [diff] [blame] | 1359 | |
Nicolas Geoffray | c0572a4 | 2015-02-06 14:35:25 +0000 | [diff] [blame] | 1360 | if (HasEmptyFrame()) { |
| 1361 | return; |
| 1362 | } |
| 1363 | |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 1364 | for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) { |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1365 | Register reg = kCoreCalleeSaves[i]; |
Nicolas Geoffray | 4597b5b | 2015-01-23 21:51:55 +0000 | [diff] [blame] | 1366 | if (allocated_registers_.ContainsCoreRegister(reg)) { |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1367 | __ pushq(CpuRegister(reg)); |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1368 | __ cfi().AdjustCFAOffset(kX86_64WordSize); |
| 1369 | __ cfi().RelOffset(DWARFReg(reg), 0); |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 1370 | } |
| 1371 | } |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 1372 | |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1373 | int adjust = GetFrameSize() - GetCoreSpillSize(); |
| 1374 | __ subq(CpuRegister(RSP), Immediate(adjust)); |
| 1375 | __ cfi().AdjustCFAOffset(adjust); |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1376 | uint32_t xmm_spill_location = GetFpuSpillStart(); |
| 1377 | size_t xmm_spill_slot_size = GetFloatingPointSpillSlotSize(); |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 1378 | |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1379 | for (int i = arraysize(kFpuCalleeSaves) - 1; i >= 0; --i) { |
| 1380 | if (allocated_registers_.ContainsFloatingPointRegister(kFpuCalleeSaves[i])) { |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 1381 | int offset = xmm_spill_location + (xmm_spill_slot_size * i); |
| 1382 | __ movsd(Address(CpuRegister(RSP), offset), XmmRegister(kFpuCalleeSaves[i])); |
| 1383 | __ cfi().RelOffset(DWARFReg(kFpuCalleeSaves[i]), offset); |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1384 | } |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 1385 | } |
| 1386 | |
Nicolas Geoffray | 96eeb4e | 2016-10-12 22:03:31 +0100 | [diff] [blame] | 1387 | // Save the current method if we need it. Note that we do not |
| 1388 | // do this in HCurrentMethod, as the instruction might have been removed |
| 1389 | // in the SSA graph. |
| 1390 | if (RequiresCurrentMethod()) { |
| 1391 | __ movq(Address(CpuRegister(RSP), kCurrentMethodStackOffset), |
| 1392 | CpuRegister(kMethodRegisterArgument)); |
| 1393 | } |
Nicolas Geoffray | f789353 | 2017-06-15 12:34:36 +0100 | [diff] [blame] | 1394 | |
| 1395 | if (GetGraph()->HasShouldDeoptimizeFlag()) { |
| 1396 | // Initialize should_deoptimize flag to 0. |
| 1397 | __ movl(Address(CpuRegister(RSP), GetStackOffsetOfShouldDeoptimizeFlag()), Immediate(0)); |
| 1398 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1399 | } |
| 1400 | |
| 1401 | void CodeGeneratorX86_64::GenerateFrameExit() { |
David Srbecky | c34dc93 | 2015-04-12 09:27:43 +0100 | [diff] [blame] | 1402 | __ cfi().RememberState(); |
| 1403 | if (!HasEmptyFrame()) { |
| 1404 | uint32_t xmm_spill_location = GetFpuSpillStart(); |
| 1405 | size_t xmm_spill_slot_size = GetFloatingPointSpillSlotSize(); |
| 1406 | for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) { |
| 1407 | if (allocated_registers_.ContainsFloatingPointRegister(kFpuCalleeSaves[i])) { |
| 1408 | int offset = xmm_spill_location + (xmm_spill_slot_size * i); |
| 1409 | __ movsd(XmmRegister(kFpuCalleeSaves[i]), Address(CpuRegister(RSP), offset)); |
| 1410 | __ cfi().Restore(DWARFReg(kFpuCalleeSaves[i])); |
| 1411 | } |
| 1412 | } |
| 1413 | |
| 1414 | int adjust = GetFrameSize() - GetCoreSpillSize(); |
| 1415 | __ addq(CpuRegister(RSP), Immediate(adjust)); |
| 1416 | __ cfi().AdjustCFAOffset(-adjust); |
| 1417 | |
| 1418 | for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) { |
| 1419 | Register reg = kCoreCalleeSaves[i]; |
| 1420 | if (allocated_registers_.ContainsCoreRegister(reg)) { |
| 1421 | __ popq(CpuRegister(reg)); |
| 1422 | __ cfi().AdjustCFAOffset(-static_cast<int>(kX86_64WordSize)); |
| 1423 | __ cfi().Restore(DWARFReg(reg)); |
| 1424 | } |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 1425 | } |
| 1426 | } |
David Srbecky | c34dc93 | 2015-04-12 09:27:43 +0100 | [diff] [blame] | 1427 | __ ret(); |
| 1428 | __ cfi().RestoreState(); |
| 1429 | __ cfi().DefCFAOffset(GetFrameSize()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1430 | } |
| 1431 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 1432 | void CodeGeneratorX86_64::Bind(HBasicBlock* block) { |
| 1433 | __ Bind(GetLabelOf(block)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1434 | } |
| 1435 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1436 | void CodeGeneratorX86_64::Move(Location destination, Location source) { |
| 1437 | if (source.Equals(destination)) { |
| 1438 | return; |
| 1439 | } |
| 1440 | if (destination.IsRegister()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1441 | CpuRegister dest = destination.AsRegister<CpuRegister>(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1442 | if (source.IsRegister()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1443 | __ movq(dest, source.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1444 | } else if (source.IsFpuRegister()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1445 | __ movd(dest, source.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1446 | } else if (source.IsStackSlot()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1447 | __ movl(dest, Address(CpuRegister(RSP), source.GetStackIndex())); |
| 1448 | } else if (source.IsConstant()) { |
| 1449 | HConstant* constant = source.GetConstant(); |
| 1450 | if (constant->IsLongConstant()) { |
| 1451 | Load64BitValue(dest, constant->AsLongConstant()->GetValue()); |
| 1452 | } else { |
| 1453 | Load32BitValue(dest, GetInt32ValueOf(constant)); |
| 1454 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1455 | } else { |
| 1456 | DCHECK(source.IsDoubleStackSlot()); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1457 | __ movq(dest, Address(CpuRegister(RSP), source.GetStackIndex())); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1458 | } |
| 1459 | } else if (destination.IsFpuRegister()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1460 | XmmRegister dest = destination.AsFpuRegister<XmmRegister>(); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1461 | if (source.IsRegister()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1462 | __ movd(dest, source.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1463 | } else if (source.IsFpuRegister()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1464 | __ movaps(dest, source.AsFpuRegister<XmmRegister>()); |
| 1465 | } else if (source.IsConstant()) { |
| 1466 | HConstant* constant = source.GetConstant(); |
| 1467 | int64_t value = CodeGenerator::GetInt64ValueOf(constant); |
| 1468 | if (constant->IsFloatConstant()) { |
| 1469 | Load32BitValue(dest, static_cast<int32_t>(value)); |
| 1470 | } else { |
| 1471 | Load64BitValue(dest, value); |
| 1472 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1473 | } else if (source.IsStackSlot()) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1474 | __ movss(dest, Address(CpuRegister(RSP), source.GetStackIndex())); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1475 | } else { |
| 1476 | DCHECK(source.IsDoubleStackSlot()); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1477 | __ movsd(dest, Address(CpuRegister(RSP), source.GetStackIndex())); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1478 | } |
| 1479 | } else if (destination.IsStackSlot()) { |
| 1480 | if (source.IsRegister()) { |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1481 | __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1482 | source.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1483 | } else if (source.IsFpuRegister()) { |
| 1484 | __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1485 | source.AsFpuRegister<XmmRegister>()); |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 1486 | } else if (source.IsConstant()) { |
| 1487 | HConstant* constant = source.GetConstant(); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 1488 | int32_t value = GetInt32ValueOf(constant); |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 1489 | __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), Immediate(value)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1490 | } else { |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 1491 | DCHECK(source.IsStackSlot()) << source; |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 1492 | __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); |
| 1493 | __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1494 | } |
| 1495 | } else { |
| 1496 | DCHECK(destination.IsDoubleStackSlot()); |
| 1497 | if (source.IsRegister()) { |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1498 | __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1499 | source.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1500 | } else if (source.IsFpuRegister()) { |
| 1501 | __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1502 | source.AsFpuRegister<XmmRegister>()); |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 1503 | } else if (source.IsConstant()) { |
| 1504 | HConstant* constant = source.GetConstant(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 1505 | DCHECK(constant->IsLongConstant() || constant->IsDoubleConstant()); |
| 1506 | int64_t value = GetInt64ValueOf(constant); |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 1507 | Store64BitValueToStack(destination, value); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1508 | } else { |
| 1509 | DCHECK(source.IsDoubleStackSlot()); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 1510 | __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); |
| 1511 | __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1512 | } |
| 1513 | } |
| 1514 | } |
| 1515 | |
Calin Juravle | 175dc73 | 2015-08-25 15:42:32 +0100 | [diff] [blame] | 1516 | void CodeGeneratorX86_64::MoveConstant(Location location, int32_t value) { |
| 1517 | DCHECK(location.IsRegister()); |
| 1518 | Load64BitValue(location.AsRegister<CpuRegister>(), static_cast<int64_t>(value)); |
| 1519 | } |
| 1520 | |
Calin Juravle | e460d1d | 2015-09-29 04:52:17 +0100 | [diff] [blame] | 1521 | void CodeGeneratorX86_64::MoveLocation( |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1522 | Location dst, Location src, DataType::Type dst_type ATTRIBUTE_UNUSED) { |
Calin Juravle | e460d1d | 2015-09-29 04:52:17 +0100 | [diff] [blame] | 1523 | Move(dst, src); |
| 1524 | } |
| 1525 | |
| 1526 | void CodeGeneratorX86_64::AddLocationAsTemp(Location location, LocationSummary* locations) { |
| 1527 | if (location.IsRegister()) { |
| 1528 | locations->AddTemp(location); |
| 1529 | } else { |
| 1530 | UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location; |
| 1531 | } |
| 1532 | } |
| 1533 | |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1534 | void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { |
Aart Bik | a8b8e9b | 2018-01-09 11:01:02 -0800 | [diff] [blame] | 1535 | if (successor->IsExitBlock()) { |
| 1536 | DCHECK(got->GetPrevious()->AlwaysThrows()); |
| 1537 | return; // no code needed |
| 1538 | } |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 1539 | |
| 1540 | HBasicBlock* block = got->GetBlock(); |
| 1541 | HInstruction* previous = got->GetPrevious(); |
| 1542 | |
| 1543 | HLoopInformation* info = block->GetLoopInformation(); |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1544 | if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) { |
Nicolas Geoffray | 8d72832 | 2018-01-18 22:44:32 +0000 | [diff] [blame] | 1545 | if (codegen_->GetCompilerOptions().CountHotnessInCompiledCode()) { |
| 1546 | __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), 0)); |
| 1547 | __ addw(Address(CpuRegister(TMP), ArtMethod::HotnessCountOffset().Int32Value()), |
| 1548 | Immediate(1)); |
| 1549 | } |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 1550 | GenerateSuspendCheck(info->GetSuspendCheck(), successor); |
| 1551 | return; |
| 1552 | } |
| 1553 | |
| 1554 | if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) { |
| 1555 | GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr); |
| 1556 | } |
| 1557 | if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1558 | __ jmp(codegen_->GetLabelOf(successor)); |
| 1559 | } |
| 1560 | } |
| 1561 | |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1562 | void LocationsBuilderX86_64::VisitGoto(HGoto* got) { |
| 1563 | got->SetLocations(nullptr); |
| 1564 | } |
| 1565 | |
| 1566 | void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { |
| 1567 | HandleGoto(got, got->GetSuccessor()); |
| 1568 | } |
| 1569 | |
| 1570 | void LocationsBuilderX86_64::VisitTryBoundary(HTryBoundary* try_boundary) { |
| 1571 | try_boundary->SetLocations(nullptr); |
| 1572 | } |
| 1573 | |
| 1574 | void InstructionCodeGeneratorX86_64::VisitTryBoundary(HTryBoundary* try_boundary) { |
| 1575 | HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor(); |
| 1576 | if (!successor->IsExitBlock()) { |
| 1577 | HandleGoto(try_boundary, successor); |
| 1578 | } |
| 1579 | } |
| 1580 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1581 | void LocationsBuilderX86_64::VisitExit(HExit* exit) { |
| 1582 | exit->SetLocations(nullptr); |
| 1583 | } |
| 1584 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 1585 | void InstructionCodeGeneratorX86_64::VisitExit(HExit* exit ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1586 | } |
| 1587 | |
Mark Mendell | 152408f | 2015-12-31 12:28:50 -0500 | [diff] [blame] | 1588 | template<class LabelType> |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1589 | void InstructionCodeGeneratorX86_64::GenerateFPJumps(HCondition* cond, |
Mark Mendell | 152408f | 2015-12-31 12:28:50 -0500 | [diff] [blame] | 1590 | LabelType* true_label, |
| 1591 | LabelType* false_label) { |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 1592 | if (cond->IsFPConditionTrueIfNaN()) { |
| 1593 | __ j(kUnordered, true_label); |
| 1594 | } else if (cond->IsFPConditionFalseIfNaN()) { |
| 1595 | __ j(kUnordered, false_label); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1596 | } |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 1597 | __ j(X86_64FPCondition(cond->GetCondition()), true_label); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1598 | } |
| 1599 | |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1600 | void InstructionCodeGeneratorX86_64::GenerateCompareTest(HCondition* condition) { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1601 | LocationSummary* locations = condition->GetLocations(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1602 | |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1603 | Location left = locations->InAt(0); |
| 1604 | Location right = locations->InAt(1); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1605 | DataType::Type type = condition->InputAt(0)->GetType(); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1606 | switch (type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1607 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 1608 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1609 | case DataType::Type::kInt8: |
| 1610 | case DataType::Type::kUint16: |
| 1611 | case DataType::Type::kInt16: |
| 1612 | case DataType::Type::kInt32: |
| 1613 | case DataType::Type::kReference: { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 1614 | codegen_->GenerateIntCompare(left, right); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1615 | break; |
| 1616 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1617 | case DataType::Type::kInt64: { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 1618 | codegen_->GenerateLongCompare(left, right); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1619 | break; |
| 1620 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1621 | case DataType::Type::kFloat32: { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1622 | if (right.IsFpuRegister()) { |
| 1623 | __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>()); |
| 1624 | } else if (right.IsConstant()) { |
| 1625 | __ ucomiss(left.AsFpuRegister<XmmRegister>(), |
| 1626 | codegen_->LiteralFloatAddress( |
| 1627 | right.GetConstant()->AsFloatConstant()->GetValue())); |
| 1628 | } else { |
| 1629 | DCHECK(right.IsStackSlot()); |
| 1630 | __ ucomiss(left.AsFpuRegister<XmmRegister>(), |
| 1631 | Address(CpuRegister(RSP), right.GetStackIndex())); |
| 1632 | } |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1633 | break; |
| 1634 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1635 | case DataType::Type::kFloat64: { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1636 | if (right.IsFpuRegister()) { |
| 1637 | __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>()); |
| 1638 | } else if (right.IsConstant()) { |
| 1639 | __ ucomisd(left.AsFpuRegister<XmmRegister>(), |
| 1640 | codegen_->LiteralDoubleAddress( |
| 1641 | right.GetConstant()->AsDoubleConstant()->GetValue())); |
| 1642 | } else { |
| 1643 | DCHECK(right.IsDoubleStackSlot()); |
| 1644 | __ ucomisd(left.AsFpuRegister<XmmRegister>(), |
| 1645 | Address(CpuRegister(RSP), right.GetStackIndex())); |
| 1646 | } |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1647 | break; |
| 1648 | } |
| 1649 | default: |
| 1650 | LOG(FATAL) << "Unexpected condition type " << type; |
| 1651 | } |
| 1652 | } |
| 1653 | |
| 1654 | template<class LabelType> |
| 1655 | void InstructionCodeGeneratorX86_64::GenerateCompareTestAndBranch(HCondition* condition, |
| 1656 | LabelType* true_target_in, |
| 1657 | LabelType* false_target_in) { |
| 1658 | // Generated branching requires both targets to be explicit. If either of the |
| 1659 | // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead. |
| 1660 | LabelType fallthrough_target; |
| 1661 | LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in; |
| 1662 | LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in; |
| 1663 | |
| 1664 | // Generate the comparison to set the CC. |
| 1665 | GenerateCompareTest(condition); |
| 1666 | |
| 1667 | // Now generate the correct jump(s). |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1668 | DataType::Type type = condition->InputAt(0)->GetType(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1669 | switch (type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1670 | case DataType::Type::kInt64: { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1671 | __ j(X86_64IntegerCondition(condition->GetCondition()), true_target); |
| 1672 | break; |
| 1673 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1674 | case DataType::Type::kFloat32: { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1675 | GenerateFPJumps(condition, true_target, false_target); |
| 1676 | break; |
| 1677 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1678 | case DataType::Type::kFloat64: { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1679 | GenerateFPJumps(condition, true_target, false_target); |
| 1680 | break; |
| 1681 | } |
| 1682 | default: |
| 1683 | LOG(FATAL) << "Unexpected condition type " << type; |
| 1684 | } |
| 1685 | |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1686 | if (false_target != &fallthrough_target) { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1687 | __ jmp(false_target); |
| 1688 | } |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1689 | |
| 1690 | if (fallthrough_target.IsLinked()) { |
| 1691 | __ Bind(&fallthrough_target); |
| 1692 | } |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1693 | } |
| 1694 | |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1695 | static bool AreEflagsSetFrom(HInstruction* cond, HInstruction* branch) { |
| 1696 | // Moves may affect the eflags register (move zero uses xorl), so the EFLAGS |
| 1697 | // are set only strictly before `branch`. We can't use the eflags on long |
| 1698 | // conditions if they are materialized due to the complex branching. |
| 1699 | return cond->IsCondition() && |
| 1700 | cond->GetNext() == branch && |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1701 | !DataType::IsFloatingPointType(cond->InputAt(0)->GetType()); |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1702 | } |
| 1703 | |
Mark Mendell | 152408f | 2015-12-31 12:28:50 -0500 | [diff] [blame] | 1704 | template<class LabelType> |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1705 | void InstructionCodeGeneratorX86_64::GenerateTestAndBranch(HInstruction* instruction, |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1706 | size_t condition_input_index, |
Mark Mendell | 152408f | 2015-12-31 12:28:50 -0500 | [diff] [blame] | 1707 | LabelType* true_target, |
| 1708 | LabelType* false_target) { |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1709 | HInstruction* cond = instruction->InputAt(condition_input_index); |
| 1710 | |
| 1711 | if (true_target == nullptr && false_target == nullptr) { |
| 1712 | // Nothing to do. The code always falls through. |
| 1713 | return; |
| 1714 | } else if (cond->IsIntConstant()) { |
Roland Levillain | 1a65388 | 2016-03-18 18:05:57 +0000 | [diff] [blame] | 1715 | // Constant condition, statically compared against "true" (integer value 1). |
| 1716 | if (cond->AsIntConstant()->IsTrue()) { |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1717 | if (true_target != nullptr) { |
| 1718 | __ jmp(true_target); |
Nicolas Geoffray | 18efde5 | 2014-09-22 15:51:11 +0100 | [diff] [blame] | 1719 | } |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 1720 | } else { |
Roland Levillain | 1a65388 | 2016-03-18 18:05:57 +0000 | [diff] [blame] | 1721 | DCHECK(cond->AsIntConstant()->IsFalse()) << cond->AsIntConstant()->GetValue(); |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1722 | if (false_target != nullptr) { |
| 1723 | __ jmp(false_target); |
| 1724 | } |
| 1725 | } |
| 1726 | return; |
| 1727 | } |
| 1728 | |
| 1729 | // The following code generates these patterns: |
| 1730 | // (1) true_target == nullptr && false_target != nullptr |
| 1731 | // - opposite condition true => branch to false_target |
| 1732 | // (2) true_target != nullptr && false_target == nullptr |
| 1733 | // - condition true => branch to true_target |
| 1734 | // (3) true_target != nullptr && false_target != nullptr |
| 1735 | // - condition true => branch to true_target |
| 1736 | // - branch to false_target |
| 1737 | if (IsBooleanValueOrMaterializedCondition(cond)) { |
| 1738 | if (AreEflagsSetFrom(cond, instruction)) { |
| 1739 | if (true_target == nullptr) { |
| 1740 | __ j(X86_64IntegerCondition(cond->AsCondition()->GetOppositeCondition()), false_target); |
| 1741 | } else { |
| 1742 | __ j(X86_64IntegerCondition(cond->AsCondition()->GetCondition()), true_target); |
| 1743 | } |
| 1744 | } else { |
| 1745 | // Materialized condition, compare against 0. |
| 1746 | Location lhs = instruction->GetLocations()->InAt(condition_input_index); |
| 1747 | if (lhs.IsRegister()) { |
| 1748 | __ testl(lhs.AsRegister<CpuRegister>(), lhs.AsRegister<CpuRegister>()); |
| 1749 | } else { |
| 1750 | __ cmpl(Address(CpuRegister(RSP), lhs.GetStackIndex()), Immediate(0)); |
| 1751 | } |
| 1752 | if (true_target == nullptr) { |
| 1753 | __ j(kEqual, false_target); |
| 1754 | } else { |
| 1755 | __ j(kNotEqual, true_target); |
| 1756 | } |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 1757 | } |
| 1758 | } else { |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1759 | // Condition has not been materialized, use its inputs as the |
| 1760 | // comparison and its condition as the branch condition. |
Mark Mendell | b8b9769 | 2015-05-22 16:58:19 -0400 | [diff] [blame] | 1761 | HCondition* condition = cond->AsCondition(); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1762 | |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1763 | // If this is a long or FP comparison that has been folded into |
| 1764 | // the HCondition, generate the comparison directly. |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1765 | DataType::Type type = condition->InputAt(0)->GetType(); |
| 1766 | if (type == DataType::Type::kInt64 || DataType::IsFloatingPointType(type)) { |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1767 | GenerateCompareTestAndBranch(condition, true_target, false_target); |
| 1768 | return; |
| 1769 | } |
| 1770 | |
| 1771 | Location lhs = condition->GetLocations()->InAt(0); |
| 1772 | Location rhs = condition->GetLocations()->InAt(1); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 1773 | codegen_->GenerateIntCompare(lhs, rhs); |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1774 | if (true_target == nullptr) { |
| 1775 | __ j(X86_64IntegerCondition(condition->GetOppositeCondition()), false_target); |
| 1776 | } else { |
Mark Mendell | b8b9769 | 2015-05-22 16:58:19 -0400 | [diff] [blame] | 1777 | __ j(X86_64IntegerCondition(condition->GetCondition()), true_target); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1778 | } |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1779 | } |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1780 | |
| 1781 | // If neither branch falls through (case 3), the conditional branch to `true_target` |
| 1782 | // was already emitted (case 2) and we need to emit a jump to `false_target`. |
| 1783 | if (true_target != nullptr && false_target != nullptr) { |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1784 | __ jmp(false_target); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1785 | } |
| 1786 | } |
| 1787 | |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1788 | void LocationsBuilderX86_64::VisitIf(HIf* if_instr) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1789 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(if_instr); |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1790 | if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) { |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1791 | locations->SetInAt(0, Location::Any()); |
| 1792 | } |
| 1793 | } |
| 1794 | |
| 1795 | void InstructionCodeGeneratorX86_64::VisitIf(HIf* if_instr) { |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1796 | HBasicBlock* true_successor = if_instr->IfTrueSuccessor(); |
| 1797 | HBasicBlock* false_successor = if_instr->IfFalseSuccessor(); |
| 1798 | Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? |
| 1799 | nullptr : codegen_->GetLabelOf(true_successor); |
| 1800 | Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? |
| 1801 | nullptr : codegen_->GetLabelOf(false_successor); |
| 1802 | GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target); |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1803 | } |
| 1804 | |
| 1805 | void LocationsBuilderX86_64::VisitDeoptimize(HDeoptimize* deoptimize) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1806 | LocationSummary* locations = new (GetGraph()->GetAllocator()) |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1807 | LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath); |
Nicolas Geoffray | 4e92c3c | 2017-05-08 09:34:26 +0100 | [diff] [blame] | 1808 | InvokeRuntimeCallingConvention calling_convention; |
| 1809 | RegisterSet caller_saves = RegisterSet::Empty(); |
| 1810 | caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 1811 | locations->SetCustomSlowPathCallerSaves(caller_saves); |
David Brazdil | 0debae7 | 2015-11-12 18:37:00 +0000 | [diff] [blame] | 1812 | if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) { |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1813 | locations->SetInAt(0, Location::Any()); |
| 1814 | } |
| 1815 | } |
| 1816 | |
| 1817 | void InstructionCodeGeneratorX86_64::VisitDeoptimize(HDeoptimize* deoptimize) { |
Aart Bik | 42249c3 | 2016-01-07 15:33:50 -0800 | [diff] [blame] | 1818 | SlowPathCode* slow_path = deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathX86_64>(deoptimize); |
David Brazdil | 74eb1b2 | 2015-12-14 11:44:01 +0000 | [diff] [blame] | 1819 | GenerateTestAndBranch<Label>(deoptimize, |
| 1820 | /* condition_input_index */ 0, |
| 1821 | slow_path->GetEntryLabel(), |
| 1822 | /* false_target */ nullptr); |
| 1823 | } |
| 1824 | |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 1825 | void LocationsBuilderX86_64::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1826 | LocationSummary* locations = new (GetGraph()->GetAllocator()) |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 1827 | LocationSummary(flag, LocationSummary::kNoCall); |
| 1828 | locations->SetOut(Location::RequiresRegister()); |
| 1829 | } |
| 1830 | |
| 1831 | void InstructionCodeGeneratorX86_64::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) { |
| 1832 | __ movl(flag->GetLocations()->Out().AsRegister<CpuRegister>(), |
| 1833 | Address(CpuRegister(RSP), codegen_->GetStackOffsetOfShouldDeoptimizeFlag())); |
| 1834 | } |
| 1835 | |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1836 | static bool SelectCanUseCMOV(HSelect* select) { |
| 1837 | // There are no conditional move instructions for XMMs. |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1838 | if (DataType::IsFloatingPointType(select->GetType())) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1839 | return false; |
| 1840 | } |
| 1841 | |
| 1842 | // A FP condition doesn't generate the single CC that we need. |
| 1843 | HInstruction* condition = select->GetCondition(); |
| 1844 | if (condition->IsCondition() && |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1845 | DataType::IsFloatingPointType(condition->InputAt(0)->GetType())) { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1846 | return false; |
| 1847 | } |
| 1848 | |
| 1849 | // We can generate a CMOV for this Select. |
| 1850 | return true; |
| 1851 | } |
| 1852 | |
David Brazdil | 74eb1b2 | 2015-12-14 11:44:01 +0000 | [diff] [blame] | 1853 | void LocationsBuilderX86_64::VisitSelect(HSelect* select) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1854 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(select); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1855 | if (DataType::IsFloatingPointType(select->GetType())) { |
David Brazdil | 74eb1b2 | 2015-12-14 11:44:01 +0000 | [diff] [blame] | 1856 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1857 | locations->SetInAt(1, Location::Any()); |
David Brazdil | 74eb1b2 | 2015-12-14 11:44:01 +0000 | [diff] [blame] | 1858 | } else { |
| 1859 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1860 | if (SelectCanUseCMOV(select)) { |
Mark Mendell | dee1b9a | 2016-02-12 14:36:51 -0500 | [diff] [blame] | 1861 | if (select->InputAt(1)->IsConstant()) { |
| 1862 | locations->SetInAt(1, Location::RequiresRegister()); |
| 1863 | } else { |
| 1864 | locations->SetInAt(1, Location::Any()); |
| 1865 | } |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1866 | } else { |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1867 | locations->SetInAt(1, Location::Any()); |
| 1868 | } |
David Brazdil | 74eb1b2 | 2015-12-14 11:44:01 +0000 | [diff] [blame] | 1869 | } |
| 1870 | if (IsBooleanValueOrMaterializedCondition(select->GetCondition())) { |
| 1871 | locations->SetInAt(2, Location::RequiresRegister()); |
| 1872 | } |
| 1873 | locations->SetOut(Location::SameAsFirstInput()); |
| 1874 | } |
| 1875 | |
| 1876 | void InstructionCodeGeneratorX86_64::VisitSelect(HSelect* select) { |
| 1877 | LocationSummary* locations = select->GetLocations(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1878 | if (SelectCanUseCMOV(select)) { |
| 1879 | // If both the condition and the source types are integer, we can generate |
| 1880 | // a CMOV to implement Select. |
| 1881 | CpuRegister value_false = locations->InAt(0).AsRegister<CpuRegister>(); |
Mark Mendell | dee1b9a | 2016-02-12 14:36:51 -0500 | [diff] [blame] | 1882 | Location value_true_loc = locations->InAt(1); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1883 | DCHECK(locations->InAt(0).Equals(locations->Out())); |
| 1884 | |
| 1885 | HInstruction* select_condition = select->GetCondition(); |
| 1886 | Condition cond = kNotEqual; |
| 1887 | |
| 1888 | // Figure out how to test the 'condition'. |
| 1889 | if (select_condition->IsCondition()) { |
| 1890 | HCondition* condition = select_condition->AsCondition(); |
| 1891 | if (!condition->IsEmittedAtUseSite()) { |
| 1892 | // This was a previously materialized condition. |
| 1893 | // Can we use the existing condition code? |
| 1894 | if (AreEflagsSetFrom(condition, select)) { |
| 1895 | // Materialization was the previous instruction. Condition codes are right. |
| 1896 | cond = X86_64IntegerCondition(condition->GetCondition()); |
| 1897 | } else { |
| 1898 | // No, we have to recreate the condition code. |
| 1899 | CpuRegister cond_reg = locations->InAt(2).AsRegister<CpuRegister>(); |
| 1900 | __ testl(cond_reg, cond_reg); |
| 1901 | } |
| 1902 | } else { |
| 1903 | GenerateCompareTest(condition); |
| 1904 | cond = X86_64IntegerCondition(condition->GetCondition()); |
| 1905 | } |
| 1906 | } else { |
Roland Levillain | 5e8d5f0 | 2016-10-18 18:03:43 +0100 | [diff] [blame] | 1907 | // Must be a Boolean condition, which needs to be compared to 0. |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1908 | CpuRegister cond_reg = locations->InAt(2).AsRegister<CpuRegister>(); |
| 1909 | __ testl(cond_reg, cond_reg); |
| 1910 | } |
| 1911 | |
| 1912 | // If the condition is true, overwrite the output, which already contains false. |
| 1913 | // Generate the correct sized CMOV. |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1914 | bool is_64_bit = DataType::Is64BitType(select->GetType()); |
Mark Mendell | dee1b9a | 2016-02-12 14:36:51 -0500 | [diff] [blame] | 1915 | if (value_true_loc.IsRegister()) { |
| 1916 | __ cmov(cond, value_false, value_true_loc.AsRegister<CpuRegister>(), is_64_bit); |
| 1917 | } else { |
| 1918 | __ cmov(cond, |
| 1919 | value_false, |
| 1920 | Address(CpuRegister(RSP), value_true_loc.GetStackIndex()), is_64_bit); |
| 1921 | } |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 1922 | } else { |
| 1923 | NearLabel false_target; |
| 1924 | GenerateTestAndBranch<NearLabel>(select, |
| 1925 | /* condition_input_index */ 2, |
| 1926 | /* true_target */ nullptr, |
| 1927 | &false_target); |
| 1928 | codegen_->MoveLocation(locations->Out(), locations->InAt(1), select->GetType()); |
| 1929 | __ Bind(&false_target); |
| 1930 | } |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1931 | } |
| 1932 | |
David Srbecky | 0cf4493 | 2015-12-09 14:09:59 +0000 | [diff] [blame] | 1933 | void LocationsBuilderX86_64::VisitNativeDebugInfo(HNativeDebugInfo* info) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1934 | new (GetGraph()->GetAllocator()) LocationSummary(info); |
David Srbecky | 0cf4493 | 2015-12-09 14:09:59 +0000 | [diff] [blame] | 1935 | } |
| 1936 | |
David Srbecky | d28f4a0 | 2016-03-14 17:14:24 +0000 | [diff] [blame] | 1937 | void InstructionCodeGeneratorX86_64::VisitNativeDebugInfo(HNativeDebugInfo*) { |
| 1938 | // MaybeRecordNativeDebugInfo is already called implicitly in CodeGenerator::Compile. |
David Srbecky | c7098ff | 2016-02-09 14:30:11 +0000 | [diff] [blame] | 1939 | } |
| 1940 | |
| 1941 | void CodeGeneratorX86_64::GenerateNop() { |
| 1942 | __ nop(); |
David Srbecky | 0cf4493 | 2015-12-09 14:09:59 +0000 | [diff] [blame] | 1943 | } |
| 1944 | |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 1945 | void LocationsBuilderX86_64::HandleCondition(HCondition* cond) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1946 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1947 | new (GetGraph()->GetAllocator()) LocationSummary(cond, LocationSummary::kNoCall); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1948 | // Handle the long/FP comparisons made in instruction simplification. |
| 1949 | switch (cond->InputAt(0)->GetType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1950 | case DataType::Type::kInt64: |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1951 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1952 | locations->SetInAt(1, Location::Any()); |
| 1953 | break; |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1954 | case DataType::Type::kFloat32: |
| 1955 | case DataType::Type::kFloat64: |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1956 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1957 | locations->SetInAt(1, Location::Any()); |
| 1958 | break; |
| 1959 | default: |
| 1960 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1961 | locations->SetInAt(1, Location::Any()); |
| 1962 | break; |
| 1963 | } |
David Brazdil | b3e773e | 2016-01-26 11:28:37 +0000 | [diff] [blame] | 1964 | if (!cond->IsEmittedAtUseSite()) { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1965 | locations->SetOut(Location::RequiresRegister()); |
| 1966 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 1967 | } |
| 1968 | |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 1969 | void InstructionCodeGeneratorX86_64::HandleCondition(HCondition* cond) { |
David Brazdil | b3e773e | 2016-01-26 11:28:37 +0000 | [diff] [blame] | 1970 | if (cond->IsEmittedAtUseSite()) { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1971 | return; |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1972 | } |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1973 | |
| 1974 | LocationSummary* locations = cond->GetLocations(); |
| 1975 | Location lhs = locations->InAt(0); |
| 1976 | Location rhs = locations->InAt(1); |
| 1977 | CpuRegister reg = locations->Out().AsRegister<CpuRegister>(); |
Mark Mendell | 152408f | 2015-12-31 12:28:50 -0500 | [diff] [blame] | 1978 | NearLabel true_label, false_label; |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1979 | |
| 1980 | switch (cond->InputAt(0)->GetType()) { |
| 1981 | default: |
| 1982 | // Integer case. |
| 1983 | |
| 1984 | // Clear output register: setcc only sets the low byte. |
| 1985 | __ xorl(reg, reg); |
| 1986 | |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 1987 | codegen_->GenerateIntCompare(lhs, rhs); |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 1988 | __ setcc(X86_64IntegerCondition(cond->GetCondition()), reg); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1989 | return; |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1990 | case DataType::Type::kInt64: |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1991 | // Clear output register: setcc only sets the low byte. |
| 1992 | __ xorl(reg, reg); |
| 1993 | |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 1994 | codegen_->GenerateLongCompare(lhs, rhs); |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 1995 | __ setcc(X86_64IntegerCondition(cond->GetCondition()), reg); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1996 | return; |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 1997 | case DataType::Type::kFloat32: { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 1998 | XmmRegister lhs_reg = lhs.AsFpuRegister<XmmRegister>(); |
| 1999 | if (rhs.IsConstant()) { |
| 2000 | float value = rhs.GetConstant()->AsFloatConstant()->GetValue(); |
| 2001 | __ ucomiss(lhs_reg, codegen_->LiteralFloatAddress(value)); |
| 2002 | } else if (rhs.IsStackSlot()) { |
| 2003 | __ ucomiss(lhs_reg, Address(CpuRegister(RSP), rhs.GetStackIndex())); |
| 2004 | } else { |
| 2005 | __ ucomiss(lhs_reg, rhs.AsFpuRegister<XmmRegister>()); |
| 2006 | } |
| 2007 | GenerateFPJumps(cond, &true_label, &false_label); |
| 2008 | break; |
| 2009 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2010 | case DataType::Type::kFloat64: { |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2011 | XmmRegister lhs_reg = lhs.AsFpuRegister<XmmRegister>(); |
| 2012 | if (rhs.IsConstant()) { |
| 2013 | double value = rhs.GetConstant()->AsDoubleConstant()->GetValue(); |
| 2014 | __ ucomisd(lhs_reg, codegen_->LiteralDoubleAddress(value)); |
| 2015 | } else if (rhs.IsDoubleStackSlot()) { |
| 2016 | __ ucomisd(lhs_reg, Address(CpuRegister(RSP), rhs.GetStackIndex())); |
| 2017 | } else { |
| 2018 | __ ucomisd(lhs_reg, rhs.AsFpuRegister<XmmRegister>()); |
| 2019 | } |
| 2020 | GenerateFPJumps(cond, &true_label, &false_label); |
| 2021 | break; |
| 2022 | } |
| 2023 | } |
| 2024 | |
| 2025 | // Convert the jumps into the result. |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 2026 | NearLabel done_label; |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2027 | |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 2028 | // False case: result = 0. |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2029 | __ Bind(&false_label); |
| 2030 | __ xorl(reg, reg); |
| 2031 | __ jmp(&done_label); |
| 2032 | |
Roland Levillain | 4fa13f6 | 2015-07-06 18:11:54 +0100 | [diff] [blame] | 2033 | // True case: result = 1. |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2034 | __ Bind(&true_label); |
| 2035 | __ movl(reg, Immediate(1)); |
| 2036 | __ Bind(&done_label); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2037 | } |
| 2038 | |
| 2039 | void LocationsBuilderX86_64::VisitEqual(HEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2040 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2041 | } |
| 2042 | |
| 2043 | void InstructionCodeGeneratorX86_64::VisitEqual(HEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2044 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2045 | } |
| 2046 | |
| 2047 | void LocationsBuilderX86_64::VisitNotEqual(HNotEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2048 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2049 | } |
| 2050 | |
| 2051 | void InstructionCodeGeneratorX86_64::VisitNotEqual(HNotEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2052 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2053 | } |
| 2054 | |
| 2055 | void LocationsBuilderX86_64::VisitLessThan(HLessThan* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2056 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2057 | } |
| 2058 | |
| 2059 | void InstructionCodeGeneratorX86_64::VisitLessThan(HLessThan* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2060 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2061 | } |
| 2062 | |
| 2063 | void LocationsBuilderX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2064 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2065 | } |
| 2066 | |
| 2067 | void InstructionCodeGeneratorX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2068 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2069 | } |
| 2070 | |
| 2071 | void LocationsBuilderX86_64::VisitGreaterThan(HGreaterThan* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2072 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2073 | } |
| 2074 | |
| 2075 | void InstructionCodeGeneratorX86_64::VisitGreaterThan(HGreaterThan* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2076 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2077 | } |
| 2078 | |
| 2079 | void LocationsBuilderX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2080 | HandleCondition(comp); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | void InstructionCodeGeneratorX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2084 | HandleCondition(comp); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2085 | } |
| 2086 | |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2087 | void LocationsBuilderX86_64::VisitBelow(HBelow* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2088 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2089 | } |
| 2090 | |
| 2091 | void InstructionCodeGeneratorX86_64::VisitBelow(HBelow* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2092 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2093 | } |
| 2094 | |
| 2095 | void LocationsBuilderX86_64::VisitBelowOrEqual(HBelowOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2096 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2097 | } |
| 2098 | |
| 2099 | void InstructionCodeGeneratorX86_64::VisitBelowOrEqual(HBelowOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2100 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2101 | } |
| 2102 | |
| 2103 | void LocationsBuilderX86_64::VisitAbove(HAbove* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2104 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2105 | } |
| 2106 | |
| 2107 | void InstructionCodeGeneratorX86_64::VisitAbove(HAbove* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2108 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2109 | } |
| 2110 | |
| 2111 | void LocationsBuilderX86_64::VisitAboveOrEqual(HAboveOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2112 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2113 | } |
| 2114 | |
| 2115 | void InstructionCodeGeneratorX86_64::VisitAboveOrEqual(HAboveOrEqual* comp) { |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 2116 | HandleCondition(comp); |
Aart Bik | e9f3760 | 2015-10-09 11:15:55 -0700 | [diff] [blame] | 2117 | } |
| 2118 | |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2119 | void LocationsBuilderX86_64::VisitCompare(HCompare* compare) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2120 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2121 | new (GetGraph()->GetAllocator()) LocationSummary(compare, LocationSummary::kNoCall); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2122 | switch (compare->InputAt(0)->GetType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2123 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2124 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2125 | case DataType::Type::kInt8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2126 | case DataType::Type::kUint16: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2127 | case DataType::Type::kInt16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2128 | case DataType::Type::kInt32: |
| 2129 | case DataType::Type::kInt64: { |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2130 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2131 | locations->SetInAt(1, Location::Any()); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2132 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 2133 | break; |
| 2134 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2135 | case DataType::Type::kFloat32: |
| 2136 | case DataType::Type::kFloat64: { |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2137 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2138 | locations->SetInAt(1, Location::Any()); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2139 | locations->SetOut(Location::RequiresRegister()); |
| 2140 | break; |
| 2141 | } |
| 2142 | default: |
| 2143 | LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType(); |
| 2144 | } |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2145 | } |
| 2146 | |
| 2147 | void InstructionCodeGeneratorX86_64::VisitCompare(HCompare* compare) { |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2148 | LocationSummary* locations = compare->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2149 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2150 | Location left = locations->InAt(0); |
| 2151 | Location right = locations->InAt(1); |
| 2152 | |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 2153 | NearLabel less, greater, done; |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2154 | DataType::Type type = compare->InputAt(0)->GetType(); |
Aart Bik | a19616e | 2016-02-01 18:57:58 -0800 | [diff] [blame] | 2155 | Condition less_cond = kLess; |
| 2156 | |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2157 | switch (type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2158 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2159 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2160 | case DataType::Type::kInt8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2161 | case DataType::Type::kUint16: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2162 | case DataType::Type::kInt16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2163 | case DataType::Type::kInt32: { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 2164 | codegen_->GenerateIntCompare(left, right); |
Aart Bik | a19616e | 2016-02-01 18:57:58 -0800 | [diff] [blame] | 2165 | break; |
| 2166 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2167 | case DataType::Type::kInt64: { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 2168 | codegen_->GenerateLongCompare(left, right); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2169 | break; |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2170 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2171 | case DataType::Type::kFloat32: { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2172 | XmmRegister left_reg = left.AsFpuRegister<XmmRegister>(); |
| 2173 | if (right.IsConstant()) { |
| 2174 | float value = right.GetConstant()->AsFloatConstant()->GetValue(); |
| 2175 | __ ucomiss(left_reg, codegen_->LiteralFloatAddress(value)); |
| 2176 | } else if (right.IsStackSlot()) { |
| 2177 | __ ucomiss(left_reg, Address(CpuRegister(RSP), right.GetStackIndex())); |
| 2178 | } else { |
| 2179 | __ ucomiss(left_reg, right.AsFpuRegister<XmmRegister>()); |
| 2180 | } |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2181 | __ j(kUnordered, compare->IsGtBias() ? &greater : &less); |
Aart Bik | a19616e | 2016-02-01 18:57:58 -0800 | [diff] [blame] | 2182 | less_cond = kBelow; // ucomis{s,d} sets CF |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2183 | break; |
| 2184 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2185 | case DataType::Type::kFloat64: { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2186 | XmmRegister left_reg = left.AsFpuRegister<XmmRegister>(); |
| 2187 | if (right.IsConstant()) { |
| 2188 | double value = right.GetConstant()->AsDoubleConstant()->GetValue(); |
| 2189 | __ ucomisd(left_reg, codegen_->LiteralDoubleAddress(value)); |
| 2190 | } else if (right.IsDoubleStackSlot()) { |
| 2191 | __ ucomisd(left_reg, Address(CpuRegister(RSP), right.GetStackIndex())); |
| 2192 | } else { |
| 2193 | __ ucomisd(left_reg, right.AsFpuRegister<XmmRegister>()); |
| 2194 | } |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2195 | __ j(kUnordered, compare->IsGtBias() ? &greater : &less); |
Aart Bik | a19616e | 2016-02-01 18:57:58 -0800 | [diff] [blame] | 2196 | less_cond = kBelow; // ucomis{s,d} sets CF |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2197 | break; |
| 2198 | } |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2199 | default: |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2200 | LOG(FATAL) << "Unexpected compare type " << type; |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2201 | } |
Aart Bik | a19616e | 2016-02-01 18:57:58 -0800 | [diff] [blame] | 2202 | |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2203 | __ movl(out, Immediate(0)); |
Calin Juravle | 91debbc | 2014-11-26 19:01:09 +0000 | [diff] [blame] | 2204 | __ j(kEqual, &done); |
Aart Bik | a19616e | 2016-02-01 18:57:58 -0800 | [diff] [blame] | 2205 | __ j(less_cond, &less); |
Calin Juravle | fd86124 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2206 | |
Calin Juravle | 91debbc | 2014-11-26 19:01:09 +0000 | [diff] [blame] | 2207 | __ Bind(&greater); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2208 | __ movl(out, Immediate(1)); |
| 2209 | __ jmp(&done); |
| 2210 | |
| 2211 | __ Bind(&less); |
| 2212 | __ movl(out, Immediate(-1)); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2213 | |
| 2214 | __ Bind(&done); |
| 2215 | } |
| 2216 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2217 | void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2218 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2219 | new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 2220 | locations->SetOut(Location::ConstantLocation(constant)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2221 | } |
| 2222 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2223 | void InstructionCodeGeneratorX86_64::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) { |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 2224 | // Will be generated at use site. |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2225 | } |
| 2226 | |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 2227 | void LocationsBuilderX86_64::VisitNullConstant(HNullConstant* constant) { |
| 2228 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2229 | new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 2230 | locations->SetOut(Location::ConstantLocation(constant)); |
| 2231 | } |
| 2232 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2233 | void InstructionCodeGeneratorX86_64::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 2234 | // Will be generated at use site. |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 2235 | } |
| 2236 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2237 | void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2238 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2239 | new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 2240 | locations->SetOut(Location::ConstantLocation(constant)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2241 | } |
| 2242 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2243 | void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) { |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 2244 | // Will be generated at use site. |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2245 | } |
| 2246 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 2247 | void LocationsBuilderX86_64::VisitFloatConstant(HFloatConstant* constant) { |
| 2248 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2249 | new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 2250 | locations->SetOut(Location::ConstantLocation(constant)); |
| 2251 | } |
| 2252 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2253 | void InstructionCodeGeneratorX86_64::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 2254 | // Will be generated at use site. |
| 2255 | } |
| 2256 | |
| 2257 | void LocationsBuilderX86_64::VisitDoubleConstant(HDoubleConstant* constant) { |
| 2258 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2259 | new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 2260 | locations->SetOut(Location::ConstantLocation(constant)); |
| 2261 | } |
| 2262 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2263 | void InstructionCodeGeneratorX86_64::VisitDoubleConstant( |
| 2264 | HDoubleConstant* constant ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 2265 | // Will be generated at use site. |
| 2266 | } |
| 2267 | |
Igor Murashkin | d01745e | 2017-04-05 16:40:31 -0700 | [diff] [blame] | 2268 | void LocationsBuilderX86_64::VisitConstructorFence(HConstructorFence* constructor_fence) { |
| 2269 | constructor_fence->SetLocations(nullptr); |
| 2270 | } |
| 2271 | |
| 2272 | void InstructionCodeGeneratorX86_64::VisitConstructorFence( |
| 2273 | HConstructorFence* constructor_fence ATTRIBUTE_UNUSED) { |
| 2274 | codegen_->GenerateMemoryBarrier(MemBarrierKind::kStoreStore); |
| 2275 | } |
| 2276 | |
Calin Juravle | 27df758 | 2015-04-17 19:12:31 +0100 | [diff] [blame] | 2277 | void LocationsBuilderX86_64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) { |
| 2278 | memory_barrier->SetLocations(nullptr); |
| 2279 | } |
| 2280 | |
| 2281 | void InstructionCodeGeneratorX86_64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 2282 | codegen_->GenerateMemoryBarrier(memory_barrier->GetBarrierKind()); |
Calin Juravle | 27df758 | 2015-04-17 19:12:31 +0100 | [diff] [blame] | 2283 | } |
| 2284 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2285 | void LocationsBuilderX86_64::VisitReturnVoid(HReturnVoid* ret) { |
| 2286 | ret->SetLocations(nullptr); |
| 2287 | } |
| 2288 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2289 | void InstructionCodeGeneratorX86_64::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2290 | codegen_->GenerateFrameExit(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2291 | } |
| 2292 | |
| 2293 | void LocationsBuilderX86_64::VisitReturn(HReturn* ret) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2294 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2295 | new (GetGraph()->GetAllocator()) LocationSummary(ret, LocationSummary::kNoCall); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2296 | switch (ret->InputAt(0)->GetType()) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2297 | case DataType::Type::kReference: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2298 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2299 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2300 | case DataType::Type::kInt8: |
| 2301 | case DataType::Type::kUint16: |
| 2302 | case DataType::Type::kInt16: |
| 2303 | case DataType::Type::kInt32: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2304 | case DataType::Type::kInt64: |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2305 | locations->SetInAt(0, Location::RegisterLocation(RAX)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2306 | break; |
| 2307 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2308 | case DataType::Type::kFloat32: |
| 2309 | case DataType::Type::kFloat64: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2310 | locations->SetInAt(0, Location::FpuRegisterLocation(XMM0)); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2311 | break; |
| 2312 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2313 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2314 | LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2315 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2316 | } |
| 2317 | |
| 2318 | void InstructionCodeGeneratorX86_64::VisitReturn(HReturn* ret) { |
| 2319 | if (kIsDebugBuild) { |
| 2320 | switch (ret->InputAt(0)->GetType()) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2321 | case DataType::Type::kReference: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2322 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2323 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2324 | case DataType::Type::kInt8: |
| 2325 | case DataType::Type::kUint16: |
| 2326 | case DataType::Type::kInt16: |
| 2327 | case DataType::Type::kInt32: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2328 | case DataType::Type::kInt64: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2329 | DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<CpuRegister>().AsRegister(), RAX); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2330 | break; |
| 2331 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2332 | case DataType::Type::kFloat32: |
| 2333 | case DataType::Type::kFloat64: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2334 | DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>().AsFloatRegister(), |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2335 | XMM0); |
| 2336 | break; |
| 2337 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2338 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2339 | LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2340 | } |
| 2341 | } |
| 2342 | codegen_->GenerateFrameExit(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2343 | } |
| 2344 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2345 | Location InvokeDexCallingConventionVisitorX86_64::GetReturnLocation(DataType::Type type) const { |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 2346 | switch (type) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2347 | case DataType::Type::kReference: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2348 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2349 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2350 | case DataType::Type::kInt8: |
| 2351 | case DataType::Type::kUint16: |
| 2352 | case DataType::Type::kInt16: |
Aart Bik | 66c158e | 2018-01-31 12:55:04 -0800 | [diff] [blame] | 2353 | case DataType::Type::kUint32: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2354 | case DataType::Type::kInt32: |
Aart Bik | 66c158e | 2018-01-31 12:55:04 -0800 | [diff] [blame] | 2355 | case DataType::Type::kUint64: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2356 | case DataType::Type::kInt64: |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 2357 | return Location::RegisterLocation(RAX); |
| 2358 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2359 | case DataType::Type::kVoid: |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 2360 | return Location::NoLocation(); |
| 2361 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2362 | case DataType::Type::kFloat64: |
| 2363 | case DataType::Type::kFloat32: |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 2364 | return Location::FpuRegisterLocation(XMM0); |
| 2365 | } |
Nicolas Geoffray | 0d1652e | 2015-06-03 12:12:19 +0100 | [diff] [blame] | 2366 | |
| 2367 | UNREACHABLE(); |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 2368 | } |
| 2369 | |
| 2370 | Location InvokeDexCallingConventionVisitorX86_64::GetMethodLocation() const { |
| 2371 | return Location::RegisterLocation(kMethodRegisterArgument); |
| 2372 | } |
| 2373 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2374 | Location InvokeDexCallingConventionVisitorX86_64::GetNextLocation(DataType::Type type) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2375 | switch (type) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2376 | case DataType::Type::kReference: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2377 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2378 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2379 | case DataType::Type::kInt8: |
| 2380 | case DataType::Type::kUint16: |
| 2381 | case DataType::Type::kInt16: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2382 | case DataType::Type::kInt32: { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2383 | uint32_t index = gp_index_++; |
| 2384 | stack_index_++; |
| 2385 | if (index < calling_convention.GetNumberOfRegisters()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2386 | return Location::RegisterLocation(calling_convention.GetRegisterAt(index)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2387 | } else { |
| 2388 | return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); |
| 2389 | } |
| 2390 | } |
| 2391 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2392 | case DataType::Type::kInt64: { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2393 | uint32_t index = gp_index_; |
| 2394 | stack_index_ += 2; |
| 2395 | if (index < calling_convention.GetNumberOfRegisters()) { |
| 2396 | gp_index_ += 1; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2397 | return Location::RegisterLocation(calling_convention.GetRegisterAt(index)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2398 | } else { |
| 2399 | gp_index_ += 2; |
| 2400 | return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); |
| 2401 | } |
| 2402 | } |
| 2403 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2404 | case DataType::Type::kFloat32: { |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 2405 | uint32_t index = float_index_++; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2406 | stack_index_++; |
| 2407 | if (index < calling_convention.GetNumberOfFpuRegisters()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2408 | return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index)); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2409 | } else { |
| 2410 | return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); |
| 2411 | } |
| 2412 | } |
| 2413 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2414 | case DataType::Type::kFloat64: { |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 2415 | uint32_t index = float_index_++; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2416 | stack_index_ += 2; |
| 2417 | if (index < calling_convention.GetNumberOfFpuRegisters()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2418 | return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index)); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2419 | } else { |
| 2420 | return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); |
| 2421 | } |
| 2422 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2423 | |
Aart Bik | 66c158e | 2018-01-31 12:55:04 -0800 | [diff] [blame] | 2424 | case DataType::Type::kUint32: |
| 2425 | case DataType::Type::kUint64: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2426 | case DataType::Type::kVoid: |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2427 | LOG(FATAL) << "Unexpected parameter type " << type; |
| 2428 | break; |
| 2429 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 2430 | return Location::NoLocation(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2431 | } |
| 2432 | |
Calin Juravle | 175dc73 | 2015-08-25 15:42:32 +0100 | [diff] [blame] | 2433 | void LocationsBuilderX86_64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) { |
| 2434 | // The trampoline uses the same calling convention as dex calling conventions, |
| 2435 | // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain |
| 2436 | // the method_idx. |
| 2437 | HandleInvoke(invoke); |
| 2438 | } |
| 2439 | |
| 2440 | void InstructionCodeGeneratorX86_64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) { |
| 2441 | codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke); |
| 2442 | } |
| 2443 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2444 | void LocationsBuilderX86_64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) { |
David Brazdil | 58282f4 | 2016-01-14 12:45:10 +0000 | [diff] [blame] | 2445 | // Explicit clinit checks triggered by static invokes must have been pruned by |
| 2446 | // art::PrepareForRegisterAllocation. |
| 2447 | DCHECK(!invoke->IsStaticWithExplicitClinitCheck()); |
Roland Levillain | 4c0eb42 | 2015-04-24 16:43:49 +0100 | [diff] [blame] | 2448 | |
Mark Mendell | fb8d279 | 2015-03-31 22:16:59 -0400 | [diff] [blame] | 2449 | IntrinsicLocationsBuilderX86_64 intrinsic(codegen_); |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 2450 | if (intrinsic.TryDispatch(invoke)) { |
| 2451 | return; |
| 2452 | } |
| 2453 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 2454 | HandleInvoke(invoke); |
| 2455 | } |
| 2456 | |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 2457 | static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86_64* codegen) { |
| 2458 | if (invoke->GetLocations()->Intrinsified()) { |
| 2459 | IntrinsicCodeGeneratorX86_64 intrinsic(codegen); |
| 2460 | intrinsic.Dispatch(invoke); |
| 2461 | return true; |
| 2462 | } |
| 2463 | return false; |
| 2464 | } |
| 2465 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2466 | void InstructionCodeGeneratorX86_64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) { |
David Brazdil | 58282f4 | 2016-01-14 12:45:10 +0000 | [diff] [blame] | 2467 | // Explicit clinit checks triggered by static invokes must have been pruned by |
| 2468 | // art::PrepareForRegisterAllocation. |
| 2469 | DCHECK(!invoke->IsStaticWithExplicitClinitCheck()); |
Roland Levillain | 4c0eb42 | 2015-04-24 16:43:49 +0100 | [diff] [blame] | 2470 | |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 2471 | if (TryGenerateIntrinsicCode(invoke, codegen_)) { |
| 2472 | return; |
| 2473 | } |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 2474 | |
Nicolas Geoffray | 38207af | 2015-06-01 15:46:22 +0100 | [diff] [blame] | 2475 | LocationSummary* locations = invoke->GetLocations(); |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 2476 | codegen_->GenerateStaticOrDirectCall( |
Nicolas Geoffray | 38207af | 2015-06-01 15:46:22 +0100 | [diff] [blame] | 2477 | invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation()); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 2478 | } |
| 2479 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 2480 | void LocationsBuilderX86_64::HandleInvoke(HInvoke* invoke) { |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 2481 | InvokeDexCallingConventionVisitorX86_64 calling_convention_visitor; |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 2482 | CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2483 | } |
| 2484 | |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2485 | void LocationsBuilderX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) { |
Mark Mendell | fb8d279 | 2015-03-31 22:16:59 -0400 | [diff] [blame] | 2486 | IntrinsicLocationsBuilderX86_64 intrinsic(codegen_); |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 2487 | if (intrinsic.TryDispatch(invoke)) { |
| 2488 | return; |
| 2489 | } |
| 2490 | |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2491 | HandleInvoke(invoke); |
| 2492 | } |
| 2493 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 2494 | void InstructionCodeGeneratorX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) { |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 2495 | if (TryGenerateIntrinsicCode(invoke, codegen_)) { |
| 2496 | return; |
| 2497 | } |
| 2498 | |
Andreas Gampe | bfb5ba9 | 2015-09-01 15:45:02 +0000 | [diff] [blame] | 2499 | codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0)); |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 2500 | DCHECK(!codegen_->IsLeafMethod()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 2501 | } |
| 2502 | |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2503 | void LocationsBuilderX86_64::VisitInvokeInterface(HInvokeInterface* invoke) { |
| 2504 | HandleInvoke(invoke); |
| 2505 | // Add the hidden argument. |
| 2506 | invoke->GetLocations()->AddTemp(Location::RegisterLocation(RAX)); |
| 2507 | } |
| 2508 | |
| 2509 | void InstructionCodeGeneratorX86_64::VisitInvokeInterface(HInvokeInterface* invoke) { |
| 2510 | // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 2511 | LocationSummary* locations = invoke->GetLocations(); |
| 2512 | CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 2513 | CpuRegister hidden_reg = locations->GetTemp(1).AsRegister<CpuRegister>(); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2514 | Location receiver = locations->InAt(0); |
| 2515 | size_t class_offset = mirror::Object::ClassOffset().SizeValue(); |
| 2516 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 2517 | // Set the hidden argument. This is safe to do this here, as RAX |
| 2518 | // won't be modified thereafter, before the `call` instruction. |
| 2519 | DCHECK_EQ(RAX, hidden_reg.AsRegister()); |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 2520 | codegen_->Load64BitValue(hidden_reg, invoke->GetDexMethodIndex()); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2521 | |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2522 | if (receiver.IsStackSlot()) { |
| 2523 | __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex())); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 2524 | // /* HeapReference<Class> */ temp = temp->klass_ |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2525 | __ movl(temp, Address(temp, class_offset)); |
| 2526 | } else { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 2527 | // /* HeapReference<Class> */ temp = receiver->klass_ |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2528 | __ movl(temp, Address(receiver.AsRegister<CpuRegister>(), class_offset)); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2529 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 2530 | codegen_->MaybeRecordImplicitNullCheck(invoke); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 2531 | // Instead of simply (possibly) unpoisoning `temp` here, we should |
| 2532 | // emit a read barrier for the previous class reference load. |
| 2533 | // However this is not required in practice, as this is an |
| 2534 | // intermediate/temporary reference and because the current |
| 2535 | // concurrent copying collector keeps the from-space memory |
| 2536 | // intact/accessible until the end of the marking phase (the |
| 2537 | // concurrent copying collector may not in the future). |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 2538 | __ MaybeUnpoisonHeapReference(temp); |
Artem Udovichenko | a62cb9b | 2016-06-30 09:18:25 +0000 | [diff] [blame] | 2539 | // temp = temp->GetAddressOfIMT() |
| 2540 | __ movq(temp, |
| 2541 | Address(temp, mirror::Class::ImtPtrOffset(kX86_64PointerSize).Uint32Value())); |
| 2542 | // temp = temp->GetImtEntryAt(method_offset); |
| 2543 | uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( |
Matthew Gharrity | 465ecc8 | 2016-07-19 21:32:52 +0000 | [diff] [blame] | 2544 | invoke->GetImtIndex(), kX86_64PointerSize)); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2545 | // temp = temp->GetImtEntryAt(method_offset); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2546 | __ movq(temp, Address(temp, method_offset)); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2547 | // call temp->GetEntryPoint(); |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 2548 | __ call(Address( |
| 2549 | temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86_64PointerSize).SizeValue())); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 2550 | |
| 2551 | DCHECK(!codegen_->IsLeafMethod()); |
| 2552 | codegen_->RecordPcInfo(invoke, invoke->GetDexPc()); |
| 2553 | } |
| 2554 | |
Orion Hodson | ac14139 | 2017-01-13 11:53:47 +0000 | [diff] [blame] | 2555 | void LocationsBuilderX86_64::VisitInvokePolymorphic(HInvokePolymorphic* invoke) { |
| 2556 | HandleInvoke(invoke); |
| 2557 | } |
| 2558 | |
| 2559 | void InstructionCodeGeneratorX86_64::VisitInvokePolymorphic(HInvokePolymorphic* invoke) { |
| 2560 | codegen_->GenerateInvokePolymorphicCall(invoke); |
| 2561 | } |
| 2562 | |
Orion Hodson | 4c8e12e | 2018-05-18 08:33:20 +0100 | [diff] [blame] | 2563 | void LocationsBuilderX86_64::VisitInvokeCustom(HInvokeCustom* invoke) { |
| 2564 | HandleInvoke(invoke); |
| 2565 | } |
| 2566 | |
| 2567 | void InstructionCodeGeneratorX86_64::VisitInvokeCustom(HInvokeCustom* invoke) { |
| 2568 | codegen_->GenerateInvokeCustomCall(invoke); |
| 2569 | } |
| 2570 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2571 | void LocationsBuilderX86_64::VisitNeg(HNeg* neg) { |
| 2572 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2573 | new (GetGraph()->GetAllocator()) LocationSummary(neg, LocationSummary::kNoCall); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2574 | switch (neg->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2575 | case DataType::Type::kInt32: |
| 2576 | case DataType::Type::kInt64: |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2577 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2578 | locations->SetOut(Location::SameAsFirstInput()); |
| 2579 | break; |
| 2580 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2581 | case DataType::Type::kFloat32: |
| 2582 | case DataType::Type::kFloat64: |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 2583 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2584 | locations->SetOut(Location::SameAsFirstInput()); |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2585 | locations->AddTemp(Location::RequiresFpuRegister()); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2586 | break; |
| 2587 | |
| 2588 | default: |
| 2589 | LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); |
| 2590 | } |
| 2591 | } |
| 2592 | |
| 2593 | void InstructionCodeGeneratorX86_64::VisitNeg(HNeg* neg) { |
| 2594 | LocationSummary* locations = neg->GetLocations(); |
| 2595 | Location out = locations->Out(); |
| 2596 | Location in = locations->InAt(0); |
| 2597 | switch (neg->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2598 | case DataType::Type::kInt32: |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2599 | DCHECK(in.IsRegister()); |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 2600 | DCHECK(in.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2601 | __ negl(out.AsRegister<CpuRegister>()); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2602 | break; |
| 2603 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2604 | case DataType::Type::kInt64: |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 2605 | DCHECK(in.IsRegister()); |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 2606 | DCHECK(in.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2607 | __ negq(out.AsRegister<CpuRegister>()); |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 2608 | break; |
| 2609 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2610 | case DataType::Type::kFloat32: { |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2611 | DCHECK(in.Equals(out)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2612 | XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2613 | // Implement float negation with an exclusive or with value |
| 2614 | // 0x80000000 (mask for bit 31, representing the sign of a |
| 2615 | // single-precision floating-point number). |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2616 | __ movss(mask, codegen_->LiteralInt32Address(0x80000000)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2617 | __ xorps(out.AsFpuRegister<XmmRegister>(), mask); |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 2618 | break; |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2619 | } |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 2620 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2621 | case DataType::Type::kFloat64: { |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2622 | DCHECK(in.Equals(out)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2623 | XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2624 | // Implement double negation with an exclusive or with value |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 2625 | // 0x8000000000000000 (mask for bit 63, representing the sign of |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2626 | // a double-precision floating-point number). |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2627 | __ movsd(mask, codegen_->LiteralInt64Address(INT64_C(0x8000000000000000))); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2628 | __ xorpd(out.AsFpuRegister<XmmRegister>(), mask); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2629 | break; |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 2630 | } |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 2631 | |
| 2632 | default: |
| 2633 | LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); |
| 2634 | } |
| 2635 | } |
| 2636 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2637 | void LocationsBuilderX86_64::VisitTypeConversion(HTypeConversion* conversion) { |
| 2638 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 2639 | new (GetGraph()->GetAllocator()) LocationSummary(conversion, LocationSummary::kNoCall); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2640 | DataType::Type result_type = conversion->GetResultType(); |
| 2641 | DataType::Type input_type = conversion->GetInputType(); |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2642 | DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type)) |
| 2643 | << input_type << " -> " << result_type; |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 2644 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2645 | switch (result_type) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2646 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2647 | case DataType::Type::kInt8: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2648 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2649 | case DataType::Type::kInt16: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2650 | DCHECK(DataType::IsIntegralType(input_type)) << input_type; |
| 2651 | locations->SetInAt(0, Location::Any()); |
| 2652 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 2653 | break; |
| 2654 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2655 | case DataType::Type::kInt32: |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2656 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2657 | case DataType::Type::kInt64: |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2658 | locations->SetInAt(0, Location::Any()); |
| 2659 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 2660 | break; |
| 2661 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2662 | case DataType::Type::kFloat32: |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 2663 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2664 | locations->SetOut(Location::RequiresRegister()); |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 2665 | break; |
| 2666 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2667 | case DataType::Type::kFloat64: |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2668 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2669 | locations->SetOut(Location::RequiresRegister()); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2670 | break; |
| 2671 | |
| 2672 | default: |
| 2673 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2674 | << " to " << result_type; |
| 2675 | } |
| 2676 | break; |
| 2677 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2678 | case DataType::Type::kInt64: |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2679 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2680 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2681 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2682 | case DataType::Type::kInt8: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2683 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2684 | case DataType::Type::kInt16: |
| 2685 | case DataType::Type::kInt32: |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2686 | // TODO: We would benefit from a (to-be-implemented) |
| 2687 | // Location::RegisterOrStackSlot requirement for this input. |
| 2688 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2689 | locations->SetOut(Location::RequiresRegister()); |
| 2690 | break; |
| 2691 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2692 | case DataType::Type::kFloat32: |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2693 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2694 | locations->SetOut(Location::RequiresRegister()); |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2695 | break; |
| 2696 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2697 | case DataType::Type::kFloat64: |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2698 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2699 | locations->SetOut(Location::RequiresRegister()); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2700 | break; |
| 2701 | |
| 2702 | default: |
| 2703 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2704 | << " to " << result_type; |
| 2705 | } |
| 2706 | break; |
| 2707 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2708 | case DataType::Type::kFloat32: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2709 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2710 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2711 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2712 | case DataType::Type::kInt8: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2713 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2714 | case DataType::Type::kInt16: |
| 2715 | case DataType::Type::kInt32: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2716 | locations->SetInAt(0, Location::Any()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2717 | locations->SetOut(Location::RequiresFpuRegister()); |
| 2718 | break; |
| 2719 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2720 | case DataType::Type::kInt64: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2721 | locations->SetInAt(0, Location::Any()); |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 2722 | locations->SetOut(Location::RequiresFpuRegister()); |
| 2723 | break; |
| 2724 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2725 | case DataType::Type::kFloat64: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2726 | locations->SetInAt(0, Location::Any()); |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 2727 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2728 | break; |
| 2729 | |
| 2730 | default: |
| 2731 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2732 | << " to " << result_type; |
Igor Murashkin | 2ffb703 | 2017-11-08 13:35:21 -0800 | [diff] [blame] | 2733 | } |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2734 | break; |
| 2735 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2736 | case DataType::Type::kFloat64: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2737 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2738 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2739 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2740 | case DataType::Type::kInt8: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2741 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2742 | case DataType::Type::kInt16: |
| 2743 | case DataType::Type::kInt32: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2744 | locations->SetInAt(0, Location::Any()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2745 | locations->SetOut(Location::RequiresFpuRegister()); |
| 2746 | break; |
| 2747 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2748 | case DataType::Type::kInt64: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2749 | locations->SetInAt(0, Location::Any()); |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 2750 | locations->SetOut(Location::RequiresFpuRegister()); |
| 2751 | break; |
| 2752 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2753 | case DataType::Type::kFloat32: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 2754 | locations->SetInAt(0, Location::Any()); |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 2755 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2756 | break; |
| 2757 | |
| 2758 | default: |
| 2759 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2760 | << " to " << result_type; |
| 2761 | } |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2762 | break; |
| 2763 | |
| 2764 | default: |
| 2765 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2766 | << " to " << result_type; |
| 2767 | } |
| 2768 | } |
| 2769 | |
| 2770 | void InstructionCodeGeneratorX86_64::VisitTypeConversion(HTypeConversion* conversion) { |
| 2771 | LocationSummary* locations = conversion->GetLocations(); |
| 2772 | Location out = locations->Out(); |
| 2773 | Location in = locations->InAt(0); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2774 | DataType::Type result_type = conversion->GetResultType(); |
| 2775 | DataType::Type input_type = conversion->GetInputType(); |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2776 | DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type)) |
| 2777 | << input_type << " -> " << result_type; |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2778 | switch (result_type) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2779 | case DataType::Type::kUint8: |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 2780 | switch (input_type) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2781 | case DataType::Type::kInt8: |
| 2782 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2783 | case DataType::Type::kInt16: |
| 2784 | case DataType::Type::kInt32: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2785 | case DataType::Type::kInt64: |
| 2786 | if (in.IsRegister()) { |
| 2787 | __ movzxb(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>()); |
| 2788 | } else if (in.IsStackSlot() || in.IsDoubleStackSlot()) { |
| 2789 | __ movzxb(out.AsRegister<CpuRegister>(), |
| 2790 | Address(CpuRegister(RSP), in.GetStackIndex())); |
| 2791 | } else { |
| 2792 | __ movl(out.AsRegister<CpuRegister>(), |
| 2793 | Immediate(static_cast<uint8_t>(Int64FromConstant(in.GetConstant())))); |
| 2794 | } |
| 2795 | break; |
| 2796 | |
| 2797 | default: |
| 2798 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2799 | << " to " << result_type; |
| 2800 | } |
| 2801 | break; |
| 2802 | |
| 2803 | case DataType::Type::kInt8: |
| 2804 | switch (input_type) { |
| 2805 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2806 | case DataType::Type::kUint16: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2807 | case DataType::Type::kInt16: |
| 2808 | case DataType::Type::kInt32: |
| 2809 | case DataType::Type::kInt64: |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 2810 | if (in.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2811 | __ movsxb(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>()); |
Vladimir Marko | b52bbde | 2016-02-12 12:06:05 +0000 | [diff] [blame] | 2812 | } else if (in.IsStackSlot() || in.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2813 | __ movsxb(out.AsRegister<CpuRegister>(), |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 2814 | Address(CpuRegister(RSP), in.GetStackIndex())); |
| 2815 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2816 | __ movl(out.AsRegister<CpuRegister>(), |
Vladimir Marko | b52bbde | 2016-02-12 12:06:05 +0000 | [diff] [blame] | 2817 | Immediate(static_cast<int8_t>(Int64FromConstant(in.GetConstant())))); |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 2818 | } |
| 2819 | break; |
| 2820 | |
| 2821 | default: |
| 2822 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2823 | << " to " << result_type; |
| 2824 | } |
| 2825 | break; |
| 2826 | |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2827 | case DataType::Type::kUint16: |
| 2828 | switch (input_type) { |
| 2829 | case DataType::Type::kInt8: |
| 2830 | case DataType::Type::kInt16: |
| 2831 | case DataType::Type::kInt32: |
| 2832 | case DataType::Type::kInt64: |
| 2833 | if (in.IsRegister()) { |
| 2834 | __ movzxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>()); |
| 2835 | } else if (in.IsStackSlot() || in.IsDoubleStackSlot()) { |
| 2836 | __ movzxw(out.AsRegister<CpuRegister>(), |
| 2837 | Address(CpuRegister(RSP), in.GetStackIndex())); |
| 2838 | } else { |
| 2839 | __ movl(out.AsRegister<CpuRegister>(), |
| 2840 | Immediate(static_cast<uint16_t>(Int64FromConstant(in.GetConstant())))); |
| 2841 | } |
| 2842 | break; |
| 2843 | |
| 2844 | default: |
| 2845 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2846 | << " to " << result_type; |
| 2847 | } |
| 2848 | break; |
| 2849 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2850 | case DataType::Type::kInt16: |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 2851 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2852 | case DataType::Type::kUint16: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2853 | case DataType::Type::kInt32: |
| 2854 | case DataType::Type::kInt64: |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 2855 | if (in.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2856 | __ movsxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>()); |
Vladimir Marko | b52bbde | 2016-02-12 12:06:05 +0000 | [diff] [blame] | 2857 | } else if (in.IsStackSlot() || in.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2858 | __ movsxw(out.AsRegister<CpuRegister>(), |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 2859 | Address(CpuRegister(RSP), in.GetStackIndex())); |
| 2860 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2861 | __ movl(out.AsRegister<CpuRegister>(), |
Vladimir Marko | b52bbde | 2016-02-12 12:06:05 +0000 | [diff] [blame] | 2862 | Immediate(static_cast<int16_t>(Int64FromConstant(in.GetConstant())))); |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 2863 | } |
| 2864 | break; |
| 2865 | |
| 2866 | default: |
| 2867 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2868 | << " to " << result_type; |
| 2869 | } |
| 2870 | break; |
| 2871 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2872 | case DataType::Type::kInt32: |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2873 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2874 | case DataType::Type::kInt64: |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2875 | if (in.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2876 | __ movl(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>()); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2877 | } else if (in.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2878 | __ movl(out.AsRegister<CpuRegister>(), |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2879 | Address(CpuRegister(RSP), in.GetStackIndex())); |
| 2880 | } else { |
| 2881 | DCHECK(in.IsConstant()); |
| 2882 | DCHECK(in.GetConstant()->IsLongConstant()); |
| 2883 | int64_t value = in.GetConstant()->AsLongConstant()->GetValue(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2884 | __ movl(out.AsRegister<CpuRegister>(), Immediate(static_cast<int32_t>(value))); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2885 | } |
| 2886 | break; |
| 2887 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2888 | case DataType::Type::kFloat32: { |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 2889 | XmmRegister input = in.AsFpuRegister<XmmRegister>(); |
| 2890 | CpuRegister output = out.AsRegister<CpuRegister>(); |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 2891 | NearLabel done, nan; |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 2892 | |
| 2893 | __ movl(output, Immediate(kPrimIntMax)); |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 2894 | // if input >= (float)INT_MAX goto done |
| 2895 | __ comiss(input, codegen_->LiteralFloatAddress(kPrimIntMax)); |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 2896 | __ j(kAboveEqual, &done); |
| 2897 | // if input == NaN goto nan |
| 2898 | __ j(kUnordered, &nan); |
| 2899 | // output = float-to-int-truncate(input) |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2900 | __ cvttss2si(output, input, false); |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 2901 | __ jmp(&done); |
| 2902 | __ Bind(&nan); |
| 2903 | // output = 0 |
| 2904 | __ xorl(output, output); |
| 2905 | __ Bind(&done); |
| 2906 | break; |
| 2907 | } |
| 2908 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2909 | case DataType::Type::kFloat64: { |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2910 | XmmRegister input = in.AsFpuRegister<XmmRegister>(); |
| 2911 | CpuRegister output = out.AsRegister<CpuRegister>(); |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 2912 | NearLabel done, nan; |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2913 | |
| 2914 | __ movl(output, Immediate(kPrimIntMax)); |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 2915 | // if input >= (double)INT_MAX goto done |
| 2916 | __ comisd(input, codegen_->LiteralDoubleAddress(kPrimIntMax)); |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2917 | __ j(kAboveEqual, &done); |
| 2918 | // if input == NaN goto nan |
| 2919 | __ j(kUnordered, &nan); |
| 2920 | // output = double-to-int-truncate(input) |
| 2921 | __ cvttsd2si(output, input); |
| 2922 | __ jmp(&done); |
| 2923 | __ Bind(&nan); |
| 2924 | // output = 0 |
| 2925 | __ xorl(output, output); |
| 2926 | __ Bind(&done); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2927 | break; |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2928 | } |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 2929 | |
| 2930 | default: |
| 2931 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2932 | << " to " << result_type; |
| 2933 | } |
| 2934 | break; |
| 2935 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2936 | case DataType::Type::kInt64: |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2937 | switch (input_type) { |
| 2938 | DCHECK(out.IsRegister()); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2939 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2940 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2941 | case DataType::Type::kInt8: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 2942 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2943 | case DataType::Type::kInt16: |
| 2944 | case DataType::Type::kInt32: |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2945 | DCHECK(in.IsRegister()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2946 | __ movsxd(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>()); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2947 | break; |
| 2948 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2949 | case DataType::Type::kFloat32: { |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2950 | XmmRegister input = in.AsFpuRegister<XmmRegister>(); |
| 2951 | CpuRegister output = out.AsRegister<CpuRegister>(); |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 2952 | NearLabel done, nan; |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2953 | |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 2954 | codegen_->Load64BitValue(output, kPrimLongMax); |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 2955 | // if input >= (float)LONG_MAX goto done |
| 2956 | __ comiss(input, codegen_->LiteralFloatAddress(kPrimLongMax)); |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2957 | __ j(kAboveEqual, &done); |
| 2958 | // if input == NaN goto nan |
| 2959 | __ j(kUnordered, &nan); |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2960 | // output = float-to-long-truncate(input) |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2961 | __ cvttss2si(output, input, true); |
| 2962 | __ jmp(&done); |
| 2963 | __ Bind(&nan); |
| 2964 | // output = 0 |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 2965 | __ xorl(output, output); |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 2966 | __ Bind(&done); |
| 2967 | break; |
| 2968 | } |
| 2969 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2970 | case DataType::Type::kFloat64: { |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2971 | XmmRegister input = in.AsFpuRegister<XmmRegister>(); |
| 2972 | CpuRegister output = out.AsRegister<CpuRegister>(); |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 2973 | NearLabel done, nan; |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2974 | |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 2975 | codegen_->Load64BitValue(output, kPrimLongMax); |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 2976 | // if input >= (double)LONG_MAX goto done |
| 2977 | __ comisd(input, codegen_->LiteralDoubleAddress(kPrimLongMax)); |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2978 | __ j(kAboveEqual, &done); |
| 2979 | // if input == NaN goto nan |
| 2980 | __ j(kUnordered, &nan); |
| 2981 | // output = double-to-long-truncate(input) |
| 2982 | __ cvttsd2si(output, input, true); |
| 2983 | __ jmp(&done); |
| 2984 | __ Bind(&nan); |
| 2985 | // output = 0 |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 2986 | __ xorl(output, output); |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2987 | __ Bind(&done); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2988 | break; |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 2989 | } |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 2990 | |
| 2991 | default: |
| 2992 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 2993 | << " to " << result_type; |
| 2994 | } |
| 2995 | break; |
| 2996 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2997 | case DataType::Type::kFloat32: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 2998 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 2999 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 3000 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3001 | case DataType::Type::kInt8: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 3002 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3003 | case DataType::Type::kInt16: |
| 3004 | case DataType::Type::kInt32: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3005 | if (in.IsRegister()) { |
| 3006 | __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false); |
| 3007 | } else if (in.IsConstant()) { |
| 3008 | int32_t v = in.GetConstant()->AsIntConstant()->GetValue(); |
| 3009 | XmmRegister dest = out.AsFpuRegister<XmmRegister>(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 3010 | codegen_->Load32BitValue(dest, static_cast<float>(v)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3011 | } else { |
| 3012 | __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), |
| 3013 | Address(CpuRegister(RSP), in.GetStackIndex()), false); |
| 3014 | } |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 3015 | break; |
| 3016 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3017 | case DataType::Type::kInt64: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3018 | if (in.IsRegister()) { |
| 3019 | __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true); |
| 3020 | } else if (in.IsConstant()) { |
| 3021 | int64_t v = in.GetConstant()->AsLongConstant()->GetValue(); |
| 3022 | XmmRegister dest = out.AsFpuRegister<XmmRegister>(); |
Pavel Vyssotski | 4c858cd | 2016-03-16 13:59:53 +0600 | [diff] [blame] | 3023 | codegen_->Load32BitValue(dest, static_cast<float>(v)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3024 | } else { |
| 3025 | __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), |
| 3026 | Address(CpuRegister(RSP), in.GetStackIndex()), true); |
| 3027 | } |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 3028 | break; |
| 3029 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3030 | case DataType::Type::kFloat64: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3031 | if (in.IsFpuRegister()) { |
| 3032 | __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>()); |
| 3033 | } else if (in.IsConstant()) { |
| 3034 | double v = in.GetConstant()->AsDoubleConstant()->GetValue(); |
| 3035 | XmmRegister dest = out.AsFpuRegister<XmmRegister>(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 3036 | codegen_->Load32BitValue(dest, static_cast<float>(v)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3037 | } else { |
| 3038 | __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), |
| 3039 | Address(CpuRegister(RSP), in.GetStackIndex())); |
| 3040 | } |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 3041 | break; |
| 3042 | |
| 3043 | default: |
| 3044 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 3045 | << " to " << result_type; |
Igor Murashkin | 2ffb703 | 2017-11-08 13:35:21 -0800 | [diff] [blame] | 3046 | } |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 3047 | break; |
| 3048 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3049 | case DataType::Type::kFloat64: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 3050 | switch (input_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3051 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 3052 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3053 | case DataType::Type::kInt8: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 3054 | case DataType::Type::kUint16: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3055 | case DataType::Type::kInt16: |
| 3056 | case DataType::Type::kInt32: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3057 | if (in.IsRegister()) { |
| 3058 | __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false); |
| 3059 | } else if (in.IsConstant()) { |
| 3060 | int32_t v = in.GetConstant()->AsIntConstant()->GetValue(); |
| 3061 | XmmRegister dest = out.AsFpuRegister<XmmRegister>(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 3062 | codegen_->Load64BitValue(dest, static_cast<double>(v)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3063 | } else { |
| 3064 | __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), |
| 3065 | Address(CpuRegister(RSP), in.GetStackIndex()), false); |
| 3066 | } |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 3067 | break; |
| 3068 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3069 | case DataType::Type::kInt64: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3070 | if (in.IsRegister()) { |
| 3071 | __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true); |
| 3072 | } else if (in.IsConstant()) { |
| 3073 | int64_t v = in.GetConstant()->AsLongConstant()->GetValue(); |
| 3074 | XmmRegister dest = out.AsFpuRegister<XmmRegister>(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 3075 | codegen_->Load64BitValue(dest, static_cast<double>(v)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3076 | } else { |
| 3077 | __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), |
| 3078 | Address(CpuRegister(RSP), in.GetStackIndex()), true); |
| 3079 | } |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 3080 | break; |
| 3081 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3082 | case DataType::Type::kFloat32: |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3083 | if (in.IsFpuRegister()) { |
| 3084 | __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>()); |
| 3085 | } else if (in.IsConstant()) { |
| 3086 | float v = in.GetConstant()->AsFloatConstant()->GetValue(); |
| 3087 | XmmRegister dest = out.AsFpuRegister<XmmRegister>(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 3088 | codegen_->Load64BitValue(dest, static_cast<double>(v)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 3089 | } else { |
| 3090 | __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), |
| 3091 | Address(CpuRegister(RSP), in.GetStackIndex())); |
| 3092 | } |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 3093 | break; |
| 3094 | |
| 3095 | default: |
| 3096 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 3097 | << " to " << result_type; |
Igor Murashkin | 2ffb703 | 2017-11-08 13:35:21 -0800 | [diff] [blame] | 3098 | } |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 3099 | break; |
| 3100 | |
| 3101 | default: |
| 3102 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 3103 | << " to " << result_type; |
| 3104 | } |
| 3105 | } |
| 3106 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3107 | void LocationsBuilderX86_64::VisitAdd(HAdd* add) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3108 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 3109 | new (GetGraph()->GetAllocator()) LocationSummary(add, LocationSummary::kNoCall); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3110 | switch (add->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3111 | case DataType::Type::kInt32: { |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3112 | locations->SetInAt(0, Location::RequiresRegister()); |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 3113 | locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1))); |
| 3114 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3115 | break; |
| 3116 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3117 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3118 | case DataType::Type::kInt64: { |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 3119 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 3120 | // We can use a leaq or addq if the constant can fit in an immediate. |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 3121 | locations->SetInAt(1, Location::RegisterOrInt32Constant(add->InputAt(1))); |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 3122 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3123 | break; |
| 3124 | } |
| 3125 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3126 | case DataType::Type::kFloat64: |
| 3127 | case DataType::Type::kFloat32: { |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3128 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3129 | locations->SetInAt(1, Location::Any()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3130 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3131 | break; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3132 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3133 | |
| 3134 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3135 | LOG(FATAL) << "Unexpected add type " << add->GetResultType(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3136 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3137 | } |
| 3138 | |
| 3139 | void InstructionCodeGeneratorX86_64::VisitAdd(HAdd* add) { |
| 3140 | LocationSummary* locations = add->GetLocations(); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3141 | Location first = locations->InAt(0); |
| 3142 | Location second = locations->InAt(1); |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 3143 | Location out = locations->Out(); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3144 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3145 | switch (add->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3146 | case DataType::Type::kInt32: { |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3147 | if (second.IsRegister()) { |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 3148 | if (out.AsRegister<Register>() == first.AsRegister<Register>()) { |
| 3149 | __ addl(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Mark Mendell | 33bf245 | 2015-05-27 10:08:24 -0400 | [diff] [blame] | 3150 | } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) { |
| 3151 | __ addl(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 3152 | } else { |
| 3153 | __ leal(out.AsRegister<CpuRegister>(), Address( |
| 3154 | first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0)); |
| 3155 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3156 | } else if (second.IsConstant()) { |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 3157 | if (out.AsRegister<Register>() == first.AsRegister<Register>()) { |
| 3158 | __ addl(out.AsRegister<CpuRegister>(), |
| 3159 | Immediate(second.GetConstant()->AsIntConstant()->GetValue())); |
| 3160 | } else { |
| 3161 | __ leal(out.AsRegister<CpuRegister>(), Address( |
| 3162 | first.AsRegister<CpuRegister>(), second.GetConstant()->AsIntConstant()->GetValue())); |
| 3163 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3164 | } else { |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 3165 | DCHECK(first.Equals(locations->Out())); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3166 | __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex())); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3167 | } |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 3168 | break; |
| 3169 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3170 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3171 | case DataType::Type::kInt64: { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 3172 | if (second.IsRegister()) { |
| 3173 | if (out.AsRegister<Register>() == first.AsRegister<Register>()) { |
| 3174 | __ addq(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Mark Mendell | 33bf245 | 2015-05-27 10:08:24 -0400 | [diff] [blame] | 3175 | } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) { |
| 3176 | __ addq(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>()); |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 3177 | } else { |
| 3178 | __ leaq(out.AsRegister<CpuRegister>(), Address( |
| 3179 | first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0)); |
| 3180 | } |
| 3181 | } else { |
| 3182 | DCHECK(second.IsConstant()); |
| 3183 | int64_t value = second.GetConstant()->AsLongConstant()->GetValue(); |
| 3184 | int32_t int32_value = Low32Bits(value); |
| 3185 | DCHECK_EQ(int32_value, value); |
| 3186 | if (out.AsRegister<Register>() == first.AsRegister<Register>()) { |
| 3187 | __ addq(out.AsRegister<CpuRegister>(), Immediate(int32_value)); |
| 3188 | } else { |
| 3189 | __ leaq(out.AsRegister<CpuRegister>(), Address( |
| 3190 | first.AsRegister<CpuRegister>(), int32_value)); |
| 3191 | } |
| 3192 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3193 | break; |
| 3194 | } |
| 3195 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3196 | case DataType::Type::kFloat32: { |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3197 | if (second.IsFpuRegister()) { |
| 3198 | __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3199 | } else if (second.IsConstant()) { |
| 3200 | __ addss(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3201 | codegen_->LiteralFloatAddress( |
| 3202 | second.GetConstant()->AsFloatConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3203 | } else { |
| 3204 | DCHECK(second.IsStackSlot()); |
| 3205 | __ addss(first.AsFpuRegister<XmmRegister>(), |
| 3206 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3207 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3208 | break; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3209 | } |
| 3210 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3211 | case DataType::Type::kFloat64: { |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3212 | if (second.IsFpuRegister()) { |
| 3213 | __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3214 | } else if (second.IsConstant()) { |
| 3215 | __ addsd(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3216 | codegen_->LiteralDoubleAddress( |
| 3217 | second.GetConstant()->AsDoubleConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3218 | } else { |
| 3219 | DCHECK(second.IsDoubleStackSlot()); |
| 3220 | __ addsd(first.AsFpuRegister<XmmRegister>(), |
| 3221 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3222 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3223 | break; |
| 3224 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3225 | |
| 3226 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 3227 | LOG(FATAL) << "Unexpected add type " << add->GetResultType(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3228 | } |
| 3229 | } |
| 3230 | |
| 3231 | void LocationsBuilderX86_64::VisitSub(HSub* sub) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3232 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 3233 | new (GetGraph()->GetAllocator()) LocationSummary(sub, LocationSummary::kNoCall); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3234 | switch (sub->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3235 | case DataType::Type::kInt32: { |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3236 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3237 | locations->SetInAt(1, Location::Any()); |
| 3238 | locations->SetOut(Location::SameAsFirstInput()); |
| 3239 | break; |
| 3240 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3241 | case DataType::Type::kInt64: { |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 3242 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 3243 | locations->SetInAt(1, Location::RegisterOrInt32Constant(sub->InputAt(1))); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 3244 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3245 | break; |
| 3246 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3247 | case DataType::Type::kFloat32: |
| 3248 | case DataType::Type::kFloat64: { |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3249 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3250 | locations->SetInAt(1, Location::Any()); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3251 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3252 | break; |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3253 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3254 | default: |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3255 | LOG(FATAL) << "Unexpected sub type " << sub->GetResultType(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3256 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3257 | } |
| 3258 | |
| 3259 | void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) { |
| 3260 | LocationSummary* locations = sub->GetLocations(); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3261 | Location first = locations->InAt(0); |
| 3262 | Location second = locations->InAt(1); |
| 3263 | DCHECK(first.Equals(locations->Out())); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3264 | switch (sub->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3265 | case DataType::Type::kInt32: { |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3266 | if (second.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3267 | __ subl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3268 | } else if (second.IsConstant()) { |
| 3269 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3270 | __ subl(first.AsRegister<CpuRegister>(), imm); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3271 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3272 | __ subl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex())); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3273 | } |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 3274 | break; |
| 3275 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3276 | case DataType::Type::kInt64: { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3277 | if (second.IsConstant()) { |
| 3278 | int64_t value = second.GetConstant()->AsLongConstant()->GetValue(); |
| 3279 | DCHECK(IsInt<32>(value)); |
| 3280 | __ subq(first.AsRegister<CpuRegister>(), Immediate(static_cast<int32_t>(value))); |
| 3281 | } else { |
| 3282 | __ subq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
| 3283 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3284 | break; |
| 3285 | } |
| 3286 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3287 | case DataType::Type::kFloat32: { |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3288 | if (second.IsFpuRegister()) { |
| 3289 | __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3290 | } else if (second.IsConstant()) { |
| 3291 | __ subss(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3292 | codegen_->LiteralFloatAddress( |
| 3293 | second.GetConstant()->AsFloatConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3294 | } else { |
| 3295 | DCHECK(second.IsStackSlot()); |
| 3296 | __ subss(first.AsFpuRegister<XmmRegister>(), |
| 3297 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3298 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3299 | break; |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3300 | } |
| 3301 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3302 | case DataType::Type::kFloat64: { |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3303 | if (second.IsFpuRegister()) { |
| 3304 | __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3305 | } else if (second.IsConstant()) { |
| 3306 | __ subsd(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3307 | codegen_->LiteralDoubleAddress( |
| 3308 | second.GetConstant()->AsDoubleConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3309 | } else { |
| 3310 | DCHECK(second.IsDoubleStackSlot()); |
| 3311 | __ subsd(first.AsFpuRegister<XmmRegister>(), |
| 3312 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3313 | } |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3314 | break; |
| 3315 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3316 | |
| 3317 | default: |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 3318 | LOG(FATAL) << "Unexpected sub type " << sub->GetResultType(); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 3319 | } |
| 3320 | } |
| 3321 | |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3322 | void LocationsBuilderX86_64::VisitMul(HMul* mul) { |
| 3323 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 3324 | new (GetGraph()->GetAllocator()) LocationSummary(mul, LocationSummary::kNoCall); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3325 | switch (mul->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3326 | case DataType::Type::kInt32: { |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3327 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3328 | locations->SetInAt(1, Location::Any()); |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3329 | if (mul->InputAt(1)->IsIntConstant()) { |
| 3330 | // Can use 3 operand multiply. |
| 3331 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 3332 | } else { |
| 3333 | locations->SetOut(Location::SameAsFirstInput()); |
| 3334 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3335 | break; |
| 3336 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3337 | case DataType::Type::kInt64: { |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3338 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3339 | locations->SetInAt(1, Location::Any()); |
| 3340 | if (mul->InputAt(1)->IsLongConstant() && |
| 3341 | IsInt<32>(mul->InputAt(1)->AsLongConstant()->GetValue())) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3342 | // Can use 3 operand multiply. |
| 3343 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 3344 | } else { |
| 3345 | locations->SetOut(Location::SameAsFirstInput()); |
| 3346 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3347 | break; |
| 3348 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3349 | case DataType::Type::kFloat32: |
| 3350 | case DataType::Type::kFloat64: { |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 3351 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3352 | locations->SetInAt(1, Location::Any()); |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 3353 | locations->SetOut(Location::SameAsFirstInput()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3354 | break; |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 3355 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3356 | |
| 3357 | default: |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 3358 | LOG(FATAL) << "Unexpected mul type " << mul->GetResultType(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3359 | } |
| 3360 | } |
| 3361 | |
| 3362 | void InstructionCodeGeneratorX86_64::VisitMul(HMul* mul) { |
| 3363 | LocationSummary* locations = mul->GetLocations(); |
| 3364 | Location first = locations->InAt(0); |
| 3365 | Location second = locations->InAt(1); |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3366 | Location out = locations->Out(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3367 | switch (mul->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3368 | case DataType::Type::kInt32: |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3369 | // The constant may have ended up in a register, so test explicitly to avoid |
| 3370 | // problems where the output may not be the same as the first operand. |
| 3371 | if (mul->InputAt(1)->IsIntConstant()) { |
| 3372 | Immediate imm(mul->InputAt(1)->AsIntConstant()->GetValue()); |
| 3373 | __ imull(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(), imm); |
| 3374 | } else if (second.IsRegister()) { |
| 3375 | DCHECK(first.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3376 | __ imull(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3377 | } else { |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3378 | DCHECK(first.Equals(out)); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3379 | DCHECK(second.IsStackSlot()); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3380 | __ imull(first.AsRegister<CpuRegister>(), |
| 3381 | Address(CpuRegister(RSP), second.GetStackIndex())); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3382 | } |
| 3383 | break; |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3384 | case DataType::Type::kInt64: { |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3385 | // The constant may have ended up in a register, so test explicitly to avoid |
| 3386 | // problems where the output may not be the same as the first operand. |
| 3387 | if (mul->InputAt(1)->IsLongConstant()) { |
| 3388 | int64_t value = mul->InputAt(1)->AsLongConstant()->GetValue(); |
| 3389 | if (IsInt<32>(value)) { |
| 3390 | __ imulq(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(), |
| 3391 | Immediate(static_cast<int32_t>(value))); |
| 3392 | } else { |
| 3393 | // Have to use the constant area. |
| 3394 | DCHECK(first.Equals(out)); |
| 3395 | __ imulq(first.AsRegister<CpuRegister>(), codegen_->LiteralInt64Address(value)); |
| 3396 | } |
| 3397 | } else if (second.IsRegister()) { |
| 3398 | DCHECK(first.Equals(out)); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3399 | __ imulq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3400 | } else { |
| 3401 | DCHECK(second.IsDoubleStackSlot()); |
| 3402 | DCHECK(first.Equals(out)); |
| 3403 | __ imulq(first.AsRegister<CpuRegister>(), |
| 3404 | Address(CpuRegister(RSP), second.GetStackIndex())); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3405 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3406 | break; |
| 3407 | } |
| 3408 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3409 | case DataType::Type::kFloat32: { |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3410 | DCHECK(first.Equals(out)); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3411 | if (second.IsFpuRegister()) { |
| 3412 | __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3413 | } else if (second.IsConstant()) { |
| 3414 | __ mulss(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3415 | codegen_->LiteralFloatAddress( |
| 3416 | second.GetConstant()->AsFloatConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3417 | } else { |
| 3418 | DCHECK(second.IsStackSlot()); |
| 3419 | __ mulss(first.AsFpuRegister<XmmRegister>(), |
| 3420 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3421 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3422 | break; |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 3423 | } |
| 3424 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3425 | case DataType::Type::kFloat64: { |
Mark Mendell | 4a2aa4a | 2015-07-27 16:13:10 -0400 | [diff] [blame] | 3426 | DCHECK(first.Equals(out)); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3427 | if (second.IsFpuRegister()) { |
| 3428 | __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3429 | } else if (second.IsConstant()) { |
| 3430 | __ mulsd(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3431 | codegen_->LiteralDoubleAddress( |
| 3432 | second.GetConstant()->AsDoubleConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3433 | } else { |
| 3434 | DCHECK(second.IsDoubleStackSlot()); |
| 3435 | __ mulsd(first.AsFpuRegister<XmmRegister>(), |
| 3436 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3437 | } |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 3438 | break; |
| 3439 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3440 | |
| 3441 | default: |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 3442 | LOG(FATAL) << "Unexpected mul type " << mul->GetResultType(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 3443 | } |
| 3444 | } |
| 3445 | |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 3446 | void InstructionCodeGeneratorX86_64::PushOntoFPStack(Location source, uint32_t temp_offset, |
| 3447 | uint32_t stack_adjustment, bool is_float) { |
| 3448 | if (source.IsStackSlot()) { |
| 3449 | DCHECK(is_float); |
| 3450 | __ flds(Address(CpuRegister(RSP), source.GetStackIndex() + stack_adjustment)); |
| 3451 | } else if (source.IsDoubleStackSlot()) { |
| 3452 | DCHECK(!is_float); |
| 3453 | __ fldl(Address(CpuRegister(RSP), source.GetStackIndex() + stack_adjustment)); |
| 3454 | } else { |
| 3455 | // Write the value to the temporary location on the stack and load to FP stack. |
| 3456 | if (is_float) { |
| 3457 | Location stack_temp = Location::StackSlot(temp_offset); |
| 3458 | codegen_->Move(stack_temp, source); |
| 3459 | __ flds(Address(CpuRegister(RSP), temp_offset)); |
| 3460 | } else { |
| 3461 | Location stack_temp = Location::DoubleStackSlot(temp_offset); |
| 3462 | codegen_->Move(stack_temp, source); |
| 3463 | __ fldl(Address(CpuRegister(RSP), temp_offset)); |
| 3464 | } |
| 3465 | } |
| 3466 | } |
| 3467 | |
| 3468 | void InstructionCodeGeneratorX86_64::GenerateRemFP(HRem *rem) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3469 | DataType::Type type = rem->GetResultType(); |
| 3470 | bool is_float = type == DataType::Type::kFloat32; |
| 3471 | size_t elem_size = DataType::Size(type); |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 3472 | LocationSummary* locations = rem->GetLocations(); |
| 3473 | Location first = locations->InAt(0); |
| 3474 | Location second = locations->InAt(1); |
| 3475 | Location out = locations->Out(); |
| 3476 | |
| 3477 | // Create stack space for 2 elements. |
| 3478 | // TODO: enhance register allocator to ask for stack temporaries. |
| 3479 | __ subq(CpuRegister(RSP), Immediate(2 * elem_size)); |
| 3480 | |
| 3481 | // Load the values to the FP stack in reverse order, using temporaries if needed. |
| 3482 | PushOntoFPStack(second, elem_size, 2 * elem_size, is_float); |
| 3483 | PushOntoFPStack(first, 0, 2 * elem_size, is_float); |
| 3484 | |
| 3485 | // Loop doing FPREM until we stabilize. |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 3486 | NearLabel retry; |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 3487 | __ Bind(&retry); |
| 3488 | __ fprem(); |
| 3489 | |
| 3490 | // Move FP status to AX. |
| 3491 | __ fstsw(); |
| 3492 | |
| 3493 | // And see if the argument reduction is complete. This is signaled by the |
| 3494 | // C2 FPU flag bit set to 0. |
| 3495 | __ andl(CpuRegister(RAX), Immediate(kC2ConditionMask)); |
| 3496 | __ j(kNotEqual, &retry); |
| 3497 | |
| 3498 | // We have settled on the final value. Retrieve it into an XMM register. |
| 3499 | // Store FP top of stack to real stack. |
| 3500 | if (is_float) { |
| 3501 | __ fsts(Address(CpuRegister(RSP), 0)); |
| 3502 | } else { |
| 3503 | __ fstl(Address(CpuRegister(RSP), 0)); |
| 3504 | } |
| 3505 | |
| 3506 | // Pop the 2 items from the FP stack. |
| 3507 | __ fucompp(); |
| 3508 | |
| 3509 | // Load the value from the stack into an XMM register. |
| 3510 | DCHECK(out.IsFpuRegister()) << out; |
| 3511 | if (is_float) { |
| 3512 | __ movss(out.AsFpuRegister<XmmRegister>(), Address(CpuRegister(RSP), 0)); |
| 3513 | } else { |
| 3514 | __ movsd(out.AsFpuRegister<XmmRegister>(), Address(CpuRegister(RSP), 0)); |
| 3515 | } |
| 3516 | |
| 3517 | // And remove the temporary stack space we allocated. |
| 3518 | __ addq(CpuRegister(RSP), Immediate(2 * elem_size)); |
| 3519 | } |
| 3520 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3521 | void InstructionCodeGeneratorX86_64::DivRemOneOrMinusOne(HBinaryOperation* instruction) { |
| 3522 | DCHECK(instruction->IsDiv() || instruction->IsRem()); |
| 3523 | |
| 3524 | LocationSummary* locations = instruction->GetLocations(); |
| 3525 | Location second = locations->InAt(1); |
| 3526 | DCHECK(second.IsConstant()); |
| 3527 | |
| 3528 | CpuRegister output_register = locations->Out().AsRegister<CpuRegister>(); |
| 3529 | CpuRegister input_register = locations->InAt(0).AsRegister<CpuRegister>(); |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 3530 | int64_t imm = Int64FromConstant(second.GetConstant()); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3531 | |
| 3532 | DCHECK(imm == 1 || imm == -1); |
| 3533 | |
| 3534 | switch (instruction->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3535 | case DataType::Type::kInt32: { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3536 | if (instruction->IsRem()) { |
| 3537 | __ xorl(output_register, output_register); |
| 3538 | } else { |
| 3539 | __ movl(output_register, input_register); |
| 3540 | if (imm == -1) { |
| 3541 | __ negl(output_register); |
| 3542 | } |
| 3543 | } |
| 3544 | break; |
| 3545 | } |
| 3546 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3547 | case DataType::Type::kInt64: { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3548 | if (instruction->IsRem()) { |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 3549 | __ xorl(output_register, output_register); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3550 | } else { |
| 3551 | __ movq(output_register, input_register); |
| 3552 | if (imm == -1) { |
| 3553 | __ negq(output_register); |
| 3554 | } |
| 3555 | } |
| 3556 | break; |
| 3557 | } |
| 3558 | |
| 3559 | default: |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 3560 | LOG(FATAL) << "Unexpected type for div by (-)1 " << instruction->GetResultType(); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3561 | } |
| 3562 | } |
Shalini Salomi Bodapati | a66784b | 2018-11-06 13:05:44 +0530 | [diff] [blame] | 3563 | void InstructionCodeGeneratorX86_64::RemByPowerOfTwo(HRem* instruction) { |
| 3564 | LocationSummary* locations = instruction->GetLocations(); |
| 3565 | Location second = locations->InAt(1); |
| 3566 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
| 3567 | CpuRegister numerator = locations->InAt(0).AsRegister<CpuRegister>(); |
| 3568 | int64_t imm = Int64FromConstant(second.GetConstant()); |
| 3569 | DCHECK(IsPowerOfTwo(AbsOrMin(imm))); |
| 3570 | uint64_t abs_imm = AbsOrMin(imm); |
| 3571 | CpuRegister tmp = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 3572 | if (instruction->GetResultType() == DataType::Type::kInt32) { |
| 3573 | NearLabel done; |
| 3574 | __ movl(out, numerator); |
| 3575 | __ andl(out, Immediate(abs_imm-1)); |
| 3576 | __ j(Condition::kZero, &done); |
| 3577 | __ leal(tmp, Address(out, static_cast<int32_t>(~(abs_imm-1)))); |
| 3578 | __ testl(numerator, numerator); |
| 3579 | __ cmov(Condition::kLess, out, tmp, false); |
| 3580 | __ Bind(&done); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3581 | |
Shalini Salomi Bodapati | a66784b | 2018-11-06 13:05:44 +0530 | [diff] [blame] | 3582 | } else { |
| 3583 | DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt64); |
| 3584 | codegen_->Load64BitValue(tmp, abs_imm - 1); |
| 3585 | NearLabel done; |
| 3586 | |
| 3587 | __ movq(out, numerator); |
| 3588 | __ andq(out, tmp); |
| 3589 | __ j(Condition::kZero, &done); |
| 3590 | __ movq(tmp, numerator); |
| 3591 | __ sarq(tmp, Immediate(63)); |
| 3592 | __ shlq(tmp, Immediate(WhichPowerOf2(abs_imm))); |
| 3593 | __ orq(out, tmp); |
| 3594 | __ Bind(&done); |
| 3595 | } |
| 3596 | } |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 3597 | void InstructionCodeGeneratorX86_64::DivByPowerOfTwo(HDiv* instruction) { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3598 | LocationSummary* locations = instruction->GetLocations(); |
| 3599 | Location second = locations->InAt(1); |
| 3600 | |
| 3601 | CpuRegister output_register = locations->Out().AsRegister<CpuRegister>(); |
| 3602 | CpuRegister numerator = locations->InAt(0).AsRegister<CpuRegister>(); |
| 3603 | |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 3604 | int64_t imm = Int64FromConstant(second.GetConstant()); |
Nicolas Geoffray | 68f6289 | 2016-01-04 08:39:49 +0000 | [diff] [blame] | 3605 | DCHECK(IsPowerOfTwo(AbsOrMin(imm))); |
| 3606 | uint64_t abs_imm = AbsOrMin(imm); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3607 | |
| 3608 | CpuRegister tmp = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 3609 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3610 | if (instruction->GetResultType() == DataType::Type::kInt32) { |
Nicolas Geoffray | 68f6289 | 2016-01-04 08:39:49 +0000 | [diff] [blame] | 3611 | __ leal(tmp, Address(numerator, abs_imm - 1)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3612 | __ testl(numerator, numerator); |
| 3613 | __ cmov(kGreaterEqual, tmp, numerator); |
| 3614 | int shift = CTZ(imm); |
| 3615 | __ sarl(tmp, Immediate(shift)); |
| 3616 | |
| 3617 | if (imm < 0) { |
| 3618 | __ negl(tmp); |
| 3619 | } |
| 3620 | |
| 3621 | __ movl(output_register, tmp); |
| 3622 | } else { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3623 | DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt64); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3624 | CpuRegister rdx = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 3625 | |
Nicolas Geoffray | 68f6289 | 2016-01-04 08:39:49 +0000 | [diff] [blame] | 3626 | codegen_->Load64BitValue(rdx, abs_imm - 1); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3627 | __ addq(rdx, numerator); |
| 3628 | __ testq(numerator, numerator); |
| 3629 | __ cmov(kGreaterEqual, rdx, numerator); |
| 3630 | int shift = CTZ(imm); |
| 3631 | __ sarq(rdx, Immediate(shift)); |
| 3632 | |
| 3633 | if (imm < 0) { |
| 3634 | __ negq(rdx); |
| 3635 | } |
| 3636 | |
| 3637 | __ movq(output_register, rdx); |
| 3638 | } |
| 3639 | } |
| 3640 | |
| 3641 | void InstructionCodeGeneratorX86_64::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) { |
| 3642 | DCHECK(instruction->IsDiv() || instruction->IsRem()); |
| 3643 | |
| 3644 | LocationSummary* locations = instruction->GetLocations(); |
| 3645 | Location second = locations->InAt(1); |
| 3646 | |
| 3647 | CpuRegister numerator = instruction->IsDiv() ? locations->GetTemp(1).AsRegister<CpuRegister>() |
| 3648 | : locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 3649 | CpuRegister eax = locations->InAt(0).AsRegister<CpuRegister>(); |
| 3650 | CpuRegister edx = instruction->IsDiv() ? locations->GetTemp(0).AsRegister<CpuRegister>() |
| 3651 | : locations->Out().AsRegister<CpuRegister>(); |
| 3652 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
| 3653 | |
| 3654 | DCHECK_EQ(RAX, eax.AsRegister()); |
| 3655 | DCHECK_EQ(RDX, edx.AsRegister()); |
| 3656 | if (instruction->IsDiv()) { |
| 3657 | DCHECK_EQ(RAX, out.AsRegister()); |
| 3658 | } else { |
| 3659 | DCHECK_EQ(RDX, out.AsRegister()); |
| 3660 | } |
| 3661 | |
| 3662 | int64_t magic; |
| 3663 | int shift; |
| 3664 | |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 3665 | // TODO: can these branches be written as one? |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3666 | if (instruction->GetResultType() == DataType::Type::kInt32) { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3667 | int imm = second.GetConstant()->AsIntConstant()->GetValue(); |
| 3668 | |
| 3669 | CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift); |
| 3670 | |
| 3671 | __ movl(numerator, eax); |
| 3672 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3673 | __ movl(eax, Immediate(magic)); |
| 3674 | __ imull(numerator); |
| 3675 | |
| 3676 | if (imm > 0 && magic < 0) { |
| 3677 | __ addl(edx, numerator); |
| 3678 | } else if (imm < 0 && magic > 0) { |
| 3679 | __ subl(edx, numerator); |
| 3680 | } |
| 3681 | |
| 3682 | if (shift != 0) { |
| 3683 | __ sarl(edx, Immediate(shift)); |
| 3684 | } |
| 3685 | |
| 3686 | __ movl(eax, edx); |
| 3687 | __ shrl(edx, Immediate(31)); |
| 3688 | __ addl(edx, eax); |
| 3689 | |
| 3690 | if (instruction->IsRem()) { |
| 3691 | __ movl(eax, numerator); |
| 3692 | __ imull(edx, Immediate(imm)); |
| 3693 | __ subl(eax, edx); |
| 3694 | __ movl(edx, eax); |
| 3695 | } else { |
| 3696 | __ movl(eax, edx); |
| 3697 | } |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3698 | } else { |
| 3699 | int64_t imm = second.GetConstant()->AsLongConstant()->GetValue(); |
| 3700 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3701 | DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt64); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3702 | |
| 3703 | CpuRegister rax = eax; |
| 3704 | CpuRegister rdx = edx; |
| 3705 | |
| 3706 | CalculateMagicAndShiftForDivRem(imm, true /* is_long */, &magic, &shift); |
| 3707 | |
| 3708 | // Save the numerator. |
| 3709 | __ movq(numerator, rax); |
| 3710 | |
| 3711 | // RAX = magic |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 3712 | codegen_->Load64BitValue(rax, magic); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3713 | |
| 3714 | // RDX:RAX = magic * numerator |
| 3715 | __ imulq(numerator); |
| 3716 | |
| 3717 | if (imm > 0 && magic < 0) { |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 3718 | // RDX += numerator |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3719 | __ addq(rdx, numerator); |
| 3720 | } else if (imm < 0 && magic > 0) { |
| 3721 | // RDX -= numerator |
| 3722 | __ subq(rdx, numerator); |
| 3723 | } |
| 3724 | |
| 3725 | // Shift if needed. |
| 3726 | if (shift != 0) { |
| 3727 | __ sarq(rdx, Immediate(shift)); |
| 3728 | } |
| 3729 | |
| 3730 | // RDX += 1 if RDX < 0 |
| 3731 | __ movq(rax, rdx); |
| 3732 | __ shrq(rdx, Immediate(63)); |
| 3733 | __ addq(rdx, rax); |
| 3734 | |
| 3735 | if (instruction->IsRem()) { |
| 3736 | __ movq(rax, numerator); |
| 3737 | |
| 3738 | if (IsInt<32>(imm)) { |
| 3739 | __ imulq(rdx, Immediate(static_cast<int32_t>(imm))); |
| 3740 | } else { |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 3741 | __ imulq(rdx, codegen_->LiteralInt64Address(imm)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3742 | } |
| 3743 | |
| 3744 | __ subq(rax, rdx); |
| 3745 | __ movq(rdx, rax); |
| 3746 | } else { |
| 3747 | __ movq(rax, rdx); |
| 3748 | } |
| 3749 | } |
| 3750 | } |
| 3751 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3752 | void InstructionCodeGeneratorX86_64::GenerateDivRemIntegral(HBinaryOperation* instruction) { |
| 3753 | DCHECK(instruction->IsDiv() || instruction->IsRem()); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3754 | DataType::Type type = instruction->GetResultType(); |
| 3755 | DCHECK(type == DataType::Type::kInt32 || type == DataType::Type::kInt64); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3756 | |
| 3757 | bool is_div = instruction->IsDiv(); |
| 3758 | LocationSummary* locations = instruction->GetLocations(); |
| 3759 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3760 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
| 3761 | Location second = locations->InAt(1); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3762 | |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3763 | DCHECK_EQ(RAX, locations->InAt(0).AsRegister<CpuRegister>().AsRegister()); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3764 | DCHECK_EQ(is_div ? RAX : RDX, out.AsRegister()); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3765 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3766 | if (second.IsConstant()) { |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 3767 | int64_t imm = Int64FromConstant(second.GetConstant()); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3768 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3769 | if (imm == 0) { |
| 3770 | // Do not generate anything. DivZeroCheck would prevent any code to be executed. |
| 3771 | } else if (imm == 1 || imm == -1) { |
| 3772 | DivRemOneOrMinusOne(instruction); |
Shalini Salomi Bodapati | a66784b | 2018-11-06 13:05:44 +0530 | [diff] [blame] | 3773 | } else if (IsPowerOfTwo(AbsOrMin(imm))) { |
| 3774 | if (is_div) { |
| 3775 | DivByPowerOfTwo(instruction->AsDiv()); |
| 3776 | } else { |
| 3777 | RemByPowerOfTwo(instruction->AsRem()); |
| 3778 | } |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3779 | } else { |
| 3780 | DCHECK(imm <= -2 || imm >= 2); |
| 3781 | GenerateDivRemWithAnyConstant(instruction); |
| 3782 | } |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3783 | } else { |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 3784 | SlowPathCode* slow_path = |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 3785 | new (codegen_->GetScopedAllocator()) DivRemMinusOneSlowPathX86_64( |
David Srbecky | 9cd6d37 | 2016-02-09 15:24:47 +0000 | [diff] [blame] | 3786 | instruction, out.AsRegister(), type, is_div); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3787 | codegen_->AddSlowPath(slow_path); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3788 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3789 | CpuRegister second_reg = second.AsRegister<CpuRegister>(); |
| 3790 | // 0x80000000(00000000)/-1 triggers an arithmetic exception! |
| 3791 | // Dividing by -1 is actually negation and -0x800000000(00000000) = 0x80000000(00000000) |
| 3792 | // so it's safe to just use negl instead of more complex comparisons. |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3793 | if (type == DataType::Type::kInt32) { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3794 | __ cmpl(second_reg, Immediate(-1)); |
| 3795 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 3796 | // edx:eax <- sign-extended of eax |
| 3797 | __ cdq(); |
| 3798 | // eax = quotient, edx = remainder |
| 3799 | __ idivl(second_reg); |
| 3800 | } else { |
| 3801 | __ cmpq(second_reg, Immediate(-1)); |
| 3802 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 3803 | // rdx:rax <- sign-extended of rax |
| 3804 | __ cqo(); |
| 3805 | // rax = quotient, rdx = remainder |
| 3806 | __ idivq(second_reg); |
| 3807 | } |
| 3808 | __ Bind(slow_path->GetExitLabel()); |
| 3809 | } |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3810 | } |
| 3811 | |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 3812 | void LocationsBuilderX86_64::VisitDiv(HDiv* div) { |
| 3813 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 3814 | new (GetGraph()->GetAllocator()) LocationSummary(div, LocationSummary::kNoCall); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 3815 | switch (div->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3816 | case DataType::Type::kInt32: |
| 3817 | case DataType::Type::kInt64: { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 3818 | locations->SetInAt(0, Location::RegisterLocation(RAX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3819 | locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1))); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 3820 | locations->SetOut(Location::SameAsFirstInput()); |
| 3821 | // Intel uses edx:eax as the dividend. |
| 3822 | locations->AddTemp(Location::RegisterLocation(RDX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3823 | // We need to save the numerator while we tweak rax and rdx. As we are using imul in a way |
| 3824 | // which enforces results to be in RAX and RDX, things are simpler if we use RDX also as |
| 3825 | // output and request another temp. |
| 3826 | if (div->InputAt(1)->IsConstant()) { |
| 3827 | locations->AddTemp(Location::RequiresRegister()); |
| 3828 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 3829 | break; |
| 3830 | } |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 3831 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3832 | case DataType::Type::kFloat32: |
| 3833 | case DataType::Type::kFloat64: { |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 3834 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3835 | locations->SetInAt(1, Location::Any()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 3836 | locations->SetOut(Location::SameAsFirstInput()); |
| 3837 | break; |
| 3838 | } |
| 3839 | |
| 3840 | default: |
| 3841 | LOG(FATAL) << "Unexpected div type " << div->GetResultType(); |
| 3842 | } |
| 3843 | } |
| 3844 | |
| 3845 | void InstructionCodeGeneratorX86_64::VisitDiv(HDiv* div) { |
| 3846 | LocationSummary* locations = div->GetLocations(); |
| 3847 | Location first = locations->InAt(0); |
| 3848 | Location second = locations->InAt(1); |
| 3849 | DCHECK(first.Equals(locations->Out())); |
| 3850 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3851 | DataType::Type type = div->GetResultType(); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 3852 | switch (type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3853 | case DataType::Type::kInt32: |
| 3854 | case DataType::Type::kInt64: { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3855 | GenerateDivRemIntegral(div); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 3856 | break; |
| 3857 | } |
| 3858 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3859 | case DataType::Type::kFloat32: { |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3860 | if (second.IsFpuRegister()) { |
| 3861 | __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3862 | } else if (second.IsConstant()) { |
| 3863 | __ divss(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3864 | codegen_->LiteralFloatAddress( |
| 3865 | second.GetConstant()->AsFloatConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3866 | } else { |
| 3867 | DCHECK(second.IsStackSlot()); |
| 3868 | __ divss(first.AsFpuRegister<XmmRegister>(), |
| 3869 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3870 | } |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 3871 | break; |
| 3872 | } |
| 3873 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3874 | case DataType::Type::kFloat64: { |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3875 | if (second.IsFpuRegister()) { |
| 3876 | __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
| 3877 | } else if (second.IsConstant()) { |
| 3878 | __ divsd(first.AsFpuRegister<XmmRegister>(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 3879 | codegen_->LiteralDoubleAddress( |
| 3880 | second.GetConstant()->AsDoubleConstant()->GetValue())); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 3881 | } else { |
| 3882 | DCHECK(second.IsDoubleStackSlot()); |
| 3883 | __ divsd(first.AsFpuRegister<XmmRegister>(), |
| 3884 | Address(CpuRegister(RSP), second.GetStackIndex())); |
| 3885 | } |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 3886 | break; |
| 3887 | } |
| 3888 | |
| 3889 | default: |
| 3890 | LOG(FATAL) << "Unexpected div type " << div->GetResultType(); |
| 3891 | } |
| 3892 | } |
| 3893 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3894 | void LocationsBuilderX86_64::VisitRem(HRem* rem) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3895 | DataType::Type type = rem->GetResultType(); |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 3896 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 3897 | new (GetGraph()->GetAllocator()) LocationSummary(rem, LocationSummary::kNoCall); |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 3898 | |
| 3899 | switch (type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3900 | case DataType::Type::kInt32: |
| 3901 | case DataType::Type::kInt64: { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3902 | locations->SetInAt(0, Location::RegisterLocation(RAX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3903 | locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1))); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3904 | // Intel uses rdx:rax as the dividend and puts the remainder in rdx |
| 3905 | locations->SetOut(Location::RegisterLocation(RDX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 3906 | // We need to save the numerator while we tweak eax and edx. As we are using imul in a way |
| 3907 | // which enforces results to be in RAX and RDX, things are simpler if we use EAX also as |
| 3908 | // output and request another temp. |
| 3909 | if (rem->InputAt(1)->IsConstant()) { |
| 3910 | locations->AddTemp(Location::RequiresRegister()); |
| 3911 | } |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3912 | break; |
| 3913 | } |
| 3914 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3915 | case DataType::Type::kFloat32: |
| 3916 | case DataType::Type::kFloat64: { |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 3917 | locations->SetInAt(0, Location::Any()); |
| 3918 | locations->SetInAt(1, Location::Any()); |
| 3919 | locations->SetOut(Location::RequiresFpuRegister()); |
| 3920 | locations->AddTemp(Location::RegisterLocation(RAX)); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3921 | break; |
| 3922 | } |
| 3923 | |
| 3924 | default: |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 3925 | LOG(FATAL) << "Unexpected rem type " << type; |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3926 | } |
| 3927 | } |
| 3928 | |
| 3929 | void InstructionCodeGeneratorX86_64::VisitRem(HRem* rem) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3930 | DataType::Type type = rem->GetResultType(); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3931 | switch (type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3932 | case DataType::Type::kInt32: |
| 3933 | case DataType::Type::kInt64: { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3934 | GenerateDivRemIntegral(rem); |
| 3935 | break; |
| 3936 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 3937 | case DataType::Type::kFloat32: |
| 3938 | case DataType::Type::kFloat64: { |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 3939 | GenerateRemFP(rem); |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 3940 | break; |
| 3941 | } |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 3942 | default: |
| 3943 | LOG(FATAL) << "Unexpected rem type " << rem->GetResultType(); |
| 3944 | } |
| 3945 | } |
| 3946 | |
Aart Bik | 1f8d51b | 2018-02-15 10:42:37 -0800 | [diff] [blame] | 3947 | static void CreateMinMaxLocations(ArenaAllocator* allocator, HBinaryOperation* minmax) { |
| 3948 | LocationSummary* locations = new (allocator) LocationSummary(minmax); |
| 3949 | switch (minmax->GetResultType()) { |
| 3950 | case DataType::Type::kInt32: |
| 3951 | case DataType::Type::kInt64: |
| 3952 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3953 | locations->SetInAt(1, Location::RequiresRegister()); |
| 3954 | locations->SetOut(Location::SameAsFirstInput()); |
| 3955 | break; |
| 3956 | case DataType::Type::kFloat32: |
| 3957 | case DataType::Type::kFloat64: |
| 3958 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 3959 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 3960 | // The following is sub-optimal, but all we can do for now. It would be fine to also accept |
| 3961 | // the second input to be the output (we can simply swap inputs). |
| 3962 | locations->SetOut(Location::SameAsFirstInput()); |
| 3963 | break; |
| 3964 | default: |
| 3965 | LOG(FATAL) << "Unexpected type for HMinMax " << minmax->GetResultType(); |
| 3966 | } |
| 3967 | } |
| 3968 | |
Aart Bik | 351df3e | 2018-03-07 11:54:57 -0800 | [diff] [blame] | 3969 | void InstructionCodeGeneratorX86_64::GenerateMinMaxInt(LocationSummary* locations, |
| 3970 | bool is_min, |
| 3971 | DataType::Type type) { |
Aart Bik | 1f8d51b | 2018-02-15 10:42:37 -0800 | [diff] [blame] | 3972 | Location op1_loc = locations->InAt(0); |
| 3973 | Location op2_loc = locations->InAt(1); |
| 3974 | |
| 3975 | // Shortcut for same input locations. |
| 3976 | if (op1_loc.Equals(op2_loc)) { |
| 3977 | // Can return immediately, as op1_loc == out_loc. |
| 3978 | // Note: if we ever support separate registers, e.g., output into memory, we need to check for |
| 3979 | // a copy here. |
| 3980 | DCHECK(locations->Out().Equals(op1_loc)); |
| 3981 | return; |
| 3982 | } |
| 3983 | |
| 3984 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
| 3985 | CpuRegister op2 = op2_loc.AsRegister<CpuRegister>(); |
| 3986 | |
| 3987 | // (out := op1) |
| 3988 | // out <=? op2 |
| 3989 | // if out is min jmp done |
| 3990 | // out := op2 |
| 3991 | // done: |
| 3992 | |
| 3993 | if (type == DataType::Type::kInt64) { |
| 3994 | __ cmpq(out, op2); |
| 3995 | __ cmov(is_min ? Condition::kGreater : Condition::kLess, out, op2, /*is64bit*/ true); |
| 3996 | } else { |
| 3997 | DCHECK_EQ(type, DataType::Type::kInt32); |
| 3998 | __ cmpl(out, op2); |
| 3999 | __ cmov(is_min ? Condition::kGreater : Condition::kLess, out, op2, /*is64bit*/ false); |
| 4000 | } |
| 4001 | } |
| 4002 | |
| 4003 | void InstructionCodeGeneratorX86_64::GenerateMinMaxFP(LocationSummary* locations, |
| 4004 | bool is_min, |
| 4005 | DataType::Type type) { |
| 4006 | Location op1_loc = locations->InAt(0); |
| 4007 | Location op2_loc = locations->InAt(1); |
| 4008 | Location out_loc = locations->Out(); |
| 4009 | XmmRegister out = out_loc.AsFpuRegister<XmmRegister>(); |
| 4010 | |
| 4011 | // Shortcut for same input locations. |
| 4012 | if (op1_loc.Equals(op2_loc)) { |
| 4013 | DCHECK(out_loc.Equals(op1_loc)); |
| 4014 | return; |
| 4015 | } |
| 4016 | |
| 4017 | // (out := op1) |
| 4018 | // out <=? op2 |
| 4019 | // if Nan jmp Nan_label |
| 4020 | // if out is min jmp done |
| 4021 | // if op2 is min jmp op2_label |
| 4022 | // handle -0/+0 |
| 4023 | // jmp done |
| 4024 | // Nan_label: |
| 4025 | // out := NaN |
| 4026 | // op2_label: |
| 4027 | // out := op2 |
| 4028 | // done: |
| 4029 | // |
| 4030 | // This removes one jmp, but needs to copy one input (op1) to out. |
| 4031 | // |
| 4032 | // TODO: This is straight from Quick. Make NaN an out-of-line slowpath? |
| 4033 | |
| 4034 | XmmRegister op2 = op2_loc.AsFpuRegister<XmmRegister>(); |
| 4035 | |
| 4036 | NearLabel nan, done, op2_label; |
| 4037 | if (type == DataType::Type::kFloat64) { |
| 4038 | __ ucomisd(out, op2); |
| 4039 | } else { |
| 4040 | DCHECK_EQ(type, DataType::Type::kFloat32); |
| 4041 | __ ucomiss(out, op2); |
| 4042 | } |
| 4043 | |
| 4044 | __ j(Condition::kParityEven, &nan); |
| 4045 | |
| 4046 | __ j(is_min ? Condition::kAbove : Condition::kBelow, &op2_label); |
| 4047 | __ j(is_min ? Condition::kBelow : Condition::kAbove, &done); |
| 4048 | |
| 4049 | // Handle 0.0/-0.0. |
| 4050 | if (is_min) { |
| 4051 | if (type == DataType::Type::kFloat64) { |
| 4052 | __ orpd(out, op2); |
| 4053 | } else { |
| 4054 | __ orps(out, op2); |
| 4055 | } |
| 4056 | } else { |
| 4057 | if (type == DataType::Type::kFloat64) { |
| 4058 | __ andpd(out, op2); |
| 4059 | } else { |
| 4060 | __ andps(out, op2); |
| 4061 | } |
| 4062 | } |
| 4063 | __ jmp(&done); |
| 4064 | |
| 4065 | // NaN handling. |
| 4066 | __ Bind(&nan); |
| 4067 | if (type == DataType::Type::kFloat64) { |
| 4068 | __ movsd(out, codegen_->LiteralInt64Address(INT64_C(0x7FF8000000000000))); |
| 4069 | } else { |
| 4070 | __ movss(out, codegen_->LiteralInt32Address(INT32_C(0x7FC00000))); |
| 4071 | } |
| 4072 | __ jmp(&done); |
| 4073 | |
| 4074 | // out := op2; |
| 4075 | __ Bind(&op2_label); |
| 4076 | if (type == DataType::Type::kFloat64) { |
| 4077 | __ movsd(out, op2); |
| 4078 | } else { |
| 4079 | __ movss(out, op2); |
| 4080 | } |
| 4081 | |
| 4082 | // Done. |
| 4083 | __ Bind(&done); |
| 4084 | } |
| 4085 | |
Aart Bik | 351df3e | 2018-03-07 11:54:57 -0800 | [diff] [blame] | 4086 | void InstructionCodeGeneratorX86_64::GenerateMinMax(HBinaryOperation* minmax, bool is_min) { |
| 4087 | DataType::Type type = minmax->GetResultType(); |
| 4088 | switch (type) { |
| 4089 | case DataType::Type::kInt32: |
| 4090 | case DataType::Type::kInt64: |
| 4091 | GenerateMinMaxInt(minmax->GetLocations(), is_min, type); |
| 4092 | break; |
| 4093 | case DataType::Type::kFloat32: |
| 4094 | case DataType::Type::kFloat64: |
| 4095 | GenerateMinMaxFP(minmax->GetLocations(), is_min, type); |
| 4096 | break; |
| 4097 | default: |
| 4098 | LOG(FATAL) << "Unexpected type for HMinMax " << type; |
| 4099 | } |
| 4100 | } |
| 4101 | |
Aart Bik | 1f8d51b | 2018-02-15 10:42:37 -0800 | [diff] [blame] | 4102 | void LocationsBuilderX86_64::VisitMin(HMin* min) { |
| 4103 | CreateMinMaxLocations(GetGraph()->GetAllocator(), min); |
| 4104 | } |
| 4105 | |
| 4106 | void InstructionCodeGeneratorX86_64::VisitMin(HMin* min) { |
Aart Bik | 351df3e | 2018-03-07 11:54:57 -0800 | [diff] [blame] | 4107 | GenerateMinMax(min, /*is_min*/ true); |
Aart Bik | 1f8d51b | 2018-02-15 10:42:37 -0800 | [diff] [blame] | 4108 | } |
| 4109 | |
| 4110 | void LocationsBuilderX86_64::VisitMax(HMax* max) { |
| 4111 | CreateMinMaxLocations(GetGraph()->GetAllocator(), max); |
| 4112 | } |
| 4113 | |
| 4114 | void InstructionCodeGeneratorX86_64::VisitMax(HMax* max) { |
Aart Bik | 351df3e | 2018-03-07 11:54:57 -0800 | [diff] [blame] | 4115 | GenerateMinMax(max, /*is_min*/ false); |
Aart Bik | 1f8d51b | 2018-02-15 10:42:37 -0800 | [diff] [blame] | 4116 | } |
| 4117 | |
Aart Bik | 3dad341 | 2018-02-28 12:01:46 -0800 | [diff] [blame] | 4118 | void LocationsBuilderX86_64::VisitAbs(HAbs* abs) { |
| 4119 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(abs); |
| 4120 | switch (abs->GetResultType()) { |
| 4121 | case DataType::Type::kInt32: |
| 4122 | case DataType::Type::kInt64: |
| 4123 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4124 | locations->SetOut(Location::SameAsFirstInput()); |
| 4125 | locations->AddTemp(Location::RequiresRegister()); |
| 4126 | break; |
| 4127 | case DataType::Type::kFloat32: |
| 4128 | case DataType::Type::kFloat64: |
| 4129 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 4130 | locations->SetOut(Location::SameAsFirstInput()); |
| 4131 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 4132 | break; |
| 4133 | default: |
| 4134 | LOG(FATAL) << "Unexpected type for HAbs " << abs->GetResultType(); |
| 4135 | } |
| 4136 | } |
| 4137 | |
| 4138 | void InstructionCodeGeneratorX86_64::VisitAbs(HAbs* abs) { |
| 4139 | LocationSummary* locations = abs->GetLocations(); |
| 4140 | switch (abs->GetResultType()) { |
| 4141 | case DataType::Type::kInt32: { |
| 4142 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
| 4143 | CpuRegister mask = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 4144 | // Create mask. |
| 4145 | __ movl(mask, out); |
| 4146 | __ sarl(mask, Immediate(31)); |
| 4147 | // Add mask. |
| 4148 | __ addl(out, mask); |
| 4149 | __ xorl(out, mask); |
| 4150 | break; |
| 4151 | } |
| 4152 | case DataType::Type::kInt64: { |
| 4153 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
| 4154 | CpuRegister mask = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 4155 | // Create mask. |
| 4156 | __ movq(mask, out); |
| 4157 | __ sarq(mask, Immediate(63)); |
| 4158 | // Add mask. |
| 4159 | __ addq(out, mask); |
| 4160 | __ xorq(out, mask); |
| 4161 | break; |
| 4162 | } |
| 4163 | case DataType::Type::kFloat32: { |
| 4164 | XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>(); |
| 4165 | XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 4166 | __ movss(mask, codegen_->LiteralInt32Address(INT32_C(0x7FFFFFFF))); |
| 4167 | __ andps(out, mask); |
| 4168 | break; |
| 4169 | } |
| 4170 | case DataType::Type::kFloat64: { |
| 4171 | XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>(); |
| 4172 | XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 4173 | __ movsd(mask, codegen_->LiteralInt64Address(INT64_C(0x7FFFFFFFFFFFFFFF))); |
| 4174 | __ andpd(out, mask); |
| 4175 | break; |
| 4176 | } |
| 4177 | default: |
| 4178 | LOG(FATAL) << "Unexpected type for HAbs " << abs->GetResultType(); |
| 4179 | } |
| 4180 | } |
| 4181 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 4182 | void LocationsBuilderX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) { |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 4183 | LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 4184 | locations->SetInAt(0, Location::Any()); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 4185 | } |
| 4186 | |
| 4187 | void InstructionCodeGeneratorX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) { |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 4188 | SlowPathCode* slow_path = |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 4189 | new (codegen_->GetScopedAllocator()) DivZeroCheckSlowPathX86_64(instruction); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 4190 | codegen_->AddSlowPath(slow_path); |
| 4191 | |
| 4192 | LocationSummary* locations = instruction->GetLocations(); |
| 4193 | Location value = locations->InAt(0); |
| 4194 | |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 4195 | switch (instruction->GetType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4196 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 4197 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4198 | case DataType::Type::kInt8: |
| 4199 | case DataType::Type::kUint16: |
| 4200 | case DataType::Type::kInt16: |
| 4201 | case DataType::Type::kInt32: { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 4202 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4203 | __ testl(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>()); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 4204 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 4205 | } else if (value.IsStackSlot()) { |
| 4206 | __ cmpl(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0)); |
| 4207 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 4208 | } else { |
| 4209 | DCHECK(value.IsConstant()) << value; |
| 4210 | if (value.GetConstant()->AsIntConstant()->GetValue() == 0) { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 4211 | __ jmp(slow_path->GetEntryLabel()); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 4212 | } |
| 4213 | } |
| 4214 | break; |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 4215 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4216 | case DataType::Type::kInt64: { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 4217 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4218 | __ testq(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>()); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 4219 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 4220 | } else if (value.IsDoubleStackSlot()) { |
| 4221 | __ cmpq(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0)); |
| 4222 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 4223 | } else { |
| 4224 | DCHECK(value.IsConstant()) << value; |
| 4225 | if (value.GetConstant()->AsLongConstant()->GetValue() == 0) { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 4226 | __ jmp(slow_path->GetEntryLabel()); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 4227 | } |
| 4228 | } |
| 4229 | break; |
| 4230 | } |
| 4231 | default: |
| 4232 | LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType(); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 4233 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 4234 | } |
| 4235 | |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4236 | void LocationsBuilderX86_64::HandleShift(HBinaryOperation* op) { |
| 4237 | DCHECK(op->IsShl() || op->IsShr() || op->IsUShr()); |
| 4238 | |
| 4239 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4240 | new (GetGraph()->GetAllocator()) LocationSummary(op, LocationSummary::kNoCall); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4241 | |
| 4242 | switch (op->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4243 | case DataType::Type::kInt32: |
| 4244 | case DataType::Type::kInt64: { |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4245 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4246 | // The shift count needs to be in CL. |
| 4247 | locations->SetInAt(1, Location::ByteRegisterOrConstant(RCX, op->InputAt(1))); |
| 4248 | locations->SetOut(Location::SameAsFirstInput()); |
| 4249 | break; |
| 4250 | } |
| 4251 | default: |
| 4252 | LOG(FATAL) << "Unexpected operation type " << op->GetResultType(); |
| 4253 | } |
| 4254 | } |
| 4255 | |
| 4256 | void InstructionCodeGeneratorX86_64::HandleShift(HBinaryOperation* op) { |
| 4257 | DCHECK(op->IsShl() || op->IsShr() || op->IsUShr()); |
| 4258 | |
| 4259 | LocationSummary* locations = op->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4260 | CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4261 | Location second = locations->InAt(1); |
| 4262 | |
| 4263 | switch (op->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4264 | case DataType::Type::kInt32: { |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4265 | if (second.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4266 | CpuRegister second_reg = second.AsRegister<CpuRegister>(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4267 | if (op->IsShl()) { |
| 4268 | __ shll(first_reg, second_reg); |
| 4269 | } else if (op->IsShr()) { |
| 4270 | __ sarl(first_reg, second_reg); |
| 4271 | } else { |
| 4272 | __ shrl(first_reg, second_reg); |
| 4273 | } |
| 4274 | } else { |
Roland Levillain | 5b5b931 | 2016-03-22 14:57:31 +0000 | [diff] [blame] | 4275 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4276 | if (op->IsShl()) { |
| 4277 | __ shll(first_reg, imm); |
| 4278 | } else if (op->IsShr()) { |
| 4279 | __ sarl(first_reg, imm); |
| 4280 | } else { |
| 4281 | __ shrl(first_reg, imm); |
| 4282 | } |
| 4283 | } |
| 4284 | break; |
| 4285 | } |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4286 | case DataType::Type::kInt64: { |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4287 | if (second.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4288 | CpuRegister second_reg = second.AsRegister<CpuRegister>(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4289 | if (op->IsShl()) { |
| 4290 | __ shlq(first_reg, second_reg); |
| 4291 | } else if (op->IsShr()) { |
| 4292 | __ sarq(first_reg, second_reg); |
| 4293 | } else { |
| 4294 | __ shrq(first_reg, second_reg); |
| 4295 | } |
| 4296 | } else { |
Roland Levillain | 5b5b931 | 2016-03-22 14:57:31 +0000 | [diff] [blame] | 4297 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4298 | if (op->IsShl()) { |
| 4299 | __ shlq(first_reg, imm); |
| 4300 | } else if (op->IsShr()) { |
| 4301 | __ sarq(first_reg, imm); |
| 4302 | } else { |
| 4303 | __ shrq(first_reg, imm); |
| 4304 | } |
| 4305 | } |
| 4306 | break; |
| 4307 | } |
| 4308 | default: |
| 4309 | LOG(FATAL) << "Unexpected operation type " << op->GetResultType(); |
Vladimir Marko | 351dddf | 2015-12-11 16:34:46 +0000 | [diff] [blame] | 4310 | UNREACHABLE(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4311 | } |
| 4312 | } |
| 4313 | |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 4314 | void LocationsBuilderX86_64::VisitRor(HRor* ror) { |
| 4315 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4316 | new (GetGraph()->GetAllocator()) LocationSummary(ror, LocationSummary::kNoCall); |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 4317 | |
| 4318 | switch (ror->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4319 | case DataType::Type::kInt32: |
| 4320 | case DataType::Type::kInt64: { |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 4321 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4322 | // The shift count needs to be in CL (unless it is a constant). |
| 4323 | locations->SetInAt(1, Location::ByteRegisterOrConstant(RCX, ror->InputAt(1))); |
| 4324 | locations->SetOut(Location::SameAsFirstInput()); |
| 4325 | break; |
| 4326 | } |
| 4327 | default: |
| 4328 | LOG(FATAL) << "Unexpected operation type " << ror->GetResultType(); |
| 4329 | UNREACHABLE(); |
| 4330 | } |
| 4331 | } |
| 4332 | |
| 4333 | void InstructionCodeGeneratorX86_64::VisitRor(HRor* ror) { |
| 4334 | LocationSummary* locations = ror->GetLocations(); |
| 4335 | CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>(); |
| 4336 | Location second = locations->InAt(1); |
| 4337 | |
| 4338 | switch (ror->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4339 | case DataType::Type::kInt32: |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 4340 | if (second.IsRegister()) { |
| 4341 | CpuRegister second_reg = second.AsRegister<CpuRegister>(); |
| 4342 | __ rorl(first_reg, second_reg); |
| 4343 | } else { |
Roland Levillain | 5b5b931 | 2016-03-22 14:57:31 +0000 | [diff] [blame] | 4344 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 4345 | __ rorl(first_reg, imm); |
| 4346 | } |
| 4347 | break; |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4348 | case DataType::Type::kInt64: |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 4349 | if (second.IsRegister()) { |
| 4350 | CpuRegister second_reg = second.AsRegister<CpuRegister>(); |
| 4351 | __ rorq(first_reg, second_reg); |
| 4352 | } else { |
Roland Levillain | 5b5b931 | 2016-03-22 14:57:31 +0000 | [diff] [blame] | 4353 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance); |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 4354 | __ rorq(first_reg, imm); |
| 4355 | } |
| 4356 | break; |
| 4357 | default: |
| 4358 | LOG(FATAL) << "Unexpected operation type " << ror->GetResultType(); |
| 4359 | UNREACHABLE(); |
| 4360 | } |
| 4361 | } |
| 4362 | |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 4363 | void LocationsBuilderX86_64::VisitShl(HShl* shl) { |
| 4364 | HandleShift(shl); |
| 4365 | } |
| 4366 | |
| 4367 | void InstructionCodeGeneratorX86_64::VisitShl(HShl* shl) { |
| 4368 | HandleShift(shl); |
| 4369 | } |
| 4370 | |
| 4371 | void LocationsBuilderX86_64::VisitShr(HShr* shr) { |
| 4372 | HandleShift(shr); |
| 4373 | } |
| 4374 | |
| 4375 | void InstructionCodeGeneratorX86_64::VisitShr(HShr* shr) { |
| 4376 | HandleShift(shr); |
| 4377 | } |
| 4378 | |
| 4379 | void LocationsBuilderX86_64::VisitUShr(HUShr* ushr) { |
| 4380 | HandleShift(ushr); |
| 4381 | } |
| 4382 | |
| 4383 | void InstructionCodeGeneratorX86_64::VisitUShr(HUShr* ushr) { |
| 4384 | HandleShift(ushr); |
| 4385 | } |
| 4386 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4387 | void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4388 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary( |
| 4389 | instruction, LocationSummary::kCallOnMainOnly); |
Nicolas Geoffray | 9ae0daa | 2014-09-30 22:40:23 +0100 | [diff] [blame] | 4390 | InvokeRuntimeCallingConvention calling_convention; |
Alex Light | d109e30 | 2018-06-27 10:25:41 -0700 | [diff] [blame] | 4391 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 4392 | locations->SetOut(Location::RegisterLocation(RAX)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4393 | } |
| 4394 | |
| 4395 | void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) { |
Alex Light | d109e30 | 2018-06-27 10:25:41 -0700 | [diff] [blame] | 4396 | codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc()); |
| 4397 | CheckEntrypointTypes<kQuickAllocObjectWithChecks, void*, mirror::Class*>(); |
| 4398 | DCHECK(!codegen_->IsLeafMethod()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4399 | } |
| 4400 | |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 4401 | void LocationsBuilderX86_64::VisitNewArray(HNewArray* instruction) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4402 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary( |
| 4403 | instruction, LocationSummary::kCallOnMainOnly); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 4404 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 4405 | locations->SetOut(Location::RegisterLocation(RAX)); |
Nicolas Geoffray | e761bcc | 2017-01-19 08:59:37 +0000 | [diff] [blame] | 4406 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 4407 | locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 4408 | } |
| 4409 | |
| 4410 | void InstructionCodeGeneratorX86_64::VisitNewArray(HNewArray* instruction) { |
Vladimir Marko | b546163 | 2018-10-15 14:24:21 +0100 | [diff] [blame] | 4411 | // Note: if heap poisoning is enabled, the entry point takes care of poisoning the reference. |
| 4412 | QuickEntrypointEnum entrypoint = CodeGenerator::GetArrayAllocationEntrypoint(instruction); |
Nicolas Geoffray | b048cb7 | 2017-01-23 22:50:24 +0000 | [diff] [blame] | 4413 | codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc()); |
Nicolas Geoffray | e761bcc | 2017-01-19 08:59:37 +0000 | [diff] [blame] | 4414 | CheckEntrypointTypes<kQuickAllocArrayResolved, void*, mirror::Class*, int32_t>(); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 4415 | DCHECK(!codegen_->IsLeafMethod()); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 4416 | } |
| 4417 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4418 | void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 4419 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4420 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4421 | Location location = parameter_visitor_.GetNextLocation(instruction->GetType()); |
| 4422 | if (location.IsStackSlot()) { |
| 4423 | location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); |
| 4424 | } else if (location.IsDoubleStackSlot()) { |
| 4425 | location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); |
| 4426 | } |
| 4427 | locations->SetOut(location); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4428 | } |
| 4429 | |
Nicolas Geoffray | 76b1e17 | 2015-05-27 17:18:33 +0100 | [diff] [blame] | 4430 | void InstructionCodeGeneratorX86_64::VisitParameterValue( |
| 4431 | HParameterValue* instruction ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4432 | // Nothing to do, the parameter is already at its location. |
Nicolas Geoffray | 76b1e17 | 2015-05-27 17:18:33 +0100 | [diff] [blame] | 4433 | } |
| 4434 | |
| 4435 | void LocationsBuilderX86_64::VisitCurrentMethod(HCurrentMethod* instruction) { |
| 4436 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4437 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 76b1e17 | 2015-05-27 17:18:33 +0100 | [diff] [blame] | 4438 | locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument)); |
| 4439 | } |
| 4440 | |
| 4441 | void InstructionCodeGeneratorX86_64::VisitCurrentMethod( |
| 4442 | HCurrentMethod* instruction ATTRIBUTE_UNUSED) { |
| 4443 | // Nothing to do, the method is already at its location. |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4444 | } |
| 4445 | |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 4446 | void LocationsBuilderX86_64::VisitClassTableGet(HClassTableGet* instruction) { |
| 4447 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4448 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 4449 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4450 | locations->SetOut(Location::RequiresRegister()); |
| 4451 | } |
| 4452 | |
| 4453 | void InstructionCodeGeneratorX86_64::VisitClassTableGet(HClassTableGet* instruction) { |
| 4454 | LocationSummary* locations = instruction->GetLocations(); |
Vladimir Marko | a1de918 | 2016-02-25 11:37:38 +0000 | [diff] [blame] | 4455 | if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) { |
Nicolas Geoffray | ff484b9 | 2016-07-13 14:13:48 +0100 | [diff] [blame] | 4456 | uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 4457 | instruction->GetIndex(), kX86_64PointerSize).SizeValue(); |
Nicolas Geoffray | ff484b9 | 2016-07-13 14:13:48 +0100 | [diff] [blame] | 4458 | __ movq(locations->Out().AsRegister<CpuRegister>(), |
| 4459 | Address(locations->InAt(0).AsRegister<CpuRegister>(), method_offset)); |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 4460 | } else { |
Nicolas Geoffray | ff484b9 | 2016-07-13 14:13:48 +0100 | [diff] [blame] | 4461 | uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( |
Matthew Gharrity | 465ecc8 | 2016-07-19 21:32:52 +0000 | [diff] [blame] | 4462 | instruction->GetIndex(), kX86_64PointerSize)); |
Artem Udovichenko | a62cb9b | 2016-06-30 09:18:25 +0000 | [diff] [blame] | 4463 | __ movq(locations->Out().AsRegister<CpuRegister>(), |
| 4464 | Address(locations->InAt(0).AsRegister<CpuRegister>(), |
| 4465 | mirror::Class::ImtPtrOffset(kX86_64PointerSize).Uint32Value())); |
Nicolas Geoffray | ff484b9 | 2016-07-13 14:13:48 +0100 | [diff] [blame] | 4466 | __ movq(locations->Out().AsRegister<CpuRegister>(), |
| 4467 | Address(locations->Out().AsRegister<CpuRegister>(), method_offset)); |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 4468 | } |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 4469 | } |
| 4470 | |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 4471 | void LocationsBuilderX86_64::VisitNot(HNot* not_) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 4472 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4473 | new (GetGraph()->GetAllocator()) LocationSummary(not_, LocationSummary::kNoCall); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 4474 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4475 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4476 | } |
| 4477 | |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 4478 | void InstructionCodeGeneratorX86_64::VisitNot(HNot* not_) { |
| 4479 | LocationSummary* locations = not_->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4480 | DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(), |
| 4481 | locations->Out().AsRegister<CpuRegister>().AsRegister()); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 4482 | Location out = locations->Out(); |
Nicolas Geoffray | d8ef2e9 | 2015-02-24 16:02:06 +0000 | [diff] [blame] | 4483 | switch (not_->GetResultType()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4484 | case DataType::Type::kInt32: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4485 | __ notl(out.AsRegister<CpuRegister>()); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 4486 | break; |
| 4487 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4488 | case DataType::Type::kInt64: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4489 | __ notq(out.AsRegister<CpuRegister>()); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 4490 | break; |
| 4491 | |
| 4492 | default: |
| 4493 | LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType(); |
| 4494 | } |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4495 | } |
| 4496 | |
David Brazdil | 66d126e | 2015-04-03 16:02:44 +0100 | [diff] [blame] | 4497 | void LocationsBuilderX86_64::VisitBooleanNot(HBooleanNot* bool_not) { |
| 4498 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4499 | new (GetGraph()->GetAllocator()) LocationSummary(bool_not, LocationSummary::kNoCall); |
David Brazdil | 66d126e | 2015-04-03 16:02:44 +0100 | [diff] [blame] | 4500 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4501 | locations->SetOut(Location::SameAsFirstInput()); |
| 4502 | } |
| 4503 | |
| 4504 | void InstructionCodeGeneratorX86_64::VisitBooleanNot(HBooleanNot* bool_not) { |
David Brazdil | 66d126e | 2015-04-03 16:02:44 +0100 | [diff] [blame] | 4505 | LocationSummary* locations = bool_not->GetLocations(); |
| 4506 | DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(), |
| 4507 | locations->Out().AsRegister<CpuRegister>().AsRegister()); |
| 4508 | Location out = locations->Out(); |
| 4509 | __ xorl(out.AsRegister<CpuRegister>(), Immediate(1)); |
| 4510 | } |
| 4511 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4512 | void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 4513 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4514 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall); |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 4515 | for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4516 | locations->SetInAt(i, Location::Any()); |
| 4517 | } |
| 4518 | locations->SetOut(Location::Any()); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4519 | } |
| 4520 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 4521 | void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 4522 | LOG(FATAL) << "Unimplemented"; |
| 4523 | } |
| 4524 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4525 | void CodeGeneratorX86_64::GenerateMemoryBarrier(MemBarrierKind kind) { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4526 | /* |
Roland Levillain | 5e8d5f0 | 2016-10-18 18:03:43 +0100 | [diff] [blame] | 4527 | * According to the JSR-133 Cookbook, for x86-64 only StoreLoad/AnyAny barriers need memory fence. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4528 | * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86-64 memory model. |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4529 | * For those cases, all we need to ensure is that there is a scheduling barrier in place. |
| 4530 | */ |
| 4531 | switch (kind) { |
| 4532 | case MemBarrierKind::kAnyAny: { |
Mark P Mendell | 17077d8 | 2015-12-16 19:15:59 +0000 | [diff] [blame] | 4533 | MemoryFence(); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4534 | break; |
| 4535 | } |
| 4536 | case MemBarrierKind::kAnyStore: |
| 4537 | case MemBarrierKind::kLoadAny: |
| 4538 | case MemBarrierKind::kStoreStore: { |
| 4539 | // nop |
| 4540 | break; |
| 4541 | } |
Mark Mendell | 7aa04a1 | 2016-01-27 22:39:07 -0500 | [diff] [blame] | 4542 | case MemBarrierKind::kNTStoreStore: |
| 4543 | // Non-Temporal Store/Store needs an explicit fence. |
| 4544 | MemoryFence(/* non-temporal */ true); |
| 4545 | break; |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4546 | } |
| 4547 | } |
| 4548 | |
| 4549 | void LocationsBuilderX86_64::HandleFieldGet(HInstruction* instruction) { |
| 4550 | DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet()); |
| 4551 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 4552 | bool object_field_get_with_read_barrier = |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4553 | kEmitCompilerReadBarrier && (instruction->GetType() == DataType::Type::kReference); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 4554 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4555 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, |
| 4556 | object_field_get_with_read_barrier |
| 4557 | ? LocationSummary::kCallOnSlowPath |
| 4558 | : LocationSummary::kNoCall); |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 4559 | if (object_field_get_with_read_barrier && kUseBakerReadBarrier) { |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 4560 | locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers. |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 4561 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4562 | locations->SetInAt(0, Location::RequiresRegister()); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4563 | if (DataType::IsFloatingPointType(instruction->GetType())) { |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 4564 | locations->SetOut(Location::RequiresFpuRegister()); |
| 4565 | } else { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 4566 | // The output overlaps for an object field get when read barriers |
| 4567 | // are enabled: we do not want the move to overwrite the object's |
| 4568 | // location, as we need it to emit the read barrier. |
| 4569 | locations->SetOut( |
| 4570 | Location::RequiresRegister(), |
| 4571 | object_field_get_with_read_barrier ? Location::kOutputOverlap : Location::kNoOutputOverlap); |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 4572 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4573 | } |
| 4574 | |
| 4575 | void InstructionCodeGeneratorX86_64::HandleFieldGet(HInstruction* instruction, |
| 4576 | const FieldInfo& field_info) { |
| 4577 | DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet()); |
| 4578 | |
| 4579 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 4580 | Location base_loc = locations->InAt(0); |
| 4581 | CpuRegister base = base_loc.AsRegister<CpuRegister>(); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4582 | Location out = locations->Out(); |
| 4583 | bool is_volatile = field_info.IsVolatile(); |
Vladimir Marko | 61b9228 | 2017-10-11 13:23:17 +0100 | [diff] [blame] | 4584 | DCHECK_EQ(DataType::Size(field_info.GetFieldType()), DataType::Size(instruction->GetType())); |
| 4585 | DataType::Type load_type = instruction->GetType(); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4586 | uint32_t offset = field_info.GetFieldOffset().Uint32Value(); |
| 4587 | |
Vladimir Marko | 61b9228 | 2017-10-11 13:23:17 +0100 | [diff] [blame] | 4588 | switch (load_type) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 4589 | case DataType::Type::kBool: |
| 4590 | case DataType::Type::kUint8: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4591 | __ movzxb(out.AsRegister<CpuRegister>(), Address(base, offset)); |
| 4592 | break; |
| 4593 | } |
| 4594 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4595 | case DataType::Type::kInt8: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4596 | __ movsxb(out.AsRegister<CpuRegister>(), Address(base, offset)); |
| 4597 | break; |
| 4598 | } |
| 4599 | |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 4600 | case DataType::Type::kUint16: { |
| 4601 | __ movzxw(out.AsRegister<CpuRegister>(), Address(base, offset)); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4602 | break; |
| 4603 | } |
| 4604 | |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 4605 | case DataType::Type::kInt16: { |
| 4606 | __ movsxw(out.AsRegister<CpuRegister>(), Address(base, offset)); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4607 | break; |
| 4608 | } |
| 4609 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4610 | case DataType::Type::kInt32: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4611 | __ movl(out.AsRegister<CpuRegister>(), Address(base, offset)); |
| 4612 | break; |
| 4613 | } |
| 4614 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4615 | case DataType::Type::kReference: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4616 | // /* HeapReference<Object> */ out = *(base + offset) |
| 4617 | if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4618 | // Note that a potential implicit null check is handled in this |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 4619 | // CodeGeneratorX86_64::GenerateFieldLoadWithBakerReadBarrier call. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4620 | codegen_->GenerateFieldLoadWithBakerReadBarrier( |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 4621 | instruction, out, base, offset, /* needs_null_check */ true); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4622 | if (is_volatile) { |
| 4623 | codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny); |
| 4624 | } |
| 4625 | } else { |
| 4626 | __ movl(out.AsRegister<CpuRegister>(), Address(base, offset)); |
| 4627 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 4628 | if (is_volatile) { |
| 4629 | codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny); |
| 4630 | } |
| 4631 | // If read barriers are enabled, emit read barriers other than |
| 4632 | // Baker's using a slow path (and also unpoison the loaded |
| 4633 | // reference, if heap poisoning is enabled). |
| 4634 | codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, base_loc, offset); |
| 4635 | } |
| 4636 | break; |
| 4637 | } |
| 4638 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4639 | case DataType::Type::kInt64: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4640 | __ movq(out.AsRegister<CpuRegister>(), Address(base, offset)); |
| 4641 | break; |
| 4642 | } |
| 4643 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4644 | case DataType::Type::kFloat32: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4645 | __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset)); |
| 4646 | break; |
| 4647 | } |
| 4648 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4649 | case DataType::Type::kFloat64: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4650 | __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset)); |
| 4651 | break; |
| 4652 | } |
| 4653 | |
Aart Bik | 66c158e | 2018-01-31 12:55:04 -0800 | [diff] [blame] | 4654 | case DataType::Type::kUint32: |
| 4655 | case DataType::Type::kUint64: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4656 | case DataType::Type::kVoid: |
Vladimir Marko | 61b9228 | 2017-10-11 13:23:17 +0100 | [diff] [blame] | 4657 | LOG(FATAL) << "Unreachable type " << load_type; |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4658 | UNREACHABLE(); |
| 4659 | } |
| 4660 | |
Vladimir Marko | 61b9228 | 2017-10-11 13:23:17 +0100 | [diff] [blame] | 4661 | if (load_type == DataType::Type::kReference) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4662 | // Potential implicit null checks, in the case of reference |
| 4663 | // fields, are handled in the previous switch statement. |
| 4664 | } else { |
| 4665 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4666 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 4667 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4668 | if (is_volatile) { |
Vladimir Marko | 61b9228 | 2017-10-11 13:23:17 +0100 | [diff] [blame] | 4669 | if (load_type == DataType::Type::kReference) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4670 | // Memory barriers, in the case of references, are also handled |
| 4671 | // in the previous switch statement. |
| 4672 | } else { |
| 4673 | codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny); |
| 4674 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 4675 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4676 | } |
| 4677 | |
| 4678 | void LocationsBuilderX86_64::HandleFieldSet(HInstruction* instruction, |
| 4679 | const FieldInfo& field_info) { |
| 4680 | DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet()); |
| 4681 | |
| 4682 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4683 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4684 | DataType::Type field_type = field_info.GetFieldType(); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4685 | bool is_volatile = field_info.IsVolatile(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 4686 | bool needs_write_barrier = |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 4687 | CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1)); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4688 | |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 4689 | locations->SetInAt(0, Location::RequiresRegister()); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4690 | if (DataType::IsFloatingPointType(instruction->InputAt(1)->GetType())) { |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4691 | if (is_volatile) { |
| 4692 | // In order to satisfy the semantics of volatile, this must be a single instruction store. |
| 4693 | locations->SetInAt(1, Location::FpuRegisterOrInt32Constant(instruction->InputAt(1))); |
| 4694 | } else { |
| 4695 | locations->SetInAt(1, Location::FpuRegisterOrConstant(instruction->InputAt(1))); |
| 4696 | } |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 4697 | } else { |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4698 | if (is_volatile) { |
| 4699 | // In order to satisfy the semantics of volatile, this must be a single instruction store. |
| 4700 | locations->SetInAt(1, Location::RegisterOrInt32Constant(instruction->InputAt(1))); |
| 4701 | } else { |
| 4702 | locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1))); |
| 4703 | } |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 4704 | } |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 4705 | if (needs_write_barrier) { |
Nicolas Geoffray | 9ae0daa | 2014-09-30 22:40:23 +0100 | [diff] [blame] | 4706 | // Temporary registers for the write barrier. |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 4707 | locations->AddTemp(Location::RequiresRegister()); // Possibly used for reference poisoning too. |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 4708 | locations->AddTemp(Location::RequiresRegister()); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4709 | } else if (kPoisonHeapReferences && field_type == DataType::Type::kReference) { |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 4710 | // Temporary register for the reference poisoning. |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 4711 | locations->AddTemp(Location::RequiresRegister()); |
| 4712 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4713 | } |
| 4714 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4715 | void InstructionCodeGeneratorX86_64::HandleFieldSet(HInstruction* instruction, |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 4716 | const FieldInfo& field_info, |
| 4717 | bool value_can_be_null) { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4718 | DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet()); |
| 4719 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4720 | LocationSummary* locations = instruction->GetLocations(); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4721 | CpuRegister base = locations->InAt(0).AsRegister<CpuRegister>(); |
| 4722 | Location value = locations->InAt(1); |
| 4723 | bool is_volatile = field_info.IsVolatile(); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4724 | DataType::Type field_type = field_info.GetFieldType(); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4725 | uint32_t offset = field_info.GetFieldOffset().Uint32Value(); |
| 4726 | |
| 4727 | if (is_volatile) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4728 | codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyStore); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4729 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4730 | |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4731 | bool maybe_record_implicit_null_check_done = false; |
| 4732 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4733 | switch (field_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4734 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 4735 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4736 | case DataType::Type::kInt8: { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4737 | if (value.IsConstant()) { |
Nicolas Geoffray | 7861208 | 2017-07-24 14:18:53 +0100 | [diff] [blame] | 4738 | __ movb(Address(base, offset), |
| 4739 | Immediate(CodeGenerator::GetInt8ValueOf(value.GetConstant()))); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4740 | } else { |
| 4741 | __ movb(Address(base, offset), value.AsRegister<CpuRegister>()); |
| 4742 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4743 | break; |
| 4744 | } |
| 4745 | |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 4746 | case DataType::Type::kUint16: |
| 4747 | case DataType::Type::kInt16: { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4748 | if (value.IsConstant()) { |
Nicolas Geoffray | 7861208 | 2017-07-24 14:18:53 +0100 | [diff] [blame] | 4749 | __ movw(Address(base, offset), |
| 4750 | Immediate(CodeGenerator::GetInt16ValueOf(value.GetConstant()))); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4751 | } else { |
| 4752 | __ movw(Address(base, offset), value.AsRegister<CpuRegister>()); |
| 4753 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4754 | break; |
| 4755 | } |
| 4756 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4757 | case DataType::Type::kInt32: |
| 4758 | case DataType::Type::kReference: { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4759 | if (value.IsConstant()) { |
| 4760 | int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4761 | // `field_type == DataType::Type::kReference` implies `v == 0`. |
| 4762 | DCHECK((field_type != DataType::Type::kReference) || (v == 0)); |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 4763 | // Note: if heap poisoning is enabled, no need to poison |
| 4764 | // (negate) `v` if it is a reference, as it would be null. |
Roland Levillain | 06b66d0 | 2015-07-01 12:47:25 +0100 | [diff] [blame] | 4765 | __ movl(Address(base, offset), Immediate(v)); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4766 | } else { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4767 | if (kPoisonHeapReferences && field_type == DataType::Type::kReference) { |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 4768 | CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 4769 | __ movl(temp, value.AsRegister<CpuRegister>()); |
| 4770 | __ PoisonHeapReference(temp); |
| 4771 | __ movl(Address(base, offset), temp); |
| 4772 | } else { |
| 4773 | __ movl(Address(base, offset), value.AsRegister<CpuRegister>()); |
| 4774 | } |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4775 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4776 | break; |
| 4777 | } |
| 4778 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4779 | case DataType::Type::kInt64: { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4780 | if (value.IsConstant()) { |
| 4781 | int64_t v = value.GetConstant()->AsLongConstant()->GetValue(); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4782 | codegen_->MoveInt64ToAddress(Address(base, offset), |
| 4783 | Address(base, offset + sizeof(int32_t)), |
| 4784 | v, |
| 4785 | instruction); |
| 4786 | maybe_record_implicit_null_check_done = true; |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4787 | } else { |
| 4788 | __ movq(Address(base, offset), value.AsRegister<CpuRegister>()); |
| 4789 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4790 | break; |
| 4791 | } |
| 4792 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4793 | case DataType::Type::kFloat32: { |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4794 | if (value.IsConstant()) { |
| 4795 | int32_t v = |
| 4796 | bit_cast<int32_t, float>(value.GetConstant()->AsFloatConstant()->GetValue()); |
| 4797 | __ movl(Address(base, offset), Immediate(v)); |
| 4798 | } else { |
| 4799 | __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>()); |
| 4800 | } |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 4801 | break; |
| 4802 | } |
| 4803 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4804 | case DataType::Type::kFloat64: { |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4805 | if (value.IsConstant()) { |
| 4806 | int64_t v = |
| 4807 | bit_cast<int64_t, double>(value.GetConstant()->AsDoubleConstant()->GetValue()); |
| 4808 | codegen_->MoveInt64ToAddress(Address(base, offset), |
| 4809 | Address(base, offset + sizeof(int32_t)), |
| 4810 | v, |
| 4811 | instruction); |
| 4812 | maybe_record_implicit_null_check_done = true; |
| 4813 | } else { |
| 4814 | __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>()); |
| 4815 | } |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 4816 | break; |
| 4817 | } |
| 4818 | |
Aart Bik | 66c158e | 2018-01-31 12:55:04 -0800 | [diff] [blame] | 4819 | case DataType::Type::kUint32: |
| 4820 | case DataType::Type::kUint64: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4821 | case DataType::Type::kVoid: |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4822 | LOG(FATAL) << "Unreachable type " << field_type; |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 4823 | UNREACHABLE(); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4824 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4825 | |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 4826 | if (!maybe_record_implicit_null_check_done) { |
| 4827 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 4828 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 4829 | |
| 4830 | if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) { |
| 4831 | CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 4832 | CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>(); |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 4833 | codegen_->MarkGCCard(temp, card, base, value.AsRegister<CpuRegister>(), value_can_be_null); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 4834 | } |
| 4835 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4836 | if (is_volatile) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 4837 | codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyAny); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4838 | } |
| 4839 | } |
| 4840 | |
| 4841 | void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) { |
| 4842 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 4843 | } |
| 4844 | |
| 4845 | void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) { |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 4846 | HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4847 | } |
| 4848 | |
| 4849 | void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4850 | HandleFieldGet(instruction); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4851 | } |
| 4852 | |
| 4853 | void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4854 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 4855 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4856 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4857 | void LocationsBuilderX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) { |
| 4858 | HandleFieldGet(instruction); |
| 4859 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4860 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4861 | void InstructionCodeGeneratorX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) { |
| 4862 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 4863 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4864 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4865 | void LocationsBuilderX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) { |
| 4866 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 4867 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4868 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 4869 | void InstructionCodeGeneratorX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) { |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 4870 | HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4871 | } |
| 4872 | |
Calin Juravle | e460d1d | 2015-09-29 04:52:17 +0100 | [diff] [blame] | 4873 | void LocationsBuilderX86_64::VisitUnresolvedInstanceFieldGet( |
| 4874 | HUnresolvedInstanceFieldGet* instruction) { |
| 4875 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4876 | codegen_->CreateUnresolvedFieldLocationSummary( |
| 4877 | instruction, instruction->GetFieldType(), calling_convention); |
| 4878 | } |
| 4879 | |
| 4880 | void InstructionCodeGeneratorX86_64::VisitUnresolvedInstanceFieldGet( |
| 4881 | HUnresolvedInstanceFieldGet* instruction) { |
| 4882 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4883 | codegen_->GenerateUnresolvedFieldAccess(instruction, |
| 4884 | instruction->GetFieldType(), |
| 4885 | instruction->GetFieldIndex(), |
| 4886 | instruction->GetDexPc(), |
| 4887 | calling_convention); |
| 4888 | } |
| 4889 | |
| 4890 | void LocationsBuilderX86_64::VisitUnresolvedInstanceFieldSet( |
| 4891 | HUnresolvedInstanceFieldSet* instruction) { |
| 4892 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4893 | codegen_->CreateUnresolvedFieldLocationSummary( |
| 4894 | instruction, instruction->GetFieldType(), calling_convention); |
| 4895 | } |
| 4896 | |
| 4897 | void InstructionCodeGeneratorX86_64::VisitUnresolvedInstanceFieldSet( |
| 4898 | HUnresolvedInstanceFieldSet* instruction) { |
| 4899 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4900 | codegen_->GenerateUnresolvedFieldAccess(instruction, |
| 4901 | instruction->GetFieldType(), |
| 4902 | instruction->GetFieldIndex(), |
| 4903 | instruction->GetDexPc(), |
| 4904 | calling_convention); |
| 4905 | } |
| 4906 | |
| 4907 | void LocationsBuilderX86_64::VisitUnresolvedStaticFieldGet( |
| 4908 | HUnresolvedStaticFieldGet* instruction) { |
| 4909 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4910 | codegen_->CreateUnresolvedFieldLocationSummary( |
| 4911 | instruction, instruction->GetFieldType(), calling_convention); |
| 4912 | } |
| 4913 | |
| 4914 | void InstructionCodeGeneratorX86_64::VisitUnresolvedStaticFieldGet( |
| 4915 | HUnresolvedStaticFieldGet* instruction) { |
| 4916 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4917 | codegen_->GenerateUnresolvedFieldAccess(instruction, |
| 4918 | instruction->GetFieldType(), |
| 4919 | instruction->GetFieldIndex(), |
| 4920 | instruction->GetDexPc(), |
| 4921 | calling_convention); |
| 4922 | } |
| 4923 | |
| 4924 | void LocationsBuilderX86_64::VisitUnresolvedStaticFieldSet( |
| 4925 | HUnresolvedStaticFieldSet* instruction) { |
| 4926 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4927 | codegen_->CreateUnresolvedFieldLocationSummary( |
| 4928 | instruction, instruction->GetFieldType(), calling_convention); |
| 4929 | } |
| 4930 | |
| 4931 | void InstructionCodeGeneratorX86_64::VisitUnresolvedStaticFieldSet( |
| 4932 | HUnresolvedStaticFieldSet* instruction) { |
| 4933 | FieldAccessCallingConventionX86_64 calling_convention; |
| 4934 | codegen_->GenerateUnresolvedFieldAccess(instruction, |
| 4935 | instruction->GetFieldType(), |
| 4936 | instruction->GetFieldIndex(), |
| 4937 | instruction->GetDexPc(), |
| 4938 | calling_convention); |
| 4939 | } |
| 4940 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4941 | void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) { |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 4942 | LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction); |
| 4943 | Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks() |
| 4944 | ? Location::RequiresRegister() |
| 4945 | : Location::Any(); |
| 4946 | locations->SetInAt(0, loc); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4947 | } |
| 4948 | |
Calin Juravle | 2ae4818 | 2016-03-16 14:05:09 +0000 | [diff] [blame] | 4949 | void CodeGeneratorX86_64::GenerateImplicitNullCheck(HNullCheck* instruction) { |
| 4950 | if (CanMoveNullCheckToUser(instruction)) { |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 4951 | return; |
| 4952 | } |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 4953 | LocationSummary* locations = instruction->GetLocations(); |
| 4954 | Location obj = locations->InAt(0); |
| 4955 | |
| 4956 | __ testl(CpuRegister(RAX), Address(obj.AsRegister<CpuRegister>(), 0)); |
Calin Juravle | 2ae4818 | 2016-03-16 14:05:09 +0000 | [diff] [blame] | 4957 | RecordPcInfo(instruction, instruction->GetDexPc()); |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 4958 | } |
| 4959 | |
Calin Juravle | 2ae4818 | 2016-03-16 14:05:09 +0000 | [diff] [blame] | 4960 | void CodeGeneratorX86_64::GenerateExplicitNullCheck(HNullCheck* instruction) { |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 4961 | SlowPathCode* slow_path = new (GetScopedAllocator()) NullCheckSlowPathX86_64(instruction); |
Calin Juravle | 2ae4818 | 2016-03-16 14:05:09 +0000 | [diff] [blame] | 4962 | AddSlowPath(slow_path); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4963 | |
| 4964 | LocationSummary* locations = instruction->GetLocations(); |
| 4965 | Location obj = locations->InAt(0); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4966 | |
| 4967 | if (obj.IsRegister()) { |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 4968 | __ testl(obj.AsRegister<CpuRegister>(), obj.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 4969 | } else if (obj.IsStackSlot()) { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4970 | __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0)); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 4971 | } else { |
| 4972 | DCHECK(obj.IsConstant()) << obj; |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 4973 | DCHECK(obj.GetConstant()->IsNullConstant()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 4974 | __ jmp(slow_path->GetEntryLabel()); |
| 4975 | return; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 4976 | } |
| 4977 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 4978 | } |
| 4979 | |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 4980 | void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) { |
Calin Juravle | 2ae4818 | 2016-03-16 14:05:09 +0000 | [diff] [blame] | 4981 | codegen_->GenerateNullCheck(instruction); |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 4982 | } |
| 4983 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 4984 | void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 4985 | bool object_array_get_with_read_barrier = |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4986 | kEmitCompilerReadBarrier && (instruction->GetType() == DataType::Type::kReference); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 4987 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 4988 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, |
| 4989 | object_array_get_with_read_barrier |
| 4990 | ? LocationSummary::kCallOnSlowPath |
| 4991 | : LocationSummary::kNoCall); |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 4992 | if (object_array_get_with_read_barrier && kUseBakerReadBarrier) { |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 4993 | locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers. |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 4994 | } |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 4995 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 4996 | locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1))); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 4997 | if (DataType::IsFloatingPointType(instruction->GetType())) { |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 4998 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
| 4999 | } else { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5000 | // The output overlaps for an object array get when read barriers |
| 5001 | // are enabled: we do not want the move to overwrite the array's |
| 5002 | // location, as we need it to emit the read barrier. |
| 5003 | locations->SetOut( |
| 5004 | Location::RequiresRegister(), |
| 5005 | object_array_get_with_read_barrier ? Location::kOutputOverlap : Location::kNoOutputOverlap); |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 5006 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5007 | } |
| 5008 | |
| 5009 | void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) { |
| 5010 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5011 | Location obj_loc = locations->InAt(0); |
| 5012 | CpuRegister obj = obj_loc.AsRegister<CpuRegister>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5013 | Location index = locations->InAt(1); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5014 | Location out_loc = locations->Out(); |
Vladimir Marko | 87f3fcb | 2016-04-28 15:52:11 +0100 | [diff] [blame] | 5015 | uint32_t data_offset = CodeGenerator::GetArrayDataOffset(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5016 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5017 | DataType::Type type = instruction->GetType(); |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 5018 | switch (type) { |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 5019 | case DataType::Type::kBool: |
| 5020 | case DataType::Type::kUint8: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5021 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5022 | __ movzxb(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_1, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5023 | break; |
| 5024 | } |
| 5025 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5026 | case DataType::Type::kInt8: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5027 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5028 | __ movsxb(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_1, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5029 | break; |
| 5030 | } |
| 5031 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5032 | case DataType::Type::kUint16: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5033 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5034 | if (mirror::kUseStringCompression && instruction->IsStringCharAt()) { |
| 5035 | // Branch cases into compressed and uncompressed for each index's type. |
| 5036 | uint32_t count_offset = mirror::String::CountOffset().Uint32Value(); |
| 5037 | NearLabel done, not_compressed; |
Vladimir Marko | 3c89d42 | 2017-02-17 11:30:23 +0000 | [diff] [blame] | 5038 | __ testb(Address(obj, count_offset), Immediate(1)); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5039 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Vladimir Marko | fdaf0f4 | 2016-10-13 19:29:53 +0100 | [diff] [blame] | 5040 | static_assert(static_cast<uint32_t>(mirror::StringCompressionFlag::kCompressed) == 0u, |
| 5041 | "Expecting 0=compressed, 1=uncompressed"); |
| 5042 | __ j(kNotZero, ¬_compressed); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5043 | __ movzxb(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_1, data_offset)); |
| 5044 | __ jmp(&done); |
| 5045 | __ Bind(¬_compressed); |
| 5046 | __ movzxw(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_2, data_offset)); |
| 5047 | __ Bind(&done); |
| 5048 | } else { |
| 5049 | __ movzxw(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_2, data_offset)); |
| 5050 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5051 | break; |
| 5052 | } |
| 5053 | |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 5054 | case DataType::Type::kInt16: { |
| 5055 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
| 5056 | __ movsxw(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_2, data_offset)); |
| 5057 | break; |
| 5058 | } |
| 5059 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5060 | case DataType::Type::kInt32: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5061 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5062 | __ movl(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_4, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5063 | break; |
| 5064 | } |
| 5065 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5066 | case DataType::Type::kReference: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5067 | static_assert( |
| 5068 | sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t), |
| 5069 | "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes."); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5070 | // /* HeapReference<Object> */ out = |
| 5071 | // *(obj + data_offset + index * sizeof(HeapReference<Object>)) |
| 5072 | if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5073 | // Note that a potential implicit null check is handled in this |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 5074 | // CodeGeneratorX86_64::GenerateArrayLoadWithBakerReadBarrier call. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5075 | codegen_->GenerateArrayLoadWithBakerReadBarrier( |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 5076 | instruction, out_loc, obj, data_offset, index, /* needs_null_check */ true); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5077 | } else { |
| 5078 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5079 | __ movl(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_4, data_offset)); |
| 5080 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 5081 | // If read barriers are enabled, emit read barriers other than |
| 5082 | // Baker's using a slow path (and also unpoison the loaded |
| 5083 | // reference, if heap poisoning is enabled). |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5084 | if (index.IsConstant()) { |
| 5085 | uint32_t offset = |
| 5086 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset; |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5087 | codegen_->MaybeGenerateReadBarrierSlow(instruction, out_loc, out_loc, obj_loc, offset); |
| 5088 | } else { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5089 | codegen_->MaybeGenerateReadBarrierSlow( |
| 5090 | instruction, out_loc, out_loc, obj_loc, data_offset, index); |
| 5091 | } |
| 5092 | } |
| 5093 | break; |
| 5094 | } |
| 5095 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5096 | case DataType::Type::kInt64: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5097 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5098 | __ movq(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_8, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5099 | break; |
| 5100 | } |
| 5101 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5102 | case DataType::Type::kFloat32: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5103 | XmmRegister out = out_loc.AsFpuRegister<XmmRegister>(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5104 | __ movss(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_4, data_offset)); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5105 | break; |
| 5106 | } |
| 5107 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5108 | case DataType::Type::kFloat64: { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5109 | XmmRegister out = out_loc.AsFpuRegister<XmmRegister>(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5110 | __ movsd(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_8, data_offset)); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5111 | break; |
| 5112 | } |
| 5113 | |
Aart Bik | 66c158e | 2018-01-31 12:55:04 -0800 | [diff] [blame] | 5114 | case DataType::Type::kUint32: |
| 5115 | case DataType::Type::kUint64: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5116 | case DataType::Type::kVoid: |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 5117 | LOG(FATAL) << "Unreachable type " << type; |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 5118 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5119 | } |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 5120 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5121 | if (type == DataType::Type::kReference) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5122 | // Potential implicit null checks, in the case of reference |
| 5123 | // arrays, are handled in the previous switch statement. |
| 5124 | } else { |
| 5125 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 5126 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5127 | } |
| 5128 | |
| 5129 | void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5130 | DataType::Type value_type = instruction->GetComponentType(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 5131 | |
| 5132 | bool needs_write_barrier = |
| 5133 | CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue()); |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 5134 | bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 5135 | |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 5136 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary( |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5137 | instruction, |
Vladimir Marko | 8d49fd7 | 2016-08-25 15:20:47 +0100 | [diff] [blame] | 5138 | may_need_runtime_call_for_type_check ? |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5139 | LocationSummary::kCallOnSlowPath : |
| 5140 | LocationSummary::kNoCall); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 5141 | |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5142 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5143 | locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1))); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5144 | if (DataType::IsFloatingPointType(value_type)) { |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5145 | locations->SetInAt(2, Location::FpuRegisterOrConstant(instruction->InputAt(2))); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5146 | } else { |
| 5147 | locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2))); |
| 5148 | } |
| 5149 | |
| 5150 | if (needs_write_barrier) { |
| 5151 | // Temporary registers for the write barrier. |
Roland Levillain | 16d9f94 | 2016-08-25 17:27:56 +0100 | [diff] [blame] | 5152 | locations->AddTemp(Location::RequiresRegister()); // Possibly used for ref. poisoning too. |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5153 | locations->AddTemp(Location::RequiresRegister()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5154 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5155 | } |
| 5156 | |
| 5157 | void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) { |
| 5158 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5159 | Location array_loc = locations->InAt(0); |
| 5160 | CpuRegister array = array_loc.AsRegister<CpuRegister>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5161 | Location index = locations->InAt(1); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 5162 | Location value = locations->InAt(2); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5163 | DataType::Type value_type = instruction->GetComponentType(); |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 5164 | bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 5165 | bool needs_write_barrier = |
| 5166 | CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue()); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5167 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 5168 | uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value(); |
| 5169 | uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5170 | |
| 5171 | switch (value_type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5172 | case DataType::Type::kBool: |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 5173 | case DataType::Type::kUint8: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5174 | case DataType::Type::kInt8: { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5175 | uint32_t offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5176 | Address address = CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_1, offset); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5177 | if (value.IsRegister()) { |
| 5178 | __ movb(address, value.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5179 | } else { |
Nicolas Geoffray | 7861208 | 2017-07-24 14:18:53 +0100 | [diff] [blame] | 5180 | __ movb(address, Immediate(CodeGenerator::GetInt8ValueOf(value.GetConstant()))); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5181 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 5182 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5183 | break; |
| 5184 | } |
| 5185 | |
Vladimir Marko | d5d2f2c | 2017-09-26 12:37:26 +0100 | [diff] [blame] | 5186 | case DataType::Type::kUint16: |
| 5187 | case DataType::Type::kInt16: { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5188 | uint32_t offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5189 | Address address = CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_2, offset); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5190 | if (value.IsRegister()) { |
| 5191 | __ movw(address, value.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5192 | } else { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5193 | DCHECK(value.IsConstant()) << value; |
Nicolas Geoffray | 7861208 | 2017-07-24 14:18:53 +0100 | [diff] [blame] | 5194 | __ movw(address, Immediate(CodeGenerator::GetInt16ValueOf(value.GetConstant()))); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5195 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 5196 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5197 | break; |
| 5198 | } |
| 5199 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5200 | case DataType::Type::kReference: { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5201 | uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5202 | Address address = CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_4, offset); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5203 | |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5204 | if (!value.IsRegister()) { |
| 5205 | // Just setting null. |
| 5206 | DCHECK(instruction->InputAt(2)->IsNullConstant()); |
| 5207 | DCHECK(value.IsConstant()) << value; |
| 5208 | __ movl(address, Immediate(0)); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 5209 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5210 | DCHECK(!needs_write_barrier); |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 5211 | DCHECK(!may_need_runtime_call_for_type_check); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5212 | break; |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 5213 | } |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5214 | |
| 5215 | DCHECK(needs_write_barrier); |
| 5216 | CpuRegister register_value = value.AsRegister<CpuRegister>(); |
Roland Levillain | 16d9f94 | 2016-08-25 17:27:56 +0100 | [diff] [blame] | 5217 | // We cannot use a NearLabel for `done`, as its range may be too |
| 5218 | // short when Baker read barriers are enabled. |
| 5219 | Label done; |
| 5220 | NearLabel not_null, do_put; |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5221 | SlowPathCode* slow_path = nullptr; |
Roland Levillain | 16d9f94 | 2016-08-25 17:27:56 +0100 | [diff] [blame] | 5222 | Location temp_loc = locations->GetTemp(0); |
| 5223 | CpuRegister temp = temp_loc.AsRegister<CpuRegister>(); |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 5224 | if (may_need_runtime_call_for_type_check) { |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 5225 | slow_path = new (codegen_->GetScopedAllocator()) ArraySetSlowPathX86_64(instruction); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5226 | codegen_->AddSlowPath(slow_path); |
| 5227 | if (instruction->GetValueCanBeNull()) { |
| 5228 | __ testl(register_value, register_value); |
| 5229 | __ j(kNotEqual, ¬_null); |
| 5230 | __ movl(address, Immediate(0)); |
| 5231 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 5232 | __ jmp(&done); |
| 5233 | __ Bind(¬_null); |
| 5234 | } |
| 5235 | |
Roland Levillain | 9d6e1f8 | 2016-09-05 15:57:33 +0100 | [diff] [blame] | 5236 | // Note that when Baker read barriers are enabled, the type |
| 5237 | // checks are performed without read barriers. This is fine, |
| 5238 | // even in the case where a class object is in the from-space |
| 5239 | // after the flip, as a comparison involving such a type would |
| 5240 | // not produce a false positive; it may of course produce a |
| 5241 | // false negative, in which case we would take the ArraySet |
| 5242 | // slow path. |
Roland Levillain | 16d9f94 | 2016-08-25 17:27:56 +0100 | [diff] [blame] | 5243 | |
Roland Levillain | 9d6e1f8 | 2016-09-05 15:57:33 +0100 | [diff] [blame] | 5244 | // /* HeapReference<Class> */ temp = array->klass_ |
| 5245 | __ movl(temp, Address(array, class_offset)); |
| 5246 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 5247 | __ MaybeUnpoisonHeapReference(temp); |
Roland Levillain | 16d9f94 | 2016-08-25 17:27:56 +0100 | [diff] [blame] | 5248 | |
Roland Levillain | 9d6e1f8 | 2016-09-05 15:57:33 +0100 | [diff] [blame] | 5249 | // /* HeapReference<Class> */ temp = temp->component_type_ |
| 5250 | __ movl(temp, Address(temp, component_offset)); |
| 5251 | // If heap poisoning is enabled, no need to unpoison `temp` |
| 5252 | // nor the object reference in `register_value->klass`, as |
| 5253 | // we are comparing two poisoned references. |
| 5254 | __ cmpl(temp, Address(register_value, class_offset)); |
Roland Levillain | 16d9f94 | 2016-08-25 17:27:56 +0100 | [diff] [blame] | 5255 | |
Roland Levillain | 9d6e1f8 | 2016-09-05 15:57:33 +0100 | [diff] [blame] | 5256 | if (instruction->StaticTypeOfArrayIsObjectArray()) { |
| 5257 | __ j(kEqual, &do_put); |
| 5258 | // If heap poisoning is enabled, the `temp` reference has |
| 5259 | // not been unpoisoned yet; unpoison it now. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5260 | __ MaybeUnpoisonHeapReference(temp); |
| 5261 | |
Roland Levillain | 9d6e1f8 | 2016-09-05 15:57:33 +0100 | [diff] [blame] | 5262 | // If heap poisoning is enabled, no need to unpoison the |
| 5263 | // heap reference loaded below, as it is only used for a |
| 5264 | // comparison with null. |
| 5265 | __ cmpl(Address(temp, super_offset), Immediate(0)); |
| 5266 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
| 5267 | __ Bind(&do_put); |
| 5268 | } else { |
| 5269 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5270 | } |
| 5271 | } |
| 5272 | |
| 5273 | if (kPoisonHeapReferences) { |
| 5274 | __ movl(temp, register_value); |
| 5275 | __ PoisonHeapReference(temp); |
| 5276 | __ movl(address, temp); |
| 5277 | } else { |
| 5278 | __ movl(address, register_value); |
| 5279 | } |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 5280 | if (!may_need_runtime_call_for_type_check) { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5281 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 5282 | } |
| 5283 | |
| 5284 | CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>(); |
| 5285 | codegen_->MarkGCCard( |
| 5286 | temp, card, array, value.AsRegister<CpuRegister>(), instruction->GetValueCanBeNull()); |
| 5287 | __ Bind(&done); |
| 5288 | |
| 5289 | if (slow_path != nullptr) { |
| 5290 | __ Bind(slow_path->GetExitLabel()); |
| 5291 | } |
| 5292 | |
| 5293 | break; |
| 5294 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5295 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5296 | case DataType::Type::kInt32: { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5297 | uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5298 | Address address = CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_4, offset); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5299 | if (value.IsRegister()) { |
| 5300 | __ movl(address, value.AsRegister<CpuRegister>()); |
| 5301 | } else { |
| 5302 | DCHECK(value.IsConstant()) << value; |
| 5303 | int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); |
| 5304 | __ movl(address, Immediate(v)); |
| 5305 | } |
| 5306 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5307 | break; |
| 5308 | } |
| 5309 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5310 | case DataType::Type::kInt64: { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5311 | uint32_t offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5312 | Address address = CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_8, offset); |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5313 | if (value.IsRegister()) { |
| 5314 | __ movq(address, value.AsRegister<CpuRegister>()); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5315 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5316 | } else { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5317 | int64_t v = value.GetConstant()->AsLongConstant()->GetValue(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5318 | Address address_high = |
| 5319 | CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_8, offset + sizeof(int32_t)); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5320 | codegen_->MoveInt64ToAddress(address, address_high, v, instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5321 | } |
| 5322 | break; |
| 5323 | } |
| 5324 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5325 | case DataType::Type::kFloat32: { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5326 | uint32_t offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5327 | Address address = CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_4, offset); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5328 | if (value.IsFpuRegister()) { |
| 5329 | __ movss(address, value.AsFpuRegister<XmmRegister>()); |
| 5330 | } else { |
| 5331 | DCHECK(value.IsConstant()); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5332 | int32_t v = bit_cast<int32_t, float>(value.GetConstant()->AsFloatConstant()->GetValue()); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5333 | __ movl(address, Immediate(v)); |
| 5334 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 5335 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5336 | break; |
| 5337 | } |
| 5338 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5339 | case DataType::Type::kFloat64: { |
Nicolas Geoffray | e0395dd | 2015-09-25 11:04:45 +0100 | [diff] [blame] | 5340 | uint32_t offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value(); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5341 | Address address = CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_8, offset); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5342 | if (value.IsFpuRegister()) { |
| 5343 | __ movsd(address, value.AsFpuRegister<XmmRegister>()); |
| 5344 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 5345 | } else { |
| 5346 | int64_t v = |
| 5347 | bit_cast<int64_t, double>(value.GetConstant()->AsDoubleConstant()->GetValue()); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5348 | Address address_high = |
| 5349 | CodeGeneratorX86_64::ArrayAddress(array, index, TIMES_8, offset + sizeof(int32_t)); |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 5350 | codegen_->MoveInt64ToAddress(address, address_high, v, instruction); |
| 5351 | } |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5352 | break; |
| 5353 | } |
| 5354 | |
Aart Bik | 66c158e | 2018-01-31 12:55:04 -0800 | [diff] [blame] | 5355 | case DataType::Type::kUint32: |
| 5356 | case DataType::Type::kUint64: |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 5357 | case DataType::Type::kVoid: |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5358 | LOG(FATAL) << "Unreachable type " << instruction->GetType(); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 5359 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5360 | } |
| 5361 | } |
| 5362 | |
| 5363 | void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 5364 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 5365 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 5366 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 5367 | if (!instruction->IsEmittedAtUseSite()) { |
| 5368 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 5369 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5370 | } |
| 5371 | |
| 5372 | void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) { |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 5373 | if (instruction->IsEmittedAtUseSite()) { |
| 5374 | return; |
| 5375 | } |
| 5376 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5377 | LocationSummary* locations = instruction->GetLocations(); |
Vladimir Marko | dce016e | 2016-04-28 13:10:02 +0100 | [diff] [blame] | 5378 | uint32_t offset = CodeGenerator::GetArrayLengthOffset(instruction); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5379 | CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>(); |
| 5380 | CpuRegister out = locations->Out().AsRegister<CpuRegister>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5381 | __ movl(out, Address(obj, offset)); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 5382 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5383 | // Mask out most significant bit in case the array is String's array of char. |
| 5384 | if (mirror::kUseStringCompression && instruction->IsStringLength()) { |
Vladimir Marko | fdaf0f4 | 2016-10-13 19:29:53 +0100 | [diff] [blame] | 5385 | __ shrl(out, Immediate(1)); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5386 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5387 | } |
| 5388 | |
| 5389 | void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) { |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 5390 | RegisterSet caller_saves = RegisterSet::Empty(); |
| 5391 | InvokeRuntimeCallingConvention calling_convention; |
| 5392 | caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 5393 | caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
| 5394 | LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction, caller_saves); |
Mark Mendell | f60c90b | 2015-03-04 15:12:59 -0500 | [diff] [blame] | 5395 | locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0))); |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 5396 | HInstruction* length = instruction->InputAt(1); |
| 5397 | if (!length->IsEmittedAtUseSite()) { |
| 5398 | locations->SetInAt(1, Location::RegisterOrConstant(length)); |
| 5399 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5400 | } |
| 5401 | |
| 5402 | void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) { |
| 5403 | LocationSummary* locations = instruction->GetLocations(); |
Mark Mendell | f60c90b | 2015-03-04 15:12:59 -0500 | [diff] [blame] | 5404 | Location index_loc = locations->InAt(0); |
| 5405 | Location length_loc = locations->InAt(1); |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 5406 | SlowPathCode* slow_path = |
| 5407 | new (codegen_->GetScopedAllocator()) BoundsCheckSlowPathX86_64(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5408 | |
Mark Mendell | 99dbd68 | 2015-04-22 16:18:52 -0400 | [diff] [blame] | 5409 | if (length_loc.IsConstant()) { |
| 5410 | int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); |
| 5411 | if (index_loc.IsConstant()) { |
| 5412 | // BCE will remove the bounds check if we are guarenteed to pass. |
| 5413 | int32_t index = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant()); |
| 5414 | if (index < 0 || index >= length) { |
| 5415 | codegen_->AddSlowPath(slow_path); |
| 5416 | __ jmp(slow_path->GetEntryLabel()); |
| 5417 | } else { |
| 5418 | // Some optimization after BCE may have generated this, and we should not |
| 5419 | // generate a bounds check if it is a valid range. |
| 5420 | } |
| 5421 | return; |
| 5422 | } |
| 5423 | |
| 5424 | // We have to reverse the jump condition because the length is the constant. |
| 5425 | CpuRegister index_reg = index_loc.AsRegister<CpuRegister>(); |
| 5426 | __ cmpl(index_reg, Immediate(length)); |
| 5427 | codegen_->AddSlowPath(slow_path); |
| 5428 | __ j(kAboveEqual, slow_path->GetEntryLabel()); |
Mark Mendell | f60c90b | 2015-03-04 15:12:59 -0500 | [diff] [blame] | 5429 | } else { |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 5430 | HInstruction* array_length = instruction->InputAt(1); |
| 5431 | if (array_length->IsEmittedAtUseSite()) { |
| 5432 | // Address the length field in the array. |
| 5433 | DCHECK(array_length->IsArrayLength()); |
| 5434 | uint32_t len_offset = CodeGenerator::GetArrayLengthOffset(array_length->AsArrayLength()); |
| 5435 | Location array_loc = array_length->GetLocations()->InAt(0); |
| 5436 | Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5437 | if (mirror::kUseStringCompression && instruction->IsStringCharAt()) { |
Vladimir Marko | fdaf0f4 | 2016-10-13 19:29:53 +0100 | [diff] [blame] | 5438 | // TODO: if index_loc.IsConstant(), compare twice the index (to compensate for |
| 5439 | // the string compression flag) with the in-memory length and avoid the temporary. |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5440 | CpuRegister length_reg = CpuRegister(TMP); |
| 5441 | __ movl(length_reg, array_len); |
| 5442 | codegen_->MaybeRecordImplicitNullCheck(array_length); |
Vladimir Marko | fdaf0f4 | 2016-10-13 19:29:53 +0100 | [diff] [blame] | 5443 | __ shrl(length_reg, Immediate(1)); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5444 | codegen_->GenerateIntCompare(length_reg, index_loc); |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 5445 | } else { |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 5446 | // Checking the bound for general case: |
| 5447 | // Array of char or String's array when the compression feature off. |
| 5448 | if (index_loc.IsConstant()) { |
| 5449 | int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant()); |
| 5450 | __ cmpl(array_len, Immediate(value)); |
| 5451 | } else { |
| 5452 | __ cmpl(array_len, index_loc.AsRegister<CpuRegister>()); |
| 5453 | } |
| 5454 | codegen_->MaybeRecordImplicitNullCheck(array_length); |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 5455 | } |
Mark Mendell | 99dbd68 | 2015-04-22 16:18:52 -0400 | [diff] [blame] | 5456 | } else { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 5457 | codegen_->GenerateIntCompare(length_loc, index_loc); |
Mark Mendell | 99dbd68 | 2015-04-22 16:18:52 -0400 | [diff] [blame] | 5458 | } |
| 5459 | codegen_->AddSlowPath(slow_path); |
| 5460 | __ j(kBelowEqual, slow_path->GetEntryLabel()); |
Mark Mendell | f60c90b | 2015-03-04 15:12:59 -0500 | [diff] [blame] | 5461 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5462 | } |
| 5463 | |
| 5464 | void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp, |
| 5465 | CpuRegister card, |
| 5466 | CpuRegister object, |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 5467 | CpuRegister value, |
| 5468 | bool value_can_be_null) { |
Mark Mendell | 0c9497d | 2015-08-21 09:30:05 -0400 | [diff] [blame] | 5469 | NearLabel is_null; |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 5470 | if (value_can_be_null) { |
| 5471 | __ testl(value, value); |
| 5472 | __ j(kEqual, &is_null); |
| 5473 | } |
Roland Levillain | c73f052 | 2018-08-14 15:16:50 +0100 | [diff] [blame] | 5474 | // Load the address of the card table into `card`. |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 5475 | __ gs()->movq(card, Address::Absolute(Thread::CardTableOffset<kX86_64PointerSize>().Int32Value(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5476 | /* no_rip */ true)); |
Roland Levillain | c73f052 | 2018-08-14 15:16:50 +0100 | [diff] [blame] | 5477 | // Calculate the offset (in the card table) of the card corresponding to |
| 5478 | // `object`. |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5479 | __ movq(temp, object); |
| 5480 | __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift)); |
Roland Levillain | c73f052 | 2018-08-14 15:16:50 +0100 | [diff] [blame] | 5481 | // Write the `art::gc::accounting::CardTable::kCardDirty` value into the |
| 5482 | // `object`'s card. |
| 5483 | // |
| 5484 | // Register `card` contains the address of the card table. Note that the card |
| 5485 | // table's base is biased during its creation so that it always starts at an |
| 5486 | // address whose least-significant byte is equal to `kCardDirty` (see |
| 5487 | // art::gc::accounting::CardTable::Create). Therefore the MOVB instruction |
| 5488 | // below writes the `kCardDirty` (byte) value into the `object`'s card |
| 5489 | // (located at `card + object >> kCardShift`). |
| 5490 | // |
| 5491 | // This dual use of the value in register `card` (1. to calculate the location |
| 5492 | // of the card to mark; and 2. to load the `kCardDirty` value) saves a load |
| 5493 | // (no need to explicitly load `kCardDirty` as an immediate value). |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 5494 | __ movb(Address(temp, card, TIMES_1, 0), card); |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 5495 | if (value_can_be_null) { |
| 5496 | __ Bind(&is_null); |
| 5497 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 5498 | } |
| 5499 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 5500 | void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) { |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 5501 | LOG(FATAL) << "Unimplemented"; |
| 5502 | } |
| 5503 | |
| 5504 | void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) { |
Vladimir Marko | bea75ff | 2017-10-11 20:39:54 +0100 | [diff] [blame] | 5505 | if (instruction->GetNext()->IsSuspendCheck() && |
| 5506 | instruction->GetBlock()->GetLoopInformation() != nullptr) { |
| 5507 | HSuspendCheck* suspend_check = instruction->GetNext()->AsSuspendCheck(); |
| 5508 | // The back edge will generate the suspend check. |
| 5509 | codegen_->ClearSpillSlotsFromLoopPhisInStackMap(suspend_check, instruction); |
| 5510 | } |
| 5511 | |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5512 | codegen_->GetMoveResolver()->EmitNativeCode(instruction); |
| 5513 | } |
| 5514 | |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 5515 | void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 5516 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary( |
| 5517 | instruction, LocationSummary::kCallOnSlowPath); |
Aart Bik | b13c65b | 2017-03-21 20:14:07 -0700 | [diff] [blame] | 5518 | // In suspend check slow path, usually there are no caller-save registers at all. |
| 5519 | // If SIMD instructions are present, however, we force spilling all live SIMD |
| 5520 | // registers in full width (since the runtime only saves/restores lower part). |
Aart Bik | 5576f37 | 2017-03-23 16:17:37 -0700 | [diff] [blame] | 5521 | locations->SetCustomSlowPathCallerSaves( |
| 5522 | GetGraph()->HasSIMD() ? RegisterSet::AllFpu() : RegisterSet::Empty()); |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 5523 | } |
| 5524 | |
| 5525 | void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) { |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 5526 | HBasicBlock* block = instruction->GetBlock(); |
| 5527 | if (block->GetLoopInformation() != nullptr) { |
| 5528 | DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction); |
| 5529 | // The back edge will generate the suspend check. |
| 5530 | return; |
| 5531 | } |
| 5532 | if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) { |
| 5533 | // The goto will generate the suspend check. |
| 5534 | return; |
| 5535 | } |
| 5536 | GenerateSuspendCheck(instruction, nullptr); |
| 5537 | } |
| 5538 | |
| 5539 | void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction, |
| 5540 | HBasicBlock* successor) { |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 5541 | SuspendCheckSlowPathX86_64* slow_path = |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 5542 | down_cast<SuspendCheckSlowPathX86_64*>(instruction->GetSlowPath()); |
| 5543 | if (slow_path == nullptr) { |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 5544 | slow_path = |
| 5545 | new (codegen_->GetScopedAllocator()) SuspendCheckSlowPathX86_64(instruction, successor); |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 5546 | instruction->SetSlowPath(slow_path); |
| 5547 | codegen_->AddSlowPath(slow_path); |
| 5548 | if (successor != nullptr) { |
| 5549 | DCHECK(successor->IsLoopHeader()); |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 5550 | } |
| 5551 | } else { |
| 5552 | DCHECK_EQ(slow_path->GetSuccessor(), successor); |
| 5553 | } |
| 5554 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 5555 | __ gs()->cmpw(Address::Absolute(Thread::ThreadFlagsOffset<kX86_64PointerSize>().Int32Value(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5556 | /* no_rip */ true), |
| 5557 | Immediate(0)); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 5558 | if (successor == nullptr) { |
| 5559 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
| 5560 | __ Bind(slow_path->GetReturnLabel()); |
| 5561 | } else { |
| 5562 | __ j(kEqual, codegen_->GetLabelOf(successor)); |
| 5563 | __ jmp(slow_path->GetEntryLabel()); |
| 5564 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 5565 | } |
| 5566 | |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5567 | X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const { |
| 5568 | return codegen_->GetAssembler(); |
| 5569 | } |
| 5570 | |
| 5571 | void ParallelMoveResolverX86_64::EmitMove(size_t index) { |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 5572 | MoveOperands* move = moves_[index]; |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5573 | Location source = move->GetSource(); |
| 5574 | Location destination = move->GetDestination(); |
| 5575 | |
| 5576 | if (source.IsRegister()) { |
| 5577 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5578 | __ movq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5579 | } else if (destination.IsStackSlot()) { |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5580 | __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5581 | source.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5582 | } else { |
| 5583 | DCHECK(destination.IsDoubleStackSlot()); |
| 5584 | __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5585 | source.AsRegister<CpuRegister>()); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5586 | } |
| 5587 | } else if (source.IsStackSlot()) { |
| 5588 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5589 | __ movl(destination.AsRegister<CpuRegister>(), |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5590 | Address(CpuRegister(RSP), source.GetStackIndex())); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5591 | } else if (destination.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5592 | __ movss(destination.AsFpuRegister<XmmRegister>(), |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5593 | Address(CpuRegister(RSP), source.GetStackIndex())); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5594 | } else { |
| 5595 | DCHECK(destination.IsStackSlot()); |
| 5596 | __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); |
| 5597 | __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); |
| 5598 | } |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5599 | } else if (source.IsDoubleStackSlot()) { |
| 5600 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5601 | __ movq(destination.AsRegister<CpuRegister>(), |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5602 | Address(CpuRegister(RSP), source.GetStackIndex())); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5603 | } else if (destination.IsFpuRegister()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 5604 | __ movsd(destination.AsFpuRegister<XmmRegister>(), |
| 5605 | Address(CpuRegister(RSP), source.GetStackIndex())); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5606 | } else { |
Nicolas Geoffray | c8147a7 | 2014-10-21 16:06:20 +0100 | [diff] [blame] | 5607 | DCHECK(destination.IsDoubleStackSlot()) << destination; |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5608 | __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); |
| 5609 | __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); |
| 5610 | } |
Aart Bik | 5576f37 | 2017-03-23 16:17:37 -0700 | [diff] [blame] | 5611 | } else if (source.IsSIMDStackSlot()) { |
Aart Bik | cfe50bb | 2017-12-12 14:54:12 -0800 | [diff] [blame] | 5612 | if (destination.IsFpuRegister()) { |
| 5613 | __ movups(destination.AsFpuRegister<XmmRegister>(), |
| 5614 | Address(CpuRegister(RSP), source.GetStackIndex())); |
| 5615 | } else { |
| 5616 | DCHECK(destination.IsSIMDStackSlot()); |
| 5617 | size_t high = kX86_64WordSize; |
| 5618 | __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); |
| 5619 | __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); |
| 5620 | __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex() + high)); |
| 5621 | __ movq(Address(CpuRegister(RSP), destination.GetStackIndex() + high), CpuRegister(TMP)); |
| 5622 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5623 | } else if (source.IsConstant()) { |
| 5624 | HConstant* constant = source.GetConstant(); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 5625 | if (constant->IsIntConstant() || constant->IsNullConstant()) { |
| 5626 | int32_t value = CodeGenerator::GetInt32ValueOf(constant); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5627 | if (destination.IsRegister()) { |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 5628 | if (value == 0) { |
| 5629 | __ xorl(destination.AsRegister<CpuRegister>(), destination.AsRegister<CpuRegister>()); |
| 5630 | } else { |
| 5631 | __ movl(destination.AsRegister<CpuRegister>(), Immediate(value)); |
| 5632 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5633 | } else { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5634 | DCHECK(destination.IsStackSlot()) << destination; |
Nicolas Geoffray | 748f140 | 2015-01-27 08:17:54 +0000 | [diff] [blame] | 5635 | __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), Immediate(value)); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5636 | } |
| 5637 | } else if (constant->IsLongConstant()) { |
| 5638 | int64_t value = constant->AsLongConstant()->GetValue(); |
| 5639 | if (destination.IsRegister()) { |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 5640 | codegen_->Load64BitValue(destination.AsRegister<CpuRegister>(), value); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5641 | } else { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5642 | DCHECK(destination.IsDoubleStackSlot()) << destination; |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 5643 | codegen_->Store64BitValueToStack(destination, value); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5644 | } |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5645 | } else if (constant->IsFloatConstant()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 5646 | float fp_value = constant->AsFloatConstant()->GetValue(); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5647 | if (destination.IsFpuRegister()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 5648 | XmmRegister dest = destination.AsFpuRegister<XmmRegister>(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 5649 | codegen_->Load32BitValue(dest, fp_value); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5650 | } else { |
| 5651 | DCHECK(destination.IsStackSlot()) << destination; |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 5652 | Immediate imm(bit_cast<int32_t, float>(fp_value)); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5653 | __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm); |
| 5654 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5655 | } else { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5656 | DCHECK(constant->IsDoubleConstant()) << constant->DebugName(); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 5657 | double fp_value = constant->AsDoubleConstant()->GetValue(); |
Roland Levillain | da4d79b | 2015-03-24 14:36:11 +0000 | [diff] [blame] | 5658 | int64_t value = bit_cast<int64_t, double>(fp_value); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5659 | if (destination.IsFpuRegister()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 5660 | XmmRegister dest = destination.AsFpuRegister<XmmRegister>(); |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 5661 | codegen_->Load64BitValue(dest, fp_value); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5662 | } else { |
| 5663 | DCHECK(destination.IsDoubleStackSlot()) << destination; |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 5664 | codegen_->Store64BitValueToStack(destination, value); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5665 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 5666 | } |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5667 | } else if (source.IsFpuRegister()) { |
| 5668 | if (destination.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5669 | __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5670 | } else if (destination.IsStackSlot()) { |
| 5671 | __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5672 | source.AsFpuRegister<XmmRegister>()); |
Aart Bik | 5576f37 | 2017-03-23 16:17:37 -0700 | [diff] [blame] | 5673 | } else if (destination.IsDoubleStackSlot()) { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5674 | __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5675 | source.AsFpuRegister<XmmRegister>()); |
Aart Bik | 5576f37 | 2017-03-23 16:17:37 -0700 | [diff] [blame] | 5676 | } else { |
| 5677 | DCHECK(destination.IsSIMDStackSlot()); |
| 5678 | __ movups(Address(CpuRegister(RSP), destination.GetStackIndex()), |
| 5679 | source.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5680 | } |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5681 | } |
| 5682 | } |
| 5683 | |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5684 | void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) { |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5685 | __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem)); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5686 | __ movl(Address(CpuRegister(RSP), mem), reg); |
| 5687 | __ movl(reg, CpuRegister(TMP)); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5688 | } |
| 5689 | |
Mark Mendell | 8a1c728 | 2015-06-29 15:41:28 -0400 | [diff] [blame] | 5690 | void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg1, CpuRegister reg2) { |
| 5691 | __ movq(CpuRegister(TMP), reg1); |
| 5692 | __ movq(reg1, reg2); |
| 5693 | __ movq(reg2, CpuRegister(TMP)); |
| 5694 | } |
| 5695 | |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5696 | void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) { |
| 5697 | __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem)); |
| 5698 | __ movq(Address(CpuRegister(RSP), mem), reg); |
| 5699 | __ movq(reg, CpuRegister(TMP)); |
| 5700 | } |
| 5701 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5702 | void ParallelMoveResolverX86_64::Exchange32(XmmRegister reg, int mem) { |
| 5703 | __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem)); |
| 5704 | __ movss(Address(CpuRegister(RSP), mem), reg); |
| 5705 | __ movd(reg, CpuRegister(TMP)); |
| 5706 | } |
| 5707 | |
| 5708 | void ParallelMoveResolverX86_64::Exchange64(XmmRegister reg, int mem) { |
| 5709 | __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem)); |
| 5710 | __ movsd(Address(CpuRegister(RSP), mem), reg); |
| 5711 | __ movd(reg, CpuRegister(TMP)); |
| 5712 | } |
| 5713 | |
Aart Bik | cfe50bb | 2017-12-12 14:54:12 -0800 | [diff] [blame] | 5714 | void ParallelMoveResolverX86_64::Exchange128(XmmRegister reg, int mem) { |
| 5715 | size_t extra_slot = 2 * kX86_64WordSize; |
| 5716 | __ subq(CpuRegister(RSP), Immediate(extra_slot)); |
| 5717 | __ movups(Address(CpuRegister(RSP), 0), XmmRegister(reg)); |
| 5718 | ExchangeMemory64(0, mem + extra_slot, 2); |
| 5719 | __ movups(XmmRegister(reg), Address(CpuRegister(RSP), 0)); |
| 5720 | __ addq(CpuRegister(RSP), Immediate(extra_slot)); |
| 5721 | } |
| 5722 | |
| 5723 | void ParallelMoveResolverX86_64::ExchangeMemory32(int mem1, int mem2) { |
| 5724 | ScratchRegisterScope ensure_scratch( |
| 5725 | this, TMP, RAX, codegen_->GetNumberOfCoreRegisters()); |
| 5726 | |
| 5727 | int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0; |
| 5728 | __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset)); |
| 5729 | __ movl(CpuRegister(ensure_scratch.GetRegister()), |
| 5730 | Address(CpuRegister(RSP), mem2 + stack_offset)); |
| 5731 | __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP)); |
| 5732 | __ movl(Address(CpuRegister(RSP), mem1 + stack_offset), |
| 5733 | CpuRegister(ensure_scratch.GetRegister())); |
| 5734 | } |
| 5735 | |
| 5736 | void ParallelMoveResolverX86_64::ExchangeMemory64(int mem1, int mem2, int num_of_qwords) { |
| 5737 | ScratchRegisterScope ensure_scratch( |
| 5738 | this, TMP, RAX, codegen_->GetNumberOfCoreRegisters()); |
| 5739 | |
| 5740 | int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0; |
| 5741 | |
| 5742 | // Now that temp registers are available (possibly spilled), exchange blocks of memory. |
| 5743 | for (int i = 0; i < num_of_qwords; i++) { |
| 5744 | __ movq(CpuRegister(TMP), |
| 5745 | Address(CpuRegister(RSP), mem1 + stack_offset)); |
| 5746 | __ movq(CpuRegister(ensure_scratch.GetRegister()), |
| 5747 | Address(CpuRegister(RSP), mem2 + stack_offset)); |
| 5748 | __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), |
| 5749 | CpuRegister(TMP)); |
| 5750 | __ movq(Address(CpuRegister(RSP), mem1 + stack_offset), |
| 5751 | CpuRegister(ensure_scratch.GetRegister())); |
| 5752 | stack_offset += kX86_64WordSize; |
| 5753 | } |
| 5754 | } |
| 5755 | |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5756 | void ParallelMoveResolverX86_64::EmitSwap(size_t index) { |
Vladimir Marko | 225b646 | 2015-09-28 12:17:40 +0100 | [diff] [blame] | 5757 | MoveOperands* move = moves_[index]; |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5758 | Location source = move->GetSource(); |
| 5759 | Location destination = move->GetDestination(); |
| 5760 | |
| 5761 | if (source.IsRegister() && destination.IsRegister()) { |
Mark Mendell | 8a1c728 | 2015-06-29 15:41:28 -0400 | [diff] [blame] | 5762 | Exchange64(source.AsRegister<CpuRegister>(), destination.AsRegister<CpuRegister>()); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5763 | } else if (source.IsRegister() && destination.IsStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5764 | Exchange32(source.AsRegister<CpuRegister>(), destination.GetStackIndex()); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5765 | } else if (source.IsStackSlot() && destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5766 | Exchange32(destination.AsRegister<CpuRegister>(), source.GetStackIndex()); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5767 | } else if (source.IsStackSlot() && destination.IsStackSlot()) { |
Aart Bik | cfe50bb | 2017-12-12 14:54:12 -0800 | [diff] [blame] | 5768 | ExchangeMemory32(destination.GetStackIndex(), source.GetStackIndex()); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5769 | } else if (source.IsRegister() && destination.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5770 | Exchange64(source.AsRegister<CpuRegister>(), destination.GetStackIndex()); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5771 | } else if (source.IsDoubleStackSlot() && destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5772 | Exchange64(destination.AsRegister<CpuRegister>(), source.GetStackIndex()); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 5773 | } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) { |
Aart Bik | cfe50bb | 2017-12-12 14:54:12 -0800 | [diff] [blame] | 5774 | ExchangeMemory64(destination.GetStackIndex(), source.GetStackIndex(), 1); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5775 | } else if (source.IsFpuRegister() && destination.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5776 | __ movd(CpuRegister(TMP), source.AsFpuRegister<XmmRegister>()); |
| 5777 | __ movaps(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>()); |
| 5778 | __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP)); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5779 | } else if (source.IsFpuRegister() && destination.IsStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5780 | Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5781 | } else if (source.IsStackSlot() && destination.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5782 | Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5783 | } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5784 | Exchange64(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5785 | } else if (source.IsDoubleStackSlot() && destination.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 5786 | Exchange64(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex()); |
Aart Bik | cfe50bb | 2017-12-12 14:54:12 -0800 | [diff] [blame] | 5787 | } else if (source.IsSIMDStackSlot() && destination.IsSIMDStackSlot()) { |
| 5788 | ExchangeMemory64(destination.GetStackIndex(), source.GetStackIndex(), 2); |
| 5789 | } else if (source.IsFpuRegister() && destination.IsSIMDStackSlot()) { |
| 5790 | Exchange128(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex()); |
| 5791 | } else if (destination.IsFpuRegister() && source.IsSIMDStackSlot()) { |
| 5792 | Exchange128(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex()); |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5793 | } else { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 5794 | LOG(FATAL) << "Unimplemented swap between " << source << " and " << destination; |
Nicolas Geoffray | ecb2f9b | 2014-06-13 08:59:59 +0000 | [diff] [blame] | 5795 | } |
| 5796 | } |
| 5797 | |
| 5798 | |
| 5799 | void ParallelMoveResolverX86_64::SpillScratch(int reg) { |
| 5800 | __ pushq(CpuRegister(reg)); |
| 5801 | } |
| 5802 | |
| 5803 | |
| 5804 | void ParallelMoveResolverX86_64::RestoreScratch(int reg) { |
| 5805 | __ popq(CpuRegister(reg)); |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 5806 | } |
| 5807 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 5808 | void InstructionCodeGeneratorX86_64::GenerateClassInitializationCheck( |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 5809 | SlowPathCode* slow_path, CpuRegister class_reg) { |
Vladimir Marko | dc682aa | 2018-01-04 18:42:57 +0000 | [diff] [blame] | 5810 | constexpr size_t status_lsb_position = SubtypeCheckBits::BitStructSizeOf(); |
| 5811 | const size_t status_byte_offset = |
| 5812 | mirror::Class::StatusOffset().SizeValue() + (status_lsb_position / kBitsPerByte); |
| 5813 | constexpr uint32_t shifted_initialized_value = |
| 5814 | enum_cast<uint32_t>(ClassStatus::kInitialized) << (status_lsb_position % kBitsPerByte); |
| 5815 | |
| 5816 | __ cmpb(Address(class_reg, status_byte_offset), Immediate(shifted_initialized_value)); |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 5817 | __ j(kBelow, slow_path->GetEntryLabel()); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 5818 | __ Bind(slow_path->GetExitLabel()); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 5819 | // No need for memory fence, thanks to the x86-64 memory model. |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 5820 | } |
| 5821 | |
Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 5822 | void InstructionCodeGeneratorX86_64::GenerateBitstringTypeCheckCompare(HTypeCheckInstruction* check, |
| 5823 | CpuRegister temp) { |
| 5824 | uint32_t path_to_root = check->GetBitstringPathToRoot(); |
| 5825 | uint32_t mask = check->GetBitstringMask(); |
| 5826 | DCHECK(IsPowerOfTwo(mask + 1)); |
| 5827 | size_t mask_bits = WhichPowerOf2(mask + 1); |
| 5828 | |
| 5829 | if (mask_bits == 16u) { |
| 5830 | // Compare the bitstring in memory. |
| 5831 | __ cmpw(Address(temp, mirror::Class::StatusOffset()), Immediate(path_to_root)); |
| 5832 | } else { |
| 5833 | // /* uint32_t */ temp = temp->status_ |
| 5834 | __ movl(temp, Address(temp, mirror::Class::StatusOffset())); |
| 5835 | // Compare the bitstring bits using SUB. |
| 5836 | __ subl(temp, Immediate(path_to_root)); |
| 5837 | // Shift out bits that do not contribute to the comparison. |
| 5838 | __ shll(temp, Immediate(32u - mask_bits)); |
| 5839 | } |
| 5840 | } |
| 5841 | |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5842 | HLoadClass::LoadKind CodeGeneratorX86_64::GetSupportedLoadClassKind( |
| 5843 | HLoadClass::LoadKind desired_class_load_kind) { |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5844 | switch (desired_class_load_kind) { |
Nicolas Geoffray | 83c8e27 | 2017-01-31 14:36:37 +0000 | [diff] [blame] | 5845 | case HLoadClass::LoadKind::kInvalid: |
| 5846 | LOG(FATAL) << "UNREACHABLE"; |
| 5847 | UNREACHABLE(); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5848 | case HLoadClass::LoadKind::kReferrersClass: |
| 5849 | break; |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5850 | case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 5851 | case HLoadClass::LoadKind::kBootImageRelRo: |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 5852 | case HLoadClass::LoadKind::kBssEntry: |
| 5853 | DCHECK(!Runtime::Current()->UseJitCompilation()); |
| 5854 | break; |
Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 5855 | case HLoadClass::LoadKind::kJitBootImageAddress: |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 5856 | case HLoadClass::LoadKind::kJitTableAddress: |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 5857 | DCHECK(Runtime::Current()->UseJitCompilation()); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5858 | break; |
Vladimir Marko | 847e6ce | 2017-06-02 13:55:07 +0100 | [diff] [blame] | 5859 | case HLoadClass::LoadKind::kRuntimeCall: |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5860 | break; |
| 5861 | } |
| 5862 | return desired_class_load_kind; |
| 5863 | } |
| 5864 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 5865 | void LocationsBuilderX86_64::VisitLoadClass(HLoadClass* cls) { |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5866 | HLoadClass::LoadKind load_kind = cls->GetLoadKind(); |
Vladimir Marko | 847e6ce | 2017-06-02 13:55:07 +0100 | [diff] [blame] | 5867 | if (load_kind == HLoadClass::LoadKind::kRuntimeCall) { |
Vladimir Marko | ea4c126 | 2017-02-06 19:59:33 +0000 | [diff] [blame] | 5868 | // Custom calling convention: RAX serves as both input and output. |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5869 | CodeGenerator::CreateLoadClassRuntimeCallLocationSummary( |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5870 | cls, |
Vladimir Marko | ea4c126 | 2017-02-06 19:59:33 +0000 | [diff] [blame] | 5871 | Location::RegisterLocation(RAX), |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5872 | Location::RegisterLocation(RAX)); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5873 | return; |
| 5874 | } |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5875 | DCHECK(!cls->NeedsAccessCheck()); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5876 | |
Mathieu Chartier | 31b12e3 | 2016-09-02 17:11:57 -0700 | [diff] [blame] | 5877 | const bool requires_read_barrier = kEmitCompilerReadBarrier && !cls->IsInBootImage(); |
| 5878 | LocationSummary::CallKind call_kind = (cls->NeedsEnvironment() || requires_read_barrier) |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5879 | ? LocationSummary::kCallOnSlowPath |
| 5880 | : LocationSummary::kNoCall; |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 5881 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(cls, call_kind); |
Mathieu Chartier | 31b12e3 | 2016-09-02 17:11:57 -0700 | [diff] [blame] | 5882 | if (kUseBakerReadBarrier && requires_read_barrier && !cls->NeedsEnvironment()) { |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 5883 | locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers. |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 5884 | } |
| 5885 | |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5886 | if (load_kind == HLoadClass::LoadKind::kReferrersClass) { |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5887 | locations->SetInAt(0, Location::RequiresRegister()); |
| 5888 | } |
| 5889 | locations->SetOut(Location::RequiresRegister()); |
Vladimir Marko | ea4c126 | 2017-02-06 19:59:33 +0000 | [diff] [blame] | 5890 | if (load_kind == HLoadClass::LoadKind::kBssEntry) { |
| 5891 | if (!kUseReadBarrier || kUseBakerReadBarrier) { |
| 5892 | // Rely on the type resolution and/or initialization to save everything. |
Vladimir Marko | 3232dbb | 2018-07-25 15:42:46 +0100 | [diff] [blame] | 5893 | locations->SetCustomSlowPathCallerSaves(OneRegInReferenceOutSaveEverythingCallerSaves()); |
Vladimir Marko | ea4c126 | 2017-02-06 19:59:33 +0000 | [diff] [blame] | 5894 | } else { |
| 5895 | // For non-Baker read barrier we have a temp-clobbering call. |
| 5896 | } |
| 5897 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 5898 | } |
| 5899 | |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 5900 | Label* CodeGeneratorX86_64::NewJitRootClassPatch(const DexFile& dex_file, |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 5901 | dex::TypeIndex type_index, |
Nicolas Geoffray | 5247c08 | 2017-01-13 14:17:29 +0000 | [diff] [blame] | 5902 | Handle<mirror::Class> handle) { |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 5903 | ReserveJitClassRoot(TypeReference(&dex_file, type_index), handle); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 5904 | // Add a patch entry and return the label. |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 5905 | jit_class_patches_.emplace_back(&dex_file, type_index.index_); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 5906 | PatchInfo<Label>* info = &jit_class_patches_.back(); |
| 5907 | return &info->label; |
| 5908 | } |
| 5909 | |
Nicolas Geoffray | 5247c08 | 2017-01-13 14:17:29 +0000 | [diff] [blame] | 5910 | // NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not |
| 5911 | // move. |
| 5912 | void InstructionCodeGeneratorX86_64::VisitLoadClass(HLoadClass* cls) NO_THREAD_SAFETY_ANALYSIS { |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5913 | HLoadClass::LoadKind load_kind = cls->GetLoadKind(); |
Vladimir Marko | 847e6ce | 2017-06-02 13:55:07 +0100 | [diff] [blame] | 5914 | if (load_kind == HLoadClass::LoadKind::kRuntimeCall) { |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5915 | codegen_->GenerateLoadClassRuntimeCall(cls); |
Calin Juravle | 580b609 | 2015-10-06 17:35:58 +0100 | [diff] [blame] | 5916 | return; |
| 5917 | } |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5918 | DCHECK(!cls->NeedsAccessCheck()); |
Calin Juravle | 580b609 | 2015-10-06 17:35:58 +0100 | [diff] [blame] | 5919 | |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5920 | LocationSummary* locations = cls->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5921 | Location out_loc = locations->Out(); |
| 5922 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 5923 | |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 5924 | const ReadBarrierOption read_barrier_option = cls->IsInBootImage() |
| 5925 | ? kWithoutReadBarrier |
| 5926 | : kCompilerReadBarrierOption; |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5927 | bool generate_null_check = false; |
Vladimir Marko | 4155998 | 2017-01-06 14:04:23 +0000 | [diff] [blame] | 5928 | switch (load_kind) { |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5929 | case HLoadClass::LoadKind::kReferrersClass: { |
| 5930 | DCHECK(!cls->CanCallRuntime()); |
| 5931 | DCHECK(!cls->MustGenerateClinitCheck()); |
| 5932 | // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_ |
| 5933 | CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>(); |
| 5934 | GenerateGcRootFieldLoad( |
Mathieu Chartier | 31b12e3 | 2016-09-02 17:11:57 -0700 | [diff] [blame] | 5935 | cls, |
| 5936 | out_loc, |
| 5937 | Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()), |
Roland Levillain | 00468f3 | 2016-10-27 18:02:48 +0100 | [diff] [blame] | 5938 | /* fixup_label */ nullptr, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 5939 | read_barrier_option); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5940 | break; |
| 5941 | } |
| 5942 | case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 5943 | DCHECK(codegen_->GetCompilerOptions().IsBootImage()); |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 5944 | DCHECK_EQ(read_barrier_option, kWithoutReadBarrier); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5945 | __ leal(out, Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 5946 | codegen_->RecordBootImageTypePatch(cls); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5947 | break; |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 5948 | case HLoadClass::LoadKind::kBootImageRelRo: { |
Vladimir Marko | 94ec2db | 2017-09-06 17:21:03 +0100 | [diff] [blame] | 5949 | DCHECK(!codegen_->GetCompilerOptions().IsBootImage()); |
| 5950 | __ movl(out, Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 5951 | codegen_->RecordBootImageRelRoPatch(codegen_->GetBootImageOffset(cls)); |
Vladimir Marko | 94ec2db | 2017-09-06 17:21:03 +0100 | [diff] [blame] | 5952 | break; |
| 5953 | } |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 5954 | case HLoadClass::LoadKind::kBssEntry: { |
| 5955 | Address address = Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, |
| 5956 | /* no_rip */ false); |
| 5957 | Label* fixup_label = codegen_->NewTypeBssEntryPatch(cls); |
| 5958 | // /* GcRoot<mirror::Class> */ out = *address /* PC-relative */ |
| 5959 | GenerateGcRootFieldLoad(cls, out_loc, address, fixup_label, read_barrier_option); |
| 5960 | generate_null_check = true; |
| 5961 | break; |
| 5962 | } |
Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 5963 | case HLoadClass::LoadKind::kJitBootImageAddress: { |
| 5964 | DCHECK_EQ(read_barrier_option, kWithoutReadBarrier); |
| 5965 | uint32_t address = reinterpret_cast32<uint32_t>(cls->GetClass().Get()); |
| 5966 | DCHECK_NE(address, 0u); |
| 5967 | __ movl(out, Immediate(static_cast<int32_t>(address))); // Zero-extended. |
| 5968 | break; |
| 5969 | } |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 5970 | case HLoadClass::LoadKind::kJitTableAddress: { |
| 5971 | Address address = Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, |
| 5972 | /* no_rip */ true); |
| 5973 | Label* fixup_label = |
Nicolas Geoffray | 5247c08 | 2017-01-13 14:17:29 +0000 | [diff] [blame] | 5974 | codegen_->NewJitRootClassPatch(cls->GetDexFile(), cls->GetTypeIndex(), cls->GetClass()); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5975 | // /* GcRoot<mirror::Class> */ out = *address |
Vladimir Marko | ea4c126 | 2017-02-06 19:59:33 +0000 | [diff] [blame] | 5976 | GenerateGcRootFieldLoad(cls, out_loc, address, fixup_label, read_barrier_option); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5977 | break; |
| 5978 | } |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5979 | default: |
| 5980 | LOG(FATAL) << "Unexpected load kind: " << cls->GetLoadKind(); |
| 5981 | UNREACHABLE(); |
| 5982 | } |
| 5983 | |
| 5984 | if (generate_null_check || cls->MustGenerateClinitCheck()) { |
| 5985 | DCHECK(cls->CanCallRuntime()); |
Vladimir Marko | a9f303c | 2018-07-20 16:43:56 +0100 | [diff] [blame] | 5986 | SlowPathCode* slow_path = |
| 5987 | new (codegen_->GetScopedAllocator()) LoadClassSlowPathX86_64(cls, cls); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 5988 | codegen_->AddSlowPath(slow_path); |
| 5989 | if (generate_null_check) { |
| 5990 | __ testl(out, out); |
| 5991 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 5992 | } |
| 5993 | if (cls->MustGenerateClinitCheck()) { |
| 5994 | GenerateClassInitializationCheck(slow_path, out); |
| 5995 | } else { |
| 5996 | __ Bind(slow_path->GetExitLabel()); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 5997 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 5998 | } |
| 5999 | } |
| 6000 | |
| 6001 | void LocationsBuilderX86_64::VisitClinitCheck(HClinitCheck* check) { |
| 6002 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6003 | new (GetGraph()->GetAllocator()) LocationSummary(check, LocationSummary::kCallOnSlowPath); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 6004 | locations->SetInAt(0, Location::RequiresRegister()); |
| 6005 | if (check->HasUses()) { |
| 6006 | locations->SetOut(Location::SameAsFirstInput()); |
| 6007 | } |
Vladimir Marko | 3232dbb | 2018-07-25 15:42:46 +0100 | [diff] [blame] | 6008 | // Rely on the type initialization to save everything we need. |
| 6009 | locations->SetCustomSlowPathCallerSaves(OneRegInReferenceOutSaveEverythingCallerSaves()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 6010 | } |
| 6011 | |
Orion Hodson | dbaa5c7 | 2018-05-10 08:22:46 +0100 | [diff] [blame] | 6012 | void LocationsBuilderX86_64::VisitLoadMethodHandle(HLoadMethodHandle* load) { |
| 6013 | // Custom calling convention: RAX serves as both input and output. |
| 6014 | Location location = Location::RegisterLocation(RAX); |
| 6015 | CodeGenerator::CreateLoadMethodHandleRuntimeCallLocationSummary(load, location, location); |
| 6016 | } |
| 6017 | |
| 6018 | void InstructionCodeGeneratorX86_64::VisitLoadMethodHandle(HLoadMethodHandle* load) { |
| 6019 | codegen_->GenerateLoadMethodHandleRuntimeCall(load); |
| 6020 | } |
| 6021 | |
Orion Hodson | 18259d7 | 2018-04-12 11:18:23 +0100 | [diff] [blame] | 6022 | void LocationsBuilderX86_64::VisitLoadMethodType(HLoadMethodType* load) { |
| 6023 | // Custom calling convention: RAX serves as both input and output. |
| 6024 | Location location = Location::RegisterLocation(RAX); |
| 6025 | CodeGenerator::CreateLoadMethodTypeRuntimeCallLocationSummary(load, location, location); |
| 6026 | } |
| 6027 | |
| 6028 | void InstructionCodeGeneratorX86_64::VisitLoadMethodType(HLoadMethodType* load) { |
| 6029 | codegen_->GenerateLoadMethodTypeRuntimeCall(load); |
| 6030 | } |
| 6031 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 6032 | void InstructionCodeGeneratorX86_64::VisitClinitCheck(HClinitCheck* check) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 6033 | // We assume the class to not be null. |
Vladimir Marko | a9f303c | 2018-07-20 16:43:56 +0100 | [diff] [blame] | 6034 | SlowPathCode* slow_path = |
| 6035 | new (codegen_->GetScopedAllocator()) LoadClassSlowPathX86_64(check->GetLoadClass(), check); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 6036 | codegen_->AddSlowPath(slow_path); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 6037 | GenerateClassInitializationCheck(slow_path, |
| 6038 | check->GetLocations()->InAt(0).AsRegister<CpuRegister>()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 6039 | } |
| 6040 | |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6041 | HLoadString::LoadKind CodeGeneratorX86_64::GetSupportedLoadStringKind( |
| 6042 | HLoadString::LoadKind desired_string_load_kind) { |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6043 | switch (desired_string_load_kind) { |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6044 | case HLoadString::LoadKind::kBootImageLinkTimePcRelative: |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 6045 | case HLoadString::LoadKind::kBootImageRelRo: |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 6046 | case HLoadString::LoadKind::kBssEntry: |
Calin Juravle | ffc8707 | 2016-04-20 14:22:09 +0100 | [diff] [blame] | 6047 | DCHECK(!Runtime::Current()->UseJitCompilation()); |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6048 | break; |
Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 6049 | case HLoadString::LoadKind::kJitBootImageAddress: |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 6050 | case HLoadString::LoadKind::kJitTableAddress: |
| 6051 | DCHECK(Runtime::Current()->UseJitCompilation()); |
| 6052 | break; |
Vladimir Marko | 847e6ce | 2017-06-02 13:55:07 +0100 | [diff] [blame] | 6053 | case HLoadString::LoadKind::kRuntimeCall: |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 6054 | break; |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6055 | } |
| 6056 | return desired_string_load_kind; |
| 6057 | } |
| 6058 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 6059 | void LocationsBuilderX86_64::VisitLoadString(HLoadString* load) { |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 6060 | LocationSummary::CallKind call_kind = CodeGenerator::GetLoadStringCallKind(load); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6061 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(load, call_kind); |
Vladimir Marko | 847e6ce | 2017-06-02 13:55:07 +0100 | [diff] [blame] | 6062 | if (load->GetLoadKind() == HLoadString::LoadKind::kRuntimeCall) { |
Christina Wadsworth | abb341b | 2016-08-31 16:29:44 -0700 | [diff] [blame] | 6063 | locations->SetOut(Location::RegisterLocation(RAX)); |
| 6064 | } else { |
| 6065 | locations->SetOut(Location::RequiresRegister()); |
Vladimir Marko | 94ce9c2 | 2016-09-30 14:50:51 +0100 | [diff] [blame] | 6066 | if (load->GetLoadKind() == HLoadString::LoadKind::kBssEntry) { |
| 6067 | if (!kUseReadBarrier || kUseBakerReadBarrier) { |
Vladimir Marko | ea4c126 | 2017-02-06 19:59:33 +0000 | [diff] [blame] | 6068 | // Rely on the pResolveString to save everything. |
Vladimir Marko | 3232dbb | 2018-07-25 15:42:46 +0100 | [diff] [blame] | 6069 | locations->SetCustomSlowPathCallerSaves(OneRegInReferenceOutSaveEverythingCallerSaves()); |
Vladimir Marko | 94ce9c2 | 2016-09-30 14:50:51 +0100 | [diff] [blame] | 6070 | } else { |
| 6071 | // For non-Baker read barrier we have a temp-clobbering call. |
| 6072 | } |
| 6073 | } |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6074 | } |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 6075 | } |
| 6076 | |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 6077 | Label* CodeGeneratorX86_64::NewJitRootStringPatch(const DexFile& dex_file, |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 6078 | dex::StringIndex string_index, |
Nicolas Geoffray | f0acfe7 | 2017-01-09 20:54:52 +0000 | [diff] [blame] | 6079 | Handle<mirror::String> handle) { |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 6080 | ReserveJitStringRoot(StringReference(&dex_file, string_index), handle); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 6081 | // Add a patch entry and return the label. |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 6082 | jit_string_patches_.emplace_back(&dex_file, string_index.index_); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 6083 | PatchInfo<Label>* info = &jit_string_patches_.back(); |
| 6084 | return &info->label; |
| 6085 | } |
| 6086 | |
Nicolas Geoffray | f0acfe7 | 2017-01-09 20:54:52 +0000 | [diff] [blame] | 6087 | // NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not |
| 6088 | // move. |
| 6089 | void InstructionCodeGeneratorX86_64::VisitLoadString(HLoadString* load) NO_THREAD_SAFETY_ANALYSIS { |
Nicolas Geoffray | fbdaa30 | 2015-05-29 12:06:56 +0100 | [diff] [blame] | 6090 | LocationSummary* locations = load->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6091 | Location out_loc = locations->Out(); |
| 6092 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6093 | |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6094 | switch (load->GetLoadKind()) { |
| 6095 | case HLoadString::LoadKind::kBootImageLinkTimePcRelative: { |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 6096 | DCHECK(codegen_->GetCompilerOptions().IsBootImage()); |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6097 | __ leal(out, Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 6098 | codegen_->RecordBootImageStringPatch(load); |
Vladimir Marko | 6cfbdbc | 2017-07-25 13:26:39 +0100 | [diff] [blame] | 6099 | return; |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6100 | } |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 6101 | case HLoadString::LoadKind::kBootImageRelRo: { |
Vladimir Marko | 6cfbdbc | 2017-07-25 13:26:39 +0100 | [diff] [blame] | 6102 | DCHECK(!codegen_->GetCompilerOptions().IsBootImage()); |
| 6103 | __ movl(out, Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, /* no_rip */ false)); |
Vladimir Marko | e47f60c | 2018-02-21 13:43:28 +0000 | [diff] [blame] | 6104 | codegen_->RecordBootImageRelRoPatch(codegen_->GetBootImageOffset(load)); |
Vladimir Marko | 6cfbdbc | 2017-07-25 13:26:39 +0100 | [diff] [blame] | 6105 | return; |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6106 | } |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 6107 | case HLoadString::LoadKind::kBssEntry: { |
| 6108 | Address address = Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, |
| 6109 | /* no_rip */ false); |
| 6110 | Label* fixup_label = codegen_->NewStringBssEntryPatch(load); |
| 6111 | // /* GcRoot<mirror::Class> */ out = *address /* PC-relative */ |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6112 | GenerateGcRootFieldLoad(load, out_loc, address, fixup_label, kCompilerReadBarrierOption); |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 6113 | SlowPathCode* slow_path = new (codegen_->GetScopedAllocator()) LoadStringSlowPathX86_64(load); |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 6114 | codegen_->AddSlowPath(slow_path); |
| 6115 | __ testl(out, out); |
| 6116 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 6117 | __ Bind(slow_path->GetExitLabel()); |
| 6118 | return; |
| 6119 | } |
Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 6120 | case HLoadString::LoadKind::kJitBootImageAddress: { |
| 6121 | uint32_t address = reinterpret_cast32<uint32_t>(load->GetString().Get()); |
| 6122 | DCHECK_NE(address, 0u); |
| 6123 | __ movl(out, Immediate(static_cast<int32_t>(address))); // Zero-extended. |
| 6124 | return; |
| 6125 | } |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 6126 | case HLoadString::LoadKind::kJitTableAddress: { |
| 6127 | Address address = Address::Absolute(CodeGeneratorX86_64::kDummy32BitOffset, |
| 6128 | /* no_rip */ true); |
Nicolas Geoffray | f0acfe7 | 2017-01-09 20:54:52 +0000 | [diff] [blame] | 6129 | Label* fixup_label = codegen_->NewJitRootStringPatch( |
| 6130 | load->GetDexFile(), load->GetStringIndex(), load->GetString()); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 6131 | // /* GcRoot<mirror::String> */ out = *address |
| 6132 | GenerateGcRootFieldLoad(load, out_loc, address, fixup_label, kCompilerReadBarrierOption); |
| 6133 | return; |
| 6134 | } |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6135 | default: |
Christina Wadsworth | bf44e0e | 2016-08-18 10:37:42 -0700 | [diff] [blame] | 6136 | break; |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 6137 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6138 | |
Christina Wadsworth | bf44e0e | 2016-08-18 10:37:42 -0700 | [diff] [blame] | 6139 | // TODO: Re-add the compiler code to do string dex cache lookup again. |
Vladimir Marko | 94ce9c2 | 2016-09-30 14:50:51 +0100 | [diff] [blame] | 6140 | // Custom calling convention: RAX serves as both input and output. |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 6141 | __ movl(CpuRegister(RAX), Immediate(load->GetStringIndex().index_)); |
Christina Wadsworth | abb341b | 2016-08-31 16:29:44 -0700 | [diff] [blame] | 6142 | codegen_->InvokeRuntime(kQuickResolveString, |
| 6143 | load, |
| 6144 | load->GetDexPc()); |
| 6145 | CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>(); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 6146 | } |
| 6147 | |
David Brazdil | cb1c055 | 2015-08-04 16:22:25 +0100 | [diff] [blame] | 6148 | static Address GetExceptionTlsAddress() { |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 6149 | return Address::Absolute(Thread::ExceptionOffset<kX86_64PointerSize>().Int32Value(), |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6150 | /* no_rip */ true); |
David Brazdil | cb1c055 | 2015-08-04 16:22:25 +0100 | [diff] [blame] | 6151 | } |
| 6152 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 6153 | void LocationsBuilderX86_64::VisitLoadException(HLoadException* load) { |
| 6154 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6155 | new (GetGraph()->GetAllocator()) LocationSummary(load, LocationSummary::kNoCall); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 6156 | locations->SetOut(Location::RequiresRegister()); |
| 6157 | } |
| 6158 | |
| 6159 | void InstructionCodeGeneratorX86_64::VisitLoadException(HLoadException* load) { |
David Brazdil | cb1c055 | 2015-08-04 16:22:25 +0100 | [diff] [blame] | 6160 | __ gs()->movl(load->GetLocations()->Out().AsRegister<CpuRegister>(), GetExceptionTlsAddress()); |
| 6161 | } |
| 6162 | |
| 6163 | void LocationsBuilderX86_64::VisitClearException(HClearException* clear) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6164 | new (GetGraph()->GetAllocator()) LocationSummary(clear, LocationSummary::kNoCall); |
David Brazdil | cb1c055 | 2015-08-04 16:22:25 +0100 | [diff] [blame] | 6165 | } |
| 6166 | |
| 6167 | void InstructionCodeGeneratorX86_64::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) { |
| 6168 | __ gs()->movl(GetExceptionTlsAddress(), Immediate(0)); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 6169 | } |
| 6170 | |
| 6171 | void LocationsBuilderX86_64::VisitThrow(HThrow* instruction) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6172 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary( |
| 6173 | instruction, LocationSummary::kCallOnMainOnly); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 6174 | InvokeRuntimeCallingConvention calling_convention; |
| 6175 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 6176 | } |
| 6177 | |
| 6178 | void InstructionCodeGeneratorX86_64::VisitThrow(HThrow* instruction) { |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 6179 | codegen_->InvokeRuntime(kQuickDeliverException, instruction, instruction->GetDexPc()); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 6180 | CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>(); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 6181 | } |
| 6182 | |
Vladimir Marko | 9f8d312 | 2018-04-06 13:47:59 +0100 | [diff] [blame] | 6183 | // Temp is used for read barrier. |
| 6184 | static size_t NumberOfInstanceOfTemps(TypeCheckKind type_check_kind) { |
| 6185 | if (kEmitCompilerReadBarrier && |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 6186 | !kUseBakerReadBarrier && |
| 6187 | (type_check_kind == TypeCheckKind::kAbstractClassCheck || |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6188 | type_check_kind == TypeCheckKind::kClassHierarchyCheck || |
Vladimir Marko | 9f8d312 | 2018-04-06 13:47:59 +0100 | [diff] [blame] | 6189 | type_check_kind == TypeCheckKind::kArrayObjectCheck)) { |
| 6190 | return 1; |
| 6191 | } |
| 6192 | return 0; |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6193 | } |
| 6194 | |
Vladimir Marko | 9f8d312 | 2018-04-06 13:47:59 +0100 | [diff] [blame] | 6195 | // Interface case has 2 temps, one for holding the number of interfaces, one for the current |
| 6196 | // interface pointer, the current interface is compared in memory. |
| 6197 | // The other checks have one temp for loading the object's class. |
| 6198 | static size_t NumberOfCheckCastTemps(TypeCheckKind type_check_kind) { |
| 6199 | if (type_check_kind == TypeCheckKind::kInterfaceCheck) { |
| 6200 | return 2; |
| 6201 | } |
| 6202 | return 1 + NumberOfInstanceOfTemps(type_check_kind); |
Nicolas Geoffray | 53b07bd | 2016-11-05 15:09:19 +0000 | [diff] [blame] | 6203 | } |
| 6204 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 6205 | void LocationsBuilderX86_64::VisitInstanceOf(HInstanceOf* instruction) { |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6206 | LocationSummary::CallKind call_kind = LocationSummary::kNoCall; |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6207 | TypeCheckKind type_check_kind = instruction->GetTypeCheckKind(); |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 6208 | bool baker_read_barrier_slow_path = false; |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6209 | switch (type_check_kind) { |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6210 | case TypeCheckKind::kExactCheck: |
| 6211 | case TypeCheckKind::kAbstractClassCheck: |
| 6212 | case TypeCheckKind::kClassHierarchyCheck: |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6213 | case TypeCheckKind::kArrayObjectCheck: { |
| 6214 | bool needs_read_barrier = CodeGenerator::InstanceOfNeedsReadBarrier(instruction); |
| 6215 | call_kind = needs_read_barrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall; |
| 6216 | baker_read_barrier_slow_path = kUseBakerReadBarrier && needs_read_barrier; |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6217 | break; |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6218 | } |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6219 | case TypeCheckKind::kArrayCheck: |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6220 | case TypeCheckKind::kUnresolvedCheck: |
| 6221 | case TypeCheckKind::kInterfaceCheck: |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6222 | call_kind = LocationSummary::kCallOnSlowPath; |
| 6223 | break; |
Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 6224 | case TypeCheckKind::kBitstringCheck: |
| 6225 | break; |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6226 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6227 | |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6228 | LocationSummary* locations = |
| 6229 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, call_kind); |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 6230 | if (baker_read_barrier_slow_path) { |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 6231 | locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers. |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 6232 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6233 | locations->SetInAt(0, Location::RequiresRegister()); |
Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 6234 | if (type_check_kind == TypeCheckKind::kBitstringCheck) { |
| 6235 | locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant())); |
| 6236 | locations->SetInAt(2, Location::ConstantLocation(instruction->InputAt(2)->AsConstant())); |
| 6237 | locations->SetInAt(3, Location::ConstantLocation(instruction->InputAt(3)->AsConstant())); |
| 6238 | } else { |
| 6239 | locations->SetInAt(1, Location::Any()); |
| 6240 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6241 | // Note that TypeCheckSlowPathX86_64 uses this "out" register too. |
| 6242 | locations->SetOut(Location::RequiresRegister()); |
Vladimir Marko | 9f8d312 | 2018-04-06 13:47:59 +0100 | [diff] [blame] | 6243 | locations->AddRegisterTemps(NumberOfInstanceOfTemps(type_check_kind)); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6244 | } |
| 6245 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 6246 | void InstructionCodeGeneratorX86_64::VisitInstanceOf(HInstanceOf* instruction) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6247 | TypeCheckKind type_check_kind = instruction->GetTypeCheckKind(); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6248 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6249 | Location obj_loc = locations->InAt(0); |
| 6250 | CpuRegister obj = obj_loc.AsRegister<CpuRegister>(); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6251 | Location cls = locations->InAt(1); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6252 | Location out_loc = locations->Out(); |
| 6253 | CpuRegister out = out_loc.AsRegister<CpuRegister>(); |
Vladimir Marko | 9f8d312 | 2018-04-06 13:47:59 +0100 | [diff] [blame] | 6254 | const size_t num_temps = NumberOfInstanceOfTemps(type_check_kind); |
| 6255 | DCHECK_LE(num_temps, 1u); |
| 6256 | Location maybe_temp_loc = (num_temps >= 1u) ? locations->GetTemp(0) : Location::NoLocation(); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6257 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6258 | uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value(); |
| 6259 | uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value(); |
| 6260 | uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value(); |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 6261 | SlowPathCode* slow_path = nullptr; |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6262 | NearLabel done, zero; |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6263 | |
| 6264 | // Return 0 if `obj` is null. |
Guillaume "Vermeille" Sanchez | af88835 | 2015-04-20 14:41:30 +0100 | [diff] [blame] | 6265 | // Avoid null check if we know obj is not null. |
| 6266 | if (instruction->MustDoNullCheck()) { |
| 6267 | __ testl(obj, obj); |
| 6268 | __ j(kEqual, &zero); |
| 6269 | } |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6270 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6271 | switch (type_check_kind) { |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6272 | case TypeCheckKind::kExactCheck: { |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6273 | ReadBarrierOption read_barrier_option = |
| 6274 | CodeGenerator::ReadBarrierOptionForInstanceOf(instruction); |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 6275 | // /* HeapReference<Class> */ out = obj->klass_ |
| 6276 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6277 | out_loc, |
| 6278 | obj_loc, |
| 6279 | class_offset, |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6280 | read_barrier_option); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6281 | if (cls.IsRegister()) { |
| 6282 | __ cmpl(out, cls.AsRegister<CpuRegister>()); |
| 6283 | } else { |
| 6284 | DCHECK(cls.IsStackSlot()) << cls; |
| 6285 | __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6286 | } |
Nicolas Geoffray | abfcf18 | 2015-09-21 18:41:21 +0100 | [diff] [blame] | 6287 | if (zero.IsLinked()) { |
| 6288 | // Classes must be equal for the instanceof to succeed. |
| 6289 | __ j(kNotEqual, &zero); |
| 6290 | __ movl(out, Immediate(1)); |
| 6291 | __ jmp(&done); |
| 6292 | } else { |
| 6293 | __ setcc(kEqual, out); |
| 6294 | // setcc only sets the low byte. |
| 6295 | __ andl(out, Immediate(1)); |
| 6296 | } |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6297 | break; |
| 6298 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6299 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6300 | case TypeCheckKind::kAbstractClassCheck: { |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6301 | ReadBarrierOption read_barrier_option = |
| 6302 | CodeGenerator::ReadBarrierOptionForInstanceOf(instruction); |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 6303 | // /* HeapReference<Class> */ out = obj->klass_ |
| 6304 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6305 | out_loc, |
| 6306 | obj_loc, |
| 6307 | class_offset, |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6308 | read_barrier_option); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6309 | // If the class is abstract, we eagerly fetch the super class of the |
| 6310 | // object to avoid doing a comparison we know will fail. |
| 6311 | NearLabel loop, success; |
| 6312 | __ Bind(&loop); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6313 | // /* HeapReference<Class> */ out = out->super_class_ |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6314 | GenerateReferenceLoadOneRegister(instruction, |
| 6315 | out_loc, |
| 6316 | super_offset, |
| 6317 | maybe_temp_loc, |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6318 | read_barrier_option); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6319 | __ testl(out, out); |
| 6320 | // If `out` is null, we use it for the result, and jump to `done`. |
| 6321 | __ j(kEqual, &done); |
| 6322 | if (cls.IsRegister()) { |
| 6323 | __ cmpl(out, cls.AsRegister<CpuRegister>()); |
| 6324 | } else { |
| 6325 | DCHECK(cls.IsStackSlot()) << cls; |
| 6326 | __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6327 | } |
| 6328 | __ j(kNotEqual, &loop); |
| 6329 | __ movl(out, Immediate(1)); |
| 6330 | if (zero.IsLinked()) { |
| 6331 | __ jmp(&done); |
| 6332 | } |
| 6333 | break; |
| 6334 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6335 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6336 | case TypeCheckKind::kClassHierarchyCheck: { |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6337 | ReadBarrierOption read_barrier_option = |
| 6338 | CodeGenerator::ReadBarrierOptionForInstanceOf(instruction); |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 6339 | // /* HeapReference<Class> */ out = obj->klass_ |
| 6340 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6341 | out_loc, |
| 6342 | obj_loc, |
| 6343 | class_offset, |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6344 | read_barrier_option); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6345 | // Walk over the class hierarchy to find a match. |
| 6346 | NearLabel loop, success; |
| 6347 | __ Bind(&loop); |
| 6348 | if (cls.IsRegister()) { |
| 6349 | __ cmpl(out, cls.AsRegister<CpuRegister>()); |
| 6350 | } else { |
| 6351 | DCHECK(cls.IsStackSlot()) << cls; |
| 6352 | __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6353 | } |
| 6354 | __ j(kEqual, &success); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6355 | // /* HeapReference<Class> */ out = out->super_class_ |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6356 | GenerateReferenceLoadOneRegister(instruction, |
| 6357 | out_loc, |
| 6358 | super_offset, |
| 6359 | maybe_temp_loc, |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6360 | read_barrier_option); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6361 | __ testl(out, out); |
| 6362 | __ j(kNotEqual, &loop); |
| 6363 | // If `out` is null, we use it for the result, and jump to `done`. |
| 6364 | __ jmp(&done); |
| 6365 | __ Bind(&success); |
| 6366 | __ movl(out, Immediate(1)); |
| 6367 | if (zero.IsLinked()) { |
| 6368 | __ jmp(&done); |
| 6369 | } |
| 6370 | break; |
| 6371 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6372 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6373 | case TypeCheckKind::kArrayObjectCheck: { |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6374 | ReadBarrierOption read_barrier_option = |
| 6375 | CodeGenerator::ReadBarrierOptionForInstanceOf(instruction); |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 6376 | // /* HeapReference<Class> */ out = obj->klass_ |
| 6377 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6378 | out_loc, |
| 6379 | obj_loc, |
| 6380 | class_offset, |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6381 | read_barrier_option); |
Nicolas Geoffray | abfcf18 | 2015-09-21 18:41:21 +0100 | [diff] [blame] | 6382 | // Do an exact check. |
| 6383 | NearLabel exact_check; |
| 6384 | if (cls.IsRegister()) { |
| 6385 | __ cmpl(out, cls.AsRegister<CpuRegister>()); |
| 6386 | } else { |
| 6387 | DCHECK(cls.IsStackSlot()) << cls; |
| 6388 | __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6389 | } |
| 6390 | __ j(kEqual, &exact_check); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6391 | // Otherwise, we need to check that the object's class is a non-primitive array. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6392 | // /* HeapReference<Class> */ out = out->component_type_ |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6393 | GenerateReferenceLoadOneRegister(instruction, |
| 6394 | out_loc, |
| 6395 | component_offset, |
| 6396 | maybe_temp_loc, |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6397 | read_barrier_option); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6398 | __ testl(out, out); |
| 6399 | // If `out` is null, we use it for the result, and jump to `done`. |
| 6400 | __ j(kEqual, &done); |
| 6401 | __ cmpw(Address(out, primitive_offset), Immediate(Primitive::kPrimNot)); |
| 6402 | __ j(kNotEqual, &zero); |
Nicolas Geoffray | abfcf18 | 2015-09-21 18:41:21 +0100 | [diff] [blame] | 6403 | __ Bind(&exact_check); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6404 | __ movl(out, Immediate(1)); |
| 6405 | __ jmp(&done); |
| 6406 | break; |
| 6407 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6408 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6409 | case TypeCheckKind::kArrayCheck: { |
Mathieu Chartier | 9fd8c60 | 2016-11-14 14:38:53 -0800 | [diff] [blame] | 6410 | // No read barrier since the slow path will retry upon failure. |
| 6411 | // /* HeapReference<Class> */ out = obj->klass_ |
| 6412 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6413 | out_loc, |
| 6414 | obj_loc, |
| 6415 | class_offset, |
| 6416 | kWithoutReadBarrier); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6417 | if (cls.IsRegister()) { |
| 6418 | __ cmpl(out, cls.AsRegister<CpuRegister>()); |
| 6419 | } else { |
| 6420 | DCHECK(cls.IsStackSlot()) << cls; |
| 6421 | __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6422 | } |
| 6423 | DCHECK(locations->OnlyCallsOnSlowPath()); |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 6424 | slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathX86_64( |
| 6425 | instruction, /* is_fatal */ false); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6426 | codegen_->AddSlowPath(slow_path); |
| 6427 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
| 6428 | __ movl(out, Immediate(1)); |
| 6429 | if (zero.IsLinked()) { |
| 6430 | __ jmp(&done); |
| 6431 | } |
| 6432 | break; |
| 6433 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6434 | |
Calin Juravle | 98893e1 | 2015-10-02 21:05:03 +0100 | [diff] [blame] | 6435 | case TypeCheckKind::kUnresolvedCheck: |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6436 | case TypeCheckKind::kInterfaceCheck: { |
| 6437 | // Note that we indeed only call on slow path, but we always go |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 6438 | // into the slow path for the unresolved and interface check |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6439 | // cases. |
| 6440 | // |
| 6441 | // We cannot directly call the InstanceofNonTrivial runtime |
| 6442 | // entry point without resorting to a type checking slow path |
| 6443 | // here (i.e. by calling InvokeRuntime directly), as it would |
| 6444 | // require to assign fixed registers for the inputs of this |
| 6445 | // HInstanceOf instruction (following the runtime calling |
| 6446 | // convention), which might be cluttered by the potential first |
| 6447 | // read barrier emission at the beginning of this method. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6448 | // |
| 6449 | // TODO: Introduce a new runtime entry point taking the object |
| 6450 | // to test (instead of its class) as argument, and let it deal |
| 6451 | // with the read barrier issues. This will let us refactor this |
| 6452 | // case of the `switch` code as it was previously (with a direct |
| 6453 | // call to the runtime not using a type checking slow path). |
| 6454 | // This should also be beneficial for the other cases above. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6455 | DCHECK(locations->OnlyCallsOnSlowPath()); |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 6456 | slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathX86_64( |
| 6457 | instruction, /* is_fatal */ false); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6458 | codegen_->AddSlowPath(slow_path); |
| 6459 | __ jmp(slow_path->GetEntryLabel()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6460 | if (zero.IsLinked()) { |
| 6461 | __ jmp(&done); |
| 6462 | } |
| 6463 | break; |
| 6464 | } |
Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 6465 | |
| 6466 | case TypeCheckKind::kBitstringCheck: { |
| 6467 | // /* HeapReference<Class> */ temp = obj->klass_ |
| 6468 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6469 | out_loc, |
| 6470 | obj_loc, |
| 6471 | class_offset, |
| 6472 | kWithoutReadBarrier); |
| 6473 | |
| 6474 | GenerateBitstringTypeCheckCompare(instruction, out); |
| 6475 | if (zero.IsLinked()) { |
| 6476 | __ j(kNotEqual, &zero); |
| 6477 | __ movl(out, Immediate(1)); |
| 6478 | __ jmp(&done); |
| 6479 | } else { |
| 6480 | __ setcc(kEqual, out); |
| 6481 | // setcc only sets the low byte. |
| 6482 | __ andl(out, Immediate(1)); |
| 6483 | } |
| 6484 | break; |
| 6485 | } |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6486 | } |
Guillaume "Vermeille" Sanchez | af88835 | 2015-04-20 14:41:30 +0100 | [diff] [blame] | 6487 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6488 | if (zero.IsLinked()) { |
Guillaume "Vermeille" Sanchez | af88835 | 2015-04-20 14:41:30 +0100 | [diff] [blame] | 6489 | __ Bind(&zero); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6490 | __ xorl(out, out); |
| 6491 | } |
| 6492 | |
| 6493 | if (done.IsLinked()) { |
| 6494 | __ Bind(&done); |
Guillaume "Vermeille" Sanchez | af88835 | 2015-04-20 14:41:30 +0100 | [diff] [blame] | 6495 | } |
| 6496 | |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6497 | if (slow_path != nullptr) { |
| 6498 | __ Bind(slow_path->GetExitLabel()); |
| 6499 | } |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 6500 | } |
| 6501 | |
Andreas Gampe | b5f3d81 | 2016-11-04 19:25:20 -0700 | [diff] [blame] | 6502 | void LocationsBuilderX86_64::VisitCheckCast(HCheckCast* instruction) { |
Andreas Gampe | b5f3d81 | 2016-11-04 19:25:20 -0700 | [diff] [blame] | 6503 | TypeCheckKind type_check_kind = instruction->GetTypeCheckKind(); |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6504 | LocationSummary::CallKind call_kind = CodeGenerator::GetCheckCastCallKind(instruction); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6505 | LocationSummary* locations = |
| 6506 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, call_kind); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6507 | locations->SetInAt(0, Location::RequiresRegister()); |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6508 | if (type_check_kind == TypeCheckKind::kInterfaceCheck) { |
| 6509 | // Require a register for the interface check since there is a loop that compares the class to |
| 6510 | // a memory address. |
| 6511 | locations->SetInAt(1, Location::RequiresRegister()); |
Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 6512 | } else if (type_check_kind == TypeCheckKind::kBitstringCheck) { |
| 6513 | locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant())); |
| 6514 | locations->SetInAt(2, Location::ConstantLocation(instruction->InputAt(2)->AsConstant())); |
| 6515 | locations->SetInAt(3, Location::ConstantLocation(instruction->InputAt(3)->AsConstant())); |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6516 | } else { |
| 6517 | locations->SetInAt(1, Location::Any()); |
| 6518 | } |
Vladimir Marko | 9f8d312 | 2018-04-06 13:47:59 +0100 | [diff] [blame] | 6519 | // Add temps for read barriers and other uses. One is used by TypeCheckSlowPathX86. |
| 6520 | locations->AddRegisterTemps(NumberOfCheckCastTemps(type_check_kind)); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 6521 | } |
| 6522 | |
| 6523 | void InstructionCodeGeneratorX86_64::VisitCheckCast(HCheckCast* instruction) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6524 | TypeCheckKind type_check_kind = instruction->GetTypeCheckKind(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 6525 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6526 | Location obj_loc = locations->InAt(0); |
| 6527 | CpuRegister obj = obj_loc.AsRegister<CpuRegister>(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 6528 | Location cls = locations->InAt(1); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6529 | Location temp_loc = locations->GetTemp(0); |
| 6530 | CpuRegister temp = temp_loc.AsRegister<CpuRegister>(); |
Vladimir Marko | 9f8d312 | 2018-04-06 13:47:59 +0100 | [diff] [blame] | 6531 | const size_t num_temps = NumberOfCheckCastTemps(type_check_kind); |
| 6532 | DCHECK_GE(num_temps, 1u); |
| 6533 | DCHECK_LE(num_temps, 2u); |
| 6534 | Location maybe_temp2_loc = (num_temps >= 2u) ? locations->GetTemp(1) : Location::NoLocation(); |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6535 | const uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 6536 | const uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value(); |
| 6537 | const uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value(); |
| 6538 | const uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value(); |
| 6539 | const uint32_t iftable_offset = mirror::Class::IfTableOffset().Uint32Value(); |
| 6540 | const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); |
Mathieu Chartier | 5c44c1b | 2016-11-04 18:13:04 -0700 | [diff] [blame] | 6541 | const uint32_t object_array_data_offset = |
| 6542 | mirror::Array::DataOffset(kHeapReferenceSize).Uint32Value(); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6543 | |
Vladimir Marko | 8758454 | 2017-12-12 17:47:52 +0000 | [diff] [blame] | 6544 | bool is_type_check_slow_path_fatal = CodeGenerator::IsTypeCheckSlowPathFatal(instruction); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6545 | SlowPathCode* type_check_slow_path = |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 6546 | new (codegen_->GetScopedAllocator()) TypeCheckSlowPathX86_64( |
| 6547 | instruction, is_type_check_slow_path_fatal); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6548 | codegen_->AddSlowPath(type_check_slow_path); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6549 | |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6550 | |
| 6551 | NearLabel done; |
| 6552 | // Avoid null check if we know obj is not null. |
| 6553 | if (instruction->MustDoNullCheck()) { |
| 6554 | __ testl(obj, obj); |
| 6555 | __ j(kEqual, &done); |
| 6556 | } |
| 6557 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6558 | switch (type_check_kind) { |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6559 | case TypeCheckKind::kExactCheck: |
| 6560 | case TypeCheckKind::kArrayCheck: { |
Roland Levillain | 8650378 | 2016-02-11 19:07:30 +0000 | [diff] [blame] | 6561 | // /* HeapReference<Class> */ temp = obj->klass_ |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6562 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6563 | temp_loc, |
| 6564 | obj_loc, |
| 6565 | class_offset, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6566 | kWithoutReadBarrier); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6567 | if (cls.IsRegister()) { |
| 6568 | __ cmpl(temp, cls.AsRegister<CpuRegister>()); |
| 6569 | } else { |
| 6570 | DCHECK(cls.IsStackSlot()) << cls; |
| 6571 | __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6572 | } |
| 6573 | // Jump to slow path for throwing the exception or doing a |
| 6574 | // more involved array check. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6575 | __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6576 | break; |
| 6577 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6578 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6579 | case TypeCheckKind::kAbstractClassCheck: { |
Roland Levillain | 8650378 | 2016-02-11 19:07:30 +0000 | [diff] [blame] | 6580 | // /* HeapReference<Class> */ temp = obj->klass_ |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6581 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6582 | temp_loc, |
| 6583 | obj_loc, |
| 6584 | class_offset, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6585 | kWithoutReadBarrier); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6586 | // If the class is abstract, we eagerly fetch the super class of the |
| 6587 | // object to avoid doing a comparison we know will fail. |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 6588 | NearLabel loop; |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6589 | __ Bind(&loop); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6590 | // /* HeapReference<Class> */ temp = temp->super_class_ |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6591 | GenerateReferenceLoadOneRegister(instruction, |
| 6592 | temp_loc, |
| 6593 | super_offset, |
| 6594 | maybe_temp2_loc, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6595 | kWithoutReadBarrier); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6596 | |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 6597 | // If the class reference currently in `temp` is null, jump to the slow path to throw the |
| 6598 | // exception. |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6599 | __ testl(temp, temp); |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 6600 | // Otherwise, compare the classes. |
| 6601 | __ j(kZero, type_check_slow_path->GetEntryLabel()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6602 | if (cls.IsRegister()) { |
| 6603 | __ cmpl(temp, cls.AsRegister<CpuRegister>()); |
| 6604 | } else { |
| 6605 | DCHECK(cls.IsStackSlot()) << cls; |
| 6606 | __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6607 | } |
| 6608 | __ j(kNotEqual, &loop); |
| 6609 | break; |
| 6610 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6611 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6612 | case TypeCheckKind::kClassHierarchyCheck: { |
Roland Levillain | 8650378 | 2016-02-11 19:07:30 +0000 | [diff] [blame] | 6613 | // /* HeapReference<Class> */ temp = obj->klass_ |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6614 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6615 | temp_loc, |
| 6616 | obj_loc, |
| 6617 | class_offset, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6618 | kWithoutReadBarrier); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6619 | // Walk over the class hierarchy to find a match. |
Nicolas Geoffray | abfcf18 | 2015-09-21 18:41:21 +0100 | [diff] [blame] | 6620 | NearLabel loop; |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6621 | __ Bind(&loop); |
| 6622 | if (cls.IsRegister()) { |
| 6623 | __ cmpl(temp, cls.AsRegister<CpuRegister>()); |
| 6624 | } else { |
| 6625 | DCHECK(cls.IsStackSlot()) << cls; |
| 6626 | __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6627 | } |
Nicolas Geoffray | abfcf18 | 2015-09-21 18:41:21 +0100 | [diff] [blame] | 6628 | __ j(kEqual, &done); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6629 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6630 | // /* HeapReference<Class> */ temp = temp->super_class_ |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6631 | GenerateReferenceLoadOneRegister(instruction, |
| 6632 | temp_loc, |
| 6633 | super_offset, |
| 6634 | maybe_temp2_loc, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6635 | kWithoutReadBarrier); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6636 | |
| 6637 | // If the class reference currently in `temp` is not null, jump |
| 6638 | // back at the beginning of the loop. |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6639 | __ testl(temp, temp); |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 6640 | __ j(kNotZero, &loop); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6641 | // Otherwise, jump to the slow path to throw the exception. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6642 | __ jmp(type_check_slow_path->GetEntryLabel()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6643 | break; |
| 6644 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6645 | |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6646 | case TypeCheckKind::kArrayObjectCheck: { |
Roland Levillain | 8650378 | 2016-02-11 19:07:30 +0000 | [diff] [blame] | 6647 | // /* HeapReference<Class> */ temp = obj->klass_ |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6648 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6649 | temp_loc, |
| 6650 | obj_loc, |
| 6651 | class_offset, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6652 | kWithoutReadBarrier); |
Nicolas Geoffray | abfcf18 | 2015-09-21 18:41:21 +0100 | [diff] [blame] | 6653 | // Do an exact check. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6654 | NearLabel check_non_primitive_component_type; |
Nicolas Geoffray | abfcf18 | 2015-09-21 18:41:21 +0100 | [diff] [blame] | 6655 | if (cls.IsRegister()) { |
| 6656 | __ cmpl(temp, cls.AsRegister<CpuRegister>()); |
| 6657 | } else { |
| 6658 | DCHECK(cls.IsStackSlot()) << cls; |
| 6659 | __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex())); |
| 6660 | } |
| 6661 | __ j(kEqual, &done); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6662 | |
| 6663 | // Otherwise, we need to check that the object's class is a non-primitive array. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6664 | // /* HeapReference<Class> */ temp = temp->component_type_ |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6665 | GenerateReferenceLoadOneRegister(instruction, |
| 6666 | temp_loc, |
| 6667 | component_offset, |
| 6668 | maybe_temp2_loc, |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6669 | kWithoutReadBarrier); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6670 | |
| 6671 | // If the component type is not null (i.e. the object is indeed |
| 6672 | // an array), jump to label `check_non_primitive_component_type` |
| 6673 | // to further check that this component type is not a primitive |
| 6674 | // type. |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6675 | __ testl(temp, temp); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6676 | // Otherwise, jump to the slow path to throw the exception. |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 6677 | __ j(kZero, type_check_slow_path->GetEntryLabel()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6678 | __ cmpw(Address(temp, primitive_offset), Immediate(Primitive::kPrimNot)); |
Mathieu Chartier | b99f4d6 | 2016-11-07 16:17:26 -0800 | [diff] [blame] | 6679 | __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6680 | break; |
| 6681 | } |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6682 | |
Mathieu Chartier | 5c44c1b | 2016-11-04 18:13:04 -0700 | [diff] [blame] | 6683 | case TypeCheckKind::kUnresolvedCheck: { |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6684 | // We always go into the type check slow path for the unresolved case. |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6685 | // |
| 6686 | // We cannot directly call the CheckCast runtime entry point |
| 6687 | // without resorting to a type checking slow path here (i.e. by |
| 6688 | // calling InvokeRuntime directly), as it would require to |
| 6689 | // assign fixed registers for the inputs of this HInstanceOf |
| 6690 | // instruction (following the runtime calling convention), which |
| 6691 | // might be cluttered by the potential first read barrier |
| 6692 | // emission at the beginning of this method. |
Mathieu Chartier | 5c44c1b | 2016-11-04 18:13:04 -0700 | [diff] [blame] | 6693 | __ jmp(type_check_slow_path->GetEntryLabel()); |
Mathieu Chartier | 5c44c1b | 2016-11-04 18:13:04 -0700 | [diff] [blame] | 6694 | break; |
| 6695 | } |
| 6696 | |
Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 6697 | case TypeCheckKind::kInterfaceCheck: { |
Vladimir Marko | e619f6c | 2017-12-12 16:00:01 +0000 | [diff] [blame] | 6698 | // Fast path for the interface check. Try to avoid read barriers to improve the fast path. |
| 6699 | // We can not get false positives by doing this. |
| 6700 | // /* HeapReference<Class> */ temp = obj->klass_ |
| 6701 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6702 | temp_loc, |
| 6703 | obj_loc, |
| 6704 | class_offset, |
| 6705 | kWithoutReadBarrier); |
Mathieu Chartier | cdba73b | 2016-11-03 19:23:06 -0700 | [diff] [blame] | 6706 | |
Vladimir Marko | e619f6c | 2017-12-12 16:00:01 +0000 | [diff] [blame] | 6707 | // /* HeapReference<Class> */ temp = temp->iftable_ |
| 6708 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6709 | temp_loc, |
| 6710 | temp_loc, |
| 6711 | iftable_offset, |
| 6712 | kWithoutReadBarrier); |
| 6713 | // Iftable is never null. |
| 6714 | __ movl(maybe_temp2_loc.AsRegister<CpuRegister>(), Address(temp, array_length_offset)); |
| 6715 | // Maybe poison the `cls` for direct comparison with memory. |
| 6716 | __ MaybePoisonHeapReference(cls.AsRegister<CpuRegister>()); |
| 6717 | // Loop through the iftable and check if any class matches. |
| 6718 | NearLabel start_loop; |
| 6719 | __ Bind(&start_loop); |
| 6720 | // Need to subtract first to handle the empty array case. |
| 6721 | __ subl(maybe_temp2_loc.AsRegister<CpuRegister>(), Immediate(2)); |
| 6722 | __ j(kNegative, type_check_slow_path->GetEntryLabel()); |
| 6723 | // Go to next interface if the classes do not match. |
| 6724 | __ cmpl(cls.AsRegister<CpuRegister>(), |
| 6725 | CodeGeneratorX86_64::ArrayAddress(temp, |
| 6726 | maybe_temp2_loc, |
| 6727 | TIMES_4, |
| 6728 | object_array_data_offset)); |
| 6729 | __ j(kNotEqual, &start_loop); // Return if same class. |
| 6730 | // If `cls` was poisoned above, unpoison it. |
| 6731 | __ MaybeUnpoisonHeapReference(cls.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6732 | break; |
Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 6733 | } |
| 6734 | |
| 6735 | case TypeCheckKind::kBitstringCheck: { |
| 6736 | // /* HeapReference<Class> */ temp = obj->klass_ |
| 6737 | GenerateReferenceLoadTwoRegisters(instruction, |
| 6738 | temp_loc, |
| 6739 | obj_loc, |
| 6740 | class_offset, |
| 6741 | kWithoutReadBarrier); |
| 6742 | |
| 6743 | GenerateBitstringTypeCheckCompare(instruction, temp); |
| 6744 | __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); |
| 6745 | break; |
| 6746 | } |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6747 | } |
Nicolas Geoffray | 85c7bab | 2015-09-18 13:40:46 +0000 | [diff] [blame] | 6748 | |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6749 | if (done.IsLinked()) { |
| 6750 | __ Bind(&done); |
| 6751 | } |
| 6752 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 6753 | __ Bind(type_check_slow_path->GetExitLabel()); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 6754 | } |
| 6755 | |
Nicolas Geoffray | b7baf5c | 2014-11-11 16:29:44 +0000 | [diff] [blame] | 6756 | void LocationsBuilderX86_64::VisitMonitorOperation(HMonitorOperation* instruction) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6757 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary( |
| 6758 | instruction, LocationSummary::kCallOnMainOnly); |
Nicolas Geoffray | b7baf5c | 2014-11-11 16:29:44 +0000 | [diff] [blame] | 6759 | InvokeRuntimeCallingConvention calling_convention; |
| 6760 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 6761 | } |
| 6762 | |
| 6763 | void InstructionCodeGeneratorX86_64::VisitMonitorOperation(HMonitorOperation* instruction) { |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 6764 | codegen_->InvokeRuntime(instruction->IsEnter() ? kQuickLockObject : kQuickUnlockObject, |
Alexandre Rames | 8158f28 | 2015-08-07 10:26:17 +0100 | [diff] [blame] | 6765 | instruction, |
Serban Constantinescu | ba45db0 | 2016-07-12 22:53:02 +0100 | [diff] [blame] | 6766 | instruction->GetDexPc()); |
Roland Levillain | 888d067 | 2015-11-23 18:53:50 +0000 | [diff] [blame] | 6767 | if (instruction->IsEnter()) { |
| 6768 | CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>(); |
| 6769 | } else { |
| 6770 | CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>(); |
| 6771 | } |
Nicolas Geoffray | b7baf5c | 2014-11-11 16:29:44 +0000 | [diff] [blame] | 6772 | } |
| 6773 | |
Shalini Salomi Bodapati | dd121f6 | 2018-10-26 15:03:53 +0530 | [diff] [blame] | 6774 | void LocationsBuilderX86_64::VisitX86AndNot(HX86AndNot* instruction) { |
| 6775 | DCHECK(codegen_->GetInstructionSetFeatures().HasAVX2()); |
| 6776 | DCHECK(DataType::IsIntOrLongType(instruction->GetType())) << instruction->GetType(); |
| 6777 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); |
| 6778 | locations->SetInAt(0, Location::RequiresRegister()); |
| 6779 | // There is no immediate variant of negated bitwise and in X86. |
| 6780 | locations->SetInAt(1, Location::RequiresRegister()); |
| 6781 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 6782 | } |
| 6783 | |
| 6784 | void LocationsBuilderX86_64::VisitX86MaskOrResetLeastSetBit(HX86MaskOrResetLeastSetBit* instruction) { |
| 6785 | DCHECK(codegen_->GetInstructionSetFeatures().HasAVX2()); |
| 6786 | DCHECK(DataType::IsIntOrLongType(instruction->GetType())) << instruction->GetType(); |
| 6787 | LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); |
| 6788 | locations->SetInAt(0, Location::RequiresRegister()); |
| 6789 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 6790 | } |
| 6791 | |
| 6792 | void InstructionCodeGeneratorX86_64::VisitX86AndNot(HX86AndNot* instruction) { |
| 6793 | LocationSummary* locations = instruction->GetLocations(); |
| 6794 | Location first = locations->InAt(0); |
| 6795 | Location second = locations->InAt(1); |
| 6796 | Location dest = locations->Out(); |
| 6797 | __ andn(dest.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
| 6798 | } |
| 6799 | |
| 6800 | void InstructionCodeGeneratorX86_64::VisitX86MaskOrResetLeastSetBit(HX86MaskOrResetLeastSetBit* instruction) { |
| 6801 | LocationSummary* locations = instruction->GetLocations(); |
| 6802 | Location src = locations->InAt(0); |
| 6803 | Location dest = locations->Out(); |
| 6804 | switch (instruction->GetOpKind()) { |
| 6805 | case HInstruction::kAnd: |
| 6806 | __ blsr(dest.AsRegister<CpuRegister>(), src.AsRegister<CpuRegister>()); |
| 6807 | break; |
| 6808 | case HInstruction::kXor: |
| 6809 | __ blsmsk(dest.AsRegister<CpuRegister>(), src.AsRegister<CpuRegister>()); |
| 6810 | break; |
| 6811 | default: |
| 6812 | LOG(FATAL) << "Unreachable"; |
| 6813 | } |
| 6814 | } |
| 6815 | |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6816 | void LocationsBuilderX86_64::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); } |
| 6817 | void LocationsBuilderX86_64::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); } |
| 6818 | void LocationsBuilderX86_64::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); } |
| 6819 | |
| 6820 | void LocationsBuilderX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) { |
| 6821 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 6822 | new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 6823 | DCHECK(instruction->GetResultType() == DataType::Type::kInt32 |
| 6824 | || instruction->GetResultType() == DataType::Type::kInt64); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6825 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 6826 | locations->SetInAt(1, Location::Any()); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6827 | locations->SetOut(Location::SameAsFirstInput()); |
| 6828 | } |
| 6829 | |
| 6830 | void InstructionCodeGeneratorX86_64::VisitAnd(HAnd* instruction) { |
| 6831 | HandleBitwiseOperation(instruction); |
| 6832 | } |
| 6833 | |
| 6834 | void InstructionCodeGeneratorX86_64::VisitOr(HOr* instruction) { |
| 6835 | HandleBitwiseOperation(instruction); |
| 6836 | } |
| 6837 | |
| 6838 | void InstructionCodeGeneratorX86_64::VisitXor(HXor* instruction) { |
| 6839 | HandleBitwiseOperation(instruction); |
| 6840 | } |
| 6841 | |
| 6842 | void InstructionCodeGeneratorX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) { |
| 6843 | LocationSummary* locations = instruction->GetLocations(); |
| 6844 | Location first = locations->InAt(0); |
| 6845 | Location second = locations->InAt(1); |
| 6846 | DCHECK(first.Equals(locations->Out())); |
| 6847 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 6848 | if (instruction->GetResultType() == DataType::Type::kInt32) { |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6849 | if (second.IsRegister()) { |
| 6850 | if (instruction->IsAnd()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6851 | __ andl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6852 | } else if (instruction->IsOr()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6853 | __ orl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6854 | } else { |
| 6855 | DCHECK(instruction->IsXor()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6856 | __ xorl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6857 | } |
| 6858 | } else if (second.IsConstant()) { |
| 6859 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue()); |
| 6860 | if (instruction->IsAnd()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6861 | __ andl(first.AsRegister<CpuRegister>(), imm); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6862 | } else if (instruction->IsOr()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6863 | __ orl(first.AsRegister<CpuRegister>(), imm); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6864 | } else { |
| 6865 | DCHECK(instruction->IsXor()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6866 | __ xorl(first.AsRegister<CpuRegister>(), imm); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6867 | } |
| 6868 | } else { |
| 6869 | Address address(CpuRegister(RSP), second.GetStackIndex()); |
| 6870 | if (instruction->IsAnd()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6871 | __ andl(first.AsRegister<CpuRegister>(), address); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6872 | } else if (instruction->IsOr()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6873 | __ orl(first.AsRegister<CpuRegister>(), address); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6874 | } else { |
| 6875 | DCHECK(instruction->IsXor()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 6876 | __ xorl(first.AsRegister<CpuRegister>(), address); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6877 | } |
| 6878 | } |
| 6879 | } else { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 6880 | DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt64); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6881 | CpuRegister first_reg = first.AsRegister<CpuRegister>(); |
| 6882 | bool second_is_constant = false; |
| 6883 | int64_t value = 0; |
| 6884 | if (second.IsConstant()) { |
| 6885 | second_is_constant = true; |
| 6886 | value = second.GetConstant()->AsLongConstant()->GetValue(); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6887 | } |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 6888 | bool is_int32_value = IsInt<32>(value); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6889 | |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6890 | if (instruction->IsAnd()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6891 | if (second_is_constant) { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 6892 | if (is_int32_value) { |
| 6893 | __ andq(first_reg, Immediate(static_cast<int32_t>(value))); |
| 6894 | } else { |
| 6895 | __ andq(first_reg, codegen_->LiteralInt64Address(value)); |
| 6896 | } |
| 6897 | } else if (second.IsDoubleStackSlot()) { |
| 6898 | __ andq(first_reg, Address(CpuRegister(RSP), second.GetStackIndex())); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6899 | } else { |
| 6900 | __ andq(first_reg, second.AsRegister<CpuRegister>()); |
| 6901 | } |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6902 | } else if (instruction->IsOr()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6903 | if (second_is_constant) { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 6904 | if (is_int32_value) { |
| 6905 | __ orq(first_reg, Immediate(static_cast<int32_t>(value))); |
| 6906 | } else { |
| 6907 | __ orq(first_reg, codegen_->LiteralInt64Address(value)); |
| 6908 | } |
| 6909 | } else if (second.IsDoubleStackSlot()) { |
| 6910 | __ orq(first_reg, Address(CpuRegister(RSP), second.GetStackIndex())); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6911 | } else { |
| 6912 | __ orq(first_reg, second.AsRegister<CpuRegister>()); |
| 6913 | } |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6914 | } else { |
| 6915 | DCHECK(instruction->IsXor()); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6916 | if (second_is_constant) { |
Mark Mendell | 40741f3 | 2015-04-20 22:10:34 -0400 | [diff] [blame] | 6917 | if (is_int32_value) { |
| 6918 | __ xorq(first_reg, Immediate(static_cast<int32_t>(value))); |
| 6919 | } else { |
| 6920 | __ xorq(first_reg, codegen_->LiteralInt64Address(value)); |
| 6921 | } |
| 6922 | } else if (second.IsDoubleStackSlot()) { |
| 6923 | __ xorq(first_reg, Address(CpuRegister(RSP), second.GetStackIndex())); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 6924 | } else { |
| 6925 | __ xorq(first_reg, second.AsRegister<CpuRegister>()); |
| 6926 | } |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 6927 | } |
| 6928 | } |
| 6929 | } |
| 6930 | |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6931 | void InstructionCodeGeneratorX86_64::GenerateReferenceLoadOneRegister( |
| 6932 | HInstruction* instruction, |
| 6933 | Location out, |
| 6934 | uint32_t offset, |
| 6935 | Location maybe_temp, |
| 6936 | ReadBarrierOption read_barrier_option) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6937 | CpuRegister out_reg = out.AsRegister<CpuRegister>(); |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6938 | if (read_barrier_option == kWithReadBarrier) { |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6939 | CHECK(kEmitCompilerReadBarrier); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6940 | if (kUseBakerReadBarrier) { |
| 6941 | // Load with fast path based Baker's read barrier. |
| 6942 | // /* HeapReference<Object> */ out = *(out + offset) |
| 6943 | codegen_->GenerateFieldLoadWithBakerReadBarrier( |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 6944 | instruction, out, out_reg, offset, /* needs_null_check */ false); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6945 | } else { |
| 6946 | // Load with slow path based read barrier. |
Roland Levillain | 95e7ffc | 2016-01-22 11:57:25 +0000 | [diff] [blame] | 6947 | // Save the value of `out` into `maybe_temp` before overwriting it |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6948 | // in the following move operation, as we will need it for the |
| 6949 | // read barrier below. |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 6950 | DCHECK(maybe_temp.IsRegister()) << maybe_temp; |
Roland Levillain | 95e7ffc | 2016-01-22 11:57:25 +0000 | [diff] [blame] | 6951 | __ movl(maybe_temp.AsRegister<CpuRegister>(), out_reg); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6952 | // /* HeapReference<Object> */ out = *(out + offset) |
| 6953 | __ movl(out_reg, Address(out_reg, offset)); |
Roland Levillain | 95e7ffc | 2016-01-22 11:57:25 +0000 | [diff] [blame] | 6954 | codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6955 | } |
| 6956 | } else { |
| 6957 | // Plain load with no read barrier. |
| 6958 | // /* HeapReference<Object> */ out = *(out + offset) |
| 6959 | __ movl(out_reg, Address(out_reg, offset)); |
| 6960 | __ MaybeUnpoisonHeapReference(out_reg); |
| 6961 | } |
| 6962 | } |
| 6963 | |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6964 | void InstructionCodeGeneratorX86_64::GenerateReferenceLoadTwoRegisters( |
| 6965 | HInstruction* instruction, |
| 6966 | Location out, |
| 6967 | Location obj, |
| 6968 | uint32_t offset, |
| 6969 | ReadBarrierOption read_barrier_option) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6970 | CpuRegister out_reg = out.AsRegister<CpuRegister>(); |
| 6971 | CpuRegister obj_reg = obj.AsRegister<CpuRegister>(); |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6972 | if (read_barrier_option == kWithReadBarrier) { |
Mathieu Chartier | aa474eb | 2016-11-09 15:18:27 -0800 | [diff] [blame] | 6973 | CHECK(kEmitCompilerReadBarrier); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6974 | if (kUseBakerReadBarrier) { |
| 6975 | // Load with fast path based Baker's read barrier. |
| 6976 | // /* HeapReference<Object> */ out = *(obj + offset) |
| 6977 | codegen_->GenerateFieldLoadWithBakerReadBarrier( |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 6978 | instruction, out, obj_reg, offset, /* needs_null_check */ false); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6979 | } else { |
| 6980 | // Load with slow path based read barrier. |
| 6981 | // /* HeapReference<Object> */ out = *(obj + offset) |
| 6982 | __ movl(out_reg, Address(obj_reg, offset)); |
| 6983 | codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset); |
| 6984 | } |
| 6985 | } else { |
| 6986 | // Plain load with no read barrier. |
| 6987 | // /* HeapReference<Object> */ out = *(obj + offset) |
| 6988 | __ movl(out_reg, Address(obj_reg, offset)); |
| 6989 | __ MaybeUnpoisonHeapReference(out_reg); |
| 6990 | } |
| 6991 | } |
| 6992 | |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 6993 | void InstructionCodeGeneratorX86_64::GenerateGcRootFieldLoad( |
| 6994 | HInstruction* instruction, |
| 6995 | Location root, |
| 6996 | const Address& address, |
| 6997 | Label* fixup_label, |
| 6998 | ReadBarrierOption read_barrier_option) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 6999 | CpuRegister root_reg = root.AsRegister<CpuRegister>(); |
Mathieu Chartier | 3af00dc | 2016-11-10 11:25:57 -0800 | [diff] [blame] | 7000 | if (read_barrier_option == kWithReadBarrier) { |
Mathieu Chartier | 31b12e3 | 2016-09-02 17:11:57 -0700 | [diff] [blame] | 7001 | DCHECK(kEmitCompilerReadBarrier); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7002 | if (kUseBakerReadBarrier) { |
| 7003 | // Fast path implementation of art::ReadBarrier::BarrierForRoot when |
| 7004 | // Baker's read barrier are used: |
| 7005 | // |
Roland Levillain | d966ce7 | 2017-02-09 16:20:14 +0000 | [diff] [blame] | 7006 | // root = obj.field; |
| 7007 | // temp = Thread::Current()->pReadBarrierMarkReg ## root.reg() |
| 7008 | // if (temp != null) { |
| 7009 | // root = temp(root) |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7010 | // } |
| 7011 | |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 7012 | // /* GcRoot<mirror::Object> */ root = *address |
| 7013 | __ movl(root_reg, address); |
| 7014 | if (fixup_label != nullptr) { |
| 7015 | __ Bind(fixup_label); |
| 7016 | } |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7017 | static_assert( |
| 7018 | sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>), |
| 7019 | "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> " |
| 7020 | "have different sizes."); |
| 7021 | static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t), |
| 7022 | "art::mirror::CompressedReference<mirror::Object> and int32_t " |
| 7023 | "have different sizes."); |
| 7024 | |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7025 | // Slow path marking the GC root `root`. |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 7026 | SlowPathCode* slow_path = new (codegen_->GetScopedAllocator()) ReadBarrierMarkSlowPathX86_64( |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 7027 | instruction, root, /* unpoison_ref_before_marking */ false); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7028 | codegen_->AddSlowPath(slow_path); |
| 7029 | |
Roland Levillain | d966ce7 | 2017-02-09 16:20:14 +0000 | [diff] [blame] | 7030 | // Test the `Thread::Current()->pReadBarrierMarkReg ## root.reg()` entrypoint. |
| 7031 | const int32_t entry_point_offset = |
Roland Levillain | 97c4646 | 2017-05-11 14:04:03 +0100 | [diff] [blame] | 7032 | Thread::ReadBarrierMarkEntryPointsOffset<kX86_64PointerSize>(root.reg()); |
Roland Levillain | d966ce7 | 2017-02-09 16:20:14 +0000 | [diff] [blame] | 7033 | __ gs()->cmpl(Address::Absolute(entry_point_offset, /* no_rip */ true), Immediate(0)); |
| 7034 | // The entrypoint is null when the GC is not marking. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7035 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
| 7036 | __ Bind(slow_path->GetExitLabel()); |
| 7037 | } else { |
| 7038 | // GC root loaded through a slow path for read barriers other |
| 7039 | // than Baker's. |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 7040 | // /* GcRoot<mirror::Object>* */ root = address |
| 7041 | __ leaq(root_reg, address); |
| 7042 | if (fixup_label != nullptr) { |
| 7043 | __ Bind(fixup_label); |
| 7044 | } |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7045 | // /* mirror::Object* */ root = root->Read() |
| 7046 | codegen_->GenerateReadBarrierForRootSlow(instruction, root, root); |
| 7047 | } |
| 7048 | } else { |
| 7049 | // Plain GC root load with no read barrier. |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 7050 | // /* GcRoot<mirror::Object> */ root = *address |
| 7051 | __ movl(root_reg, address); |
| 7052 | if (fixup_label != nullptr) { |
| 7053 | __ Bind(fixup_label); |
| 7054 | } |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 7055 | // Note that GC roots are not affected by heap poisoning, thus we |
| 7056 | // do not have to unpoison `root_reg` here. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7057 | } |
| 7058 | } |
| 7059 | |
| 7060 | void CodeGeneratorX86_64::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction, |
| 7061 | Location ref, |
| 7062 | CpuRegister obj, |
| 7063 | uint32_t offset, |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7064 | bool needs_null_check) { |
| 7065 | DCHECK(kEmitCompilerReadBarrier); |
| 7066 | DCHECK(kUseBakerReadBarrier); |
| 7067 | |
| 7068 | // /* HeapReference<Object> */ ref = *(obj + offset) |
| 7069 | Address src(obj, offset); |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7070 | GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, needs_null_check); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7071 | } |
| 7072 | |
| 7073 | void CodeGeneratorX86_64::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction, |
| 7074 | Location ref, |
| 7075 | CpuRegister obj, |
| 7076 | uint32_t data_offset, |
| 7077 | Location index, |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7078 | bool needs_null_check) { |
| 7079 | DCHECK(kEmitCompilerReadBarrier); |
| 7080 | DCHECK(kUseBakerReadBarrier); |
| 7081 | |
Roland Levillain | 3d31242 | 2016-06-23 13:53:42 +0100 | [diff] [blame] | 7082 | static_assert( |
| 7083 | sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t), |
| 7084 | "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes."); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7085 | // /* HeapReference<Object> */ ref = |
| 7086 | // *(obj + data_offset + index * sizeof(HeapReference<Object>)) |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 7087 | Address src = CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_4, data_offset); |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7088 | GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, needs_null_check); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7089 | } |
| 7090 | |
| 7091 | void CodeGeneratorX86_64::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction, |
| 7092 | Location ref, |
| 7093 | CpuRegister obj, |
| 7094 | const Address& src, |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 7095 | bool needs_null_check, |
| 7096 | bool always_update_field, |
| 7097 | CpuRegister* temp1, |
| 7098 | CpuRegister* temp2) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7099 | DCHECK(kEmitCompilerReadBarrier); |
| 7100 | DCHECK(kUseBakerReadBarrier); |
| 7101 | |
| 7102 | // In slow path based read barriers, the read barrier call is |
| 7103 | // inserted after the original load. However, in fast path based |
| 7104 | // Baker's read barriers, we need to perform the load of |
| 7105 | // mirror::Object::monitor_ *before* the original reference load. |
| 7106 | // This load-load ordering is required by the read barrier. |
| 7107 | // The fast path/slow path (for Baker's algorithm) should look like: |
| 7108 | // |
| 7109 | // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState(); |
| 7110 | // lfence; // Load fence or artificial data dependency to prevent load-load reordering |
| 7111 | // HeapReference<Object> ref = *src; // Original reference load. |
Hiroshi Yamauchi | 12b58b2 | 2016-11-01 11:55:29 -0700 | [diff] [blame] | 7112 | // bool is_gray = (rb_state == ReadBarrier::GrayState()); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7113 | // if (is_gray) { |
| 7114 | // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path. |
| 7115 | // } |
| 7116 | // |
| 7117 | // Note: the original implementation in ReadBarrier::Barrier is |
| 7118 | // slightly more complex as: |
| 7119 | // - it implements the load-load fence using a data dependency on |
Roland Levillain | e3f43ac | 2016-01-19 15:07:47 +0000 | [diff] [blame] | 7120 | // the high-bits of rb_state, which are expected to be all zeroes |
| 7121 | // (we use CodeGeneratorX86_64::GenerateMemoryBarrier instead |
| 7122 | // here, which is a no-op thanks to the x86-64 memory model); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7123 | // - it performs additional checks that we do not do here for |
| 7124 | // performance reasons. |
| 7125 | |
| 7126 | CpuRegister ref_reg = ref.AsRegister<CpuRegister>(); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7127 | uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value(); |
| 7128 | |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7129 | // Given the numeric representation, it's enough to check the low bit of the rb_state. |
Roland Levillain | 14e5a29 | 2018-06-28 12:00:56 +0100 | [diff] [blame] | 7130 | static_assert(ReadBarrier::NonGrayState() == 0, "Expecting non-gray to have value 0"); |
Hiroshi Yamauchi | 12b58b2 | 2016-11-01 11:55:29 -0700 | [diff] [blame] | 7131 | static_assert(ReadBarrier::GrayState() == 1, "Expecting gray to have value 1"); |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7132 | constexpr uint32_t gray_byte_position = LockWord::kReadBarrierStateShift / kBitsPerByte; |
| 7133 | constexpr uint32_t gray_bit_position = LockWord::kReadBarrierStateShift % kBitsPerByte; |
| 7134 | constexpr int32_t test_value = static_cast<int8_t>(1 << gray_bit_position); |
| 7135 | |
Hiroshi Yamauchi | 12b58b2 | 2016-11-01 11:55:29 -0700 | [diff] [blame] | 7136 | // if (rb_state == ReadBarrier::GrayState()) |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7137 | // ref = ReadBarrier::Mark(ref); |
| 7138 | // At this point, just do the "if" and make sure that flags are preserved until the branch. |
| 7139 | __ testb(Address(obj, monitor_offset + gray_byte_position), Immediate(test_value)); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7140 | if (needs_null_check) { |
| 7141 | MaybeRecordImplicitNullCheck(instruction); |
| 7142 | } |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7143 | |
| 7144 | // Load fence to prevent load-load reordering. |
| 7145 | // Note that this is a no-op, thanks to the x86-64 memory model. |
| 7146 | GenerateMemoryBarrier(MemBarrierKind::kLoadAny); |
| 7147 | |
| 7148 | // The actual reference load. |
| 7149 | // /* HeapReference<Object> */ ref = *src |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7150 | __ movl(ref_reg, src); // Flags are unaffected. |
| 7151 | |
| 7152 | // Note: Reference unpoisoning modifies the flags, so we need to delay it after the branch. |
| 7153 | // Slow path marking the object `ref` when it is gray. |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 7154 | SlowPathCode* slow_path; |
| 7155 | if (always_update_field) { |
| 7156 | DCHECK(temp1 != nullptr); |
| 7157 | DCHECK(temp2 != nullptr); |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 7158 | slow_path = new (GetScopedAllocator()) ReadBarrierMarkAndUpdateFieldSlowPathX86_64( |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 7159 | instruction, ref, obj, src, /* unpoison_ref_before_marking */ true, *temp1, *temp2); |
| 7160 | } else { |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 7161 | slow_path = new (GetScopedAllocator()) ReadBarrierMarkSlowPathX86_64( |
Roland Levillain | a1aa3b1 | 2016-10-26 13:03:38 +0100 | [diff] [blame] | 7162 | instruction, ref, /* unpoison_ref_before_marking */ true); |
| 7163 | } |
Vladimir Marko | 953437b | 2016-08-24 08:30:46 +0000 | [diff] [blame] | 7164 | AddSlowPath(slow_path); |
| 7165 | |
| 7166 | // We have done the "if" of the gray bit check above, now branch based on the flags. |
| 7167 | __ j(kNotZero, slow_path->GetEntryLabel()); |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7168 | |
| 7169 | // Object* ref = ref_addr->AsMirrorPtr() |
| 7170 | __ MaybeUnpoisonHeapReference(ref_reg); |
| 7171 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7172 | __ Bind(slow_path->GetExitLabel()); |
| 7173 | } |
| 7174 | |
| 7175 | void CodeGeneratorX86_64::GenerateReadBarrierSlow(HInstruction* instruction, |
| 7176 | Location out, |
| 7177 | Location ref, |
| 7178 | Location obj, |
| 7179 | uint32_t offset, |
| 7180 | Location index) { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7181 | DCHECK(kEmitCompilerReadBarrier); |
| 7182 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7183 | // Insert a slow path based read barrier *after* the reference load. |
| 7184 | // |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7185 | // If heap poisoning is enabled, the unpoisoning of the loaded |
| 7186 | // reference will be carried out by the runtime within the slow |
| 7187 | // path. |
| 7188 | // |
| 7189 | // Note that `ref` currently does not get unpoisoned (when heap |
| 7190 | // poisoning is enabled), which is alright as the `ref` argument is |
| 7191 | // not used by the artReadBarrierSlow entry point. |
| 7192 | // |
| 7193 | // TODO: Unpoison `ref` when it is used by artReadBarrierSlow. |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 7194 | SlowPathCode* slow_path = new (GetScopedAllocator()) |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7195 | ReadBarrierForHeapReferenceSlowPathX86_64(instruction, out, ref, obj, offset, index); |
| 7196 | AddSlowPath(slow_path); |
| 7197 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7198 | __ jmp(slow_path->GetEntryLabel()); |
| 7199 | __ Bind(slow_path->GetExitLabel()); |
| 7200 | } |
| 7201 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7202 | void CodeGeneratorX86_64::MaybeGenerateReadBarrierSlow(HInstruction* instruction, |
| 7203 | Location out, |
| 7204 | Location ref, |
| 7205 | Location obj, |
| 7206 | uint32_t offset, |
| 7207 | Location index) { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7208 | if (kEmitCompilerReadBarrier) { |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7209 | // Baker's read barriers shall be handled by the fast path |
| 7210 | // (CodeGeneratorX86_64::GenerateReferenceLoadWithBakerReadBarrier). |
| 7211 | DCHECK(!kUseBakerReadBarrier); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7212 | // If heap poisoning is enabled, unpoisoning will be taken care of |
| 7213 | // by the runtime within the slow path. |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7214 | GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7215 | } else if (kPoisonHeapReferences) { |
| 7216 | __ UnpoisonHeapReference(out.AsRegister<CpuRegister>()); |
| 7217 | } |
| 7218 | } |
| 7219 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7220 | void CodeGeneratorX86_64::GenerateReadBarrierForRootSlow(HInstruction* instruction, |
| 7221 | Location out, |
| 7222 | Location root) { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7223 | DCHECK(kEmitCompilerReadBarrier); |
| 7224 | |
Roland Levillain | 1e7f8db | 2015-12-15 10:54:19 +0000 | [diff] [blame] | 7225 | // Insert a slow path based read barrier *after* the GC root load. |
| 7226 | // |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7227 | // Note that GC roots are not affected by heap poisoning, so we do |
| 7228 | // not need to do anything special for this here. |
| 7229 | SlowPathCode* slow_path = |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 7230 | new (GetScopedAllocator()) ReadBarrierForRootSlowPathX86_64(instruction, out, root); |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7231 | AddSlowPath(slow_path); |
| 7232 | |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 7233 | __ jmp(slow_path->GetEntryLabel()); |
| 7234 | __ Bind(slow_path->GetExitLabel()); |
| 7235 | } |
| 7236 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 7237 | void LocationsBuilderX86_64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) { |
Calin Juravle | b1498f6 | 2015-02-16 13:13:29 +0000 | [diff] [blame] | 7238 | // Nothing to do, this should be removed during prepare for register allocator. |
Calin Juravle | b1498f6 | 2015-02-16 13:13:29 +0000 | [diff] [blame] | 7239 | LOG(FATAL) << "Unreachable"; |
| 7240 | } |
| 7241 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 7242 | void InstructionCodeGeneratorX86_64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) { |
Calin Juravle | b1498f6 | 2015-02-16 13:13:29 +0000 | [diff] [blame] | 7243 | // Nothing to do, this should be removed during prepare for register allocator. |
Calin Juravle | b1498f6 | 2015-02-16 13:13:29 +0000 | [diff] [blame] | 7244 | LOG(FATAL) << "Unreachable"; |
| 7245 | } |
| 7246 | |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 7247 | // Simple implementation of packed switch - generate cascaded compare/jumps. |
| 7248 | void LocationsBuilderX86_64::VisitPackedSwitch(HPackedSwitch* switch_instr) { |
| 7249 | LocationSummary* locations = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 7250 | new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 7251 | locations->SetInAt(0, Location::RequiresRegister()); |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7252 | locations->AddTemp(Location::RequiresRegister()); |
| 7253 | locations->AddTemp(Location::RequiresRegister()); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 7254 | } |
| 7255 | |
| 7256 | void InstructionCodeGeneratorX86_64::VisitPackedSwitch(HPackedSwitch* switch_instr) { |
| 7257 | int32_t lower_bound = switch_instr->GetStartValue(); |
Vladimir Marko | f3e0ee2 | 2015-12-17 15:23:13 +0000 | [diff] [blame] | 7258 | uint32_t num_entries = switch_instr->GetNumEntries(); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 7259 | LocationSummary* locations = switch_instr->GetLocations(); |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7260 | CpuRegister value_reg_in = locations->InAt(0).AsRegister<CpuRegister>(); |
| 7261 | CpuRegister temp_reg = locations->GetTemp(0).AsRegister<CpuRegister>(); |
| 7262 | CpuRegister base_reg = locations->GetTemp(1).AsRegister<CpuRegister>(); |
Vladimir Marko | f3e0ee2 | 2015-12-17 15:23:13 +0000 | [diff] [blame] | 7263 | HBasicBlock* default_block = switch_instr->GetDefaultBlock(); |
| 7264 | |
| 7265 | // Should we generate smaller inline compare/jumps? |
| 7266 | if (num_entries <= kPackedSwitchJumpTableThreshold) { |
| 7267 | // Figure out the correct compare values and jump conditions. |
| 7268 | // Handle the first compare/branch as a special case because it might |
| 7269 | // jump to the default case. |
| 7270 | DCHECK_GT(num_entries, 2u); |
| 7271 | Condition first_condition; |
| 7272 | uint32_t index; |
| 7273 | const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); |
| 7274 | if (lower_bound != 0) { |
| 7275 | first_condition = kLess; |
| 7276 | __ cmpl(value_reg_in, Immediate(lower_bound)); |
| 7277 | __ j(first_condition, codegen_->GetLabelOf(default_block)); |
| 7278 | __ j(kEqual, codegen_->GetLabelOf(successors[0])); |
| 7279 | |
| 7280 | index = 1; |
| 7281 | } else { |
| 7282 | // Handle all the compare/jumps below. |
| 7283 | first_condition = kBelow; |
| 7284 | index = 0; |
| 7285 | } |
| 7286 | |
| 7287 | // Handle the rest of the compare/jumps. |
| 7288 | for (; index + 1 < num_entries; index += 2) { |
| 7289 | int32_t compare_to_value = lower_bound + index + 1; |
| 7290 | __ cmpl(value_reg_in, Immediate(compare_to_value)); |
| 7291 | // Jump to successors[index] if value < case_value[index]. |
| 7292 | __ j(first_condition, codegen_->GetLabelOf(successors[index])); |
| 7293 | // Jump to successors[index + 1] if value == case_value[index + 1]. |
| 7294 | __ j(kEqual, codegen_->GetLabelOf(successors[index + 1])); |
| 7295 | } |
| 7296 | |
| 7297 | if (index != num_entries) { |
| 7298 | // There are an odd number of entries. Handle the last one. |
| 7299 | DCHECK_EQ(index + 1, num_entries); |
Nicolas Geoffray | 6ce0173 | 2015-12-30 14:10:13 +0000 | [diff] [blame] | 7300 | __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index))); |
Vladimir Marko | f3e0ee2 | 2015-12-17 15:23:13 +0000 | [diff] [blame] | 7301 | __ j(kEqual, codegen_->GetLabelOf(successors[index])); |
| 7302 | } |
| 7303 | |
| 7304 | // And the default for any other value. |
| 7305 | if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { |
| 7306 | __ jmp(codegen_->GetLabelOf(default_block)); |
| 7307 | } |
| 7308 | return; |
| 7309 | } |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7310 | |
| 7311 | // Remove the bias, if needed. |
| 7312 | Register value_reg_out = value_reg_in.AsRegister(); |
| 7313 | if (lower_bound != 0) { |
| 7314 | __ leal(temp_reg, Address(value_reg_in, -lower_bound)); |
| 7315 | value_reg_out = temp_reg.AsRegister(); |
| 7316 | } |
| 7317 | CpuRegister value_reg(value_reg_out); |
| 7318 | |
| 7319 | // Is the value in range? |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7320 | __ cmpl(value_reg, Immediate(num_entries - 1)); |
| 7321 | __ j(kAbove, codegen_->GetLabelOf(default_block)); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 7322 | |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7323 | // We are in the range of the table. |
| 7324 | // Load the address of the jump table in the constant area. |
| 7325 | __ leaq(base_reg, codegen_->LiteralCaseTable(switch_instr)); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 7326 | |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7327 | // Load the (signed) offset from the jump table. |
| 7328 | __ movsxd(temp_reg, Address(base_reg, value_reg, TIMES_4, 0)); |
| 7329 | |
| 7330 | // Add the offset to the address of the table base. |
| 7331 | __ addq(temp_reg, base_reg); |
| 7332 | |
| 7333 | // And jump. |
| 7334 | __ jmp(temp_reg); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 7335 | } |
| 7336 | |
xueliang.zhong | e0eb483 | 2017-10-30 13:43:14 +0000 | [diff] [blame] | 7337 | void LocationsBuilderX86_64::VisitIntermediateAddress(HIntermediateAddress* instruction |
| 7338 | ATTRIBUTE_UNUSED) { |
| 7339 | LOG(FATAL) << "Unreachable"; |
| 7340 | } |
| 7341 | |
| 7342 | void InstructionCodeGeneratorX86_64::VisitIntermediateAddress(HIntermediateAddress* instruction |
| 7343 | ATTRIBUTE_UNUSED) { |
| 7344 | LOG(FATAL) << "Unreachable"; |
| 7345 | } |
| 7346 | |
Aart Bik | c5d4754 | 2016-01-27 17:00:35 -0800 | [diff] [blame] | 7347 | void CodeGeneratorX86_64::Load32BitValue(CpuRegister dest, int32_t value) { |
| 7348 | if (value == 0) { |
| 7349 | __ xorl(dest, dest); |
| 7350 | } else { |
| 7351 | __ movl(dest, Immediate(value)); |
| 7352 | } |
| 7353 | } |
| 7354 | |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 7355 | void CodeGeneratorX86_64::Load64BitValue(CpuRegister dest, int64_t value) { |
| 7356 | if (value == 0) { |
Aart Bik | c5d4754 | 2016-01-27 17:00:35 -0800 | [diff] [blame] | 7357 | // Clears upper bits too. |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 7358 | __ xorl(dest, dest); |
Vladimir Marko | ed00978 | 2016-02-22 16:54:39 +0000 | [diff] [blame] | 7359 | } else if (IsUint<32>(value)) { |
| 7360 | // We can use a 32 bit move, as it will zero-extend and is shorter. |
Mark Mendell | 92e83bf | 2015-05-07 11:25:03 -0400 | [diff] [blame] | 7361 | __ movl(dest, Immediate(static_cast<int32_t>(value))); |
| 7362 | } else { |
| 7363 | __ movq(dest, Immediate(value)); |
| 7364 | } |
| 7365 | } |
| 7366 | |
Mark Mendell | 7c0b44f | 2016-02-01 10:08:35 -0500 | [diff] [blame] | 7367 | void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, int32_t value) { |
| 7368 | if (value == 0) { |
| 7369 | __ xorps(dest, dest); |
| 7370 | } else { |
| 7371 | __ movss(dest, LiteralInt32Address(value)); |
| 7372 | } |
| 7373 | } |
| 7374 | |
| 7375 | void CodeGeneratorX86_64::Load64BitValue(XmmRegister dest, int64_t value) { |
| 7376 | if (value == 0) { |
| 7377 | __ xorpd(dest, dest); |
| 7378 | } else { |
| 7379 | __ movsd(dest, LiteralInt64Address(value)); |
| 7380 | } |
| 7381 | } |
| 7382 | |
| 7383 | void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, float value) { |
| 7384 | Load32BitValue(dest, bit_cast<int32_t, float>(value)); |
| 7385 | } |
| 7386 | |
| 7387 | void CodeGeneratorX86_64::Load64BitValue(XmmRegister dest, double value) { |
| 7388 | Load64BitValue(dest, bit_cast<int64_t, double>(value)); |
| 7389 | } |
| 7390 | |
Aart Bik | a19616e | 2016-02-01 18:57:58 -0800 | [diff] [blame] | 7391 | void CodeGeneratorX86_64::Compare32BitValue(CpuRegister dest, int32_t value) { |
| 7392 | if (value == 0) { |
| 7393 | __ testl(dest, dest); |
| 7394 | } else { |
| 7395 | __ cmpl(dest, Immediate(value)); |
| 7396 | } |
| 7397 | } |
| 7398 | |
| 7399 | void CodeGeneratorX86_64::Compare64BitValue(CpuRegister dest, int64_t value) { |
| 7400 | if (IsInt<32>(value)) { |
| 7401 | if (value == 0) { |
| 7402 | __ testq(dest, dest); |
| 7403 | } else { |
| 7404 | __ cmpq(dest, Immediate(static_cast<int32_t>(value))); |
| 7405 | } |
| 7406 | } else { |
| 7407 | // Value won't fit in an int. |
| 7408 | __ cmpq(dest, LiteralInt64Address(value)); |
| 7409 | } |
| 7410 | } |
| 7411 | |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 7412 | void CodeGeneratorX86_64::GenerateIntCompare(Location lhs, Location rhs) { |
| 7413 | CpuRegister lhs_reg = lhs.AsRegister<CpuRegister>(); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 7414 | GenerateIntCompare(lhs_reg, rhs); |
| 7415 | } |
| 7416 | |
| 7417 | void CodeGeneratorX86_64::GenerateIntCompare(CpuRegister lhs, Location rhs) { |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 7418 | if (rhs.IsConstant()) { |
| 7419 | int32_t value = CodeGenerator::GetInt32ValueOf(rhs.GetConstant()); |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 7420 | Compare32BitValue(lhs, value); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 7421 | } else if (rhs.IsStackSlot()) { |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 7422 | __ cmpl(lhs, Address(CpuRegister(RSP), rhs.GetStackIndex())); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 7423 | } else { |
jessicahandojo | 4877b79 | 2016-09-08 19:49:13 -0700 | [diff] [blame] | 7424 | __ cmpl(lhs, rhs.AsRegister<CpuRegister>()); |
Vladimir Marko | 56f4bdd | 2016-09-16 11:32:36 +0100 | [diff] [blame] | 7425 | } |
| 7426 | } |
| 7427 | |
| 7428 | void CodeGeneratorX86_64::GenerateLongCompare(Location lhs, Location rhs) { |
| 7429 | CpuRegister lhs_reg = lhs.AsRegister<CpuRegister>(); |
| 7430 | if (rhs.IsConstant()) { |
| 7431 | int64_t value = rhs.GetConstant()->AsLongConstant()->GetValue(); |
| 7432 | Compare64BitValue(lhs_reg, value); |
| 7433 | } else if (rhs.IsDoubleStackSlot()) { |
| 7434 | __ cmpq(lhs_reg, Address(CpuRegister(RSP), rhs.GetStackIndex())); |
| 7435 | } else { |
| 7436 | __ cmpq(lhs_reg, rhs.AsRegister<CpuRegister>()); |
| 7437 | } |
| 7438 | } |
| 7439 | |
| 7440 | Address CodeGeneratorX86_64::ArrayAddress(CpuRegister obj, |
| 7441 | Location index, |
| 7442 | ScaleFactor scale, |
| 7443 | uint32_t data_offset) { |
| 7444 | return index.IsConstant() ? |
| 7445 | Address(obj, (index.GetConstant()->AsIntConstant()->GetValue() << scale) + data_offset) : |
| 7446 | Address(obj, index.AsRegister<CpuRegister>(), scale, data_offset); |
| 7447 | } |
| 7448 | |
Mark Mendell | cfa410b | 2015-05-25 16:02:44 -0400 | [diff] [blame] | 7449 | void CodeGeneratorX86_64::Store64BitValueToStack(Location dest, int64_t value) { |
| 7450 | DCHECK(dest.IsDoubleStackSlot()); |
| 7451 | if (IsInt<32>(value)) { |
| 7452 | // Can move directly as an int32 constant. |
| 7453 | __ movq(Address(CpuRegister(RSP), dest.GetStackIndex()), |
| 7454 | Immediate(static_cast<int32_t>(value))); |
| 7455 | } else { |
| 7456 | Load64BitValue(CpuRegister(TMP), value); |
| 7457 | __ movq(Address(CpuRegister(RSP), dest.GetStackIndex()), CpuRegister(TMP)); |
| 7458 | } |
| 7459 | } |
| 7460 | |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7461 | /** |
| 7462 | * Class to handle late fixup of offsets into constant area. |
| 7463 | */ |
| 7464 | class RIPFixup : public AssemblerFixup, public ArenaObject<kArenaAllocCodeGenerator> { |
| 7465 | public: |
| 7466 | RIPFixup(CodeGeneratorX86_64& codegen, size_t offset) |
| 7467 | : codegen_(&codegen), offset_into_constant_area_(offset) {} |
| 7468 | |
| 7469 | protected: |
| 7470 | void SetOffset(size_t offset) { offset_into_constant_area_ = offset; } |
| 7471 | |
| 7472 | CodeGeneratorX86_64* codegen_; |
| 7473 | |
| 7474 | private: |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 7475 | void Process(const MemoryRegion& region, int pos) override { |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7476 | // Patch the correct offset for the instruction. We use the address of the |
| 7477 | // 'next' instruction, which is 'pos' (patch the 4 bytes before). |
| 7478 | int32_t constant_offset = codegen_->ConstantAreaStart() + offset_into_constant_area_; |
| 7479 | int32_t relative_position = constant_offset - pos; |
| 7480 | |
| 7481 | // Patch in the right value. |
| 7482 | region.StoreUnaligned<int32_t>(pos - 4, relative_position); |
| 7483 | } |
| 7484 | |
| 7485 | // Location in constant area that the fixup refers to. |
| 7486 | size_t offset_into_constant_area_; |
| 7487 | }; |
| 7488 | |
| 7489 | /** |
| 7490 | t * Class to handle late fixup of offsets to a jump table that will be created in the |
| 7491 | * constant area. |
| 7492 | */ |
| 7493 | class JumpTableRIPFixup : public RIPFixup { |
| 7494 | public: |
| 7495 | JumpTableRIPFixup(CodeGeneratorX86_64& codegen, HPackedSwitch* switch_instr) |
| 7496 | : RIPFixup(codegen, -1), switch_instr_(switch_instr) {} |
| 7497 | |
| 7498 | void CreateJumpTable() { |
| 7499 | X86_64Assembler* assembler = codegen_->GetAssembler(); |
| 7500 | |
| 7501 | // Ensure that the reference to the jump table has the correct offset. |
| 7502 | const int32_t offset_in_constant_table = assembler->ConstantAreaSize(); |
| 7503 | SetOffset(offset_in_constant_table); |
| 7504 | |
| 7505 | // Compute the offset from the start of the function to this jump table. |
| 7506 | const int32_t current_table_offset = assembler->CodeSize() + offset_in_constant_table; |
| 7507 | |
| 7508 | // Populate the jump table with the correct values for the jump table. |
| 7509 | int32_t num_entries = switch_instr_->GetNumEntries(); |
| 7510 | HBasicBlock* block = switch_instr_->GetBlock(); |
| 7511 | const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors(); |
| 7512 | // The value that we want is the target offset - the position of the table. |
| 7513 | for (int32_t i = 0; i < num_entries; i++) { |
| 7514 | HBasicBlock* b = successors[i]; |
| 7515 | Label* l = codegen_->GetLabelOf(b); |
| 7516 | DCHECK(l->IsBound()); |
| 7517 | int32_t offset_to_block = l->Position() - current_table_offset; |
| 7518 | assembler->AppendInt32(offset_to_block); |
| 7519 | } |
| 7520 | } |
| 7521 | |
| 7522 | private: |
| 7523 | const HPackedSwitch* switch_instr_; |
| 7524 | }; |
| 7525 | |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 7526 | void CodeGeneratorX86_64::Finalize(CodeAllocator* allocator) { |
| 7527 | // Generate the constant area if needed. |
Mark Mendell | 39dcf55 | 2015-04-09 20:42:42 -0400 | [diff] [blame] | 7528 | X86_64Assembler* assembler = GetAssembler(); |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7529 | if (!assembler->IsConstantAreaEmpty() || !fixups_to_jump_tables_.empty()) { |
| 7530 | // Align to 4 byte boundary to reduce cache misses, as the data is 4 and 8 byte values. |
Mark Mendell | 39dcf55 | 2015-04-09 20:42:42 -0400 | [diff] [blame] | 7531 | assembler->Align(4, 0); |
| 7532 | constant_area_start_ = assembler->CodeSize(); |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7533 | |
| 7534 | // Populate any jump tables. |
Vladimir Marko | 7d157fc | 2017-05-10 16:29:23 +0100 | [diff] [blame] | 7535 | for (JumpTableRIPFixup* jump_table : fixups_to_jump_tables_) { |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7536 | jump_table->CreateJumpTable(); |
| 7537 | } |
| 7538 | |
| 7539 | // And now add the constant area to the generated code. |
Mark Mendell | 39dcf55 | 2015-04-09 20:42:42 -0400 | [diff] [blame] | 7540 | assembler->AddConstantArea(); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 7541 | } |
| 7542 | |
| 7543 | // And finish up. |
| 7544 | CodeGenerator::Finalize(allocator); |
| 7545 | } |
| 7546 | |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 7547 | Address CodeGeneratorX86_64::LiteralDoubleAddress(double v) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 7548 | AssemblerFixup* fixup = new (GetGraph()->GetAllocator()) RIPFixup(*this, __ AddDouble(v)); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 7549 | return Address::RIP(fixup); |
| 7550 | } |
| 7551 | |
| 7552 | Address CodeGeneratorX86_64::LiteralFloatAddress(float v) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 7553 | AssemblerFixup* fixup = new (GetGraph()->GetAllocator()) RIPFixup(*this, __ AddFloat(v)); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 7554 | return Address::RIP(fixup); |
| 7555 | } |
| 7556 | |
| 7557 | Address CodeGeneratorX86_64::LiteralInt32Address(int32_t v) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 7558 | AssemblerFixup* fixup = new (GetGraph()->GetAllocator()) RIPFixup(*this, __ AddInt32(v)); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 7559 | return Address::RIP(fixup); |
| 7560 | } |
| 7561 | |
| 7562 | Address CodeGeneratorX86_64::LiteralInt64Address(int64_t v) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 7563 | AssemblerFixup* fixup = new (GetGraph()->GetAllocator()) RIPFixup(*this, __ AddInt64(v)); |
Mark Mendell | f55c3e0 | 2015-03-26 21:07:46 -0400 | [diff] [blame] | 7564 | return Address::RIP(fixup); |
| 7565 | } |
| 7566 | |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 7567 | // TODO: trg as memory. |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 7568 | void CodeGeneratorX86_64::MoveFromReturnRegister(Location trg, DataType::Type type) { |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 7569 | if (!trg.IsValid()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 7570 | DCHECK_EQ(type, DataType::Type::kVoid); |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 7571 | return; |
| 7572 | } |
| 7573 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 7574 | DCHECK_NE(type, DataType::Type::kVoid); |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 7575 | |
| 7576 | Location return_loc = InvokeDexCallingConventionVisitorX86_64().GetReturnLocation(type); |
| 7577 | if (trg.Equals(return_loc)) { |
| 7578 | return; |
| 7579 | } |
| 7580 | |
| 7581 | // Let the parallel move resolver take care of all of this. |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 7582 | HParallelMove parallel_move(GetGraph()->GetAllocator()); |
Andreas Gampe | 85b62f2 | 2015-09-09 13:15:38 -0700 | [diff] [blame] | 7583 | parallel_move.AddMove(return_loc, trg, type, nullptr); |
| 7584 | GetMoveResolver()->EmitNativeCode(¶llel_move); |
| 7585 | } |
| 7586 | |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7587 | Address CodeGeneratorX86_64::LiteralCaseTable(HPackedSwitch* switch_instr) { |
| 7588 | // Create a fixup to be used to create and address the jump table. |
| 7589 | JumpTableRIPFixup* table_fixup = |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 7590 | new (GetGraph()->GetAllocator()) JumpTableRIPFixup(*this, switch_instr); |
Mark Mendell | 9c86b48 | 2015-09-18 13:36:07 -0400 | [diff] [blame] | 7591 | |
| 7592 | // We have to populate the jump tables. |
| 7593 | fixups_to_jump_tables_.push_back(table_fixup); |
| 7594 | return Address::RIP(table_fixup); |
| 7595 | } |
| 7596 | |
Mark Mendell | ea5af68 | 2015-10-22 17:35:49 -0400 | [diff] [blame] | 7597 | void CodeGeneratorX86_64::MoveInt64ToAddress(const Address& addr_low, |
| 7598 | const Address& addr_high, |
| 7599 | int64_t v, |
| 7600 | HInstruction* instruction) { |
| 7601 | if (IsInt<32>(v)) { |
| 7602 | int32_t v_32 = v; |
| 7603 | __ movq(addr_low, Immediate(v_32)); |
| 7604 | MaybeRecordImplicitNullCheck(instruction); |
| 7605 | } else { |
| 7606 | // Didn't fit in a register. Do it in pieces. |
| 7607 | int32_t low_v = Low32Bits(v); |
| 7608 | int32_t high_v = High32Bits(v); |
| 7609 | __ movl(addr_low, Immediate(low_v)); |
| 7610 | MaybeRecordImplicitNullCheck(instruction); |
| 7611 | __ movl(addr_high, Immediate(high_v)); |
| 7612 | } |
| 7613 | } |
| 7614 | |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 7615 | void CodeGeneratorX86_64::PatchJitRootUse(uint8_t* code, |
| 7616 | const uint8_t* roots_data, |
| 7617 | const PatchInfo<Label>& info, |
| 7618 | uint64_t index_in_table) const { |
| 7619 | uint32_t code_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment; |
| 7620 | uintptr_t address = |
| 7621 | reinterpret_cast<uintptr_t>(roots_data) + index_in_table * sizeof(GcRoot<mirror::Object>); |
Andreas Gampe | c55bb39 | 2018-09-21 00:02:02 +0000 | [diff] [blame] | 7622 | using unaligned_uint32_t __attribute__((__aligned__(1))) = uint32_t; |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 7623 | reinterpret_cast<unaligned_uint32_t*>(code + code_offset)[0] = |
| 7624 | dchecked_integral_cast<uint32_t>(address); |
| 7625 | } |
| 7626 | |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 7627 | void CodeGeneratorX86_64::EmitJitRootPatches(uint8_t* code, const uint8_t* roots_data) { |
| 7628 | for (const PatchInfo<Label>& info : jit_string_patches_) { |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 7629 | StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 7630 | uint64_t index_in_table = GetJitStringRootIndex(string_reference); |
Vladimir Marko | 7d157fc | 2017-05-10 16:29:23 +0100 | [diff] [blame] | 7631 | PatchJitRootUse(code, roots_data, info, index_in_table); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 7632 | } |
| 7633 | |
| 7634 | for (const PatchInfo<Label>& info : jit_class_patches_) { |
Vladimir Marko | 59eb30f | 2018-02-20 11:52:34 +0000 | [diff] [blame] | 7635 | TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 7636 | uint64_t index_in_table = GetJitClassRootIndex(type_reference); |
Vladimir Marko | 7d157fc | 2017-05-10 16:29:23 +0100 | [diff] [blame] | 7637 | PatchJitRootUse(code, roots_data, info, index_in_table); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 7638 | } |
| 7639 | } |
| 7640 | |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 7641 | #undef __ |
| 7642 | |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 7643 | } // namespace x86_64 |
| 7644 | } // namespace art |