Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +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 "ssa_builder.h" |
Nicolas Geoffray | 184d640 | 2014-06-09 14:06:02 +0100 | [diff] [blame] | 18 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 19 | #include "bytecode_utils.h" |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 20 | #include "nodes.h" |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 21 | #include "reference_type_propagation.h" |
Nicolas Geoffray | 3159674 | 2014-11-24 15:28:45 +0000 | [diff] [blame] | 22 | #include "ssa_phi_elimination.h" |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 23 | |
| 24 | namespace art { |
| 25 | |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 26 | void SsaBuilder::FixNullConstantType() { |
| 27 | // The order doesn't matter here. |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 28 | for (HReversePostOrderIterator itb(*graph_); !itb.Done(); itb.Advance()) { |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 29 | for (HInstructionIterator it(itb.Current()->GetInstructions()); !it.Done(); it.Advance()) { |
| 30 | HInstruction* equality_instr = it.Current(); |
| 31 | if (!equality_instr->IsEqual() && !equality_instr->IsNotEqual()) { |
| 32 | continue; |
| 33 | } |
| 34 | HInstruction* left = equality_instr->InputAt(0); |
| 35 | HInstruction* right = equality_instr->InputAt(1); |
Nicolas Geoffray | 51d400d | 2015-06-15 09:01:08 +0100 | [diff] [blame] | 36 | HInstruction* int_operand = nullptr; |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 37 | |
Nicolas Geoffray | 51d400d | 2015-06-15 09:01:08 +0100 | [diff] [blame] | 38 | if ((left->GetType() == Primitive::kPrimNot) && (right->GetType() == Primitive::kPrimInt)) { |
| 39 | int_operand = right; |
| 40 | } else if ((right->GetType() == Primitive::kPrimNot) |
| 41 | && (left->GetType() == Primitive::kPrimInt)) { |
| 42 | int_operand = left; |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 43 | } else { |
| 44 | continue; |
| 45 | } |
| 46 | |
| 47 | // If we got here, we are comparing against a reference and the int constant |
| 48 | // should be replaced with a null constant. |
Nicolas Geoffray | 51d400d | 2015-06-15 09:01:08 +0100 | [diff] [blame] | 49 | // Both type propagation and redundant phi elimination ensure `int_operand` |
| 50 | // can only be the 0 constant. |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 51 | DCHECK(int_operand->IsIntConstant()) << int_operand->DebugName(); |
Nicolas Geoffray | 51d400d | 2015-06-15 09:01:08 +0100 | [diff] [blame] | 52 | DCHECK_EQ(0, int_operand->AsIntConstant()->GetValue()); |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 53 | equality_instr->ReplaceInput(graph_->GetNullConstant(), int_operand == right ? 1 : 0); |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | void SsaBuilder::EquivalentPhisCleanup() { |
| 59 | // The order doesn't matter here. |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 60 | for (HReversePostOrderIterator itb(*graph_); !itb.Done(); itb.Advance()) { |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 61 | for (HInstructionIterator it(itb.Current()->GetPhis()); !it.Done(); it.Advance()) { |
| 62 | HPhi* phi = it.Current()->AsPhi(); |
| 63 | HPhi* next = phi->GetNextEquivalentPhiWithSameType(); |
| 64 | if (next != nullptr) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 65 | // Make sure we do not replace a live phi with a dead phi. A live phi |
| 66 | // has been handled by the type propagation phase, unlike a dead phi. |
Nicolas Geoffray | 4230e18 | 2015-06-29 14:34:46 +0100 | [diff] [blame] | 67 | if (next->IsLive()) { |
| 68 | phi->ReplaceWith(next); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 69 | phi->SetDead(); |
Nicolas Geoffray | 4230e18 | 2015-06-29 14:34:46 +0100 | [diff] [blame] | 70 | } else { |
| 71 | next->ReplaceWith(phi); |
| 72 | } |
Calin Juravle | a4f8831 | 2015-04-16 12:57:19 +0100 | [diff] [blame] | 73 | DCHECK(next->GetNextEquivalentPhiWithSameType() == nullptr) |
| 74 | << "More then one phi equivalent with type " << phi->GetType() |
| 75 | << " found for phi" << phi->GetId(); |
| 76 | } |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 81 | void SsaBuilder::FixEnvironmentPhis() { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 82 | for (HReversePostOrderIterator it(*graph_); !it.Done(); it.Advance()) { |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 83 | HBasicBlock* block = it.Current(); |
| 84 | for (HInstructionIterator it_phis(block->GetPhis()); !it_phis.Done(); it_phis.Advance()) { |
| 85 | HPhi* phi = it_phis.Current()->AsPhi(); |
| 86 | // If the phi is not dead, or has no environment uses, there is nothing to do. |
| 87 | if (!phi->IsDead() || !phi->HasEnvironmentUses()) continue; |
| 88 | HInstruction* next = phi->GetNext(); |
David Brazdil | d0180f9 | 2015-09-22 14:39:58 +0100 | [diff] [blame] | 89 | if (!phi->IsVRegEquivalentOf(next)) continue; |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 90 | if (next->AsPhi()->IsDead()) { |
| 91 | // If the phi equivalent is dead, check if there is another one. |
| 92 | next = next->GetNext(); |
David Brazdil | d0180f9 | 2015-09-22 14:39:58 +0100 | [diff] [blame] | 93 | if (!phi->IsVRegEquivalentOf(next)) continue; |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 94 | // There can be at most two phi equivalents. |
David Brazdil | d0180f9 | 2015-09-22 14:39:58 +0100 | [diff] [blame] | 95 | DCHECK(!phi->IsVRegEquivalentOf(next->GetNext())); |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 96 | if (next->AsPhi()->IsDead()) continue; |
| 97 | } |
| 98 | // We found a live phi equivalent. Update the environment uses of `phi` with it. |
| 99 | phi->ReplaceWith(next); |
| 100 | } |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 101 | } |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 102 | } |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 103 | |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 104 | static void AddDependentInstructionsToWorklist(HInstruction* instruction, |
| 105 | ArenaVector<HPhi*>* worklist) { |
| 106 | // If `instruction` is a dead phi, type conflict was just identified. All its |
| 107 | // live phi users, and transitively users of those users, therefore need to be |
| 108 | // marked dead/conflicting too, so we add them to the worklist. Otherwise we |
| 109 | // add users whose type does not match and needs to be updated. |
| 110 | bool add_all_live_phis = instruction->IsPhi() && instruction->AsPhi()->IsDead(); |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 111 | for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { |
| 112 | HInstruction* user = use.GetUser(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 113 | if (user->IsPhi() && user->AsPhi()->IsLive()) { |
| 114 | if (add_all_live_phis || user->GetType() != instruction->GetType()) { |
| 115 | worklist->push_back(user->AsPhi()); |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | // Find a candidate primitive type for `phi` by merging the type of its inputs. |
| 122 | // Return false if conflict is identified. |
| 123 | static bool TypePhiFromInputs(HPhi* phi) { |
| 124 | Primitive::Type common_type = phi->GetType(); |
| 125 | |
| 126 | for (HInputIterator it(phi); !it.Done(); it.Advance()) { |
| 127 | HInstruction* input = it.Current(); |
| 128 | if (input->IsPhi() && input->AsPhi()->IsDead()) { |
| 129 | // Phis are constructed live so if an input is a dead phi, it must have |
| 130 | // been made dead due to type conflict. Mark this phi conflicting too. |
| 131 | return false; |
| 132 | } |
| 133 | |
| 134 | Primitive::Type input_type = HPhi::ToPhiType(input->GetType()); |
| 135 | if (common_type == input_type) { |
| 136 | // No change in type. |
David Brazdil | d87f3ea | 2016-01-04 15:55:10 +0000 | [diff] [blame] | 137 | } else if (Primitive::Is64BitType(common_type) != Primitive::Is64BitType(input_type)) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 138 | // Types are of different sizes, e.g. int vs. long. Must be a conflict. |
| 139 | return false; |
| 140 | } else if (Primitive::IsIntegralType(common_type)) { |
| 141 | // Previous inputs were integral, this one is not but is of the same size. |
| 142 | // This does not imply conflict since some bytecode instruction types are |
| 143 | // ambiguous. TypeInputsOfPhi will either type them or detect a conflict. |
| 144 | DCHECK(Primitive::IsFloatingPointType(input_type) || input_type == Primitive::kPrimNot); |
| 145 | common_type = input_type; |
| 146 | } else if (Primitive::IsIntegralType(input_type)) { |
| 147 | // Input is integral, common type is not. Same as in the previous case, if |
| 148 | // there is a conflict, it will be detected during TypeInputsOfPhi. |
| 149 | DCHECK(Primitive::IsFloatingPointType(common_type) || common_type == Primitive::kPrimNot); |
| 150 | } else { |
| 151 | // Combining float and reference types. Clearly a conflict. |
| 152 | DCHECK((common_type == Primitive::kPrimFloat && input_type == Primitive::kPrimNot) || |
| 153 | (common_type == Primitive::kPrimNot && input_type == Primitive::kPrimFloat)); |
| 154 | return false; |
| 155 | } |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 156 | } |
| 157 | |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 158 | // We have found a candidate type for the phi. Set it and return true. We may |
| 159 | // still discover conflict whilst typing the individual inputs in TypeInputsOfPhi. |
| 160 | phi->SetType(common_type); |
| 161 | return true; |
| 162 | } |
David Brazdil | d9510df | 2015-11-04 23:30:22 +0000 | [diff] [blame] | 163 | |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 164 | // Replace inputs of `phi` to match its type. Return false if conflict is identified. |
| 165 | bool SsaBuilder::TypeInputsOfPhi(HPhi* phi, ArenaVector<HPhi*>* worklist) { |
| 166 | Primitive::Type common_type = phi->GetType(); |
| 167 | if (common_type == Primitive::kPrimVoid || Primitive::IsIntegralType(common_type)) { |
| 168 | // Phi either contains only other untyped phis (common_type == kPrimVoid), |
| 169 | // or `common_type` is integral and we do not need to retype ambiguous inputs |
| 170 | // because they are always constructed with the integral type candidate. |
| 171 | if (kIsDebugBuild) { |
| 172 | for (size_t i = 0, e = phi->InputCount(); i < e; ++i) { |
| 173 | HInstruction* input = phi->InputAt(i); |
| 174 | if (common_type == Primitive::kPrimVoid) { |
| 175 | DCHECK(input->IsPhi() && input->GetType() == Primitive::kPrimVoid); |
| 176 | } else { |
| 177 | DCHECK((input->IsPhi() && input->GetType() == Primitive::kPrimVoid) || |
| 178 | HPhi::ToPhiType(input->GetType()) == common_type); |
| 179 | } |
| 180 | } |
| 181 | } |
| 182 | // Inputs did not need to be replaced, hence no conflict. Report success. |
| 183 | return true; |
| 184 | } else { |
| 185 | DCHECK(common_type == Primitive::kPrimNot || Primitive::IsFloatingPointType(common_type)); |
| 186 | for (size_t i = 0, e = phi->InputCount(); i < e; ++i) { |
| 187 | HInstruction* input = phi->InputAt(i); |
| 188 | if (input->GetType() != common_type) { |
| 189 | // Input type does not match phi's type. Try to retype the input or |
| 190 | // generate a suitably typed equivalent. |
| 191 | HInstruction* equivalent = (common_type == Primitive::kPrimNot) |
| 192 | ? GetReferenceTypeEquivalent(input) |
| 193 | : GetFloatOrDoubleEquivalent(input, common_type); |
| 194 | if (equivalent == nullptr) { |
| 195 | // Input could not be typed. Report conflict. |
| 196 | return false; |
| 197 | } |
| 198 | // Make sure the input did not change its type and we do not need to |
| 199 | // update its users. |
| 200 | DCHECK_NE(input, equivalent); |
| 201 | |
| 202 | phi->ReplaceInput(equivalent, i); |
| 203 | if (equivalent->IsPhi()) { |
| 204 | worklist->push_back(equivalent->AsPhi()); |
| 205 | } |
| 206 | } |
| 207 | } |
| 208 | // All inputs either matched the type of the phi or we successfully replaced |
| 209 | // them with a suitable equivalent. Report success. |
| 210 | return true; |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | // Attempt to set the primitive type of `phi` to match its inputs. Return whether |
| 215 | // it was changed by the algorithm or not. |
| 216 | bool SsaBuilder::UpdatePrimitiveType(HPhi* phi, ArenaVector<HPhi*>* worklist) { |
| 217 | DCHECK(phi->IsLive()); |
| 218 | Primitive::Type original_type = phi->GetType(); |
| 219 | |
| 220 | // Try to type the phi in two stages: |
| 221 | // (1) find a candidate type for the phi by merging types of all its inputs, |
| 222 | // (2) try to type the phi's inputs to that candidate type. |
| 223 | // Either of these stages may detect a type conflict and fail, in which case |
| 224 | // we immediately abort. |
| 225 | if (!TypePhiFromInputs(phi) || !TypeInputsOfPhi(phi, worklist)) { |
| 226 | // Conflict detected. Mark the phi dead and return true because it changed. |
| 227 | phi->SetDead(); |
| 228 | return true; |
| 229 | } |
| 230 | |
| 231 | // Return true if the type of the phi has changed. |
| 232 | return phi->GetType() != original_type; |
| 233 | } |
| 234 | |
| 235 | void SsaBuilder::RunPrimitiveTypePropagation() { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 236 | ArenaVector<HPhi*> worklist(graph_->GetArena()->Adapter()); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 237 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 238 | for (HReversePostOrderIterator it(*graph_); !it.Done(); it.Advance()) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 239 | HBasicBlock* block = it.Current(); |
| 240 | if (block->IsLoopHeader()) { |
| 241 | for (HInstructionIterator phi_it(block->GetPhis()); !phi_it.Done(); phi_it.Advance()) { |
| 242 | HPhi* phi = phi_it.Current()->AsPhi(); |
| 243 | if (phi->IsLive()) { |
| 244 | worklist.push_back(phi); |
| 245 | } |
| 246 | } |
| 247 | } else { |
| 248 | for (HInstructionIterator phi_it(block->GetPhis()); !phi_it.Done(); phi_it.Advance()) { |
| 249 | // Eagerly compute the type of the phi, for quicker convergence. Note |
| 250 | // that we don't need to add users to the worklist because we are |
| 251 | // doing a reverse post-order visit, therefore either the phi users are |
| 252 | // non-loop phi and will be visited later in the visit, or are loop-phis, |
| 253 | // and they are already in the work list. |
| 254 | HPhi* phi = phi_it.Current()->AsPhi(); |
| 255 | if (phi->IsLive()) { |
| 256 | UpdatePrimitiveType(phi, &worklist); |
| 257 | } |
| 258 | } |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | ProcessPrimitiveTypePropagationWorklist(&worklist); |
| 263 | EquivalentPhisCleanup(); |
| 264 | } |
| 265 | |
| 266 | void SsaBuilder::ProcessPrimitiveTypePropagationWorklist(ArenaVector<HPhi*>* worklist) { |
| 267 | // Process worklist |
| 268 | while (!worklist->empty()) { |
| 269 | HPhi* phi = worklist->back(); |
| 270 | worklist->pop_back(); |
| 271 | // The phi could have been made dead as a result of conflicts while in the |
| 272 | // worklist. If it is now dead, there is no point in updating its type. |
| 273 | if (phi->IsLive() && UpdatePrimitiveType(phi, worklist)) { |
| 274 | AddDependentInstructionsToWorklist(phi, worklist); |
| 275 | } |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | static HArrayGet* FindFloatOrDoubleEquivalentOfArrayGet(HArrayGet* aget) { |
| 280 | Primitive::Type type = aget->GetType(); |
| 281 | DCHECK(Primitive::IsIntOrLongType(type)); |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 282 | HInstruction* next = aget->GetNext(); |
| 283 | if (next != nullptr && next->IsArrayGet()) { |
| 284 | HArrayGet* next_aget = next->AsArrayGet(); |
| 285 | if (next_aget->IsEquivalentOf(aget)) { |
| 286 | return next_aget; |
| 287 | } |
| 288 | } |
| 289 | return nullptr; |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | static HArrayGet* CreateFloatOrDoubleEquivalentOfArrayGet(HArrayGet* aget) { |
| 293 | Primitive::Type type = aget->GetType(); |
| 294 | DCHECK(Primitive::IsIntOrLongType(type)); |
| 295 | DCHECK(FindFloatOrDoubleEquivalentOfArrayGet(aget) == nullptr); |
| 296 | |
| 297 | HArrayGet* equivalent = new (aget->GetBlock()->GetGraph()->GetArena()) HArrayGet( |
| 298 | aget->GetArray(), |
| 299 | aget->GetIndex(), |
| 300 | type == Primitive::kPrimInt ? Primitive::kPrimFloat : Primitive::kPrimDouble, |
| 301 | aget->GetDexPc()); |
| 302 | aget->GetBlock()->InsertInstructionAfter(equivalent, aget); |
| 303 | return equivalent; |
| 304 | } |
| 305 | |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 306 | static Primitive::Type GetPrimitiveArrayComponentType(HInstruction* array) |
| 307 | SHARED_REQUIRES(Locks::mutator_lock_) { |
| 308 | ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 309 | DCHECK(array_type.IsPrimitiveArrayClass()); |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 310 | return array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 311 | } |
| 312 | |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 313 | bool SsaBuilder::FixAmbiguousArrayOps() { |
| 314 | if (ambiguous_agets_.empty() && ambiguous_asets_.empty()) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 315 | return true; |
| 316 | } |
| 317 | |
| 318 | // The wrong ArrayGet equivalent may still have Phi uses coming from ArraySet |
| 319 | // uses (because they are untyped) and environment uses (if --debuggable). |
| 320 | // After resolving all ambiguous ArrayGets, we will re-run primitive type |
| 321 | // propagation on the Phis which need to be updated. |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 322 | ArenaVector<HPhi*> worklist(graph_->GetArena()->Adapter()); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 323 | |
| 324 | { |
| 325 | ScopedObjectAccess soa(Thread::Current()); |
| 326 | |
| 327 | for (HArrayGet* aget_int : ambiguous_agets_) { |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 328 | HInstruction* array = aget_int->GetArray(); |
| 329 | if (!array->GetReferenceTypeInfo().IsPrimitiveArrayClass()) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 330 | // RTP did not type the input array. Bail. |
| 331 | return false; |
| 332 | } |
| 333 | |
| 334 | HArrayGet* aget_float = FindFloatOrDoubleEquivalentOfArrayGet(aget_int); |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 335 | Primitive::Type array_type = GetPrimitiveArrayComponentType(array); |
| 336 | DCHECK_EQ(Primitive::Is64BitType(aget_int->GetType()), Primitive::Is64BitType(array_type)); |
| 337 | |
| 338 | if (Primitive::IsIntOrLongType(array_type)) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 339 | if (aget_float != nullptr) { |
| 340 | // There is a float/double equivalent. We must replace it and re-run |
| 341 | // primitive type propagation on all dependent instructions. |
| 342 | aget_float->ReplaceWith(aget_int); |
| 343 | aget_float->GetBlock()->RemoveInstruction(aget_float); |
| 344 | AddDependentInstructionsToWorklist(aget_int, &worklist); |
| 345 | } |
| 346 | } else { |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 347 | DCHECK(Primitive::IsFloatingPointType(array_type)); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 348 | if (aget_float == nullptr) { |
| 349 | // This is a float/double ArrayGet but there were no typed uses which |
| 350 | // would create the typed equivalent. Create it now. |
| 351 | aget_float = CreateFloatOrDoubleEquivalentOfArrayGet(aget_int); |
| 352 | } |
| 353 | // Replace the original int/long instruction. Note that it may have phi |
| 354 | // uses, environment uses, as well as real uses (from untyped ArraySets). |
| 355 | // We need to re-run primitive type propagation on its dependent instructions. |
| 356 | aget_int->ReplaceWith(aget_float); |
| 357 | aget_int->GetBlock()->RemoveInstruction(aget_int); |
| 358 | AddDependentInstructionsToWorklist(aget_float, &worklist); |
| 359 | } |
| 360 | } |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 361 | |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 362 | // Set a flag stating that types of ArrayGets have been resolved. Requesting |
| 363 | // equivalent of the wrong type with GetFloatOrDoubleEquivalentOfArrayGet |
| 364 | // will fail from now on. |
| 365 | agets_fixed_ = true; |
| 366 | |
| 367 | for (HArraySet* aset : ambiguous_asets_) { |
| 368 | HInstruction* array = aset->GetArray(); |
| 369 | if (!array->GetReferenceTypeInfo().IsPrimitiveArrayClass()) { |
| 370 | // RTP did not type the input array. Bail. |
| 371 | return false; |
| 372 | } |
| 373 | |
| 374 | HInstruction* value = aset->GetValue(); |
| 375 | Primitive::Type value_type = value->GetType(); |
| 376 | Primitive::Type array_type = GetPrimitiveArrayComponentType(array); |
| 377 | DCHECK_EQ(Primitive::Is64BitType(value_type), Primitive::Is64BitType(array_type)); |
| 378 | |
| 379 | if (Primitive::IsFloatingPointType(array_type)) { |
| 380 | if (!Primitive::IsFloatingPointType(value_type)) { |
| 381 | DCHECK(Primitive::IsIntegralType(value_type)); |
| 382 | // Array elements are floating-point but the value has not been replaced |
| 383 | // with its floating-point equivalent. The replacement must always |
| 384 | // succeed in code validated by the verifier. |
| 385 | HInstruction* equivalent = GetFloatOrDoubleEquivalent(value, array_type); |
| 386 | DCHECK(equivalent != nullptr); |
| 387 | aset->ReplaceInput(equivalent, /* input_index */ 2); |
| 388 | if (equivalent->IsPhi()) { |
| 389 | // Returned equivalent is a phi which may not have had its inputs |
| 390 | // replaced yet. We need to run primitive type propagation on it. |
| 391 | worklist.push_back(equivalent->AsPhi()); |
| 392 | } |
| 393 | } |
Aart Bik | 18b36ab | 2016-04-13 16:41:35 -0700 | [diff] [blame] | 394 | // Refine the side effects of this floating point aset. Note that we do this even if |
| 395 | // no replacement occurs, since the right-hand-side may have been corrected already. |
| 396 | aset->ComputeSideEffects(); |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 397 | } else { |
| 398 | // Array elements are integral and the value assigned to it initially |
| 399 | // was integral too. Nothing to do. |
| 400 | DCHECK(Primitive::IsIntegralType(array_type)); |
| 401 | DCHECK(Primitive::IsIntegralType(value_type)); |
| 402 | } |
| 403 | } |
| 404 | } |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 405 | |
| 406 | if (!worklist.empty()) { |
| 407 | ProcessPrimitiveTypePropagationWorklist(&worklist); |
| 408 | EquivalentPhisCleanup(); |
| 409 | } |
| 410 | |
| 411 | return true; |
| 412 | } |
| 413 | |
Nicolas Geoffray | 98e6ce4 | 2016-02-16 18:42:15 +0000 | [diff] [blame] | 414 | static bool HasAliasInEnvironments(HInstruction* instruction) { |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 415 | HEnvironment* last_user = nullptr; |
| 416 | for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { |
| 417 | DCHECK(use.GetUser() != nullptr); |
| 418 | // Note: The first comparison (== null) always fails. |
| 419 | if (use.GetUser() == last_user) { |
Nicolas Geoffray | 98e6ce4 | 2016-02-16 18:42:15 +0000 | [diff] [blame] | 420 | return true; |
| 421 | } |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 422 | last_user = use.GetUser(); |
Nicolas Geoffray | 98e6ce4 | 2016-02-16 18:42:15 +0000 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | if (kIsDebugBuild) { |
| 426 | // Do a quadratic search to ensure same environment uses are next |
| 427 | // to each other. |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 428 | const HUseList<HEnvironment*>& env_uses = instruction->GetEnvUses(); |
| 429 | for (auto current = env_uses.begin(), end = env_uses.end(); current != end; ++current) { |
| 430 | auto next = current; |
| 431 | for (++next; next != end; ++next) { |
Nicolas Geoffray | 98e6ce4 | 2016-02-16 18:42:15 +0000 | [diff] [blame] | 432 | DCHECK(next->GetUser() != current->GetUser()); |
Nicolas Geoffray | 98e6ce4 | 2016-02-16 18:42:15 +0000 | [diff] [blame] | 433 | } |
| 434 | } |
| 435 | } |
| 436 | return false; |
| 437 | } |
| 438 | |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 439 | void SsaBuilder::RemoveRedundantUninitializedStrings() { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 440 | if (graph_->IsDebuggable()) { |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 441 | // Do not perform the optimization for consistency with the interpreter |
| 442 | // which always allocates an object for new-instance of String. |
| 443 | return; |
| 444 | } |
| 445 | |
| 446 | for (HNewInstance* new_instance : uninitialized_strings_) { |
Aart Bik | eda3140 | 2016-03-24 15:38:56 -0700 | [diff] [blame] | 447 | DCHECK(new_instance->IsInBlock()); |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 448 | DCHECK(new_instance->IsStringAlloc()); |
| 449 | |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 450 | // Replace NewInstance of String with NullConstant if not used prior to |
| 451 | // calling StringFactory. In case of deoptimization, the interpreter is |
| 452 | // expected to skip null check on the `this` argument of the StringFactory call. |
Nicolas Geoffray | 98e6ce4 | 2016-02-16 18:42:15 +0000 | [diff] [blame] | 453 | if (!new_instance->HasNonEnvironmentUses() && !HasAliasInEnvironments(new_instance)) { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 454 | new_instance->ReplaceWith(graph_->GetNullConstant()); |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 455 | new_instance->GetBlock()->RemoveInstruction(new_instance); |
| 456 | |
| 457 | // Remove LoadClass if not needed any more. |
Nicolas Geoffray | 5e08e36 | 2016-02-15 15:56:11 +0000 | [diff] [blame] | 458 | HInstruction* input = new_instance->InputAt(0); |
| 459 | HLoadClass* load_class = nullptr; |
| 460 | |
| 461 | // If the class was not present in the dex cache at the point of building |
| 462 | // the graph, the builder inserted a HClinitCheck in between. Since the String |
| 463 | // class is always initialized at the point of running Java code, we can remove |
| 464 | // that check. |
| 465 | if (input->IsClinitCheck()) { |
| 466 | load_class = input->InputAt(0)->AsLoadClass(); |
| 467 | input->ReplaceWith(load_class); |
| 468 | input->GetBlock()->RemoveInstruction(input); |
| 469 | } else { |
| 470 | load_class = input->AsLoadClass(); |
| 471 | DCHECK(new_instance->IsStringAlloc()); |
| 472 | DCHECK(!load_class->NeedsAccessCheck()) << "String class is always accessible"; |
| 473 | } |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 474 | DCHECK(load_class != nullptr); |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 475 | if (!load_class->HasUses()) { |
Nicolas Geoffray | 5e08e36 | 2016-02-15 15:56:11 +0000 | [diff] [blame] | 476 | // Even if the HLoadClass needs access check, we can remove it, as we know the |
| 477 | // String class does not need it. |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 478 | load_class->GetBlock()->RemoveInstruction(load_class); |
| 479 | } |
| 480 | } |
| 481 | } |
| 482 | } |
| 483 | |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 484 | GraphAnalysisResult SsaBuilder::BuildSsa() { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 485 | DCHECK(!graph_->IsInSsaForm()); |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 486 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 487 | // 1) Propagate types of phis. At this point, phis are typed void in the general |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 488 | // case, or float/double/reference if we created an equivalent phi. So we need |
| 489 | // to propagate the types across phis to give them a correct type. If a type |
| 490 | // conflict is detected in this stage, the phi is marked dead. |
| 491 | RunPrimitiveTypePropagation(); |
| 492 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 493 | // 2) Now that the correct primitive types have been assigned, we can get rid |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 494 | // of redundant phis. Note that we cannot do this phase before type propagation, |
| 495 | // otherwise we could get rid of phi equivalents, whose presence is a requirement |
| 496 | // for the type propagation phase. Note that this is to satisfy statement (a) |
| 497 | // of the SsaBuilder (see ssa_builder.h). |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 498 | SsaRedundantPhiElimination(graph_).Run(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 499 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 500 | // 3) Fix the type for null constants which are part of an equality comparison. |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 501 | // We need to do this after redundant phi elimination, to ensure the only cases |
| 502 | // that we can see are reference comparison against 0. The redundant phi |
| 503 | // elimination ensures we do not see a phi taking two 0 constants in a HEqual |
| 504 | // or HNotEqual. |
| 505 | FixNullConstantType(); |
| 506 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 507 | // 4) Compute type of reference type instructions. The pass assumes that |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 508 | // NullConstant has been fixed up. |
Vladimir Marko | 456307a | 2016-04-19 14:12:13 +0000 | [diff] [blame] | 509 | ReferenceTypePropagation(graph_, dex_cache_, handles_, /* is_first_run */ true).Run(); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 510 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 511 | // 5) HInstructionBuilder duplicated ArrayGet instructions with ambiguous type |
| 512 | // (int/float or long/double) and marked ArraySets with ambiguous input type. |
| 513 | // Now that RTP computed the type of the array input, the ambiguity can be |
| 514 | // resolved and the correct equivalents kept. |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 515 | if (!FixAmbiguousArrayOps()) { |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 516 | return kAnalysisFailAmbiguousArrayOp; |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 517 | } |
| 518 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 519 | // 6) Mark dead phis. This will mark phis which are not used by instructions |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 520 | // or other live phis. If compiling as debuggable code, phis will also be kept |
| 521 | // live if they have an environment use. |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 522 | SsaDeadPhiElimination dead_phi_elimimation(graph_); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 523 | dead_phi_elimimation.MarkDeadPhis(); |
| 524 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 525 | // 7) Make sure environments use the right phi equivalent: a phi marked dead |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 526 | // can have a phi equivalent that is not dead. In that case we have to replace |
| 527 | // it with the live equivalent because deoptimization and try/catch rely on |
| 528 | // environments containing values of all live vregs at that point. Note that |
| 529 | // there can be multiple phis for the same Dex register that are live |
| 530 | // (for example when merging constants), in which case it is okay for the |
| 531 | // environments to just reference one. |
| 532 | FixEnvironmentPhis(); |
| 533 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 534 | // 8) Now that the right phis are used for the environments, we can eliminate |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 535 | // phis we do not need. Regardless of the debuggable status, this phase is |
| 536 | /// necessary for statement (b) of the SsaBuilder (see ssa_builder.h), as well |
| 537 | // as for the code generation, which does not deal with phis of conflicting |
| 538 | // input types. |
| 539 | dead_phi_elimimation.EliminateDeadPhis(); |
| 540 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 541 | // 9) HInstructionBuidler replaced uses of NewInstances of String with the |
| 542 | // results of their corresponding StringFactory calls. Unless the String |
| 543 | // objects are used before they are initialized, they can be replaced with |
| 544 | // NullConstant. Note that this optimization is valid only if unsimplified |
| 545 | // code does not use the uninitialized value because we assume execution can |
| 546 | // be deoptimized at any safepoint. We must therefore perform it before any |
| 547 | // other optimizations. |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 548 | RemoveRedundantUninitializedStrings(); |
| 549 | |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 550 | graph_->SetInSsaForm(); |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 551 | return kAnalysisSuccess; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 552 | } |
| 553 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 554 | /** |
| 555 | * Constants in the Dex format are not typed. So the builder types them as |
| 556 | * integers, but when doing the SSA form, we might realize the constant |
| 557 | * is used for floating point operations. We create a floating-point equivalent |
| 558 | * constant to make the operations correctly typed. |
| 559 | */ |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 560 | HFloatConstant* SsaBuilder::GetFloatEquivalent(HIntConstant* constant) { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 561 | // We place the floating point constant next to this constant. |
| 562 | HFloatConstant* result = constant->GetNext()->AsFloatConstant(); |
| 563 | if (result == nullptr) { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 564 | float value = bit_cast<float, int32_t>(constant->GetValue()); |
| 565 | result = new (graph_->GetArena()) HFloatConstant(value); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 566 | constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 567 | graph_->CacheFloatConstant(result); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 568 | } else { |
| 569 | // If there is already a constant with the expected type, we know it is |
| 570 | // the floating point equivalent of this constant. |
Roland Levillain | da4d79b | 2015-03-24 14:36:11 +0000 | [diff] [blame] | 571 | DCHECK_EQ((bit_cast<int32_t, float>(result->GetValue())), constant->GetValue()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 572 | } |
| 573 | return result; |
| 574 | } |
| 575 | |
| 576 | /** |
| 577 | * Wide constants in the Dex format are not typed. So the builder types them as |
| 578 | * longs, but when doing the SSA form, we might realize the constant |
| 579 | * is used for floating point operations. We create a floating-point equivalent |
| 580 | * constant to make the operations correctly typed. |
| 581 | */ |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 582 | HDoubleConstant* SsaBuilder::GetDoubleEquivalent(HLongConstant* constant) { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 583 | // We place the floating point constant next to this constant. |
| 584 | HDoubleConstant* result = constant->GetNext()->AsDoubleConstant(); |
| 585 | if (result == nullptr) { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 586 | double value = bit_cast<double, int64_t>(constant->GetValue()); |
| 587 | result = new (graph_->GetArena()) HDoubleConstant(value); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 588 | constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 589 | graph_->CacheDoubleConstant(result); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 590 | } else { |
| 591 | // If there is already a constant with the expected type, we know it is |
| 592 | // the floating point equivalent of this constant. |
Roland Levillain | da4d79b | 2015-03-24 14:36:11 +0000 | [diff] [blame] | 593 | DCHECK_EQ((bit_cast<int64_t, double>(result->GetValue())), constant->GetValue()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 594 | } |
| 595 | return result; |
| 596 | } |
| 597 | |
| 598 | /** |
| 599 | * Because of Dex format, we might end up having the same phi being |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 600 | * used for non floating point operations and floating point / reference operations. |
| 601 | * Because we want the graph to be correctly typed (and thereafter avoid moves between |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 602 | * floating point registers and core registers), we need to create a copy of the |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 603 | * phi with a floating point / reference type. |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 604 | */ |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 605 | HPhi* SsaBuilder::GetFloatDoubleOrReferenceEquivalentOfPhi(HPhi* phi, Primitive::Type type) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 606 | DCHECK(phi->IsLive()) << "Cannot get equivalent of a dead phi since it would create a live one."; |
| 607 | |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 608 | // We place the floating point /reference phi next to this phi. |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 609 | HInstruction* next = phi->GetNext(); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 610 | if (next != nullptr |
| 611 | && next->AsPhi()->GetRegNumber() == phi->GetRegNumber() |
| 612 | && next->GetType() != type) { |
| 613 | // Move to the next phi to see if it is the one we are looking for. |
| 614 | next = next->GetNext(); |
| 615 | } |
| 616 | |
| 617 | if (next == nullptr |
| 618 | || (next->AsPhi()->GetRegNumber() != phi->GetRegNumber()) |
| 619 | || (next->GetType() != type)) { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 620 | ArenaAllocator* allocator = graph_->GetArena(); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 621 | HPhi* new_phi = new (allocator) HPhi(allocator, phi->GetRegNumber(), phi->InputCount(), type); |
| 622 | for (size_t i = 0, e = phi->InputCount(); i < e; ++i) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 623 | // Copy the inputs. Note that the graph may not be correctly typed |
| 624 | // by doing this copy, but the type propagation phase will fix it. |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 625 | new_phi->SetRawInputAt(i, phi->InputAt(i)); |
| 626 | } |
| 627 | phi->GetBlock()->InsertPhiAfter(new_phi, phi); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 628 | DCHECK(new_phi->IsLive()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 629 | return new_phi; |
| 630 | } else { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 631 | // An existing equivalent was found. If it is dead, conflict was previously |
| 632 | // identified and we return nullptr instead. |
David Brazdil | 809d70f | 2015-11-19 10:29:39 +0000 | [diff] [blame] | 633 | HPhi* next_phi = next->AsPhi(); |
| 634 | DCHECK_EQ(next_phi->GetType(), type); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 635 | return next_phi->IsLive() ? next_phi : nullptr; |
David Brazdil | d9510df | 2015-11-04 23:30:22 +0000 | [diff] [blame] | 636 | } |
| 637 | } |
| 638 | |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 639 | HArrayGet* SsaBuilder::GetFloatOrDoubleEquivalentOfArrayGet(HArrayGet* aget) { |
| 640 | DCHECK(Primitive::IsIntegralType(aget->GetType())); |
| 641 | |
| 642 | if (!Primitive::IsIntOrLongType(aget->GetType())) { |
| 643 | // Cannot type boolean, char, byte, short to float/double. |
| 644 | return nullptr; |
| 645 | } |
| 646 | |
| 647 | DCHECK(ContainsElement(ambiguous_agets_, aget)); |
| 648 | if (agets_fixed_) { |
| 649 | // This used to be an ambiguous ArrayGet but its type has been resolved to |
| 650 | // int/long. Requesting a float/double equivalent should lead to a conflict. |
| 651 | if (kIsDebugBuild) { |
| 652 | ScopedObjectAccess soa(Thread::Current()); |
David Brazdil | 15693bf | 2015-12-16 10:30:45 +0000 | [diff] [blame] | 653 | DCHECK(Primitive::IsIntOrLongType(GetPrimitiveArrayComponentType(aget->GetArray()))); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 654 | } |
| 655 | return nullptr; |
| 656 | } else { |
| 657 | // This is an ambiguous ArrayGet which has not been resolved yet. Return an |
| 658 | // equivalent float/double instruction to use until it is resolved. |
| 659 | HArrayGet* equivalent = FindFloatOrDoubleEquivalentOfArrayGet(aget); |
| 660 | return (equivalent == nullptr) ? CreateFloatOrDoubleEquivalentOfArrayGet(aget) : equivalent; |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | HInstruction* SsaBuilder::GetFloatOrDoubleEquivalent(HInstruction* value, Primitive::Type type) { |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 665 | if (value->IsArrayGet()) { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 666 | return GetFloatOrDoubleEquivalentOfArrayGet(value->AsArrayGet()); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 667 | } else if (value->IsLongConstant()) { |
| 668 | return GetDoubleEquivalent(value->AsLongConstant()); |
| 669 | } else if (value->IsIntConstant()) { |
| 670 | return GetFloatEquivalent(value->AsIntConstant()); |
| 671 | } else if (value->IsPhi()) { |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 672 | return GetFloatDoubleOrReferenceEquivalentOfPhi(value->AsPhi(), type); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 673 | } else { |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 674 | return nullptr; |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 675 | } |
| 676 | } |
| 677 | |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 678 | HInstruction* SsaBuilder::GetReferenceTypeEquivalent(HInstruction* value) { |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 679 | if (value->IsIntConstant() && value->AsIntConstant()->GetValue() == 0) { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 680 | return graph_->GetNullConstant(); |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 681 | } else if (value->IsPhi()) { |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 682 | return GetFloatDoubleOrReferenceEquivalentOfPhi(value->AsPhi(), Primitive::kPrimNot); |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 683 | } else { |
| 684 | return nullptr; |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 685 | } |
| 686 | } |
| 687 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 688 | } // namespace art |