• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Revisión215c69dc9a7d8f868198b5523abcf41458fb6e4a (tree)
Tiempo2018-02-21 20:20:03
AutorYao Qi <yao.qi@lina...>
CommiterYao Qi

Log Message

No longer create readonly regcache

Nowadays, we create a readonly regcache in get_return_value, and pass it
to gdbarch_return_value to get the return value. In theory, we can pass a
readable_regcache instance and get the return value, because we don't need
to modify the regcache. Unfortunately, gdbarch_return_value is designed
to multiplex regcache, according to READBUF and WRITEBUF.

# If READBUF is not NULL, extract the return value and save it in this
# buffer.
#
# If WRITEBUF is not NULL, it contains a return value which will be
# stored into the appropriate register.

In fact, gdbarch_return_value should be split to three functions, 1) only
return return_value_convention, 2) pass regcache_readonly and readbuf, 3)
pass regcache and writebuf. These changes are out of the scope of this
patch series, so I pass regcache to gdbarch_return_value even for read,
and trust each gdbarch backend doesn't modify regcache.

gdb:

2018-02-21 Yao Qi <yao.qi@linaro.org>

* infcmd.c (get_return_value): Let stop_regs point to
get_current_regcache.
* regcache.c (regcache::regcache): Remove.
(register_dump_reg_buffer): New class.
(regcache_print): Adjust.
* regcache.h (regcache): Remove constructors.

Cambiar Resumen

Diferencia incremental

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,14 @@
11 2018-02-21 Yao Qi <yao.qi@linaro.org>
22
3+ * infcmd.c (get_return_value): Let stop_regs point to
4+ get_current_regcache.
5+ * regcache.c (regcache::regcache): Remove.
6+ (register_dump_reg_buffer): New class.
7+ (regcache_print): Adjust.
8+ * regcache.h (regcache): Remove constructors.
9+
10+2018-02-21 Yao Qi <yao.qi@linaro.org>
11+
312 * regcache.c (class register_dump): New class.
413 (register_dump_regcache, register_dump_none): New class.
514 (register_dump_remote, register_dump_groups): New class.
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -1625,8 +1625,8 @@ advance_command (const char *arg, int from_tty)
16251625 struct value *
16261626 get_return_value (struct value *function, struct type *value_type)
16271627 {
1628- regcache stop_regs (regcache::readonly, *get_current_regcache ());
1629- struct gdbarch *gdbarch = stop_regs.arch ();
1628+ regcache *stop_regs = get_current_regcache ();
1629+ struct gdbarch *gdbarch = stop_regs->arch ();
16301630 struct value *value;
16311631
16321632 value_type = check_typedef (value_type);
@@ -1646,7 +1646,7 @@ get_return_value (struct value *function, struct type *value_type)
16461646 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
16471647 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
16481648 value = allocate_value (value_type);
1649- gdbarch_return_value (gdbarch, function, value_type, &stop_regs,
1649+ gdbarch_return_value (gdbarch, function, value_type, stop_regs,
16501650 value_contents_raw (value), NULL);
16511651 break;
16521652 case RETURN_VALUE_STRUCT_CONVENTION:
--- a/gdb/regcache.c
+++ b/gdb/regcache.c
@@ -219,13 +219,6 @@ do_cooked_read (void *src, int regnum, gdb_byte *buf)
219219 return regcache_cooked_read (regcache, regnum, buf);
220220 }
221221
222-regcache::regcache (readonly_t, const regcache &src)
223- : regcache (src.arch (), nullptr, true)
224-{
225- gdb_assert (!src.m_readonly_p);
226- save (do_cooked_read, (void *) &src);
227-}
228-
229222 readonly_detached_regcache::readonly_detached_regcache (const regcache &src)
230223 : readonly_detached_regcache (src.arch (), do_cooked_read, (void *) &src)
231224 {
@@ -1512,6 +1505,55 @@ private:
15121505 const bool m_dump_pseudo;
15131506 };
15141507
1508+/* Dump from reg_buffer, used when there is no thread or
1509+ registers. */
1510+
1511+class register_dump_reg_buffer : public register_dump, reg_buffer
1512+{
1513+public:
1514+ register_dump_reg_buffer (gdbarch *gdbarch, bool dump_pseudo)
1515+ : register_dump (gdbarch), reg_buffer (gdbarch, dump_pseudo)
1516+ {
1517+ }
1518+
1519+protected:
1520+ void dump_reg (ui_file *file, int regnum) override
1521+ {
1522+ if (regnum < 0)
1523+ {
1524+ if (m_has_pseudo)
1525+ fprintf_unfiltered (file, "Cooked value");
1526+ else
1527+ fprintf_unfiltered (file, "Raw value");
1528+ }
1529+ else
1530+ {
1531+ if (regnum < gdbarch_num_regs (m_gdbarch) || m_has_pseudo)
1532+ {
1533+ auto size = register_size (m_gdbarch, regnum);
1534+
1535+ if (size == 0)
1536+ return;
1537+
1538+ auto status = get_register_status (regnum);
1539+
1540+ gdb_assert (status != REG_VALID);
1541+
1542+ if (status == REG_UNKNOWN)
1543+ fprintf_unfiltered (file, "<invalid>");
1544+ else
1545+ fprintf_unfiltered (file, "<unavailable>");
1546+ }
1547+ else
1548+ {
1549+ /* Just print "<cooked>" for pseudo register when
1550+ regcache_dump_raw. */
1551+ fprintf_unfiltered (file, "<cooked>");
1552+ }
1553+ }
1554+ }
1555+};
1556+
15151557 /* For "maint print registers". */
15161558
15171559 class register_dump_none : public register_dump
@@ -1633,22 +1675,19 @@ regcache_print (const char *args, enum regcache_dump_what what_to_dump)
16331675 case regcache_dump_raw:
16341676 case regcache_dump_cooked:
16351677 {
1636- regcache *reg;
1678+ auto dump_pseudo = (what_to_dump == regcache_dump_cooked);
16371679
16381680 if (target_has_registers)
1639- reg = get_current_regcache ();
1681+ dump.reset (new register_dump_regcache (get_current_regcache (),
1682+ dump_pseudo));
16401683 else
16411684 {
16421685 /* For the benefit of "maint print registers" & co when
16431686 debugging an executable, allow dumping a regcache even when
16441687 there is no thread selected / no registers. */
1645- reg = new regcache (target_gdbarch ());
1646- regs.reset (reg);
1688+ dump.reset (new register_dump_reg_buffer (target_gdbarch (),
1689+ dump_pseudo));
16471690 }
1648-
1649- auto dump_pseudo = (what_to_dump == regcache_dump_cooked);
1650-
1651- dump.reset (new register_dump_regcache (reg, dump_pseudo));
16521691 }
16531692 break;
16541693 }
@@ -1937,7 +1976,7 @@ cooked_read_test (struct gdbarch *gdbarch)
19371976 mock_target.reset ();
19381977 }
19391978
1940- regcache readonly (regcache::readonly, readwrite);
1979+ readonly_detached_regcache readonly (readwrite);
19411980
19421981 /* GDB may go to target layer to fetch all registers and memory for
19431982 readonly regcache. */
--- a/gdb/regcache.h
+++ b/gdb/regcache.h
@@ -307,16 +307,6 @@ class readonly_detached_regcache;
307307 class regcache : public detached_regcache
308308 {
309309 public:
310- regcache (gdbarch *gdbarch)
311- : regcache (gdbarch, nullptr, true)
312- {}
313-
314- struct readonly_t {};
315- static constexpr readonly_t readonly {};
316-
317- /* Create a readonly regcache from a non-readonly regcache. */
318- regcache (readonly_t, const regcache &src);
319-
320310 DISABLE_COPY_AND_ASSIGN (regcache);
321311
322312 /* Return REGCACHE's address space. */