public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Kinney, Michael D" <michael.d.kinney@intel.com>
To: "Wu, Hao A" <hao.a.wu@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	"Kinney, Michael D" <michael.d.kinney@intel.com>
Cc: "Yao, Jiewen" <jiewen.yao@intel.com>,
	"Gao, Liming" <liming.gao@intel.com>
Subject: Re: [PATCH 3/6] MdePkg/MemoryLib: Refine InternalMemSetMem16|32|64 functions logic
Date: Thu, 15 Dec 2016 23:55:26 +0000	[thread overview]
Message-ID: <E92EE9817A31E24EB0585FDF735412F56487B866@ORSMSX113.amr.corp.intel.com> (raw)
In-Reply-To: <1481714811-12568-4-git-send-email-hao.a.wu@intel.com>

Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>

> -----Original Message-----
> From: Wu, Hao A
> Sent: Wednesday, December 14, 2016 3:27 AM
> To: edk2-devel@lists.01.org
> Cc: Wu, Hao A <hao.a.wu@intel.com>; Yao, Jiewen <jiewen.yao@intel.com>; Gao, Liming
> <liming.gao@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>
> Subject: [PATCH 3/6] MdePkg/MemoryLib: Refine InternalMemSetMem16|32|64 functions
> logic
> 
> This commit refines the logic for InternalMemSetMem16|32|64 functions. It
> avoids using the decrement operator '--' for array index to prevent
> possible mis-reports by static code checkers.
> 
> Please note that those modified functions are only consumed within
> MemoryLib by APIs SetMem16|32|64, and those APIs will handle the case when
> the input number of bytes to set is 0. Hence, the behavior of APIs
> SetMem16|32|64 is not changed.
> 
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Hao Wu <hao.a.wu@intel.com>
> ---
>  MdePkg/Library/BaseMemoryLib/MemLibGeneric.c | 18 +++++++++---------
>  MdePkg/Library/PeiMemoryLib/MemLibGeneric.c  | 18 +++++++++---------
>  MdePkg/Library/UefiMemoryLib/MemLibGeneric.c | 18 +++++++++---------
>  3 files changed, 27 insertions(+), 27 deletions(-)
> 
> diff --git a/MdePkg/Library/BaseMemoryLib/MemLibGeneric.c
> b/MdePkg/Library/BaseMemoryLib/MemLibGeneric.c
> index b058be8..cf40ace 100644
> --- a/MdePkg/Library/BaseMemoryLib/MemLibGeneric.c
> +++ b/MdePkg/Library/BaseMemoryLib/MemLibGeneric.c
> @@ -37,9 +37,9 @@ InternalMemSetMem16 (
>    IN      UINT16                    Value
>    )
>  {
> -  do {
> -    ((UINT16*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT16*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> @@ -61,9 +61,9 @@ InternalMemSetMem32 (
>    IN      UINT32                    Value
>    )
>  {
> -  do {
> -    ((UINT32*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT32*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> @@ -85,9 +85,9 @@ InternalMemSetMem64 (
>    IN      UINT64                    Value
>    )
>  {
> -  do {
> -    ((UINT64*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT64*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> diff --git a/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c
> b/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c
> index 490b244..ed18b57 100644
> --- a/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c
> +++ b/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c
> @@ -37,9 +37,9 @@ InternalMemSetMem16 (
>    IN      UINT16                    Value
>    )
>  {
> -  do {
> -    ((UINT16*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT16*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> @@ -61,9 +61,9 @@ InternalMemSetMem32 (
>    IN      UINT32                    Value
>    )
>  {
> -  do {
> -    ((UINT32*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT32*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> @@ -85,9 +85,9 @@ InternalMemSetMem64 (
>    IN      UINT64                    Value
>    )
>  {
> -  do {
> -    ((UINT64*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT64*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> diff --git a/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c
> b/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c
> index da02b6c..f1efdbb 100644
> --- a/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c
> +++ b/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c
> @@ -37,9 +37,9 @@ InternalMemSetMem16 (
>    IN      UINT16                    Value
>    )
>  {
> -  do {
> -    ((UINT16*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT16*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> @@ -61,9 +61,9 @@ InternalMemSetMem32 (
>    IN      UINT32                    Value
>    )
>  {
> -  do {
> -    ((UINT32*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT32*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> @@ -85,9 +85,9 @@ InternalMemSetMem64 (
>    IN      UINT64                    Value
>    )
>  {
> -  do {
> -    ((UINT64*)Buffer)[--Length] = Value;
> -  } while (Length != 0);
> +  for (; Length != 0; Length--) {
> +    ((UINT64*)Buffer)[Length - 1] = Value;
> +  }
>    return Buffer;
>  }
> 
> --
> 1.9.5.msysgit.0



  reply	other threads:[~2016-12-15 23:55 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-14 11:26 [PATCH 0/6] Refine code logics to prevent possible mis-reports by static code checkers Hao Wu
2016-12-14 11:26 ` [PATCH 1/6] MdePkg/BaseLib: Refine (Ascii)StrnLenS functions logic Hao Wu
2016-12-15 23:54   ` Kinney, Michael D
2016-12-16  3:21     ` Wu, Hao A
2016-12-14 11:26 ` [PATCH 2/6] MdePkg/BaseLib: Add an additional check within (Ascii)StrnCmp Hao Wu
2016-12-15 23:54   ` Kinney, Michael D
2016-12-14 11:26 ` [PATCH 3/6] MdePkg/MemoryLib: Refine InternalMemSetMem16|32|64 functions logic Hao Wu
2016-12-15 23:55   ` Kinney, Michael D [this message]
2016-12-14 11:26 ` [PATCH 4/6] MdeModulePkg/DxeNetLib: Rewrite NetblockChecksum function logic Hao Wu
2016-12-15  2:45   ` Fu, Siyuan
2016-12-15  7:41   ` Ye, Ting
2016-12-15  7:51   ` Wu, Jiaxin
2016-12-14 11:26 ` [PATCH 5/6] MdeModulePkg/UefiPxeBcDxe: Refine the CvtNum " Hao Wu
2016-12-15  2:47   ` Fu, Siyuan
2016-12-15  7:33   ` Ye, Ting
2016-12-15  7:51   ` Wu, Jiaxin
2016-12-14 11:26 ` [PATCH 6/6] NetworkPkg: Refine UintnToAscDecWithFormat functions logic Hao Wu
2016-12-15  2:47   ` Fu, Siyuan
2016-12-15  7:32   ` Ye, Ting
2016-12-15  7:52   ` Wu, Jiaxin
2016-12-18  3:04 ` [PATCH 0/6] Refine code logics to prevent possible mis-reports by static code checkers Heyi Guo
2016-12-20  8:14   ` Wu, Hao A

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=E92EE9817A31E24EB0585FDF735412F56487B866@ORSMSX113.amr.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