Commit ca5f7f4d authored by bmeurer's avatar bmeurer Committed by Commit bot

[turbofan] Do not eagerly kill elements for slow transitions in loop state.

R=jarin@chromium.org
BUG=v8:5267

Review-Url: https://codereview.chromium.org/2813183002
Cr-Commit-Position: refs/heads/master@{#44612}
parent 9c3beacc
......@@ -1007,8 +1007,15 @@ LoadElimination::AbstractState const* LoadElimination::ComputeLoopState(
!ZoneHandleSet<Map>(transition.target())
.contains(object_maps)) {
state = state->KillMaps(object, zone());
state = state->KillField(
object, FieldIndexOf(JSObject::kElementsOffset), zone());
switch (transition.mode()) {
case ElementsTransition::kFastTransition:
break;
case ElementsTransition::kSlowTransition:
// Kill the elements as well.
state = state->KillField(
object, FieldIndexOf(JSObject::kElementsOffset), zone());
break;
}
}
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment