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

Unified Diff: src/v8.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
« src/frames.cc ('K') | « src/v8.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8.cc
diff --git a/src/v8.cc b/src/v8.cc
index e4b37b180e1f49eefc2601ed93a846769c961c8f..c03286bc3b2235bb16870c1ac52b90199b09098e 100644
--- a/src/v8.cc
+++ b/src/v8.cc
@@ -145,6 +145,10 @@ void V8::SetEntropySource(EntropySource source) {
entropy_source = source;
}
Vyacheslav Egorov (Chromium) 2012/02/24 10:34:02 +\n
Sigurður Ásgeirsson 2012/02/24 14:46:04 Oops, force of habit. Done.
+void V8::SetReturnAddressLocationResolver(
+ ReturnAddressLocationResolver resolver) {
+ StackFrame::SetReturnAddressLocationResolver(resolver);
+}
Vyacheslav Egorov (Chromium) 2012/02/24 10:34:02 +\n
Sigurður Ásgeirsson 2012/02/24 14:46:04 Done.
// Used by JavaScript APIs
uint32_t V8::Random(Context* context) {
« src/frames.cc ('K') | « src/v8.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698