Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-liveedit.cc74 LiveEdit::GatherCompileInfo(script_handle, source)); in RUNTIME_FUNCTION()
92 Handle<Object> old_script = LiveEdit::ChangeScriptSource( in RUNTIME_FUNCTION()
115 LiveEdit::FixupScript(script, max_function_literal_id); in RUNTIME_FUNCTION()
127 LiveEdit::FunctionSourceUpdated(shared_info, new_function_literal_id); in RUNTIME_FUNCTION()
141 LiveEdit::ReplaceFunctionCode(new_compile_info, shared_info); in RUNTIME_FUNCTION()
162 LiveEdit::SetFunctionScript(function_wrapper, script_object); in RUNTIME_FUNCTION()
186 LiveEdit::ReplaceRefToNestedFunction(parent_wrapper, orig_wrapper, in RUNTIME_FUNCTION()
205 LiveEdit::PatchFunctionPositions(shared_array, position_change_array); in RUNTIME_FUNCTION()
244 return *LiveEdit::CheckAndDropActivations(old_shared_array, new_shared_array, in RUNTIME_FUNCTION()
259 Handle<JSArray> result = LiveEdit::CompareStrings(s1, s2); in RUNTIME_FUNCTION()
[all …]
/external/v8/src/debug/
Dliveedit.cc558 Handle<JSArray> LiveEdit::CompareStrings(Handle<String> s1, in CompareStrings()
657 void LiveEdit::InitializeThreadLocal(Debug* debug) { in InitializeThreadLocal()
662 MaybeHandle<JSArray> LiveEdit::GatherCompileInfo(Handle<Script> script, in GatherCompileInfo()
869 void LiveEdit::ReplaceFunctionCode( in ReplaceFunctionCode()
944 void LiveEdit::FunctionSourceUpdated(Handle<JSArray> shared_info_array, in FunctionSourceUpdated()
954 void LiveEdit::FixupScript(Handle<Script> script, int max_function_literal_id) { in FixupScript()
975 void LiveEdit::SetFunctionScript(Handle<JSValue> function_wrapper, in SetFunctionScript()
1051 void LiveEdit::PatchFunctionPositions(Handle<JSArray> shared_info_array, in PatchFunctionPositions()
1111 Handle<Object> LiveEdit::ChangeScriptSource(Handle<Script> original_script, in ChangeScriptSource()
1135 void LiveEdit::ReplaceRefToNestedFunction( in ReplaceRefToNestedFunction()
[all …]
Dliveedit.js1040 var LiveEdit = {};
1041 LiveEdit.SetScriptSource = SetScriptSource;
1042 LiveEdit.ApplyPatchMultiChunk = ApplyPatchMultiChunk;
1043 LiveEdit.Failure = Failure;
1045 LiveEdit.TestApi = {
1051 global.Debug.LiveEdit = LiveEdit;
Dliveedit.h73 class LiveEdit : AllStatic {
Ddebug.h587 friend class LiveEdit; variable
Ddebug.cc477 LiveEdit::InitializeThreadLocal(this); in Break()
2095 LiveEdit::InitializeThreadLocal(this); in HandleDebugBreak()
/external/v8/src/inspector/
Ddebugger_script_externs.js83 var LiveEdit = {} variable
91 LiveEdit.SetScriptSource = function(script, newSource, previewOnly, change_log) {}
95 LiveEdit.Failure = Failure;
97 Debug.LiveEdit = LiveEdit;
Ddebugger-script.js167 var result = Debug.LiveEdit.SetScriptSource(scriptToEdit, newSource, preview, changeLog);
170 if (e instanceof Debug.LiveEdit.Failure && "details" in e) {
/external/v8/src/debug/x87/
Ddebug-x87.cc68 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { in GenerateDebugBreakStub()
69 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingValue))); in GenerateDebugBreakStub()
71 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingInitialSize))); in GenerateDebugBreakStub()
150 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/x64/
Ddebug-x64.cc128 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/ia32/
Ddebug-ia32.cc133 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/mips/
Ddebug-mips.cc141 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/mips64/
Ddebug-mips64.cc144 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/arm64/
Ddebug-arm64.cc161 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/arm/
Ddebug-arm.cc146 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/ppc/
Ddebug-ppc.cc147 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/s390/
Ddebug-s390.cc151 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/
DChangeLog21881 Support LiveEdit on Arm64 (Chromium issue 368580).
21895 MIPS: Support LiveEdit (Chromium issue 368580).
21900 Support LiveEdit on ARM (Chromium issue 368580).
23589 LiveEdit to mark more closure functions for re-instantiation when scope
24776 Fixed LiveEdit crashes when object/array literal is added. (issue 2368)
24988 Enable/disable LiveEdit using the (C++) debug API.
25454 Fixed LiveEdit for function with no locals (issue 825).