diff --git a/src/code-stub-assembler.cc b/src/code-stub-assembler.cc index d45fb019f9..c01fb67e09 100644 --- a/src/code-stub-assembler.cc +++ b/src/code-stub-assembler.cc @@ -4470,7 +4470,7 @@ void CodeStubAssembler::KeyedLoadICGeneric(const LoadICParameters* p) { Variable var_name_index(this, MachineType::PointerRepresentation()); Label if_descriptor_found(this); DescriptorLookupLinear(key, descriptors, nof, &if_descriptor_found, - &var_name_index, &slow); + &var_name_index, &stub_cache); Bind(&if_descriptor_found); { diff --git a/src/ic/ic.cc b/src/ic/ic.cc index da38d581f0..f6642d56cb 100644 --- a/src/ic/ic.cc +++ b/src/ic/ic.cc @@ -1436,6 +1436,7 @@ MaybeHandle KeyedLoadIC::Load(Handle object, if (!is_vector_set()) { ConfigureVectorState(MEGAMORPHIC, key); TRACE_GENERIC_IC(isolate(), "KeyedLoadIC", "set generic"); + TRACE_IC("LoadIC", key); } if (!load_handle.is_null()) return load_handle;