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

Unified Diff: src/profile-generator.h

Issue 1045753002: CpuProfiler: public API for deopt info in cpu profiler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: comments addressed Created 5 years, 9 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
Index: src/profile-generator.h
diff --git a/src/profile-generator.h b/src/profile-generator.h
index e013e29c5db77a1e9852c5a9ef691f789cb96e77..9e536a2fe15720bfc35743ffe4b5a106b1c699c2 100644
--- a/src/profile-generator.h
+++ b/src/profile-generator.h
@@ -37,15 +37,7 @@ class JITLineInfoTable : public Malloced {
};
-struct DeoptInfo {
- const char* deopt_reason;
- struct Frame {
- int script_id;
- int position;
- };
- std::vector<Frame> stack;
-};
-
+typedef v8::CpuProfileDeoptInfo DeoptInfo;
yurys 2015/03/30 20:33:16 Can we use original type without the alias. It see
loislo 2015/03/31 08:22:51 done
class CodeEntry {
public:

Powered by Google App Engine
This is Rietveld 408576698