• Home
  • Raw
  • Download

Lines Matching refs:isolate_

65       isolate_(isolate) {  in Debug()
719 isolate_->builtins()->builtin(Builtins::kReturn_DebugBreak); in Setup()
723 isolate_->builtins()->builtin(Builtins::kSlot_DebugBreak); in Setup()
827 ASSERT(Isolate::Current() == isolate_); in Load()
828 Debugger* debugger = isolate_->debugger(); in Load()
840 PostponeInterruptsScope postpone(isolate_); in Load()
843 HandleScope scope(isolate_); in Load()
845 isolate_->bootstrapper()->CreateEnvironment( in Load()
851 SaveContext save(isolate_); in Load()
852 isolate_->set_context(*context); in Load()
855 Handle<String> key = isolate_->factory()->LookupAsciiSymbol("builtins"); in Load()
858 isolate_, in Load()
920 Heap* heap = isolate_->heap(); in Break()
921 HandleScope scope(isolate_); in Break()
927 JavaScriptFrameIterator it(isolate_); in Break()
943 PostponeInterruptsScope postpone(isolate_); in Break()
988 isolate_->debugger()->OnDebugBreak(break_points_hit, false); in Break()
1007 Code* plain_return = isolate_->builtins()->builtin( in Break()
1014 Code* plain_return = isolate_->builtins()->builtin( in Break()
1037 Factory* factory = isolate_->factory(); in CheckBreakPoints()
1073 ASSERT(Isolate::Current() == isolate_); in CheckBreakPoint()
1074 Factory* factory = isolate_->factory(); in CheckBreakPoint()
1075 HandleScope scope(isolate_); in CheckBreakPoint()
1099 isolate_->js_builtins_object(), argc, argv, &caught_exception); in CheckBreakPoint()
1129 HandleScope scope(isolate_); in SetBreakPoint()
1153 HandleScope scope(isolate_); in ClearBreakPoint()
1226 for (JavaScriptFrameIterator it(isolate_, id); !it.done(); it.Advance()) { in FloodHandlerWithOneShot()
1259 ASSERT(Isolate::Current() == isolate_); in PrepareStep()
1260 HandleScope scope(isolate_); in PrepareStep()
1282 JavaScriptFrameIterator frames_it(isolate_, id); in PrepareStep()
1408 isolate_->heap()->code_stubs()->SlowReverseLookup( in PrepareStep()
1746 isolate_->heap()->undefined_value()); in RemoveDebugInfo()
1764 ASSERT(Isolate::Current() == isolate_); in SetAfterBreakTarget()
1765 HandleScope scope(isolate_); in SetAfterBreakTarget()
1848 HandleScope scope(isolate_); in IsBreakAtReturn()
1897 ASSERT(Isolate::Current() == isolate_); in ClearMirrorCache()
1898 PostponeInterruptsScope postpone(isolate_); in ClearMirrorCache()
1899 HandleScope scope(isolate_); in ClearMirrorCache()
1900 ASSERT(isolate_->context() == *Debug::debug_context()); in ClearMirrorCache()
1904 isolate_->factory()->LookupSymbol(CStrVector("ClearMirrorCache")); in ClearMirrorCache()
1917 ASSERT(Isolate::Current() == isolate_); in CreateScriptCache()
1918 Heap* heap = isolate_->heap(); in CreateScriptCache()
1919 HandleScope scope(isolate_); in CreateScriptCache()
1959 ASSERT(Isolate::Current() == isolate_); in GetLoadedScripts()
1969 isolate_->factory()->NewFixedArray(0); in GetLoadedScripts()
1974 isolate_->heap()->CollectAllGarbage(false); in GetLoadedScripts()
2007 isolate_(isolate) { in Debugger()
2022 ASSERT(Isolate::Current() == isolate_); in MakeJSObject()
2023 ASSERT(isolate_->context() == *isolate_->debug()->debug_context()); in MakeJSObject()
2027 isolate_->factory()->LookupSymbol(constructor_name); in MakeJSObject()
2029 isolate_->global()->GetPropertyNoExceptionThrown(*constructor_str)); in MakeJSObject()
2033 return isolate_->factory()->undefined_value(); in MakeJSObject()
2037 Handle<JSObject>(isolate_->debug()->debug_context()->global()), in MakeJSObject()
2044 ASSERT(Isolate::Current() == isolate_); in MakeExecutionState()
2046 Handle<Object> break_id = isolate_->factory()->NewNumberFromInt( in MakeExecutionState()
2047 isolate_->debug()->break_id()); in MakeExecutionState()
2058 ASSERT(Isolate::Current() == isolate_); in MakeBreakEvent()
2074 ASSERT(Isolate::Current() == isolate_); in MakeExceptionEvent()
2075 Factory* factory = isolate_->factory(); in MakeExceptionEvent()
2089 ASSERT(Isolate::Current() == isolate_); in MakeNewFunctionEvent()
2101 ASSERT(Isolate::Current() == isolate_); in MakeCompileEvent()
2102 Factory* factory = isolate_->factory(); in MakeCompileEvent()
2121 ASSERT(Isolate::Current() == isolate_); in MakeScriptCollectedEvent()
2136 ASSERT(Isolate::Current() == isolate_); in OnException()
2137 HandleScope scope(isolate_); in OnException()
2138 Debug* debug = isolate_->debug(); in OnException()
2181 ASSERT(Isolate::Current() == isolate_); in OnDebugBreak()
2182 HandleScope scope(isolate_); in OnDebugBreak()
2185 ASSERT(isolate_->context() == *isolate_->debug()->debug_context()); in OnDebugBreak()
2191 ASSERT(Isolate::Current()->context() == *isolate_->debug()->debug_context()); in OnDebugBreak()
2214 ASSERT(Isolate::Current() == isolate_); in OnBeforeCompile()
2215 HandleScope scope(isolate_); in OnBeforeCompile()
2218 if (isolate_->debug()->InDebugger()) return; in OnBeforeCompile()
2244 ASSERT(Isolate::Current() == isolate_); in OnAfterCompile()
2245 HandleScope scope(isolate_); in OnAfterCompile()
2246 Debug* debug = isolate_->debug(); in OnAfterCompile()
2269 isolate_->factory()->LookupAsciiSymbol("UpdateScriptBreakPoints"); in OnAfterCompile()
2313 ASSERT(Isolate::Current() == isolate_); in OnScriptCollected()
2314 HandleScope scope(isolate_); in OnScriptCollected()
2343 ASSERT(Isolate::Current() == isolate_); in ProcessDebugEvent()
2344 HandleScope scope(isolate_); in ProcessDebugEvent()
2348 isolate_->debug()->clear_interrupt_pending(DEBUGBREAK); in ProcessDebugEvent()
2419 ASSERT(Isolate::Current() == isolate_); in CallJSEventCallback()
2429 Execution::TryCall(fun, isolate_->global(), argc, argv, &caught_exception); in CallJSEventCallback()
2435 ASSERT(Isolate::Current() == isolate_); in GetDebugContext()
2438 return isolate_->debug()->debug_context(); in GetDebugContext()
2443 ASSERT(Isolate::Current() == isolate_); in UnloadDebugger()
2444 Debug* debug = isolate_->debug(); in UnloadDebugger()
2463 ASSERT(Isolate::Current() == isolate_); in NotifyMessageHandler()
2464 HandleScope scope(isolate_); in NotifyMessageHandler()
2466 if (!isolate_->debug()->Load()) return; in NotifyMessageHandler()
2495 ASSERT(isolate_->debug()->InDebugger()); in NotifyMessageHandler()
2496 isolate_->stack_guard()->Continue(DEBUGCOMMAND); in NotifyMessageHandler()
2633 ASSERT(Isolate::Current() == isolate_); in SetEventListener()
2634 HandleScope scope(isolate_); in SetEventListener()
2635 GlobalHandles* global_handles = isolate_->global_handles(); in SetEventListener()
2656 data = isolate_->factory()->undefined_value(); in SetEventListener()
2667 ASSERT(Isolate::Current() == isolate_); in SetMessageHandler()
2675 if (isolate_->debug()->InDebugger()) { in SetMessageHandler()
2683 ASSERT(Isolate::Current() == isolate_); in ListenersChanged()
2686 isolate_->compilation_cache()->Disable(); in ListenersChanged()
2689 isolate_->compilation_cache()->Enable(); in ListenersChanged()
2699 ASSERT(Isolate::Current() == isolate_); in SetHostDispatchHandler()
2707 ASSERT(Isolate::Current() == isolate_); in SetDebugMessageDispatchHandler()
2712 message_dispatch_helper_thread_ = new MessageDispatchHelperThread(isolate_); in SetDebugMessageDispatchHandler()
2721 ASSERT(Isolate::Current() == isolate_); in InvokeMessageHandler()
2736 ASSERT(Isolate::Current() == isolate_); in ProcessCommand()
2747 if (!isolate_->debug()->InDebugger()) { in ProcessCommand()
2748 isolate_->stack_guard()->DebugCommand(); in ProcessCommand()
2766 ASSERT(Isolate::Current() == isolate_); in HasCommands()
2772 ASSERT(Isolate::Current() == isolate_); in EnqueueDebugCommand()
2777 if (!isolate_->debug()->InDebugger()) { in EnqueueDebugCommand()
2778 isolate_->stack_guard()->DebugCommand(); in EnqueueDebugCommand()
2784 ASSERT(Isolate::Current() == isolate_); in IsDebuggerActive()
2794 ASSERT(Isolate::Current() == isolate_); in Call()
2801 return isolate_->factory()->undefined_value(); in Call()
2808 return isolate_->factory()->undefined_value(); in Call()
2815 Handle<Object>(isolate_->debug()->debug_context_->global_proxy()), in Call()
2830 ASSERT(Isolate::Current() == isolate_); in StartAgent()
2844 agent_ = new DebuggerAgent(isolate_, name, port); in StartAgent()
2855 ASSERT(Isolate::Current() == isolate_); in StopAgent()
2866 ASSERT(Isolate::Current() == isolate_); in WaitForAgent()
2873 ASSERT(Isolate::Current() == isolate_); in CallMessageDispatchHandler()