Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: src/frames-inl.h

Issue 16578008: Improved function entry hook coverage (Closed) Base URL: https://chromium.googlesource.com/external/v8.git@post_fix
Patch Set: Remove reliance on space->Contains check, which is only valid for V8-allocated memory. Go to unsign… Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 inline Code* StackFrame::LookupCode() const { 129 inline Code* StackFrame::LookupCode() const {
130 return GetContainingCode(isolate(), pc()); 130 return GetContainingCode(isolate(), pc());
131 } 131 }
132 132
133 133
134 inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) { 134 inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) {
135 return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code; 135 return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
136 } 136 }
137 137
138 138
139 inline Address* StackFrame::ResolveReturnAddressLocation(Address* pc_address) {
140 if (return_address_location_resolver_ == NULL) {
141 return pc_address;
142 } else {
143 return reinterpret_cast<Address*>(
144 return_address_location_resolver_(
145 reinterpret_cast<uintptr_t>(pc_address)));
146 }
147 }
148
149
139 inline EntryFrame::EntryFrame(StackFrameIterator* iterator) 150 inline EntryFrame::EntryFrame(StackFrameIterator* iterator)
140 : StackFrame(iterator) { 151 : StackFrame(iterator) {
141 } 152 }
142 153
143 154
144 inline EntryConstructFrame::EntryConstructFrame(StackFrameIterator* iterator) 155 inline EntryConstructFrame::EntryConstructFrame(StackFrameIterator* iterator)
145 : EntryFrame(iterator) { 156 : EntryFrame(iterator) {
146 } 157 }
147 158
148 159
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 template<typename Iterator> 374 template<typename Iterator>
364 void JavaScriptFrameIteratorTemp<Iterator>::Reset() { 375 void JavaScriptFrameIteratorTemp<Iterator>::Reset() {
365 iterator_.Reset(); 376 iterator_.Reset();
366 if (!done()) Advance(); 377 if (!done()) Advance();
367 } 378 }
368 379
369 380
370 } } // namespace v8::internal 381 } } // namespace v8::internal
371 382
372 #endif // V8_FRAMES_INL_H_ 383 #endif // V8_FRAMES_INL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698