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

Unified Diff: src/compiler/effect-control-linearizer.h

Issue 2504913003: [turbofan] track source positions in EffectControlLinearizer (Closed)
Patch Set: addressed comments Created 4 years, 1 month 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 | « no previous file | src/compiler/effect-control-linearizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/effect-control-linearizer.h
diff --git a/src/compiler/effect-control-linearizer.h b/src/compiler/effect-control-linearizer.h
index bc0366ae2083b86312c4007ab28d561fdc474746..4ed03c6815dddb9a5d6e79a0250f52bdba801ed7 100644
--- a/src/compiler/effect-control-linearizer.h
+++ b/src/compiler/effect-control-linearizer.h
@@ -25,10 +25,12 @@ class MachineOperatorBuilder;
class JSGraph;
class Graph;
class Schedule;
+class SourcePositionTable;
class V8_EXPORT_PRIVATE EffectControlLinearizer {
public:
- EffectControlLinearizer(JSGraph* graph, Schedule* schedule, Zone* temp_zone);
+ EffectControlLinearizer(JSGraph* graph, Schedule* schedule, Zone* temp_zone,
+ SourcePositionTable* source_positions);
void Run();
@@ -226,6 +228,7 @@ class V8_EXPORT_PRIVATE EffectControlLinearizer {
Schedule* schedule_;
Zone* temp_zone_;
RegionObservability region_observability_ = RegionObservability::kObservable;
+ SourcePositionTable* source_positions_;
SetOncePointer<Operator const> to_number_operator_;
};
« no previous file with comments | « no previous file | src/compiler/effect-control-linearizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698