2012-02-09 09:43:37 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2008-07-03 15:10:15 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#ifndef V8_FRAMES_INL_H_
|
|
|
|
#define V8_FRAMES_INL_H_
|
|
|
|
|
|
|
|
#include "frames.h"
|
2011-03-18 20:35:07 +00:00
|
|
|
#include "isolate.h"
|
2011-03-22 11:50:39 +00:00
|
|
|
#include "v8memory.h"
|
2011-03-18 20:35:07 +00:00
|
|
|
|
2009-05-05 12:06:20 +00:00
|
|
|
#if V8_TARGET_ARCH_IA32
|
2009-04-23 12:06:38 +00:00
|
|
|
#include "ia32/frames-ia32.h"
|
2009-05-05 12:06:20 +00:00
|
|
|
#elif V8_TARGET_ARCH_X64
|
|
|
|
#include "x64/frames-x64.h"
|
|
|
|
#elif V8_TARGET_ARCH_ARM
|
|
|
|
#include "arm/frames-arm.h"
|
2010-02-04 20:36:58 +00:00
|
|
|
#elif V8_TARGET_ARCH_MIPS
|
|
|
|
#include "mips/frames-mips.h"
|
2009-06-29 17:07:30 +00:00
|
|
|
#else
|
|
|
|
#error Unsupported target architecture.
|
2008-07-03 15:10:15 +00:00
|
|
|
#endif
|
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
inline Address StackHandler::address() const {
|
2009-06-10 09:00:07 +00:00
|
|
|
return reinterpret_cast<Address>(const_cast<StackHandler*>(this));
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline StackHandler* StackHandler::next() const {
|
|
|
|
const int offset = StackHandlerConstants::kNextOffset;
|
|
|
|
return FromAddress(Memory::Address_at(address() + offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool StackHandler::includes(Address address) const {
|
|
|
|
Address start = this->address();
|
|
|
|
Address end = start + StackHandlerConstants::kSize;
|
|
|
|
return start <= address && address <= end;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-30 08:54:43 +00:00
|
|
|
inline void StackHandler::Iterate(ObjectVisitor* v, Code* holder) const {
|
2011-08-12 10:52:49 +00:00
|
|
|
v->VisitPointer(context_address());
|
2011-11-11 13:48:14 +00:00
|
|
|
v->VisitPointer(code_address());
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline StackHandler* StackHandler::FromAddress(Address address) {
|
|
|
|
return reinterpret_cast<StackHandler*>(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-09 09:43:37 +00:00
|
|
|
inline bool StackHandler::is_js_entry() const {
|
|
|
|
return kind() == JS_ENTRY;
|
2011-10-03 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-09 09:43:37 +00:00
|
|
|
inline bool StackHandler::is_catch() const {
|
|
|
|
return kind() == CATCH;
|
2011-10-03 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-09 09:43:37 +00:00
|
|
|
inline bool StackHandler::is_finally() const {
|
|
|
|
return kind() == FINALLY;
|
2011-10-03 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-11 13:48:14 +00:00
|
|
|
inline StackHandler::Kind StackHandler::kind() const {
|
2008-07-03 15:10:15 +00:00
|
|
|
const int offset = StackHandlerConstants::kStateOffset;
|
2011-11-11 13:48:14 +00:00
|
|
|
return KindField::decode(Memory::unsigned_at(address() + offset));
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-08 08:08:23 +00:00
|
|
|
inline unsigned StackHandler::index() const {
|
|
|
|
const int offset = StackHandlerConstants::kStateOffset;
|
|
|
|
return IndexField::decode(Memory::unsigned_at(address() + offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-12 10:52:49 +00:00
|
|
|
inline Object** StackHandler::context_address() const {
|
|
|
|
const int offset = StackHandlerConstants::kContextOffset;
|
|
|
|
return reinterpret_cast<Object**>(address() + offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-11 13:48:14 +00:00
|
|
|
inline Object** StackHandler::code_address() const {
|
|
|
|
const int offset = StackHandlerConstants::kCodeOffset;
|
|
|
|
return reinterpret_cast<Object**>(address() + offset);
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline StackFrame::StackFrame(StackFrameIteratorBase* iterator)
|
Simplify isolates access during stack iteration (WAS: Move SafeStackFrameIterator::active_count_...)
While trying to fix Mac and Windows versions for this change:
http://codereview.chromium.org/6771047/, I figured out, that we
already store an isolate in StackFrameIterator, so we can use it in
frame objects, instead of requiring it from caller.
I've changed iterators usage to the following scheme: whenever a
caller maintains an isolate pointer, it just passes it to stack
iterator, and no more worries about passing it to frame content
accessors. If a caller uses current isolate, it can omit passing it
to iterator, in this case, an iterator will use the current isolate,
too.
There was a special case with LiveEdit, which creates
detached copies of frame objects.
R=vitalyr@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6794019
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7499 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2011-04-05 09:01:47 +00:00
|
|
|
: iterator_(iterator), isolate_(iterator_->isolate()) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
inline StackHandler* StackFrame::top_handler() const {
|
|
|
|
return iterator_->handler();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-03 11:13:20 +00:00
|
|
|
inline Code* StackFrame::LookupCode() const {
|
|
|
|
return GetContainingCode(isolate(), pc());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) {
|
2011-09-20 10:08:39 +00:00
|
|
|
return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
|
2011-03-18 20:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-28 13:40:41 +00:00
|
|
|
inline Address* StackFrame::ResolveReturnAddressLocation(Address* pc_address) {
|
|
|
|
if (return_address_location_resolver_ == NULL) {
|
|
|
|
return pc_address;
|
|
|
|
} else {
|
|
|
|
return reinterpret_cast<Address*>(
|
|
|
|
return_address_location_resolver_(
|
|
|
|
reinterpret_cast<uintptr_t>(pc_address)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline EntryFrame::EntryFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StackFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline EntryConstructFrame::EntryConstructFrame(
|
|
|
|
StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: EntryFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline ExitFrame::ExitFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StackFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline StandardFrame::StandardFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StackFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
inline Object* StandardFrame::GetExpression(int index) const {
|
|
|
|
return Memory::Object_at(GetExpressionAddress(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline void StandardFrame::SetExpression(int index, Object* value) {
|
|
|
|
Memory::Object_at(GetExpressionAddress(index)) = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Object* StandardFrame::context() const {
|
|
|
|
const int offset = StandardFrameConstants::kContextOffset;
|
|
|
|
return Memory::Object_at(fp() + offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Address StandardFrame::caller_fp() const {
|
|
|
|
return Memory::Address_at(fp() + StandardFrameConstants::kCallerFPOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Address StandardFrame::caller_pc() const {
|
|
|
|
return Memory::Address_at(ComputePCAddress(fp()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Address StandardFrame::ComputePCAddress(Address fp) {
|
|
|
|
return fp + StandardFrameConstants::kCallerPCOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool StandardFrame::IsArgumentsAdaptorFrame(Address fp) {
|
2009-08-27 07:44:37 +00:00
|
|
|
Object* marker =
|
|
|
|
Memory::Object_at(fp + StandardFrameConstants::kContextOffset);
|
|
|
|
return marker == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR);
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-10 09:09:38 +00:00
|
|
|
inline bool StandardFrame::IsConstructFrame(Address fp) {
|
|
|
|
Object* marker =
|
|
|
|
Memory::Object_at(fp + StandardFrameConstants::kMarkerOffset);
|
2012-02-28 09:05:55 +00:00
|
|
|
return marker == Smi::FromInt(StackFrame::CONSTRUCT);
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline JavaScriptFrame::JavaScriptFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StandardFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-06 14:23:27 +00:00
|
|
|
Address JavaScriptFrame::GetParameterSlot(int index) const {
|
|
|
|
int param_count = ComputeParametersCount();
|
|
|
|
ASSERT(-1 <= index && index < param_count);
|
|
|
|
int parameter_offset = (param_count - index - 1) * kPointerSize;
|
|
|
|
return caller_sp() + parameter_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Object* JavaScriptFrame::GetParameter(int index) const {
|
|
|
|
return Memory::Object_at(GetParameterSlot(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-26 12:09:32 +00:00
|
|
|
inline Address JavaScriptFrame::GetOperandSlot(int index) const {
|
|
|
|
Address base = fp() + JavaScriptFrameConstants::kLocal0Offset;
|
|
|
|
ASSERT(IsAddressAligned(base, kPointerSize));
|
2013-05-08 08:08:23 +00:00
|
|
|
ASSERT_EQ(type(), JAVA_SCRIPT);
|
|
|
|
ASSERT_LT(index, ComputeOperandsCount());
|
|
|
|
ASSERT_LE(0, index);
|
2013-04-26 12:09:32 +00:00
|
|
|
// Operand stack grows down.
|
|
|
|
return base - index * kPointerSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Object* JavaScriptFrame::GetOperand(int index) const {
|
|
|
|
return Memory::Object_at(GetOperandSlot(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline int JavaScriptFrame::ComputeOperandsCount() const {
|
|
|
|
Address base = fp() + JavaScriptFrameConstants::kLocal0Offset;
|
|
|
|
// Base points to low address of first operand and stack grows down, so add
|
|
|
|
// kPointerSize to get the actual stack size.
|
|
|
|
intptr_t stack_size_in_bytes = (base + kPointerSize) - sp();
|
|
|
|
ASSERT(IsAligned(stack_size_in_bytes, kPointerSize));
|
|
|
|
ASSERT(type() == JAVA_SCRIPT);
|
|
|
|
ASSERT(stack_size_in_bytes >= 0);
|
2013-04-26 15:10:34 +00:00
|
|
|
return static_cast<int>(stack_size_in_bytes >> kPointerSizeLog2);
|
2013-04-26 12:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
inline Object* JavaScriptFrame::receiver() const {
|
2011-04-06 14:23:27 +00:00
|
|
|
return GetParameter(-1);
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline void JavaScriptFrame::set_receiver(Object* value) {
|
2011-04-06 14:23:27 +00:00
|
|
|
Memory::Object_at(GetParameterSlot(-1)) = value;
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool JavaScriptFrame::has_adapted_arguments() const {
|
|
|
|
return IsArgumentsAdaptorFrame(caller_fp());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-11 16:45:58 +00:00
|
|
|
inline JSFunction* JavaScriptFrame::function() const {
|
|
|
|
return JSFunction::cast(function_slot_object());
|
2009-03-20 14:49:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline StubFrame::StubFrame(StackFrameIteratorBase* iterator)
|
2012-12-18 16:25:45 +00:00
|
|
|
: StandardFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline OptimizedFrame::OptimizedFrame(StackFrameIteratorBase* iterator)
|
2012-12-10 11:09:12 +00:00
|
|
|
: JavaScriptFrame(iterator) {
|
2012-12-05 11:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-03 11:13:20 +00:00
|
|
|
inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame(
|
2013-06-27 09:34:31 +00:00
|
|
|
StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) {
|
2011-10-03 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StandardFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-29 09:12:20 +00:00
|
|
|
inline StubFailureTrampolineFrame::StubFailureTrampolineFrame(
|
2013-06-27 09:34:31 +00:00
|
|
|
StackFrameIteratorBase* iterator) : StandardFrame(iterator) {
|
2013-01-29 09:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline ConstructFrame::ConstructFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: InternalFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-24 08:38:37 +00:00
|
|
|
inline JavaScriptFrameIterator::JavaScriptFrameIterator(
|
Simplify isolates access during stack iteration (WAS: Move SafeStackFrameIterator::active_count_...)
While trying to fix Mac and Windows versions for this change:
http://codereview.chromium.org/6771047/, I figured out, that we
already store an isolate in StackFrameIterator, so we can use it in
frame objects, instead of requiring it from caller.
I've changed iterators usage to the following scheme: whenever a
caller maintains an isolate pointer, it just passes it to stack
iterator, and no more worries about passing it to frame content
accessors. If a caller uses current isolate, it can omit passing it
to iterator, in this case, an iterator will use the current isolate,
too.
There was a special case with LiveEdit, which creates
detached copies of frame objects.
R=vitalyr@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6794019
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7499 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2011-04-05 09:01:47 +00:00
|
|
|
Isolate* isolate)
|
|
|
|
: iterator_(isolate) {
|
|
|
|
if (!done()) Advance();
|
|
|
|
}
|
|
|
|
|
2011-10-12 10:35:42 +00:00
|
|
|
|
2013-06-24 08:38:37 +00:00
|
|
|
inline JavaScriptFrameIterator::JavaScriptFrameIterator(
|
2011-10-12 10:35:42 +00:00
|
|
|
Isolate* isolate, ThreadLocalTop* top)
|
|
|
|
: iterator_(isolate, top) {
|
|
|
|
if (!done()) Advance();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-24 08:38:37 +00:00
|
|
|
inline JavaScriptFrame* JavaScriptFrameIterator::frame() const {
|
2008-07-03 15:10:15 +00:00
|
|
|
// TODO(1233797): The frame hierarchy needs to change. It's
|
|
|
|
// problematic that we can't use the safe-cast operator to cast to
|
|
|
|
// the JavaScript frame type, because we may encounter arguments
|
|
|
|
// adaptor frames.
|
|
|
|
StackFrame* frame = iterator_.frame();
|
|
|
|
ASSERT(frame->is_java_script() || frame->is_arguments_adaptor());
|
|
|
|
return static_cast<JavaScriptFrame*>(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-25 07:14:06 +00:00
|
|
|
inline JavaScriptFrame* SafeStackFrameIterator::frame() const {
|
2013-06-27 09:34:31 +00:00
|
|
|
ASSERT(!done());
|
|
|
|
ASSERT(frame_->is_java_script());
|
|
|
|
return static_cast<JavaScriptFrame*>(frame_);
|
2009-03-03 11:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_FRAMES_INL_H_
|