Chromium Code Reviews

Unified Diff: src/x87/assembler-x87.h

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: addressed comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/x87/assembler-x87.h
diff --git a/src/x87/assembler-x87.h b/src/x87/assembler-x87.h
index 4111e8df12f941f24ea096e346bbf7036f3b64cb..160145b5ad6b35f0fa0df0445235a7aa3b9fb80a 100644
--- a/src/x87/assembler-x87.h
+++ b/src/x87/assembler-x87.h
@@ -969,7 +969,8 @@ class Assembler : public AssemblerBase {
// Record a deoptimization reason that can be used by a log or cpu profiler.
// Use --trace-deopt to enable.
- void RecordDeoptReason(DeoptimizeReason reason, int raw_position, int id);
+ void RecordDeoptReason(DeoptimizeReason reason, SourcePosition position,
+ int id);
// Writes a single byte or word of data in the code stream. Used for
// inline tables, e.g., jump-tables.

Powered by Google App Engine