Home
last modified time | relevance | path

Searched refs:has_fast_elements (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/ic/
Dic-compiler.cc56 } else if (receiver_map->has_fast_elements() || in ComputeKeyedLoadMonomorphicHandler()
262 } else if (receiver_map->has_fast_elements() || in CompileKeyedStorePolymorphicHandlers()
288 } else if (receiver_map->has_fast_elements() || in CompileKeyedStoreMonomorphicHandler()
/external/v8/src/full-codegen/arm64/
Dfull-codegen-arm64.cc1680 bool has_fast_elements = in VisitArrayLiteral() local
1684 if (has_fast_elements && !FLAG_allocation_site_pretenuring) { in VisitArrayLiteral()
/external/v8/src/full-codegen/mips/
Dfull-codegen-mips.cc1687 bool has_fast_elements = in VisitArrayLiteral() local
1691 if (has_fast_elements && !FLAG_allocation_site_pretenuring) { in VisitArrayLiteral()
/external/v8/src/full-codegen/ppc/
Dfull-codegen-ppc.cc1649 bool has_fast_elements = in VisitArrayLiteral() local
1655 if (has_fast_elements && !FLAG_allocation_site_pretenuring) { in VisitArrayLiteral()
/external/v8/src/full-codegen/arm/
Dfull-codegen-arm.cc1693 bool has_fast_elements = in VisitArrayLiteral() local
1699 if (has_fast_elements && !FLAG_allocation_site_pretenuring) { in VisitArrayLiteral()
/external/v8/src/full-codegen/mips64/
Dfull-codegen-mips64.cc1686 bool has_fast_elements = in VisitArrayLiteral() local
1690 if (has_fast_elements && !FLAG_allocation_site_pretenuring) { in VisitArrayLiteral()
/external/v8/src/
Dobjects-inl.h4593 bool Map::has_fast_elements() { return IsFastElementsKind(elements_kind()); } in has_fast_elements() function
Dobjects.h5607 inline bool has_fast_elements();
Dobjects.cc4672 current != nullptr && current->has_fast_elements(); in FindTransitionedMap()