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

Unified Diff: src/api.cc

Issue 9401019: Support for return-address rewriting profilers. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Supply return address resolution function through an API. Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/v8.h ('k') | src/frames.h » ('j') | src/frames.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index 775c884c593e3ed90521bef223cf4b816ed35446..05852acfab2b660ff55836f19fb5650b0170807b 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -4025,6 +4025,10 @@ void v8::V8::SetEntropySource(EntropySource source) {
i::V8::SetEntropySource(source);
}
Vyacheslav Egorov (Chromium) 2012/02/24 10:34:02 add empty line
Sigurður Ásgeirsson 2012/02/24 14:46:04 Done.
+void v8::V8::SetReturnAddressLocationResolver(
+ ReturnAddressLocationResolver return_address_resolver) {
+ i::V8::SetReturnAddressLocationResolver(return_address_resolver);
+}
Vyacheslav Egorov (Chromium) 2012/02/24 10:34:02 add empty line
Sigurður Ásgeirsson 2012/02/24 14:46:04 Done.
bool v8::V8::Dispose() {
i::Isolate* isolate = i::Isolate::Current();
« no previous file with comments | « include/v8.h ('k') | src/frames.h » ('j') | src/frames.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698