Commit a9958afe authored by peter.rybin@gmail.com's avatar peter.rybin@gmail.com

Roll over again fixed 3029033 Fix 'step in' after live edit stack manipulation

Review URL: http://codereview.chromium.org/3066018

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5160 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 1d24f5f5
...@@ -296,9 +296,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { ...@@ -296,9 +296,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
#undef __ #undef __
void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame, Object** Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
Handle<Code> code) { Handle<Code> code) {
UNREACHABLE(); UNREACHABLE();
return NULL;
} }
const int Debug::kFrameDropperFrameSize = -1; const int Debug::kFrameDropperFrameSize = -1;
......
...@@ -2115,6 +2115,10 @@ DebugCommandProcessor.prototype.changeLiveRequest_ = function(request, response) ...@@ -2115,6 +2115,10 @@ DebugCommandProcessor.prototype.changeLiveRequest_ = function(request, response)
var result_description = Debug.LiveEdit.SetScriptSource(the_script, var result_description = Debug.LiveEdit.SetScriptSource(the_script,
new_source, preview_only, change_log); new_source, preview_only, change_log);
response.body = {change_log: change_log, result: result_description}; response.body = {change_log: change_log, result: result_description};
if (!preview_only && !this.running_ && result_description.stack_modified) {
response.body.stepin_recommended = true;
}
}; };
......
...@@ -1224,36 +1224,42 @@ void Debug::PrepareStep(StepAction step_action, int step_count) { ...@@ -1224,36 +1224,42 @@ void Debug::PrepareStep(StepAction step_action, int step_count) {
it.FindBreakLocationFromAddress(frame->pc()); it.FindBreakLocationFromAddress(frame->pc());
// Compute whether or not the target is a call target. // Compute whether or not the target is a call target.
bool is_call_target = false;
bool is_load_or_store = false; bool is_load_or_store = false;
bool is_inline_cache_stub = false; bool is_inline_cache_stub = false;
bool is_at_restarted_function = false;
Handle<Code> call_function_stub; Handle<Code> call_function_stub;
if (RelocInfo::IsCodeTarget(it.rinfo()->rmode())) {
Address target = it.rinfo()->target_address();
Code* code = Code::GetCodeFromTargetAddress(target);
if (code->is_call_stub() || code->is_keyed_call_stub()) {
is_call_target = true;
}
if (code->is_inline_cache_stub()) {
is_inline_cache_stub = true;
is_load_or_store = !is_call_target;
}
// Check if target code is CallFunction stub. if (thread_local_.restarter_frame_function_pointer_ == NULL) {
Code* maybe_call_function_stub = code; if (RelocInfo::IsCodeTarget(it.rinfo()->rmode())) {
// If there is a breakpoint at this line look at the original code to bool is_call_target = false;
// check if it is a CallFunction stub. Address target = it.rinfo()->target_address();
if (it.IsDebugBreak()) { Code* code = Code::GetCodeFromTargetAddress(target);
Address original_target = it.original_rinfo()->target_address(); if (code->is_call_stub() || code->is_keyed_call_stub()) {
maybe_call_function_stub = is_call_target = true;
Code::GetCodeFromTargetAddress(original_target); }
} if (code->is_inline_cache_stub()) {
if (maybe_call_function_stub->kind() == Code::STUB && is_inline_cache_stub = true;
maybe_call_function_stub->major_key() == CodeStub::CallFunction) { is_load_or_store = !is_call_target;
// Save reference to the code as we may need it to find out arguments }
// count for 'step in' later.
call_function_stub = Handle<Code>(maybe_call_function_stub); // Check if target code is CallFunction stub.
Code* maybe_call_function_stub = code;
// If there is a breakpoint at this line look at the original code to
// check if it is a CallFunction stub.
if (it.IsDebugBreak()) {
Address original_target = it.original_rinfo()->target_address();
maybe_call_function_stub =
Code::GetCodeFromTargetAddress(original_target);
}
if (maybe_call_function_stub->kind() == Code::STUB &&
maybe_call_function_stub->major_key() == CodeStub::CallFunction) {
// Save reference to the code as we may need it to find out arguments
// count for 'step in' later.
call_function_stub = Handle<Code>(maybe_call_function_stub);
}
} }
} else {
is_at_restarted_function = true;
} }
// If this is the last break code target step out is the only possibility. // If this is the last break code target step out is the only possibility.
...@@ -1282,7 +1288,7 @@ void Debug::PrepareStep(StepAction step_action, int step_count) { ...@@ -1282,7 +1288,7 @@ void Debug::PrepareStep(StepAction step_action, int step_count) {
ActivateStepOut(frames_it.frame()); ActivateStepOut(frames_it.frame());
} }
} else if (!(is_inline_cache_stub || RelocInfo::IsConstructCall(it.rmode()) || } else if (!(is_inline_cache_stub || RelocInfo::IsConstructCall(it.rmode()) ||
!call_function_stub.is_null()) !call_function_stub.is_null() || is_at_restarted_function)
|| step_action == StepNext || step_action == StepMin) { || step_action == StepNext || step_action == StepMin) {
// Step next or step min. // Step next or step min.
...@@ -1294,9 +1300,18 @@ void Debug::PrepareStep(StepAction step_action, int step_count) { ...@@ -1294,9 +1300,18 @@ void Debug::PrepareStep(StepAction step_action, int step_count) {
debug_info->code()->SourceStatementPosition(frame->pc()); debug_info->code()->SourceStatementPosition(frame->pc());
thread_local_.last_fp_ = frame->fp(); thread_local_.last_fp_ = frame->fp();
} else { } else {
// If it's CallFunction stub ensure target function is compiled and flood // If there's restarter frame on top of the stack, just get the pointer
// it with one shot breakpoints. // to function which is going to be restarted.
if (!call_function_stub.is_null()) { if (is_at_restarted_function) {
Handle<JSFunction> restarted_function(
JSFunction::cast(*thread_local_.restarter_frame_function_pointer_));
Handle<SharedFunctionInfo> restarted_shared(
restarted_function->shared());
FloodWithOneShot(restarted_shared);
} else if (!call_function_stub.is_null()) {
// If it's CallFunction stub ensure target function is compiled and flood
// it with one shot breakpoints.
// Find out number of arguments from the stub minor key. // Find out number of arguments from the stub minor key.
// Reverse lookup required as the minor key cannot be retrieved // Reverse lookup required as the minor key cannot be retrieved
// from the code object. // from the code object.
...@@ -1767,9 +1782,12 @@ bool Debug::IsBreakAtReturn(JavaScriptFrame* frame) { ...@@ -1767,9 +1782,12 @@ bool Debug::IsBreakAtReturn(JavaScriptFrame* frame) {
void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id, void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
FrameDropMode mode) { FrameDropMode mode,
Object** restarter_frame_function_pointer) {
thread_local_.frame_drop_mode_ = mode; thread_local_.frame_drop_mode_ = mode;
thread_local_.break_frame_id_ = new_break_frame_id; thread_local_.break_frame_id_ = new_break_frame_id;
thread_local_.restarter_frame_function_pointer_ =
restarter_frame_function_pointer;
} }
......
...@@ -332,6 +332,7 @@ class Debug { ...@@ -332,6 +332,7 @@ class Debug {
k_after_break_target_address, k_after_break_target_address,
k_debug_break_return_address, k_debug_break_return_address,
k_debug_break_slot_address, k_debug_break_slot_address,
k_restarter_frame_function_pointer,
k_register_address k_register_address
}; };
...@@ -339,6 +340,10 @@ class Debug { ...@@ -339,6 +340,10 @@ class Debug {
static Address* after_break_target_address() { static Address* after_break_target_address() {
return reinterpret_cast<Address*>(&thread_local_.after_break_target_); return reinterpret_cast<Address*>(&thread_local_.after_break_target_);
} }
static Address* restarter_frame_function_pointer_address() {
Object*** address = &thread_local_.restarter_frame_function_pointer_;
return reinterpret_cast<Address*>(address);
}
// Support for saving/restoring registers when handling debug break calls. // Support for saving/restoring registers when handling debug break calls.
static Object** register_address(int r) { static Object** register_address(int r) {
...@@ -415,10 +420,22 @@ class Debug { ...@@ -415,10 +420,22 @@ class Debug {
}; };
static void FramesHaveBeenDropped(StackFrame::Id new_break_frame_id, static void FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
FrameDropMode mode); FrameDropMode mode,
Object** restarter_frame_function_pointer);
// Initializes an artificial stack frame. The data it contains is used for:
// a. successful work of frame dropper code which eventually gets control,
// b. being compatible with regular stack structure for various stack
// iterators.
// Returns address of stack allocated pointer to restarted function,
// the value that is called 'restarter_frame_function_pointer'. The value
// at this address (possibly updated by GC) may be used later when preparing
// 'step in' operation.
// The implementation is architecture-specific.
// TODO(LiveEdit): consider reviewing it as architecture-independent.
static Object** SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
Handle<Code> code);
static void SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
Handle<Code> code);
static const int kFrameDropperFrameSize; static const int kFrameDropperFrameSize;
private: private:
...@@ -495,6 +512,11 @@ class Debug { ...@@ -495,6 +512,11 @@ class Debug {
// Pending interrupts scheduled while debugging. // Pending interrupts scheduled while debugging.
int pending_interrupts_; int pending_interrupts_;
// When restarter frame is on stack, stores the address
// of the pointer to function being restarted. Otherwise (most of the time)
// stores NULL. This pointer is used with 'step in' implementation.
Object** restarter_frame_function_pointer_;
}; };
// Storage location for registers when handling debug break calls // Storage location for registers when handling debug break calls
...@@ -938,6 +960,10 @@ class Debug_Address { ...@@ -938,6 +960,10 @@ class Debug_Address {
return Debug_Address(Debug::k_debug_break_return_address); return Debug_Address(Debug::k_debug_break_return_address);
} }
static Debug_Address RestarterFrameFunctionPointer() {
return Debug_Address(Debug::k_restarter_frame_function_pointer);
}
static Debug_Address Register(int reg) { static Debug_Address Register(int reg) {
return Debug_Address(Debug::k_register_address, reg); return Debug_Address(Debug::k_register_address, reg);
} }
...@@ -950,6 +976,9 @@ class Debug_Address { ...@@ -950,6 +976,9 @@ class Debug_Address {
return reinterpret_cast<Address>(Debug::debug_break_return_address()); return reinterpret_cast<Address>(Debug::debug_break_return_address());
case Debug::k_debug_break_slot_address: case Debug::k_debug_break_slot_address:
return reinterpret_cast<Address>(Debug::debug_break_slot_address()); return reinterpret_cast<Address>(Debug::debug_break_slot_address());
case Debug::k_restarter_frame_function_pointer:
return reinterpret_cast<Address>(
Debug::restarter_frame_function_pointer_address());
case Debug::k_register_address: case Debug::k_register_address:
return reinterpret_cast<Address>(Debug::register_address(reg_)); return reinterpret_cast<Address>(Debug::register_address(reg_));
default: default:
......
...@@ -265,6 +265,10 @@ void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) { ...@@ -265,6 +265,10 @@ void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
// -- context // -- context
// -- frame base // -- frame base
void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
ExternalReference restarter_frame_function_slot =
ExternalReference(Debug_Address::RestarterFrameFunctionPointer());
__ mov(Operand::StaticVariable(restarter_frame_function_slot), Immediate(0));
// We do not know our frame height, but set esp based on ebp. // We do not know our frame height, but set esp based on ebp.
__ lea(esp, Operand(ebp, -4 * kPointerSize)); __ lea(esp, Operand(ebp, -4 * kPointerSize));
...@@ -288,8 +292,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { ...@@ -288,8 +292,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
#undef __ #undef __
void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame, // TODO(LiveEdit): consider making it platform-independent.
Handle<Code> code) { // TODO(LiveEdit): use more named constants instead of numbers.
Object** Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
Handle<Code> code) {
ASSERT(bottom_js_frame->is_java_script()); ASSERT(bottom_js_frame->is_java_script());
Address fp = bottom_js_frame->fp(); Address fp = bottom_js_frame->fp();
...@@ -298,7 +304,10 @@ void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame, ...@@ -298,7 +304,10 @@ void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
Memory::Object_at(fp - 3 * kPointerSize) = *code; Memory::Object_at(fp - 3 * kPointerSize) = *code;
Memory::Object_at(fp - 2 * kPointerSize) = Smi::FromInt(StackFrame::INTERNAL); Memory::Object_at(fp - 2 * kPointerSize) = Smi::FromInt(StackFrame::INTERNAL);
return reinterpret_cast<Object**>(&Memory::Object_at(fp - 4 * kPointerSize));
} }
const int Debug::kFrameDropperFrameSize = 5; const int Debug::kFrameDropperFrameSize = 5;
......
...@@ -1188,7 +1188,8 @@ static bool FixTryCatchHandler(StackFrame* top_frame, ...@@ -1188,7 +1188,8 @@ static bool FixTryCatchHandler(StackFrame* top_frame,
static const char* DropFrames(Vector<StackFrame*> frames, static const char* DropFrames(Vector<StackFrame*> frames,
int top_frame_index, int top_frame_index,
int bottom_js_frame_index, int bottom_js_frame_index,
Debug::FrameDropMode* mode) { Debug::FrameDropMode* mode,
Object*** restarter_frame_function_pointer) {
if (Debug::kFrameDropperFrameSize < 0) { if (Debug::kFrameDropperFrameSize < 0) {
return "Stack manipulations are not supported in this architecture."; return "Stack manipulations are not supported in this architecture.";
} }
...@@ -1238,7 +1239,10 @@ static const char* DropFrames(Vector<StackFrame*> frames, ...@@ -1238,7 +1239,10 @@ static const char* DropFrames(Vector<StackFrame*> frames,
top_frame->set_pc(code->entry()); top_frame->set_pc(code->entry());
pre_top_frame->SetCallerFp(bottom_js_frame->fp()); pre_top_frame->SetCallerFp(bottom_js_frame->fp());
Debug::SetUpFrameDropperFrame(bottom_js_frame, code); *restarter_frame_function_pointer =
Debug::SetUpFrameDropperFrame(bottom_js_frame, code);
ASSERT((**restarter_frame_function_pointer)->IsJSFunction());
for (Address a = unused_stack_top; for (Address a = unused_stack_top;
a < unused_stack_bottom; a < unused_stack_bottom;
...@@ -1328,8 +1332,10 @@ static const char* DropActivationsInActiveThread( ...@@ -1328,8 +1332,10 @@ static const char* DropActivationsInActiveThread(
} }
Debug::FrameDropMode drop_mode = Debug::FRAMES_UNTOUCHED; Debug::FrameDropMode drop_mode = Debug::FRAMES_UNTOUCHED;
Object** restarter_frame_function_pointer = NULL;
const char* error_message = DropFrames(frames, top_frame_index, const char* error_message = DropFrames(frames, top_frame_index,
bottom_js_frame_index, &drop_mode); bottom_js_frame_index, &drop_mode,
&restarter_frame_function_pointer);
if (error_message != NULL) { if (error_message != NULL) {
return error_message; return error_message;
...@@ -1343,7 +1349,8 @@ static const char* DropActivationsInActiveThread( ...@@ -1343,7 +1349,8 @@ static const char* DropActivationsInActiveThread(
break; break;
} }
} }
Debug::FramesHaveBeenDropped(new_id, drop_mode); Debug::FramesHaveBeenDropped(new_id, drop_mode,
restarter_frame_function_pointer);
// Replace "blocked on active" with "replaced on active" status. // Replace "blocked on active" with "replaced on active" status.
for (int i = 0; i < array_len; i++) { for (int i = 0; i < array_len; i++) {
......
...@@ -117,9 +117,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { ...@@ -117,9 +117,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
#undef __ #undef __
void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame, Object** Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
Handle<Code> code) { Handle<Code> code) {
UNREACHABLE(); UNREACHABLE();
return NULL;
} }
const int Debug::kFrameDropperFrameSize = -1; const int Debug::kFrameDropperFrameSize = -1;
......
...@@ -237,6 +237,10 @@ void ExternalReferenceTable::PopulateTable() { ...@@ -237,6 +237,10 @@ void ExternalReferenceTable::PopulateTable() {
DEBUG_ADDRESS, DEBUG_ADDRESS,
Debug::k_debug_break_return_address << kDebugIdShift, Debug::k_debug_break_return_address << kDebugIdShift,
"Debug::debug_break_return_address()"); "Debug::debug_break_return_address()");
Add(Debug_Address(Debug::k_restarter_frame_function_pointer).address(),
DEBUG_ADDRESS,
Debug::k_restarter_frame_function_pointer << kDebugIdShift,
"Debug::restarter_frame_function_pointer_address()");
const char* debug_register_format = "Debug::register_address(%i)"; const char* debug_register_format = "Debug::register_address(%i)";
int dr_format_length = StrLength(debug_register_format); int dr_format_length = StrLength(debug_register_format);
for (int i = 0; i < kNumJSCallerSaved; ++i) { for (int i = 0; i < kNumJSCallerSaved; ++i) {
...@@ -478,6 +482,7 @@ ExternalReferenceEncoder::ExternalReferenceEncoder() ...@@ -478,6 +482,7 @@ ExternalReferenceEncoder::ExternalReferenceEncoder()
uint32_t ExternalReferenceEncoder::Encode(Address key) const { uint32_t ExternalReferenceEncoder::Encode(Address key) const {
int index = IndexOf(key); int index = IndexOf(key);
ASSERT(key == NULL || index >= 0);
return index >=0 ? ExternalReferenceTable::instance()->code(index) : 0; return index >=0 ? ExternalReferenceTable::instance()->code(index) : 0;
} }
......
...@@ -213,9 +213,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { ...@@ -213,9 +213,10 @@ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
#undef __ #undef __
void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame, Object** Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
Handle<Code> code) { Handle<Code> code) {
UNREACHABLE(); UNREACHABLE();
return NULL;
} }
const int Debug::kFrameDropperFrameSize = -1; const int Debug::kFrameDropperFrameSize = -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment