public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Song, BinX" <binx.song@intel.com>
To: "Gao, Liming" <liming.gao@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH v2] MdeModulePkg BrotliLib: Fix the regression logic issue in loop
Date: Fri, 14 Apr 2017 02:48:36 +0000	[thread overview]
Message-ID: <559D2DF22BC9A3468B4FA1AA547F0EF10255B954@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1492135199-20880-1-git-send-email-liming.gao@intel.com>

Reviewed-by:  Bell Song <binx.song@intel.com>

Best Regards,
Bell Song

> -----Original Message-----
> From: Gao, Liming
> Sent: Friday, April 14, 2017 10:00 AM
> To: edk2-devel@lists.01.org
> Cc: Song, BinX <binx.song@intel.com>
> Subject: [PATCH v2] MdeModulePkg BrotliLib: Fix the regression logic issue in
> loop
> 
> In V2, change logic to avoid use mtf[-1] style to get value.
> 
> Roll back to previous logic, and use point + offset to get byte value.
> 
> Cc: Bell Song <binx.song@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Liming Gao <liming.gao@intel.com>
> ---
>  MdeModulePkg/Library/BrotliCustomDecompressLib/dec/decode.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/MdeModulePkg/Library/BrotliCustomDecompressLib/dec/decode.c
> b/MdeModulePkg/Library/BrotliCustomDecompressLib/dec/decode.c
> index 67f0ff2..6557ba6 100644
> --- a/MdeModulePkg/Library/BrotliCustomDecompressLib/dec/decode.c
> +++ b/MdeModulePkg/Library/BrotliCustomDecompressLib/dec/decode.c
> @@ -855,6 +855,7 @@ static BROTLI_NOINLINE void
> InverseMoveToFrontTransform(
>    uint32_t i = 4;
>    uint32_t upper_bound = state->mtf_upper_bound;
>    uint8_t* mtf = &state->mtf[4];  /* Make mtf[-1] addressable. */
> +  uint8_t* mtft = &state->mtf[3];
>    /* Load endian-aware constant. */
>    const uint8_t b0123[4] = {0, 1, 2, 3};
>    uint32_t pattern;
> @@ -875,10 +876,10 @@ static BROTLI_NOINLINE void
> InverseMoveToFrontTransform(
>      uint8_t value = mtf[index];
>      upper_bound |= (uint32_t)v[i];
>      v[i] = value;
> -    mtf[-1] = value;
> -    while (index > 0) {
> +    mtft[0] = value;
> +    while (index >= 0) {
> +      mtft[index + 1] = mtft[index];
>        index--;
> -      mtf[index + 1] = mtf[index];
>      }
>    }
>    /* Remember amount of elements to be reinitialized. */
> --
> 2.8.0.windows.1



      reply	other threads:[~2017-04-14  2:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-14  1:59 [PATCH v2] MdeModulePkg BrotliLib: Fix the regression logic issue in loop Liming Gao
2017-04-14  2:48 ` Song, BinX [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=559D2DF22BC9A3468B4FA1AA547F0EF10255B954@shsmsx102.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox