[Mesa-dev] [PATCH 1/3] nv50/ir: print CCTL subops in debug mode

Ilia Mirkin imirkin at alum.mit.edu
Wed Oct 19 21:28:36 UTC 2016


Reviewed-by: Ilia Mirkin <imirkin at alum.mit.edu>

On Wed, Oct 19, 2016 at 5:21 PM, Samuel Pitoiset
<samuel.pitoiset at gmail.com> wrote:
> Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
> ---
>  src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp | 9 +++++++++
>  1 file changed, 9 insertions(+)
>
> diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
> index dbd0f7d..0c143e5 100644
> --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
> +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
> @@ -231,6 +231,11 @@ static const char *emitOpStr[] =
>     "", "restart"
>  };
>
> +static const char *cctlOpStr[] =
> +{
> +   "", "", "", "", "", "iv", "ivall"
> +};
> +
>  static const char *DataTypeStr[] =
>  {
>     "-",
> @@ -602,6 +607,10 @@ void Instruction::print() const
>           if (subOp < ARRAY_SIZE(emitOpStr))
>              PRINT("%s ", emitOpStr[subOp]);
>           break;
> +      case OP_CCTL:
> +         if (subOp < ARRAY_SIZE(cctlOpStr))
> +            PRINT("%s ", cctlOpStr[subOp]);
> +         break;
>        default:
>           if (subOp)
>              PRINT("(SUBOP:%u) ", subOp);
> --
> 2.10.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list