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

Unified Diff: src/deoptimizer.h

Issue 1956693002: [compiler] Pass inlining_id via relocation info. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 4 years, 7 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 | « src/crankshaft/x87/lithium-codegen-x87.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.h
diff --git a/src/deoptimizer.h b/src/deoptimizer.h
index 99ebd3f9c6d09d1436c97f7c6159bf0489e6c19d..45aecddb16656033df7d48f0de5d6aaca28b0085 100644
--- a/src/deoptimizer.h
+++ b/src/deoptimizer.h
@@ -410,8 +410,8 @@ class Deoptimizer : public Malloced {
static const char* GetDeoptReason(DeoptReason deopt_reason);
struct DeoptInfo {
- DeoptInfo(SourcePosition position, DeoptReason d)
- : position(position), deopt_reason(d), inlining_id(0) {}
+ DeoptInfo(SourcePosition position, DeoptReason d, int inlining_id)
+ : position(position), deopt_reason(d), inlining_id(inlining_id) {}
SourcePosition position;
DeoptReason deopt_reason;
« no previous file with comments | « src/crankshaft/x87/lithium-codegen-x87.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698