Home
last modified time | relevance | path

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

12

/external/v8/test/mjsunit/es6/
Dgenerators-debug-liveedit.js8 var LiveEdit = Debug.LiveEdit; variable
51 LiveEdit.TestApi.ApplySingleChunkPatch(script, pos, from.length, to,
70 LiveEdit.Failure);
90 LiveEdit.Failure);
109 LiveEdit.Failure);
Ddebug-liveedit-new-target-2.js29 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(
34 assertInstanceof(e, Debug.LiveEdit.Failure);
Ddebug-liveedit-new-target-1.js32 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(
37 assertInstanceof(e, Debug.LiveEdit.Failure);
/external/v8/src/runtime/
Druntime-liveedit.cc75 isolate, result, LiveEdit::GatherCompileInfo(script_handle, source)); in RUNTIME_FUNCTION()
94 Handle<Object> old_script = LiveEdit::ChangeScriptSource( in RUNTIME_FUNCTION()
113 LiveEdit::FunctionSourceUpdated(shared_info); in RUNTIME_FUNCTION()
127 LiveEdit::ReplaceFunctionCode(new_compile_info, shared_info); in RUNTIME_FUNCTION()
148 LiveEdit::SetFunctionScript(function_wrapper, script_object); in RUNTIME_FUNCTION()
172 LiveEdit::ReplaceRefToNestedFunction(parent_wrapper, orig_wrapper, in RUNTIME_FUNCTION()
191 LiveEdit::PatchFunctionPositions(shared_array, position_change_array); in RUNTIME_FUNCTION()
229 return *LiveEdit::CheckAndDropActivations(old_shared_array, new_shared_array, in RUNTIME_FUNCTION()
244 Handle<JSArray> result = LiveEdit::CompareStrings(s1, s2); in RUNTIME_FUNCTION()
280 const char* error_message = LiveEdit::RestartFrame(it.frame()); in RUNTIME_FUNCTION()
/external/v8/src/debug/
Dliveedit.cc557 Handle<JSArray> LiveEdit::CompareStrings(Handle<String> s1, in CompareStrings()
803 void LiveEdit::InitializeThreadLocal(Debug* debug) { in InitializeThreadLocal()
804 debug->thread_local_.frame_drop_mode_ = LiveEdit::FRAMES_UNTOUCHED; in InitializeThreadLocal()
808 bool LiveEdit::SetAfterBreakTarget(Debug* debug) { in SetAfterBreakTarget()
834 MaybeHandle<JSArray> LiveEdit::GatherCompileInfo(Handle<Script> script, in GatherCompileInfo()
1112 void LiveEdit::ReplaceFunctionCode( in ReplaceFunctionCode()
1150 void LiveEdit::FunctionSourceUpdated(Handle<JSArray> shared_info_array) { in FunctionSourceUpdated()
1159 void LiveEdit::SetFunctionScript(Handle<JSValue> function_wrapper, in SetFunctionScript()
1334 void LiveEdit::PatchFunctionPositions(Handle<JSArray> shared_info_array, in PatchFunctionPositions()
1390 Handle<Object> LiveEdit::ChangeScriptSource(Handle<Script> original_script, in ChangeScriptSource()
[all …]
Dliveedit.js1118 var LiveEdit = {};
1119 LiveEdit.SetScriptSource = SetScriptSource;
1120 LiveEdit.ApplyPatchMultiChunk = ApplyPatchMultiChunk;
1121 LiveEdit.Failure = Failure;
1122 LiveEdit.GetPcFromSourcePos = GetPcFromSourcePos;
1124 LiveEdit.TestApi = {
1130 global.Debug.LiveEdit = LiveEdit;
/external/v8/src/debug/mips64/
Ddebug-mips64.cc69 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue))); in GenerateDebugBreakStub()
71 Operand(kPointerSize * LiveEdit::kFramePaddingInitialSize)); in GenerateDebugBreakStub()
72 for (int i = LiveEdit::kFramePaddingInitialSize - 1; i >= 0; i--) { in GenerateDebugBreakStub()
75 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize))); in GenerateDebugBreakStub()
138 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/mips/
Ddebug-mips.cc67 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue))); in GenerateDebugBreakStub()
69 Operand(kPointerSize * LiveEdit::kFramePaddingInitialSize)); in GenerateDebugBreakStub()
70 for (int i = LiveEdit::kFramePaddingInitialSize - 1; i >= 0; i--) { in GenerateDebugBreakStub()
73 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize))); in GenerateDebugBreakStub()
136 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/test/mjsunit/
Ddebug-liveedit-utils.js39 var NoChunkTranslator = new Debug.LiveEdit.TestApi.PosTranslator([]);
46 var SingleChunkTranslator = new Debug.LiveEdit.TestApi.PosTranslator([20, 30, 25]);
83 var MultiChunkTranslator = new Debug.LiveEdit.TestApi.PosTranslator([10, 20, 15, 40, 40, 50, 60, 70…
Ddebug-liveedit-patch-positions.js66 var pc = Debug.LiveEdit.GetPcFromSourcePos(func, positions[i]);
93 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script,
Ddebug-liveedit-check-stack.js63 …Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_pat…
79 if (e instanceof Debug.LiveEdit.Failure) {
Ddebug-liveedit-1.js46 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patc…
Ddebug-liveedit-2.js58 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patc…
Ddebug-liveedit-4.js61 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
Ddebug-liveedit-3.js60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
Ddebug-liveedit-compile-error.js48 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos,
Ddebug-liveedit-patch-positions-replace.js62 …Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_body.length, new_body_patch, …
Ddebug-liveedit-newsource.js68 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
Ddebug-liveedit-literals.js57 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos,
/external/v8/src/debug/ia32/
Ddebug-ia32.cc63 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { in GenerateDebugBreakStub()
64 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingValue))); in GenerateDebugBreakStub()
66 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingInitialSize))); in GenerateDebugBreakStub()
134 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/arm64/
Ddebug-arm64.cc86 __ Mov(scratch, Smi::FromInt(LiveEdit::kFramePaddingValue)); in GenerateDebugBreakStub()
87 __ PushMultipleTimes(scratch, LiveEdit::kFramePaddingInitialSize); in GenerateDebugBreakStub()
88 __ Mov(scratch, Smi::FromInt(LiveEdit::kFramePaddingInitialSize)); in GenerateDebugBreakStub()
156 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/ppc/
Ddebug-ppc.cc75 __ LoadSmiLiteral(ip, Smi::FromInt(LiveEdit::kFramePaddingValue)); in GenerateDebugBreakStub()
76 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { in GenerateDebugBreakStub()
79 __ LoadSmiLiteral(ip, Smi::FromInt(LiveEdit::kFramePaddingInitialSize)); in GenerateDebugBreakStub()
145 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/x64/
Ddebug-x64.cc64 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { in GenerateDebugBreakStub()
65 __ Push(Smi::FromInt(LiveEdit::kFramePaddingValue)); in GenerateDebugBreakStub()
67 __ Push(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)); in GenerateDebugBreakStub()
134 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/x87/
Ddebug-x87.cc63 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { in GenerateDebugBreakStub()
64 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingValue))); in GenerateDebugBreakStub()
66 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingInitialSize))); in GenerateDebugBreakStub()
134 const bool LiveEdit::kFrameDropperSupported = true;
/external/v8/src/debug/arm/
Ddebug-arm.cc73 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue))); in GenerateDebugBreakStub()
74 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { in GenerateDebugBreakStub()
77 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize))); in GenerateDebugBreakStub()
146 const bool LiveEdit::kFrameDropperSupported = true;

12