Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dcode-object-registry.cc17 (code_object_registry_.empty() || code_object_registry_.back() < code); in RegisterNewlyAllocatedCodeObject()
19 code_object_registry_.push_back(code); in RegisterNewlyAllocatedCodeObject()
24 DCHECK(code_object_registry_.empty() || code_object_registry_.back() < code); in RegisterAlreadyExistingCodeObject()
25 code_object_registry_.push_back(code); in RegisterAlreadyExistingCodeObject()
29 code_object_registry_.clear(); in Clear()
35 code_object_registry_.shrink_to_fit(); in Finalize()
40 std::sort(code_object_registry_.begin(), code_object_registry_.end()); in Contains()
43 return (std::binary_search(code_object_registry_.begin(), in Contains()
44 code_object_registry_.end(), object)); in Contains()
50 std::sort(code_object_registry_.begin(), code_object_registry_.end()); in GetCodeObjectStartFromInnerAddress()
[all …]
Dmemory-chunk.cc151 chunk->code_object_registry_ = new CodeObjectRegistry(); in Initialize()
153 chunk->code_object_registry_ = nullptr; in Initialize()
209 if (code_object_registry_ != nullptr) { in ReleaseAllocatedMemoryNeededForWritableChunk()
210 delete code_object_registry_; in ReleaseAllocatedMemoryNeededForWritableChunk()
211 code_object_registry_ = nullptr; in ReleaseAllocatedMemoryNeededForWritableChunk()
434 DCHECK_EQ(reinterpret_cast<Address>(&chunk->code_object_registry_) - in ValidateOffsets()
Dcode-object-registry.h33 mutable std::vector<Address> code_object_registry_;
Dmemory-chunk.h219 CodeObjectRegistry* GetCodeObjectRegistry() { return code_object_registry_; } in GetCodeObjectRegistry()
303 CodeObjectRegistry* code_object_registry_; variable