HomeSort by relevance Sort by last modified time
    Searched refs:LiveEdit (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/v8/test/mjsunit/es6/
generators-debug-liveedit.js 8 var LiveEdit = Debug.LiveEdit;
51 LiveEdit.TestApi.ApplySingleChunkPatch(script, pos, from.length, to,
70 LiveEdit.Failure);
90 LiveEdit.Failure);
109 LiveEdit.Failure);
  /external/chromium_org/v8/src/mips64/
debug-mips64.cc 108 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue)));
110 Operand(kPointerSize * LiveEdit::kFramePaddingInitialSize));
111 for (int i = LiveEdit::kFramePaddingInitialSize - 1; i >= 0; i--) {
114 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)));
324 const bool LiveEdit::kFrameDropperSupported = true;
  /external/chromium_org/v8/src/
liveedit.cc 8 #include "src/liveedit.h"
353 // TODO(LiveEdit): Currently it's actually an array of charactres.
556 Handle<JSArray> LiveEdit::CompareStrings(Handle<String> s1,
808 void LiveEdit::InitializeThreadLocal(Debug* debug) {
809 debug->thread_local_.frame_drop_mode_ = LiveEdit::FRAMES_UNTOUCHED;
813 bool LiveEdit::SetAfterBreakTarget(Debug* debug) {
843 MaybeHandle<JSArray> LiveEdit::GatherCompileInfo(Handle<Script> script,
909 void LiveEdit::WrapSharedFunctionInfos(Handle<JSArray> array) {
    [all...]
liveedit-debugger.js 5 // LiveEdit feature implementation. The script should be executed after
8 // A LiveEdit namespace. It contains functions that modifies JavaScript code
21 // LiveEdit namespace is declared inside a single function constructor.
22 Debug.LiveEdit = new function() {
201 // TODO(LiveEdit): take into account whether it's source_changed or
230 // TODO(LiveEdit): consider not using actual scripts as script, because
243 // LiveEdit itself believe that any function in heap that points to a
312 // expects this; neither does LiveEdit subsystem on next call).
371 // TODO(LiveEdit): be careful with resource offset here.
858 // TODO(LiveEdit): function is not compiled yet or is already collected
    [all...]
debug.h 17 #include "src/liveedit.h"
439 // Support for LiveEdit
441 LiveEdit::FrameDropMode mode,
631 // Stores the way how LiveEdit has patched the stack. It is used when
633 LiveEdit::FrameDropMode frame_drop_mode_;
649 friend class LiveEdit;
liveedit.h 37 // actually records any data only when liveedit operation is in process;
59 class LiveEdit : AllStatic {
129 // A copy of this is in liveedit-debugger.js.
151 * internal frame that has a flexible stack structure. LiveEdit can shift
158 * LiveEdit routine frames
179 // A number of words that should be reserved on stack for the LiveEdit use.
  /external/chromium_org/v8/src/ia32/
debug-ia32.cc 81 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
82 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingValue)));
84 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)));
320 const bool LiveEdit::kFrameDropperSupported = true;
  /external/chromium_org/v8/src/x64/
debug-x64.cc 81 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
82 __ Push(Smi::FromInt(LiveEdit::kFramePaddingValue));
84 __ Push(Smi::FromInt(LiveEdit::kFramePaddingInitialSize));
300 const bool LiveEdit::kFrameDropperSupported = true;
  /external/chromium_org/v8/src/x87/
debug-x87.cc 81 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
82 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingValue)));
84 __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)));
320 const bool LiveEdit::kFrameDropperSupported = true;
  /external/chromium_org/v8/src/mips/
debug-mips.cc 105 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue)));
107 Operand(kPointerSize * LiveEdit::kFramePaddingInitialSize));
108 for (int i = LiveEdit::kFramePaddingInitialSize - 1; i >= 0; i--) {
111 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)));
321 const bool LiveEdit::kFrameDropperSupported = true;
  /external/chromium_org/v8/src/arm/
debug-arm.cc 97 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue)));
98 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
101 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)));
318 const bool LiveEdit::kFrameDropperSupported = true;
  /external/chromium_org/v8/src/arm64/
debug-arm64.cc 135 __ Mov(scratch, Smi::FromInt(LiveEdit::kFramePaddingValue));
136 __ PushMultipleTimes(scratch, LiveEdit::kFramePaddingInitialSize);
137 __ Mov(scratch, Smi::FromInt(LiveEdit::kFramePaddingInitialSize));
374 const bool LiveEdit::kFrameDropperSupported = true;
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-double-call.js 97 Debug.LiveEdit.SetScriptSource(script, script_text_generator.get(),
100 print("LiveEdit exception: " + e);
debug-liveedit-check-stack.js 63 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
79 if (e instanceof Debug.LiveEdit.Failure) {
debug-liveedit-patch-positions.js 65 var pc = Debug.LiveEdit.GetPcFromSourcePos(func, positions[i]);
92 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script,
debug-liveedit-1.js 46 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
debug-liveedit-compile-error.js 48 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos,
debug-liveedit-2.js 58 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
debug-liveedit-3.js 60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
debug-liveedit-4.js 61 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
debug-liveedit-breakpoints.js 77 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
debug-liveedit-newsource.js 68 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
debug-liveedit-stack-padding.js 57 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
LiveEditSupport.js 43 this._projectId = "liveedit:" + target.id();
44 this._projectDelegate = new WebInspector.DebuggerProjectDelegate(workspace, this._projectId, WebInspector.projectTypes.LiveEdit);
144 WebInspector.console.addMessage(WebInspector.UIString("LiveEdit failed: %s", error), warningLevel);
150 var message = WebInspector.UIString("LiveEdit compile failed: %s%s", compileError.message, location);
153 WebInspector.console.addMessage(WebInspector.UIString("Unknown LiveEdit error: %s; %s", JSON.stringify(errorData), error), warningLevel);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DebuggerScript.js 289 var result = Debug.LiveEdit.SetScriptSource(scriptToEdit, newSource, preview, changeLog);
292 if (e instanceof Debug.LiveEdit.Failure && "details" in e) {
455 return Debug.LiveEdit.RestartFrame(frameMirror);

Completed in 765 milliseconds

1 2