[Mesa-dev] [PATCH] i965: Print force_writemask_all in dump_instructions().
Matt Turner
mattst88 at gmail.com
Tue Nov 10 00:41:47 PST 2015
On Mon, Nov 9, 2015 at 11:55 PM, Kenneth Graunke <kenneth at whitecape.org> wrote:
> Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
> ---
> src/mesa/drivers/dri/i965/brw_fs.cpp | 3 +++
> src/mesa/drivers/dri/i965/brw_vec4.cpp | 3 +++
> 2 files changed, 6 insertions(+)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
> index b2b7762..8185355 100644
> --- a/src/mesa/drivers/dri/i965/brw_fs.cpp
> +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
> @@ -4774,6 +4774,9 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
>
> fprintf(file, " ");
>
> + if (inst->force_writemask_all)
> + fprintf(file, "NoMask ");
I think you want the space before NoMask, and not after it.
> +
> if (dispatch_width == 16 && inst->exec_size == 8) {
> if (inst->force_sechalf)
> fprintf(file, "2ndhalf ");
> diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp
> index e52114a..4e6fd2f 100644
> --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp
> +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp
> @@ -1589,6 +1589,9 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
> fprintf(file, ", ");
> }
>
> + if (inst->force_writemask_all)
> + fprintf(file, " NoMask ");
Probably don't want the space after NoMask.
One way or the other,
Reviewed-by: Matt Turner <mattst88 at gmail.com>
More information about the mesa-dev
mailing list