Commit daf7715d authored by Santiago Aboy Solanes's avatar Santiago Aboy Solanes Committed by Commit Bot

[compiler] Add the signal to do descriptor array's background search

Bug: v8:7790
Change-Id: I1c6622bd476832852af64c299dcf952bc9e92fe5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2245602Reviewed-by: 's avatarGeorg Neis <neis@chromium.org>
Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68341}
parent 58dea484
......@@ -506,7 +506,8 @@ PropertyAccessInfo AccessInfoFactory::ComputePropertyAccessInfo(
while (true) {
// Lookup the named property on the {map}.
Handle<DescriptorArray> descriptors(map->instance_descriptors(), isolate());
InternalIndex const number = descriptors->Search(*name, *map);
InternalIndex const number =
descriptors->Search(*name, *map, broker()->is_concurrent_inlining());
if (number.is_found()) {
PropertyDetails const details = descriptors->GetDetails(number);
if (access_mode == AccessMode::kStore ||
......
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