Chromium Code Reviews| Index: src/compiler/graph-visualizer.cc |
| diff --git a/src/compiler/graph-visualizer.cc b/src/compiler/graph-visualizer.cc |
| index 313bea56c8e936427281d7721b1e2f3e22b765b9..ab20f8f11faf7d97b236b34da47f49ced59b2fe5 100644 |
| --- a/src/compiler/graph-visualizer.cc |
| +++ b/src/compiler/graph-visualizer.cc |
| @@ -11,6 +11,7 @@ |
| #include "src/code-stubs.h" |
| #include "src/compilation-info.h" |
| #include "src/compiler/all-nodes.h" |
| +#include "src/compiler/compiler-source-position-table.h" |
| #include "src/compiler/graph.h" |
| #include "src/compiler/node-properties.h" |
| #include "src/compiler/node.h" |
| @@ -151,7 +152,7 @@ class JSONGraphNodeWriter { |
| } |
| SourcePosition position = positions_->GetSourcePosition(node); |
| if (position.IsKnown()) { |
| - os_ << ",\"pos\":" << position.raw(); |
| + os_ << ",\"pos\":" << position.ScriptOffset(); |
|
Yang
2016/11/04 14:32:59
Also here, include inlining id as well?
Tobias Tebbi
2016/11/07 15:10:34
Yes, but Turbolizer also needs support for this, s
|
| } |
| os_ << ",\"opcode\":\"" << IrOpcode::Mnemonic(node->opcode()) << "\""; |
| os_ << ",\"control\":" << (NodeProperties::IsControl(node) ? "true" |
| @@ -496,7 +497,7 @@ void GraphC1Visualizer::PrintSchedule(const char* phase, |
| if (positions != nullptr) { |
| SourcePosition position = positions->GetSourcePosition(node); |
| if (position.IsKnown()) { |
| - os_ << " pos:" << position.raw(); |
| + os_ << " pos:" << position.ScriptOffset(); |
|
Yang
2016/11/04 14:32:59
Same here.
|
| } |
| } |
| os_ << " <|@\n"; |