Home | History | Annotate | Download | only in arm

Lines Matching defs:isolate

411           Heap* current_heap = v8::internal::Isolate::Current()->heap();
723 if (Isolate::Current()->simulator_initialized()) return;
724 Isolate::Current()->set_simulator_initialized(true);
729 Simulator::Simulator() : isolate_(Isolate::Current()) {
800 Isolate* isolate = Isolate::Current();
801 next_ = isolate->simulator_redirection();
802 Simulator::current(isolate)->
803 FlushICache(isolate->simulator_i_cache(),
806 isolate->set_simulator_redirection(this);
818 Isolate* isolate = Isolate::Current();
819 Redirection* current = isolate->simulator_redirection();
849 Simulator* Simulator::current(Isolate* isolate) {
850 v8::internal::Isolate::PerIsolateThreadData* isolate_data =
851 Isolate::CurrentPerIsolateThreadData();
853 Isolate::EnterDefaultIsolate();
854 isolate_data = Isolate::CurrentPerIsolateThreadData();
860 // TODO(146): delete the simulator object when a thread/isolate goes away.