Home
last modified time | relevance | path

Searched refs:code_object_registry_ (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/heap/
Dcode-object-registry.cc18 (code_object_registry_.empty() || code_object_registry_.back() < code); in RegisterNewlyAllocatedCodeObject()
20 code_object_registry_.push_back(code); in RegisterNewlyAllocatedCodeObject()
27 DCHECK(code_object_registry_.empty() || code_object_registry_.back() < code); in RegisterAlreadyExistingCodeObject()
28 code_object_registry_.push_back(code); in RegisterAlreadyExistingCodeObject()
34 code_object_registry_.clear(); in Clear()
42 code_object_registry_.shrink_to_fit(); in Finalize()
48 std::sort(code_object_registry_.begin(), code_object_registry_.end()); in Contains()
51 return (std::binary_search(code_object_registry_.begin(), in Contains()
52 code_object_registry_.end(), object)); in Contains()
59 std::sort(code_object_registry_.begin(), code_object_registry_.end()); in GetCodeObjectStartFromInnerAddress()
[all …]
Dmemory-chunk.cc173 code_object_registry_ = new CodeObjectRegistry(); in MemoryChunk()
175 code_object_registry_ = nullptr; in MemoryChunk()
239 if (code_object_registry_ != nullptr) { in ReleaseAllocatedMemoryNeededForWritableChunk()
240 delete code_object_registry_; in ReleaseAllocatedMemoryNeededForWritableChunk()
241 code_object_registry_ = nullptr; in ReleaseAllocatedMemoryNeededForWritableChunk()
465 DCHECK_EQ(reinterpret_cast<Address>(&chunk->code_object_registry_) - in ValidateOffsets()
Dcode-object-registry.h33 mutable std::vector<Address> code_object_registry_;
Dmemory-chunk.h204 CodeObjectRegistry* GetCodeObjectRegistry() { return code_object_registry_; } in GetCodeObjectRegistry()
284 CodeObjectRegistry* code_object_registry_; variable