Skip to content

Commit 3ae48e2

Browse files
committed
Fix URL parser error to 127.0.0.1:4445 in docs
(cherry picked from commit ec1b4cb)
1 parent 7a454a0 commit 3ae48e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiler/docs/Debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ By default, `-Dgraal.Dump` output is written to the local file system in a direc
226226
by the `-Dgraal.DumpPath` option (default is `$CWD/graal_dumps`). You can send dumps directly to
227227
the IGV over a network socket with the `-Dgraal.PrintGraph=Network` option. The `-Dgraal.PrintGraphHost`
228228
and `-Dgraal.PrintGraphPort` options determine where the dumps are sent. By default, they are
229-
sent to 127.0.0.1:4445 and IGV listens on port 4445 by default.
229+
sent to _127.0.0.1:4445_ and IGV listens on port 4445 by default.
230230

231231
By default, the graph dumping code dumps every graph at a particular level even if the graph hasn't
232232
changed since the previous dump. Internally the compiler tracks when changes are made to the edges

docs/graalvm-as-a-platform/implement-language.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ IGV is developed to view and inspect intermediate representation graphs – a la
108108
./sl -dump language/tests/SumPrint.sl
109109
```
110110

111-
This dumps compiler graphs in the IGV format over the network to an IGV process listening on [127.0.0.1:4445](127.0.0.1:4445).
111+
This dumps compiler graphs in the IGV format over the network to an IGV process listening on _127.0.0.1:4445_.
112112
Once the connection is made, you are able to see the graphs in the Outline window.
113113
Open a specific graph, search for nodes by name, ID, or by `property=value` data, and all matching results will be shown.
114114
Learn more [here](../tools/ideal-graph-visualizer.md).

docs/tools/ideal-graph-visualizer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Using a host Ruby application that embeds some Java, you will now dump compiler
7878
ruby --jvm --polyglot --vm.Dgraal.Dump=:1 --vm.Dgraal.PrintGraph=Network Test.rb
7979
```
8080

81-
This dumps compiler graphs, in the IGV format, over the network to an IGV process listening on [127.0.0.1:4445](127.0.0.1:4445).
81+
This dumps compiler graphs, in the IGV format, over the network to an IGV process listening on _127.0.0.1:4445_.
8282
Once the connection is made, you are able to see the graphs in the Outline view.
8383
Find, for example, the `java.lang.String.char(int)` folder and open its After Parsing graph by double-clicking.
8484
If the node has `sourceNodePosition` property, then the Processing window will attempt to display its location and the entire stacktrace.

0 commit comments

Comments
 (0)