80e281a078
- Read the saved context from the entry frame when straddling across C++ frames while iterating over a stack trace in the debugger. This ensures that the correct context is setup in the ActivationFrame structure in these scenarios (instead of the empty context). - Read the saved context from the caller's frame when iterating over a stack trace in the debugger. The compiler saves the context in the caller frame before invoking closures, we read this saved context when iterating the stack trace. Review URL: https://codereview.chromium.org//12179020 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@18235 260f80e4-7a28-3924-810f-c04153c831b5
64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/globals.h"
|
|
#if defined(TARGET_ARCH_IA32)
|
|
|
|
#include "vm/instructions.h"
|
|
#include "vm/isolate.h"
|
|
#include "vm/stack_frame.h"
|
|
|
|
namespace dart {
|
|
|
|
// The constant kExitLinkOffsetInEntryFrame must be kept in sync with the
|
|
// code in the InvokeDartCode stub.
|
|
static const int kSavedContextOffsetInEntryFrame = -5 * kWordSize;
|
|
static const int kExitLinkOffsetInEntryFrame = -4 * kWordSize;
|
|
static const int kPcAddressOffsetFromSp = -1 * kWordSize;
|
|
static const int kSpOffsetFromPreviousFp = 2 * kWordSize;
|
|
|
|
|
|
intptr_t StackFrame::PcAddressOffsetFromSp() {
|
|
return kPcAddressOffsetFromSp;
|
|
}
|
|
|
|
|
|
uword StackFrame::GetCallerSp() const {
|
|
return fp() + kSpOffsetFromPreviousFp;
|
|
}
|
|
|
|
|
|
uword StackFrame::GetCallerFp() const {
|
|
return *(reinterpret_cast<uword*>(fp()));
|
|
}
|
|
|
|
|
|
intptr_t EntryFrame::ExitLinkOffset() const {
|
|
return kExitLinkOffsetInEntryFrame;
|
|
}
|
|
|
|
|
|
intptr_t EntryFrame::SavedContextOffset() const {
|
|
return kSavedContextOffsetInEntryFrame;
|
|
}
|
|
|
|
|
|
void StackFrameIterator::SetupLastExitFrameData() {
|
|
Isolate* current = Isolate::Current();
|
|
uword exit_marker = current->top_exit_frame_info();
|
|
frames_.fp_ = exit_marker;
|
|
}
|
|
|
|
|
|
void StackFrameIterator::SetupNextExitFrameData() {
|
|
uword exit_address = entry_.fp() + kExitLinkOffsetInEntryFrame;
|
|
uword exit_marker = *reinterpret_cast<uword*>(exit_address);
|
|
frames_.fp_ = exit_marker;
|
|
frames_.sp_ = 0;
|
|
}
|
|
|
|
} // namespace dart
|
|
|
|
#endif // defined TARGET_ARCH_IA32
|