OSDN Git Service

gdb/
authorpalves <palves>
Mon, 14 Feb 2011 20:32:16 +0000 (20:32 +0000)
committerpalves <palves>
Mon, 14 Feb 2011 20:32:16 +0000 (20:32 +0000)
* valops.c (value_repeat): Use read_value_memory instead of
read_memory.

gdb/testsuite/
* gdb.trace/unavailable.exp (gdb_collect_globals_test): Test that
value repeat handles unavailableness.

gdb/ChangeLog
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.trace/unavailable.exp
gdb/valops.c

index 6cbfdf8..a127078 100644 (file)
@@ -1,5 +1,10 @@
 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
 
+       * valops.c (value_repeat): Use read_value_memory instead of
+       read_memory.
+
+2011-02-14  Pedro Alves  <pedro@codesourcery.com>
+
        * value.h (value_contents_copy, value_contents_copy_raw): Declare.
        * value.c (value_contents_copy_raw, value_contents_copy): New
        functions.
index 95ad195..a9a19c9 100644 (file)
@@ -1,5 +1,10 @@
 2011-02-14  Pedro Alves  <pedro@codesourcery.com>
 
+       * gdb.trace/unavailable.exp (gdb_collect_globals_test): Test that
+       value repeat handles unavailableness.
+
+2011-02-14  Pedro Alves  <pedro@codesourcery.com>
+
        * gdb.trace/unavailable.exp (gdb_collect_globals_test): Add new
        tests for building arrays from unavailable values, subscripting
        non-memory rvalue unvailable arrays, and accessing fields or
index 00fb332..18e1043 100644 (file)
@@ -155,6 +155,9 @@ proc gdb_collect_globals_test { } {
 
     gdb_test_no_output "set print repeat 10"
 
+    # Check that value repeat handles unavailable-ness.
+    gdb_test "print *tarray@3" " = \\{\\{a = 0, b = <unavailable>\\}, \\{a = 0, b = <unavailable>\\}, \\{a = <unavailable>, b = <unavailable>\\}\\}"
+
     # Static fields
 
     gdb_test "print struct_b.static_struct_a" \
index 1c37fae..1f25a32 100644 (file)
@@ -1456,12 +1456,13 @@ value_repeat (struct value *arg1, int count)
 
   val = allocate_repeat_value (value_enclosing_type (arg1), count);
 
-  read_memory (value_address (arg1),
-              value_contents_all_raw (val),
-              TYPE_LENGTH (value_enclosing_type (val)));
   VALUE_LVAL (val) = lval_memory;
   set_value_address (val, value_address (arg1));
 
+  read_value_memory (val, 0, value_stack (val), value_address (val),
+                    value_contents_all_raw (val),
+                    TYPE_LENGTH (value_enclosing_type (val)));
+
   return val;
 }