Home
last modified time | relevance | path

Searched refs:handler_allocations_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/snapshot/
Dbuiltin-deserializer-allocator.cc23 delete handler_allocations_; in ~BuiltinDeserializerAllocator()
49 DCHECK_NULL(handler_allocations_); in Allocate()
54 DCHECK_NOT_NULL(handler_allocations_); in Allocate()
56 DCHECK_NE(kNullAddress, handler_allocations_->at(index)); in Allocate()
57 return handler_allocations_->at(index); in Allocate()
143 DCHECK_NOT_NULL(handler_allocations_); in InitializeHandlerFromReservation()
146 handler_allocations_->at(index) = chunk.start; in InitializeHandlerFromReservation()
186 DCHECK_NULL(handler_allocations_); in InitializeFromReservations()
187 handler_allocations_ = new std::vector<Address>(BSU::kNumberOfHandlers); in InitializeFromReservations()
Dbuiltin-deserializer-allocator.h134 std::vector<Address>* handler_allocations_ = nullptr; variable