File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -781,7 +781,7 @@ def help
781
781
--reveal enable assertions
782
782
--asm show assembly
783
783
--igv dump select Graal graphs to graal_dumps/ (-Dgraal.Dump=Truffle:1)
784
- --igv-full dump all Graal graphs to graal_dumps/ (-Dgraal.Dump=Truffle:2)
784
+ --igv-full dump all Graal graphs to graal_dumps/ (-Dgraal.Dump=Truffle:2,TruffleHostInlining:0 )
785
785
--igv-network dump to IGV directly through the network (-Dgraal.PrintGraph=Network)
786
786
--infopoints show source location for each node in IGV
787
787
--fg disable background compilation
@@ -1018,7 +1018,11 @@ def rebuild(*options)
1018
1018
vm_args << '--engine.TraceCompilation'
1019
1019
when '--igv' , '--igv-full'
1020
1020
truffleruby_compiler!
1021
- vm_args << ( arg == '--igv-full' ? '--vm.Dgraal.Dump=Truffle:2' : '--vm.Dgraal.Dump=Truffle:1' )
1021
+ if arg == '--igv-full'
1022
+ vm_args << '--vm.Dgraal.Dump=Truffle:2,TruffleHostInlining:0'
1023
+ else
1024
+ vm_args << '--vm.Dgraal.Dump=Truffle:1'
1025
+ end
1022
1026
vm_args << '--vm.Dgraal.PrintBackendCFG=false'
1023
1027
when '--igv-network'
1024
1028
truffleruby_compiler!
You can’t perform that action at this time.
0 commit comments