Bug 19068 - gdb cannot handle operator= if both const access (as rhs) and non-const (lhs) methods defined
Summary: gdb cannot handle operator= if both const access (as rhs) and non-const (lhs)...
Status: RESOLVED FIXED
Alias: None
Product: gdb
Classification: Unclassified
Component: c++ (show other bugs)
Version: 7.10
: P2 normal
Target Milestone: 8.0
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-10-05 18:11 UTC by Richard Sharman
Modified: 2023-12-27 16:46 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments
Simple file to demonstrate the problem (692 bytes, text/plain)
2015-10-05 18:12 UTC, Richard Sharman
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Richard Sharman 2015-10-05 18:11:09 UTC

    
Comment 1 Richard Sharman 2015-10-05 18:12:42 UTC
Created attachment 8681 [details]
Simple file to demonstrate the problem
Comment 2 Richard Sharman 2015-10-05 18:13:01 UTC
If a class is defined with a single operator[] method,
then gdb can invoke this method with the normal x[i] syntax.

If, however,  there are separate const "rhs" and non-const "lhs" 
methods defined,  then trying to print or assign using x[i] syntax
produces the message "Could not find operator[].".

See example t.c.  When compiled as is (SEPARATE_SUB_METHODS defined)
there are methods 
	const T& operator[](const int index) const 
and
	T& operator[](const int index) {

Running gdb shows:

(gdb) b 53
Breakpoint 1 at 0x40076a: file t.cc, line 53.
(gdb) r
(gdb) p x
$1 = {storage = {10, 20, 30, 40, 50, 60, 70, 80, 90, 100}}
(gdb) p x[3]
Could not find operator[].
(gdb) show version
GNU gdb (GDB) 7.10
Copyright (C) 2015 Free Software Foundation, Inc.


When SEPARATE_SUB_METHODS is undefined there is only one method
	T& operator[](const int index)  {
and gdb works fine with this:

(gdb) b 53
Breakpoint 1 at 0x40076a: file t2.cc, line 53.
(gdb) r
Starting program: /localhome/sharman/tmp/c++test/t2 

Breakpoint 1, main (NameError: Installation error: gdb.execute_unwinders function is missing

argc=1, argv=0x7fffffffdbc8) at t2.cc:53
53		printf("%2d: %d\n", i, x[i]);
(gdb) p x
$1 = {storage = {10, 20, 30, 40, 50, 60, 70, 80, 90, 100}}
(gdb) p x[3]
NameError: Installation error: gdb.execute_unwinders function is missing
$2 = (int &) @0x7fffffffdab8: 30
(gdb) set var x[3] = 33
(gdb) p x[3]
$3 = (int &) @0x7fffffffdab8: 33
(gdb) p x
$4 = {storage = {10, 20, 33, 40, 50, 60, 70, 80, 90, 100}}
(gdb)
Comment 3 Hannes Domani 2023-12-27 16:46:37 UTC
Works since version gdb-8.0.