diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-11-02 15:15:41 +0000 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-11-02 15:15:41 +0000 |
commit | 4e888c281cd19f019248bd165d7055af88641c80 (patch) | |
tree | fe7a19cd3bfdc9b56724c6364b457f9c7a7de966 /gdb/regcache.h | |
parent | 2e1b49b32ab9aec1aca94f424cbe275e5f6f9ab4 (diff) | |
download | gdb-4e888c281cd19f019248bd165d7055af88641c80.zip gdb-4e888c281cd19f019248bd165d7055af88641c80.tar.gz gdb-4e888c281cd19f019248bd165d7055af88641c80.tar.bz2 |
New method regcache::assert_regnum
class regcache has some methods checking the range of register number,
this patch is to move it in a new method assert_regnum.
gdb:
2017-11-02 Yao Qi <yao.qi@linaro.org>
* regcache.c (regcache::assert_regnum): New method.
(regcache::invalidate): Call assert_regnum.
(regcache::raw_update): Likewise.
(regcache::raw_write): Likewise.
(regcache::raw_read_part): Likewise.
(regcache::raw_write_part): Likewise.
(regcache::raw_supply): Likewise.
(regcache::raw_supply_integer): Likewise.
(regcache::raw_supply_zeroed): Likewise.
(regcache::raw_collect): Likewise.
(regcache::raw_collect_integer): Likewise.
* regcache.h (regcache::assert_regnum): Declare.
Diffstat (limited to 'gdb/regcache.h')
-rw-r--r-- | gdb/regcache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/regcache.h b/gdb/regcache.h index 0eea042..6fb790d 100644 --- a/gdb/regcache.h +++ b/gdb/regcache.h @@ -358,6 +358,9 @@ private: int regnum, const void *in_buf, void *out_buf, size_t size) const; + /* Assert on the range of REGNUM. */ + void assert_regnum (int regnum) const; + struct regcache_descr *m_descr; /* The address space of this register cache (for registers where it |