public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* RE: [PING][PATCH 00/11] Improve Fortran intrinsic types and procedures
@ 2022-03-25 16:22 Kempke, Nils-Christian
  0 siblings, 0 replies; 2+ messages in thread
From: Kempke, Nils-Christian @ 2022-03-25 16:22 UTC (permalink / raw)
  To: gdb-patches

Kindly pinging.
Cheers,
Nils

> -----Original Message-----
> From: Kempke, Nils-Christian <nils-christian.kempke@intel.com>
> Sent: Wednesday, March 9, 2022 11:39 AM
> To: gdb-patches@sourceware.org
> Cc: Kempke, Nils-Christian <nils-christian.kempke@intel.com>
> Subject: [PATCH 00/11] Improve Fortran intrinsic types and procedures
> 
> This series completes some of the current intrinsics handling in the
> Fortran language part.
> 
> Mainly, it adds the KIND parameter overload to all currently implemented
> intrinsic procedures (in patch #9).  In doing so it refactors the overload
> handling in f-exp.y.
> 
> It also improves some of the Fortran type handling and adds a few missing
> types and changes the default Locical type to be of KIND=4.
> 
> Lastly, it adds two sections to the documentation that (hopefully) clearly
> describe which Fortran intrinsic procedures and types are available in
> GDB.
> 
> All changes only affect the Fortran language part of GDB.
> 
> Any feedback is highly appreciated.
> Thanks!
> Nils
> 
> Nils-Christian Kempke (11):
>   gdb/f-lang: add Integer*1 to Fortran builtin types
>   gdb/f-lang: remove hidden ^L characters
>   gdb/fortran: fix complex type in Fortran builtin types
>   gdb/fortran: reformat build_fortran_types in f-lang.c
>   gdb/fortran: change default logical type to builtin_logical
>   gdb/fortran: clean-up Fortran intrinsic types
>   gdb/fortran: Change GDB print for fortran default types
>   gdb/fortran: rename f77_keywords to f_keywords
>   gdb/fortran: rewrite intrinsic handling and add some missing overloads
>   gdb/fortran/testsuite: add complex from integers test
>   gdb/doc: add section about fortran intrinsic functions and types
> 
>  gdb/doc/gdb.texinfo                         | 138 ++++++-
>  gdb/f-exp.h                                 | 182 +++++++--
>  gdb/f-exp.y                                 | 394 ++++++++++++++------
>  gdb/f-lang.c                                | 267 +++++++++----
>  gdb/f-lang.h                                |   7 +-
>  gdb/std-operator.def                        |  10 +-
>  gdb/testsuite/gdb.fortran/complex.exp       |  10 +-
>  gdb/testsuite/gdb.fortran/complex.f90       |   7 +-
>  gdb/testsuite/gdb.fortran/intrinsics.exp    |  46 ++-
>  gdb/testsuite/gdb.fortran/lbound-ubound.F90 |  49 ++-
>  gdb/testsuite/gdb.fortran/lbound-ubound.exp |  27 +-
>  gdb/testsuite/gdb.fortran/size.exp          |  84 ++++-
>  gdb/testsuite/gdb.fortran/size.f90          | 213 ++++++++---
>  gdb/testsuite/gdb.fortran/type-kinds.exp    |   2 +
>  gdb/testsuite/gdb.fortran/types.exp         |  34 +-
>  15 files changed, 1151 insertions(+), 319 deletions(-)
> 
> --
> 2.25.1

Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de>
Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva  
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928


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

* RE: [PING][PATCH 00/11] Improve Fortran intrinsic types and procedures
@ 2022-04-01 15:43 Kempke, Nils-Christian
  0 siblings, 0 replies; 2+ messages in thread
From: Kempke, Nils-Christian @ 2022-04-01 15:43 UTC (permalink / raw)
  To: gdb-patches



> -----Original Message-----
> From: Kempke, Nils-Christian <nils-christian.kempke@intel.com>
> Sent: Wednesday, March 9, 2022 11:39 AM
> To: gdb-patches@sourceware.org
> Cc: Kempke, Nils-Christian <nils-christian.kempke@intel.com>
> Subject: [PATCH 00/11] Improve Fortran intrinsic types and procedures
> 
> This series completes some of the current intrinsics handling in the
> Fortran language part.
> 
> Mainly, it adds the KIND parameter overload to all currently implemented
> intrinsic procedures (in patch #9).  In doing so it refactors the overload
> handling in f-exp.y.
> 
> It also improves some of the Fortran type handling and adds a few missing
> types and changes the default Locical type to be of KIND=4.
> 
> Lastly, it adds two sections to the documentation that (hopefully) clearly
> describe which Fortran intrinsic procedures and types are available in
> GDB.
> 
> All changes only affect the Fortran language part of GDB.
> 
> Any feedback is highly appreciated.
> Thanks!
> Nils
> 
> Nils-Christian Kempke (11):
>   gdb/f-lang: add Integer*1 to Fortran builtin types
>   gdb/f-lang: remove hidden ^L characters
>   gdb/fortran: fix complex type in Fortran builtin types
>   gdb/fortran: reformat build_fortran_types in f-lang.c
>   gdb/fortran: change default logical type to builtin_logical
>   gdb/fortran: clean-up Fortran intrinsic types
>   gdb/fortran: Change GDB print for fortran default types
>   gdb/fortran: rename f77_keywords to f_keywords
>   gdb/fortran: rewrite intrinsic handling and add some missing overloads
>   gdb/fortran/testsuite: add complex from integers test
>   gdb/doc: add section about fortran intrinsic functions and types
> 
>  gdb/doc/gdb.texinfo                         | 138 ++++++-
>  gdb/f-exp.h                                 | 182 +++++++--
>  gdb/f-exp.y                                 | 394 ++++++++++++++------
>  gdb/f-lang.c                                | 267 +++++++++----
>  gdb/f-lang.h                                |   7 +-
>  gdb/std-operator.def                        |  10 +-
>  gdb/testsuite/gdb.fortran/complex.exp       |  10 +-
>  gdb/testsuite/gdb.fortran/complex.f90       |   7 +-
>  gdb/testsuite/gdb.fortran/intrinsics.exp    |  46 ++-
>  gdb/testsuite/gdb.fortran/lbound-ubound.F90 |  49 ++-
>  gdb/testsuite/gdb.fortran/lbound-ubound.exp |  27 +-
>  gdb/testsuite/gdb.fortran/size.exp          |  84 ++++-
>  gdb/testsuite/gdb.fortran/size.f90          | 213 ++++++++---
>  gdb/testsuite/gdb.fortran/type-kinds.exp    |   2 +
>  gdb/testsuite/gdb.fortran/types.exp         |  34 +-
>  15 files changed, 1151 insertions(+), 319 deletions(-)
> 
> --
> 2.25.1

Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de>
Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva  
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928


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

end of thread, other threads:[~2022-04-01 15:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-25 16:22 [PING][PATCH 00/11] Improve Fortran intrinsic types and procedures Kempke, Nils-Christian
2022-04-01 15:43 Kempke, Nils-Christian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).