From patchwork Tue Apr 2 23:58:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Burgess X-Patchwork-Id: 32128 Received: (qmail 81761 invoked by alias); 2 Apr 2019 23:58:58 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 81653 invoked by uid 89); 2 Apr 2019 23:58:58 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_SHORT, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=_creal, $_cimag, $_creal, _cimag X-HELO: mail-wm1-f46.google.com Received: from mail-wm1-f46.google.com (HELO mail-wm1-f46.google.com) (209.85.128.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 02 Apr 2019 23:58:56 +0000 Received: by mail-wm1-f46.google.com with SMTP id z11so5389325wmi.0 for ; Tue, 02 Apr 2019 16:58:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=qFPkhe/4RckmBBHiVwDTj/wbRy3zxGuNELyaymM6pR0=; b=WJh10KOacgX1gNYEvN8ulxvaNSxDkIFDnBG3Pmrgx55AoXbOV2TWWx8YPkrXaeQbB8 ogL7UIDN0Adds3d1eLiLE/CpGviWq0e5QtVhbODM50ZgV5WY1/i/b0juQnNDAKO6IhW/ d0+swLKCzvPxGpbyTLBwZCvEfzzmyRuzhFmZUuHshqmuQC9QcWl2iNxCpzFxi8p4yviw OW6Etv19Pwyt7mQklUgulfY6uZ8BN5s/AYQrnB+nN8qMkwLck390jxvp5lSDJ08vKkOV qrJaMdEoc8jrmN48vYQvzI3M6bFvDw/7IyFlG4xL+eR9r4d1o7IgMfoUoWsKtOGEwjAP +uEw== Return-Path: Received: from localhost (host81-151-161-58.range81-151.btcentralplus.com. [81.151.161.58]) by smtp.gmail.com with ESMTPSA id y1sm41479457wrd.34.2019.04.02.16.58.52 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 02 Apr 2019 16:58:52 -0700 (PDT) From: Andrew Burgess To: gdb-patches@sourceware.org Cc: Richard Bunt , Andrew Burgess Subject: [PATCHv2 4/8] gdb/fortran: better types for components of complex numbers Date: Wed, 3 Apr 2019 00:58:38 +0100 Message-Id: In-Reply-To: References: In-Reply-To: References: X-IsSubscribed: yes Currently when using $_creal and $_cimag to access the components of a complex number the types of these components will have C type names 'float', 'double', etc. This is because the components of a complex number are not given type names in DWARF, so GDB has to pick some suitable names, and currently we always use the C names. This commit changes the type names used based on the language, so for Fortran we will now use the Fortran float types, and so will get the Fortran float type names 'real', 'real*8', etc. gdb/ChangeLog: * dwarf2read.c (dwarf2_init_complex_target_type): Use different types for Fortran. gdb/testsuite/ChangeLog: * gdb.fortran/complex.exp: Expand. * gdb.fortran/complex.f: Renamed to... * gdb.fortran/complex.f90: ...this, and extended to add more complex values. --- gdb/ChangeLog | 6 +++++ gdb/dwarf2read.c | 35 +++++++++++++++++++++------- gdb/testsuite/ChangeLog | 7 ++++++ gdb/testsuite/gdb.fortran/complex.exp | 41 +++++++++++++++++++++++++------- gdb/testsuite/gdb.fortran/complex.f | 24 ------------------- gdb/testsuite/gdb.fortran/complex.f90 | 44 +++++++++++++++++++++++++++++++++++ 6 files changed, 116 insertions(+), 41 deletions(-) delete mode 100644 gdb/testsuite/gdb.fortran/complex.f create mode 100644 gdb/testsuite/gdb.fortran/complex.f90 diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 8881a1e28a8..1277b8acb53 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -17547,16 +17547,35 @@ dwarf2_init_complex_target_type (struct dwarf2_cu *cu, gdbarch *gdbarch = get_objfile_arch (objfile); struct type *tt = nullptr; - switch (bits) + switch (cu->language) { - case 32: - tt = builtin_type (gdbarch)->builtin_float; - break; - case 64: - tt = builtin_type (gdbarch)->builtin_double; + case language_fortran: + switch (bits) + { + case 32: + tt = builtin_f_type (gdbarch)->builtin_real; + break; + case 64: + tt = builtin_f_type (gdbarch)->builtin_real_s8; + break; + case 128: + tt = builtin_f_type (gdbarch)->builtin_real_s16; + break; + } break; - case 128: - tt = builtin_type (gdbarch)->builtin_long_double; + default: + switch (bits) + { + case 32: + tt = builtin_type (gdbarch)->builtin_float; + break; + case 64: + tt = builtin_type (gdbarch)->builtin_double; + break; + case 128: + tt = builtin_type (gdbarch)->builtin_long_double; + break; + } break; } diff --git a/gdb/testsuite/gdb.fortran/complex.exp b/gdb/testsuite/gdb.fortran/complex.exp index 3fbbf7154d9..136f1c4df79 100644 --- a/gdb/testsuite/gdb.fortran/complex.exp +++ b/gdb/testsuite/gdb.fortran/complex.exp @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -standard_testfile .f +standard_testfile .f90 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug f90 quiet}]} { return -1 @@ -24,13 +24,36 @@ if ![runto MAIN__] then { continue } -set bp_location [gdb_get_line_number "stop"] -gdb_test "break $bp_location" \ - "Breakpoint.*at.* file .*$srcfile, line $bp_location\\." \ - "breakpoint at stop" -gdb_test "continue" \ - "Continuing\\..*Breakpoint.*" \ - "continue to breakpoint" +gdb_breakpoint [gdb_get_line_number "stop"] +gdb_continue_to_breakpoint "continue" + +gdb_test "print c" " = \\(1000,-50\\)" +gdb_test "print c4" " = \\(1000,-50\\)" +gdb_test "print c8" " = \\(321,-22\\)" +gdb_test "print dc" " = \\(321,-22\\)" + +setup_kfail gdb/18644 "*-*-*" +gdb_test "print c16" " = \\(-874,19\\)" + +gdb_test "whatis c" "type = complex\\(kind=4\\)" +gdb_test "print \$_creal (c)" " = 1000" +gdb_test "whatis \$" " = real" + +gdb_test "whatis c4" "type = complex\\(kind=4\\)" +gdb_test "print \$_creal (c4)" " = 1000" +gdb_test "whatis \$" " = real" + +gdb_test "whatis c8" "type = complex\\(kind=8\\)" +gdb_test "print \$_creal (c8)" " = 321" +gdb_test "whatis \$" " = real\\*8" + +gdb_test "whatis dc" "type = complex\\(kind=8\\)" +gdb_test "print \$_creal (dc)" " = 321" +gdb_test "whatis \$" " = real\\*8" + +gdb_test "whatis c16" "type = complex\\(kind=16\\)" +setup_kfail gdb/18644 "*-*-*" +gdb_test "print \$_creal (c16)" " = -874" +gdb_test "whatis \$" " = real\\*16" -gdb_test "print c" "\\\$$decimal = \\(1000,-50\\)" diff --git a/gdb/testsuite/gdb.fortran/complex.f b/gdb/testsuite/gdb.fortran/complex.f deleted file mode 100644 index 2f1a7879f9e..00000000000 --- a/gdb/testsuite/gdb.fortran/complex.f +++ /dev/null @@ -1,24 +0,0 @@ -c Copyright 2007-2019 Free Software Foundation, Inc. - -c This program is free software; you can redistribute it and/or modify -c it under the terms of the GNU General Public License as published by -c the Free Software Foundation; either version 3 of the License, or -c (at your option) any later version. -c -c This program is distributed in the hope that it will be useful, -c but WITHOUT ANY WARRANTY; without even the implied warranty of -c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -c GNU General Public License for more details. -c -c You should have received a copy of the GNU General Public License -c along with this program. If not, see . - - real*8 a,b - complex*16 c - - a = 1000 - b = -50 - c = cmplx(a,b) - write(*,*) s - stop - end diff --git a/gdb/testsuite/gdb.fortran/complex.f90 b/gdb/testsuite/gdb.fortran/complex.f90 new file mode 100644 index 00000000000..2b88c1ee0bb --- /dev/null +++ b/gdb/testsuite/gdb.fortran/complex.f90 @@ -0,0 +1,44 @@ +! Copyright 2007-2019 Free Software Foundation, Inc. +! +! This program is free software; you can redistribute it and/or modify +! it under the terms of the GNU General Public License as published by +! the Free Software Foundation; either version 3 of the License, or +! (at your option) any later version. +! +! This program is distributed in the hope that it will be useful, +! but WITHOUT ANY WARRANTY; without even the implied warranty of +! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +! GNU General Public License for more details. +! +! You should have received a copy of the GNU General Public License +! along with this program. If not, see . + +program test_complex + real*4 r4a, r4b + real*8 r8a, r8b + real*16 r16a, r16b + + complex c + complex(kind=4) c4 + complex(kind=8) c8 + double complex dc + complex(kind=16) c16 + + r4a = 1000 + r4b = -50 + r8a = 321 + r8b = -22 + r16a = -874 + r16b = 19 + + c = cmplx(r4a,r4b) + c4 = cmplx(r4a,r4b) + c8 = cmplx(r8a, r8b) + dc = cmplx(r8a, r8b) + c16 = cmplx(r16a, r16b) + + print *, c, c4, c8, dc, c16 ! stop + print *, r4a, r4b + print *, r8a, r8b + print *, r16a, r16b +end program test_complex