Home
last modified time | relevance | path

Searched refs:LiveEdit (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/debug/
Dliveedit.cc984 if (!LiveEdit::kFrameDropperSupported) { in CanRestartFrame()
1013 LiveEdit::TranslatePosition(diffs, position.ScriptOffset())); in TranslateSourcePositionTable()
1030 LiveEdit::TranslatePosition(diffs, old_start_position); in UpdatePositions()
1031 int new_end_position = LiveEdit::TranslatePosition(diffs, sfi->EndPosition()); in UpdatePositions()
1033 LiveEdit::TranslatePosition(diffs, sfi->function_token_position()); in UpdatePositions()
1044 void LiveEdit::PatchScript(Isolate* isolate, Handle<Script> script, in PatchScript()
1048 LiveEdit::CompareStrings(isolate, in PatchScript()
1266 void LiveEdit::InitializeThreadLocal(Debug* debug) { in InitializeThreadLocal()
1270 bool LiveEdit::RestartFrame(JavaScriptFrame* frame) { in RestartFrame()
1271 if (!LiveEdit::kFrameDropperSupported) return false; in RestartFrame()
[all …]
Dliveedit.h57 class LiveEdit : AllStatic {
Ddebug-stack-trace-iterator.cc169 return !LiveEdit::RestartFrame(iterator_.javascript_frame()); in Restart()
Ddebug.h543 friend class LiveEdit; variable
Ddebug.cc413 LiveEdit::InitializeThreadLocal(this); in Break()
1840 LiveEdit::PatchScript(isolate_, script, source, preview, result); in SetScriptSource()
1929 LiveEdit::InitializeThreadLocal(this); in HandleDebugBreak()
/external/v8/src/debug/ia32/
Ddebug-ia32.cc48 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/x64/
Ddebug-x64.cc49 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/mips/
Ddebug-mips.cc52 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/mips64/
Ddebug-mips64.cc52 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/ppc/
Ddebug-ppc.cc49 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/s390/
Ddebug-s390.cc51 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/arm/
Ddebug-arm.cc53 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/arm64/
Ddebug-arm64.cc54 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/runtime/
Druntime-debug.cc784 LiveEdit::PatchScript(isolate, script, new_source, false, &result); in RUNTIME_FUNCTION()
/external/v8/
DChangeLog42761 Support LiveEdit on Arm64 (Chromium issue 368580).
42775 MIPS: Support LiveEdit (Chromium issue 368580).
42780 Support LiveEdit on ARM (Chromium issue 368580).
44469 LiveEdit to mark more closure functions for re-instantiation when scope
45656 Fixed LiveEdit crashes when object/array literal is added. (issue 2368)
45868 Enable/disable LiveEdit using the (C++) debug API.
46334 Fixed LiveEdit for function with no locals (issue 825).