RFR: 8156131: C2: MachProj dumps data on tty w/ -XX:+WizardMode

Vladimir Ivanov vladimir.x.ivanov at oracle.com
Fri May 6 10:41:26 UTC 2016


Reviewed. I'll push it.

Best regards,
Vladimir Ivanov

On 5/6/16 9:11 AM, Jamsheed C m wrote:
> Hi,
>
> Request for review a trivial change.
>
> +WizardMode dont take a stream input. as its very small change sending diff.
>
> diff --git a/src/share/vm/opto/machnode.cpp b/src/share/vm/opto/machnode.cpp
> --- a/src/share/vm/opto/machnode.cpp
> +++ b/src/share/vm/opto/machnode.cpp
> @@ -600,8 +600,8 @@
>   void MachProjNode::dump_spec(outputStream *st) const {
>     ProjNode::dump_spec(st);
>     switch (_ideal_reg) {
> - case unmatched_proj: st->print("/unmatched"); break;
> - case fat_proj: st->print("/fat"); if (WizardMode) _rout.dump(); break;
> + case unmatched_proj: st->print("/unmatched"); break;
> + case fat_proj: st->print("/fat"); if (WizardMode) _rout.dump(st); break;
>     }
>   }
>   #endif
>
> Best Regards,
> Jamsheed


More information about the hotspot-compiler-dev mailing list