Fix KeyedStore stub selection for STRING_WRAPPER_ELEMENTS
This logic mirrors what KeyedLoadICs are doing already. BUG=chromium:602184 LOG=n Review URL: https://codereview.chromium.org/1876793003 Cr-Commit-Position: refs/heads/master@{#35397}
This commit is contained in:
parent
df826bf50f
commit
58429beb7b
@ -1637,6 +1637,14 @@ void KeyedStoreIC::UpdateStoreElement(Handle<Map> receiver_map,
|
||||
return ConfigureVectorState(Handle<Name>(), monomorphic_map, handler);
|
||||
}
|
||||
|
||||
for (int i = 0; i < target_receiver_maps.length(); i++) {
|
||||
if (!target_receiver_maps.at(i).is_null() &&
|
||||
target_receiver_maps.at(i)->instance_type() == JS_VALUE_TYPE) {
|
||||
TRACE_GENERIC_IC(isolate(), "KeyedStoreIC", "JSValue");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// There are several special cases where an IC that is MONOMORPHIC can still
|
||||
// transition to a different GetNonTransitioningStoreMode IC that handles a
|
||||
// superset of the original IC. Handle those here if the receiver map hasn't
|
||||
|
Loading…
Reference in New Issue
Block a user