Fix PR python/17386 - add __index__ method to gdb.Value
authorTom Tromey <tom@tromey.com>
Sun, 14 Sep 2014 04:24:50 +0000 (22:24 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 24 May 2016 16:05:59 +0000 (10:05 -0600)
This patch fixes PR python/17386.

The bug is that gdb.Value does not implement the Python __index__
method.  This method is needed to convert a Python object to an index
and is used by various operations in Python, such as indexing an
array.

The fix is to implement the nb_index method for gdb.Value.

nb_index was added in Python 2.5.  I don't have a good way to test
Python 2.4, but I made an attempt to accomodate it.

I chose to use valpy_long in all cases because this simplifies porting
to Python 3, and because there didn't seem to be any harm.

Built and regtested on x86-64 Fedora 23.

2016-05-24  Tom Tromey  <tom@tromey.com>

PR python/17386:
* python/py-value.c (value_object_as_number): Add
nb_inplace_floor_divide, nb_inplace_true_divide, nb_index.

2016-05-24  Tom Tromey  <tom@tromey.com>

PR python/17386:
* gdb.python/py-value.exp (test_value_numeric_ops): Add tests that
use value as an index.

gdb/ChangeLog
gdb/python/py-value.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.python/py-value.exp

index a38b98c0ba60bac91e22deea686d4dae5b8d1bd5..00e0ddbf3485ad83046399adcf8fe785a6a189dd 100644 (file)
@@ -1,3 +1,9 @@
+2016-05-24  Tom Tromey  <tom@tromey.com>
+
+       PR python/17386:
+       * python/py-value.c (value_object_as_number): Add
+       nb_inplace_floor_divide, nb_inplace_true_divide, nb_index.
+
 2016-05-24  Tom Tromey  <tom@tromey.com>
 
        * python/py-value.c (value_object_as_number): Add
index 268f6c8ad6b3d8fe23ec5b30e707dc1387a088e3..7a2a235d7e71d371be6157e5234ec4c628f6fa16 100644 (file)
@@ -1838,7 +1838,13 @@ static PyNumberMethods value_object_as_number = {
   NULL,                       /* nb_inplace_xor */
   NULL,                       /* nb_inplace_or */
   NULL,                       /* nb_floor_divide */
-  valpy_divide                /* nb_true_divide */
+  valpy_divide,               /* nb_true_divide */
+  NULL,                              /* nb_inplace_floor_divide */
+  NULL,                              /* nb_inplace_true_divide */
+#ifndef HAVE_LIBPYTHON_2_4
+  /* This was added in Python 2.5.  */
+  valpy_long,                /* nb_index */
+#endif /* HAVE_LIBPYTHON_2_4 */
 };
 
 static PyMappingMethods value_object_as_mapping = {
index 319c0f5c8cafb3e6e99dc241286e0e8bb89a3adb..09b4c354622977616f2d67d867416de00d488321 100644 (file)
@@ -1,3 +1,9 @@
+2016-05-24  Tom Tromey  <tom@tromey.com>
+
+       PR python/17386:
+       * gdb.python/py-value.exp (test_value_numeric_ops): Add tests that
+       use value as an index.
+
 2016-05-23  Tom Tromey  <tom@tromey.com>
 
        PR python/17981:
index a9dbe97784a5fffb50187f88d2daf582005d3d31..57a9ba1f516ec3b4b27cdb2b8ea90b91403ae554 100644 (file)
@@ -124,6 +124,13 @@ proc test_value_numeric_ops {} {
   gdb_test "python print ('result = ' + str(b-2))" " = 0x3( <.*>)?" "subtract python integer from pointer value"
   gdb_test "python print ('result = ' + str(b-a))" " = 3" "subtract two pointer values"
 
+  gdb_test "python print ('result = ' + 'result'\[gdb.Value(0)\])" \
+    "result = r" "use value as string index"
+  gdb_test "python print ('result = ' + str((1,2,3)\[gdb.Value(0)\]))" \
+    "result = 1" "use value as tuple index"
+  gdb_test "python print ('result = ' + str(\[1,2,3\]\[gdb.Value(0)\]))" \
+    "result = 1" "use value as array index"
+
   # Test some invalid operations.
 
   gdb_test_multiple "python print ('result = ' + str(i+'foo'))" "catch error in python type conversion" {