Home | History | Annotate | Download | only in snapshot

Lines Matching refs:isolate_

38   for (Page* p : *isolate_->heap()->code_space()) {
39 Assembler::FlushICache(isolate_, p->area_start(),
48 isolate_->heap()->RecordWritesIntoCode(code);
50 if (FLAG_serialize_age_code) code->PreAge(isolate_);
51 Assembler::FlushICache(isolate_, code->instruction_start(),
63 if (!isolate_->heap()->ReserveSpace(reservations_, &allocated_maps_))
72 DCHECK_NULL(isolate_);
74 isolate_ = isolate;
85 DCHECK_NULL(isolate_->thread_manager()->FirstThreadStateInUse());
87 DCHECK(isolate_->handle_scope_implementer()->blocks()->is_empty());
89 DCHECK(isolate_->partial_snapshot_cache()->is_empty());
93 isolate_->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG_ROOT_LIST);
94 isolate_->heap()->IterateSmiRoots(this);
95 isolate_->heap()->IterateStrongRoots(this, VISIT_ONLY_STRONG);
96 isolate_->heap()->RepairFreeListsAfterDeserialization();
97 isolate_->heap()->IterateWeakRoots(this, VISIT_ALL);
103 isolate_->heap()->set_native_contexts_list(
104 isolate_->heap()->undefined_value());
107 if (isolate_->heap()->allocation_sites_list() == Smi::kZero) {
108 isolate_->heap()->set_allocation_sites_list(
109 isolate_->heap()->undefined_value());
113 LOG_CODE_EVENT(isolate_, LogCodeObjects());
114 LOG_CODE_EVENT(isolate_, LogBytecodeHandlers());
115 LOG_CODE_EVENT(isolate_, LogCompiledFunctions());
132 OldSpace* code_space = isolate_->heap()->code_space();
226 DisallowJavascriptExecution no_js(isolate_);
227 DisallowCompilation no_compile(isolate_);
230 HandleScope scope(isolate_);
235 isolate_);
289 String* canonical = StringTable::LookupKeyIfExists(isolate_, &key);
312 if (isolate_->heap()->allocation_sites_list() == Smi::kZero) {
313 site->set_weak_next(isolate_->heap()->undefined_value());
315 site->set_weak_next(isolate_->heap()->allocation_sites_list());
317 isolate_->heap()->set_allocation_sites_list(site);
326 if (isolate_->external_reference_redirector()) {
348 script->set_id(isolate_->heap()->NextScriptId());
404 Heap* heap = isolate_->heap();
416 isolate_->heap()->OnAllocationEvent(obj, size);
449 AlwaysAllocateScope scope(isolate_);
450 LargeObjectSpace* lo_space = isolate_->heap()->lo_space();
477 DCHECK(!isolate_->heap()->deserialization_complete());
487 Isolate* const isolate = isolate_;