Index: src/frames-inl.h |
diff --git a/src/frames-inl.h b/src/frames-inl.h |
old mode 100644 |
new mode 100755 |
index 1228ccf18df4c4016884f4d44d7479c0eaf3cbd6..36e68aef992d1dde9713ec13a4c791397779b158 |
--- a/src/frames-inl.h |
+++ b/src/frames-inl.h |
@@ -136,6 +136,17 @@ inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) { |
} |
+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))); |
+ } |
+} |
+ |
+ |
inline EntryFrame::EntryFrame(StackFrameIterator* iterator) |
: StackFrame(iterator) { |
} |