Searched refs:nested_site (Results 1 - 12 of 12) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
H A D | allocation-site-scopes-inl.h | 27 Object nested_site = current()->nested_site(); in EnterNewScope() local 29 update_current_site(AllocationSite::cast(nested_site)); in EnterNewScope()
|
H A D | allocation-site.h | 48 // nested_site threads a list of sites that represent nested literals 50 // nested_site, but [[1, 2], 3, [4]] will have a list of two. 51 DECL_ACCESSORS(nested_site, Object)
|
H A D | allocation-site-inl.h | 32 ACCESSORS(AllocationSite, nested_site, Object, kNestedSiteOffset)
|
H A D | objects.cc | 5269 if (current_site.nested_site() == *this) { in IsNested()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | compilation-dependencies.cc | 1321 if (!current.nested_site().IsAllocationSite()) break; in DependOnElementsKinds() 1322 current = current.nested_site().AsAllocationSite(); in DependOnElementsKinds() 1324 CHECK_EQ(current.nested_site().AsSmi(), 0); in DependOnElementsKinds()
|
H A D | heap-refs.h | 649 ObjectRef nested_site() const;
|
H A D | heap-refs.cc | 1412 ObjectRef AllocationSiteRef::nested_site() const { in nested_site() function in v8::internal::compiler::AllocationSiteRef 1413 return MakeRefAssumeMemoryFence(broker(), object()->nested_site()); in nested_site()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-debug.cc | 1843 CHECK(nested_site().IsAllocationSite() || nested_site() == Smi::zero()); in AllocationSiteVerify()
|
H A D | objects-printer.cc | 2154 os << "\n - nested site: " << Brief(nested_site()); in AllocationSitePrint()
|
/third_party/node/deps/v8/src/heap/ |
H A D | heap.cc | 3105 Object current_nested = site.nested_site(); in ForeachAllocationSite() 3107 AllocationSite nested_site = AllocationSite::cast(current_nested); in ForeachAllocationSite() local 3108 visitor(nested_site); in ForeachAllocationSite() 3109 current_nested = nested_site.nested_site(); in ForeachAllocationSite()
|
H A D | mark-compact.cc | 1408 // MarkZombie will override the nested_site, read it first before 1410 nested = current_site.nested_site();
|
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 1565 SetInternalReference(entry, "nested_site", site.nested_site(), in ExtractAllocationSiteReferences()
|
Completed in 69 milliseconds