public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2] BaseTools: align ERROR/WARNING/RETURN macros with MdePkg versions
@ 2017-12-07 17:38 Leif Lindholm
  2017-12-08  0:52 ` Gao, Liming
  0 siblings, 1 reply; 3+ messages in thread
From: Leif Lindholm @ 2017-12-07 17:38 UTC (permalink / raw)
  To: edk2-devel; +Cc: Yonghong Zhu, Liming Gao

BaseTools' BaseTypes.h defined the ENCODE_ERROR macro as
 #define ENCODE_ERROR(a)              ((RETURN_STATUS)(MAX_BIT | (a)))
whereas MdePkg defines it as
 #define ENCODE_ERROR(StatusCode)     ((RETURN_STATUS)(MAX_BIT | (StatusCode)))

When building with GCC 6.3 (at least) the former triggers
"error: overflow in implicit constant conversion [-Werror=overflow]"
Resolve this by aligning it with the latter one.

This also requires aligning the BaseTools typedef of RETURN_STATUS with
the MdePkg one: INTN -> UINTN.

While at it, update adjacent ENCODE_WARNING and RETURN_ERROR as well.

Add an explicit initialization of *Alignment to 0 in GenFfs.c
GetAlignmentFromFile to get rid of a warning occuring with GCC after
this change (-Werror=maybe-uninitialized).

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---

v2 updated for ENCODE_WARNING and RETURN_ERROR, as requested
by Liming.

 BaseTools/Source/C/GenFfs/GenFfs.c            | 1 +
 BaseTools/Source/C/Include/Common/BaseTypes.h | 8 ++++----
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/BaseTools/Source/C/GenFfs/GenFfs.c b/BaseTools/Source/C/GenFfs/GenFfs.c
index e2fb3e0d1e..3b4a9b7761 100644
--- a/BaseTools/Source/C/GenFfs/GenFfs.c
+++ b/BaseTools/Source/C/GenFfs/GenFfs.c
@@ -529,6 +529,7 @@ GetAlignmentFromFile(char *InFile, UINT32 *Alignment)
 
   InFileHandle        = NULL;
   PeFileBuffer        = NULL;
+  *Alignment          = 0;
 
   memset (&ImageContext, 0, sizeof (ImageContext));
 
diff --git a/BaseTools/Source/C/Include/Common/BaseTypes.h b/BaseTools/Source/C/Include/Common/BaseTypes.h
index 198647ab95..08b60bae11 100644
--- a/BaseTools/Source/C/Include/Common/BaseTypes.h
+++ b/BaseTools/Source/C/Include/Common/BaseTypes.h
@@ -170,15 +170,15 @@
 // EFI Error Codes common to all execution phases
 //
 
-typedef INTN RETURN_STATUS;
+typedef UINTN RETURN_STATUS;
 
 ///
 /// Set the upper bit to indicate EFI Error.
 ///
-#define ENCODE_ERROR(a)              (MAX_BIT | (a))
+#define ENCODE_ERROR(a)              ((RETURN_STATUS)(MAX_BIT | (a)))
 
-#define ENCODE_WARNING(a)            (a)
-#define RETURN_ERROR(a)              ((a) < 0)
+#define ENCODE_WARNING(a)            ((RETURN_STATUS)(a))
+#define RETURN_ERROR(a)              (((INTN)(RETURN_STATUS)(a)) < 0)
 
 #define RETURN_SUCCESS               0
 #define RETURN_LOAD_ERROR            ENCODE_ERROR (1)
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] BaseTools: align ERROR/WARNING/RETURN macros with MdePkg versions
  2017-12-07 17:38 [PATCH v2] BaseTools: align ERROR/WARNING/RETURN macros with MdePkg versions Leif Lindholm
@ 2017-12-08  0:52 ` Gao, Liming
  2017-12-08  9:55   ` Leif Lindholm
  0 siblings, 1 reply; 3+ messages in thread
From: Gao, Liming @ 2017-12-08  0:52 UTC (permalink / raw)
  To: Leif Lindholm, edk2-devel@lists.01.org

Reviewed-by: Liming Gao <liming.gao@intel.com>

> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Leif Lindholm
> Sent: Friday, December 8, 2017 1:38 AM
> To: edk2-devel@lists.01.org
> Cc: Gao, Liming <liming.gao@intel.com>
> Subject: [edk2] [PATCH v2] BaseTools: align ERROR/WARNING/RETURN macros with MdePkg versions
> 
> BaseTools' BaseTypes.h defined the ENCODE_ERROR macro as
>  #define ENCODE_ERROR(a)              ((RETURN_STATUS)(MAX_BIT | (a)))
> whereas MdePkg defines it as
>  #define ENCODE_ERROR(StatusCode)     ((RETURN_STATUS)(MAX_BIT | (StatusCode)))
> 
> When building with GCC 6.3 (at least) the former triggers
> "error: overflow in implicit constant conversion [-Werror=overflow]"
> Resolve this by aligning it with the latter one.
> 
> This also requires aligning the BaseTools typedef of RETURN_STATUS with
> the MdePkg one: INTN -> UINTN.
> 
> While at it, update adjacent ENCODE_WARNING and RETURN_ERROR as well.
> 
> Add an explicit initialization of *Alignment to 0 in GenFfs.c
> GetAlignmentFromFile to get rid of a warning occuring with GCC after
> this change (-Werror=maybe-uninitialized).
> 
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> ---
> 
> v2 updated for ENCODE_WARNING and RETURN_ERROR, as requested
> by Liming.
> 
>  BaseTools/Source/C/GenFfs/GenFfs.c            | 1 +
>  BaseTools/Source/C/Include/Common/BaseTypes.h | 8 ++++----
>  2 files changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/BaseTools/Source/C/GenFfs/GenFfs.c b/BaseTools/Source/C/GenFfs/GenFfs.c
> index e2fb3e0d1e..3b4a9b7761 100644
> --- a/BaseTools/Source/C/GenFfs/GenFfs.c
> +++ b/BaseTools/Source/C/GenFfs/GenFfs.c
> @@ -529,6 +529,7 @@ GetAlignmentFromFile(char *InFile, UINT32 *Alignment)
> 
>    InFileHandle        = NULL;
>    PeFileBuffer        = NULL;
> +  *Alignment          = 0;
> 
>    memset (&ImageContext, 0, sizeof (ImageContext));
> 
> diff --git a/BaseTools/Source/C/Include/Common/BaseTypes.h b/BaseTools/Source/C/Include/Common/BaseTypes.h
> index 198647ab95..08b60bae11 100644
> --- a/BaseTools/Source/C/Include/Common/BaseTypes.h
> +++ b/BaseTools/Source/C/Include/Common/BaseTypes.h
> @@ -170,15 +170,15 @@
>  // EFI Error Codes common to all execution phases
>  //
> 
> -typedef INTN RETURN_STATUS;
> +typedef UINTN RETURN_STATUS;
> 
>  ///
>  /// Set the upper bit to indicate EFI Error.
>  ///
> -#define ENCODE_ERROR(a)              (MAX_BIT | (a))
> +#define ENCODE_ERROR(a)              ((RETURN_STATUS)(MAX_BIT | (a)))
> 
> -#define ENCODE_WARNING(a)            (a)
> -#define RETURN_ERROR(a)              ((a) < 0)
> +#define ENCODE_WARNING(a)            ((RETURN_STATUS)(a))
> +#define RETURN_ERROR(a)              (((INTN)(RETURN_STATUS)(a)) < 0)
> 
>  #define RETURN_SUCCESS               0
>  #define RETURN_LOAD_ERROR            ENCODE_ERROR (1)
> --
> 2.11.0
> 
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] BaseTools: align ERROR/WARNING/RETURN macros with MdePkg versions
  2017-12-08  0:52 ` Gao, Liming
@ 2017-12-08  9:55   ` Leif Lindholm
  0 siblings, 0 replies; 3+ messages in thread
From: Leif Lindholm @ 2017-12-08  9:55 UTC (permalink / raw)
  To: Gao, Liming; +Cc: edk2-devel@lists.01.org

On Fri, Dec 08, 2017 at 12:52:56AM +0000, Gao, Liming wrote:
> Reviewed-by: Liming Gao <liming.gao@intel.com>

Thanks. Pushed as 978779d7b5.

> > -----Original Message-----
> > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Leif Lindholm
> > Sent: Friday, December 8, 2017 1:38 AM
> > To: edk2-devel@lists.01.org
> > Cc: Gao, Liming <liming.gao@intel.com>
> > Subject: [edk2] [PATCH v2] BaseTools: align ERROR/WARNING/RETURN macros with MdePkg versions
> > 
> > BaseTools' BaseTypes.h defined the ENCODE_ERROR macro as
> >  #define ENCODE_ERROR(a)              ((RETURN_STATUS)(MAX_BIT | (a)))
> > whereas MdePkg defines it as
> >  #define ENCODE_ERROR(StatusCode)     ((RETURN_STATUS)(MAX_BIT | (StatusCode)))
> > 
> > When building with GCC 6.3 (at least) the former triggers
> > "error: overflow in implicit constant conversion [-Werror=overflow]"
> > Resolve this by aligning it with the latter one.
> > 
> > This also requires aligning the BaseTools typedef of RETURN_STATUS with
> > the MdePkg one: INTN -> UINTN.
> > 
> > While at it, update adjacent ENCODE_WARNING and RETURN_ERROR as well.
> > 
> > Add an explicit initialization of *Alignment to 0 in GenFfs.c
> > GetAlignmentFromFile to get rid of a warning occuring with GCC after
> > this change (-Werror=maybe-uninitialized).
> > 
> > Contributed-under: TianoCore Contribution Agreement 1.1
> > Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> > ---
> > 
> > v2 updated for ENCODE_WARNING and RETURN_ERROR, as requested
> > by Liming.
> > 
> >  BaseTools/Source/C/GenFfs/GenFfs.c            | 1 +
> >  BaseTools/Source/C/Include/Common/BaseTypes.h | 8 ++++----
> >  2 files changed, 5 insertions(+), 4 deletions(-)
> > 
> > diff --git a/BaseTools/Source/C/GenFfs/GenFfs.c b/BaseTools/Source/C/GenFfs/GenFfs.c
> > index e2fb3e0d1e..3b4a9b7761 100644
> > --- a/BaseTools/Source/C/GenFfs/GenFfs.c
> > +++ b/BaseTools/Source/C/GenFfs/GenFfs.c
> > @@ -529,6 +529,7 @@ GetAlignmentFromFile(char *InFile, UINT32 *Alignment)
> > 
> >    InFileHandle        = NULL;
> >    PeFileBuffer        = NULL;
> > +  *Alignment          = 0;
> > 
> >    memset (&ImageContext, 0, sizeof (ImageContext));
> > 
> > diff --git a/BaseTools/Source/C/Include/Common/BaseTypes.h b/BaseTools/Source/C/Include/Common/BaseTypes.h
> > index 198647ab95..08b60bae11 100644
> > --- a/BaseTools/Source/C/Include/Common/BaseTypes.h
> > +++ b/BaseTools/Source/C/Include/Common/BaseTypes.h
> > @@ -170,15 +170,15 @@
> >  // EFI Error Codes common to all execution phases
> >  //
> > 
> > -typedef INTN RETURN_STATUS;
> > +typedef UINTN RETURN_STATUS;
> > 
> >  ///
> >  /// Set the upper bit to indicate EFI Error.
> >  ///
> > -#define ENCODE_ERROR(a)              (MAX_BIT | (a))
> > +#define ENCODE_ERROR(a)              ((RETURN_STATUS)(MAX_BIT | (a)))
> > 
> > -#define ENCODE_WARNING(a)            (a)
> > -#define RETURN_ERROR(a)              ((a) < 0)
> > +#define ENCODE_WARNING(a)            ((RETURN_STATUS)(a))
> > +#define RETURN_ERROR(a)              (((INTN)(RETURN_STATUS)(a)) < 0)
> > 
> >  #define RETURN_SUCCESS               0
> >  #define RETURN_LOAD_ERROR            ENCODE_ERROR (1)
> > --
> > 2.11.0
> > 
> > _______________________________________________
> > edk2-devel mailing list
> > edk2-devel@lists.01.org
> > https://lists.01.org/mailman/listinfo/edk2-devel


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-12-08  9:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-07 17:38 [PATCH v2] BaseTools: align ERROR/WARNING/RETURN macros with MdePkg versions Leif Lindholm
2017-12-08  0:52 ` Gao, Liming
2017-12-08  9:55   ` Leif Lindholm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox