HomeSort by relevance Sort by last modified time
    Searched refs:isolate_ (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/v8/src/
vm-state-inl.h 63 : isolate_(isolate), previous_tag_(isolate->current_vm_state()) {
71 isolate_->SetCurrentVMState(tag);
78 isolate_->heap()->Protect();
81 isolate_->heap()->Unprotect();
91 LOG(isolate_,
93 StateToString(isolate_->current_vm_state())));
94 LOG(isolate_,
100 StateTag tag = isolate_->current_vm_state();
103 isolate_->SetCurrentVMState(previous_tag_);
110 isolate_->heap()->Unprotect()
    [all...]
vm-state.h 43 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
59 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
v8threads.cc 163 ExecutionAccess access(isolate_);
174 isolate_->stack_guard()->InitThread(access);
179 from = isolate_->handle_scope_implementer()->RestoreThread(from);
180 from = isolate_->RestoreThread(from);
183 from = isolate_->debug()->RestoreDebug(from);
185 from = isolate_->stack_guard()->RestoreStackGuard(from);
186 from = isolate_->regexp_stack()->RestoreStack(from);
187 from = isolate_->bootstrapper()->RestoreState(from);
190 isolate_->stack_guard()->TerminateExecution();
320 to = isolate_->handle_scope_implementer()->ArchiveThread(to)
    [all...]
zone-inl.h 80 isolate_->counters()->zone_segment_bytes()->Set(segment_bytes_allocated_);
111 : isolate_(Isolate::Current()),
113 isolate_->zone()->scope_nesting_++;
118 return isolate_->zone()->scope_nesting_ == 1 && mode_ == DELETE_ON_EXIT;
debug.cc 65 isolate_(isolate) {
719 isolate_->builtins()->builtin(Builtins::kReturn_DebugBreak);
723 isolate_->builtins()->builtin(Builtins::kSlot_DebugBreak);
827 ASSERT(Isolate::Current() == isolate_);
828 Debugger* debugger = isolate_->debugger();
840 PostponeInterruptsScope postpone(isolate_);
843 HandleScope scope(isolate_);
845 isolate_->bootstrapper()->CreateEnvironment(
851 SaveContext save(isolate_);
852 isolate_->set_context(*context)
    [all...]
handles-inl.h 74 isolate_ = isolate;
85 isolate_ = isolate;
97 ASSERT(isolate_ == Isolate::Current());
99 isolate_->handle_scope_data();
104 DeleteExtensions(isolate_);
118 isolate_->handle_scope_data();
121 Handle<T> result(CreateHandle<T>(value, isolate_));
regexp-stack.cc 42 ASSERT(Isolate::Current() == regexp_stack_->isolate_);
49 : isolate_(NULL) {
zone.h 126 Isolate* isolate_; member in class:v8::internal::Zone
217 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
execution.cc 46 : isolate_(NULL) {
51 ASSERT(isolate_ != NULL);
56 isolate_->heap()->SetStackLimits();
61 ASSERT(isolate_ != NULL);
64 isolate_->heap()->SetStackLimits();
257 ExecutionAccess access(isolate_);
264 ExecutionAccess access(isolate_);
272 ExecutionAccess access(isolate_);
288 ExecutionAccess access(isolate_);
294 ExecutionAccess access(isolate_);
    [all...]
runtime-profiler.cc 124 : isolate_(isolate),
173 isolate_->debug()->has_break_points() ||
205 isolate_->builtins()->builtin(Builtins::kOnStackReplacement);
244 HandleScope scope(isolate_);
266 for (JavaScriptFrameIterator it(isolate_);
321 isolate_->compilation_cache()->MarkForEagerOptimizing(
369 isolate_->stack_guard()->RequestRuntimeProfilerTick();
379 if (IsEnabled()) isolate_->logger()->EnsureTickerStarted();
405 if (function != NULL && isolate_->heap()->InNewSpace(function)) {
debug.h 543 Isolate* isolate_; member in class:v8::internal::Debug
784 if (isolate_->debug()->debugger_entry() == NULL) {
848 Isolate* isolate_; member in class:v8::internal::Debugger
864 : isolate_(Isolate::Current()),
865 prev_(isolate_->debug()->debugger_entry()),
866 it_(isolate_),
868 save_(isolate_) {
869 Debug* debug = isolate_->debug();
893 isolate_->set_context(*debug->debug_context());
898 ASSERT(Isolate::Current() == isolate_);
959 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
983 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
zone.cc 49 ASSERT_EQ(Isolate::Current(), isolate_); local
50 if (ShouldDeleteOnExit()) isolate_->zone()->DeleteAll();
51 isolate_->zone()->scope_nesting_--;
d8-debug.h 60 head_(NULL), tail_(NULL), isolate_(isolate) {}
92 i::Isolate* isolate_; member in class:v8::RemoteDebugger
parser.h 394 Isolate* isolate() { return isolate_; }
395 Zone* zone() { return isolate_->zone(); }
404 Isolate* isolate_; member in class:v8::internal::RegExpParser
460 Isolate* isolate() { return isolate_; }
461 Zone* zone() { return isolate_->zone(); }
609 return isolate_->factory()->NewStringFromAscii(
612 return isolate_->factory()->NewStringFromTwoByte(
619 return isolate_->factory()->NewStringFromAscii(
622 return isolate_->factory()->NewStringFromTwoByte(
703 Isolate* isolate_; member in class:v8::internal::Parser
818 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
compilation-cache.h 44 : isolate_(isolate),
84 Isolate* isolate() { return isolate_; }
87 Isolate* isolate_;
264 Isolate* isolate() { return isolate_; }
266 Isolate* isolate_;
stub-cache.cc 44 StubCache::StubCache(Isolate* isolate) : isolate_(isolate) {
87 if (hit != isolate_->builtins()->builtin(Builtins::kIllegal)) {
129 PROFILE(isolate_,
155 PROFILE(isolate_,
182 PROFILE(isolate_,
209 PROFILE(isolate_,
234 PROFILE(isolate_,
248 return isolate_->builtins()->builtin(Builtins::kLoadIC_Normal);
269 PROFILE(isolate_,
295 PROFILE(isolate_,
    [all...]
isolate.h 394 : isolate_(isolate),
404 Isolate* isolate() const { return isolate_; }
420 return isolate_ == isolate && thread_id_.Equals(thread_id);
424 Isolate* isolate_; member in class:v8::internal::Isolate::PerIsolateThreadData
667 isolate_(isolate),
668 pending_exception_(isolate_->pending_exception()->ToObjectUnchecked()),
669 catcher_(isolate_->catcher())
673 isolate_->set_catcher(catcher_);
674 isolate_->set_pending_exception(*pending_exception_);
678 Isolate* isolate_; member in class:v8::internal::Isolate::ExceptionScope
1336 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
1355 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
regexp-stack.h 136 Isolate* isolate_; member in class:v8::internal::RegExpStack
v8threads.h 131 Isolate* isolate_; member in class:v8::internal::ThreadManager
isolate.cc 459 heap_.isolate_ = this;
460 zone_.isolate_ = this;
461 stack_guard_.isolate_ = this;
471 thread_manager_->isolate_ = this;
719 // Safe after setting Heap::isolate_, initializing StackGuard and
730 string_tracker_->isolate_ = this;
745 regexp_stack_->isolate_ = this;
749 producer_heap_profile_->isolate_ = this;
848 current_isolate = current_data->isolate_;
874 ASSERT(data->isolate_ == this)
    [all...]
heap.cc 69 : isolate_(NULL),
245 isolate_->counters()->gc_compactor_caused_by_request()->Increment();
251 isolate_->counters()->gc_compactor_caused_by_promoted_data()->Increment();
257 isolate_->counters()->
271 if (isolate_->memory_allocator()->MaxAvailable() <= new_space_.Size()) {
272 isolate_->counters()->
318 isolate_->memory_allocator()->Size(),
319 isolate_->memory_allocator()->Available());
384 isolate_->transcendental_cache()->Clear();
425 if (FLAG_print_global_handles) isolate_->global_handles()->Print()
    [all...]
frames.h 59 explicit PcToCodeCache(Isolate* isolate) : isolate_(isolate) {
75 Isolate* isolate_; member in class:v8::internal::PcToCodeCache
172 this->isolate_ = original.isolate_;
245 Isolate* isolate() const { return isolate_; }
263 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
655 Isolate* isolate() const { return isolate_; }
664 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED
824 Isolate* isolate_; member in class:v8::internal::BASE_EMBEDDED::BASE_EMBEDDED
heap-inl.h 158 isolate_->counters()->objs_since_last_full()->Increment();
159 isolate_->counters()->objs_since_last_young()->Increment();
226 isolate_->counters()->objs_since_last_full()->Increment();
227 isolate_->counters()->objs_since_last_young()->Increment();
244 isolate_->counters()->objs_since_last_full()->Increment();
245 isolate_->counters()->objs_since_last_young()->Increment();
665 isolate_->counters()->transcendental_cache_hit()->Increment();
669 isolate_->counters()->transcendental_cache_miss()->Increment();
672 isolate_->heap()->AllocateHeapNumber(answer);
global-handles.cc 302 : isolate_(isolate),
321 isolate_->counters()->global_handles()->Increment();
345 isolate_->counters()->global_handles()->Decrement();
410 LOG(isolate_,
423 ASSERT(isolate_->heap()->gc_state() == Heap::NOT_IN_GC);
428 if ((*p)->PostGarbageCollectionProcessing(isolate_, this)) {
global-handles.h 208 Isolate* isolate() { return isolate_; }
221 Isolate* isolate_; member in class:v8::internal::GlobalHandles

Completed in 442 milliseconds

1 2 3 4