mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
68ce205943
This patch is in preparation for software single step support on ARM in GDBServer. It adds a new shared function regcache_raw_read_unsigned and regcache_raw_get_unsigned so that GDB and GDBServer can use the same call to fetch a raw register into an integer. No regressions, tested on ubuntu 14.04 ARMv7 and x86. With gdbserver-{native,extended} / { -marm -mthumb } gdb/ChangeLog: * Makefile.in (SFILES): Append common/common-regcache.c. (COMMON_OBS): Append common/common-regcache.o. (common-regcache.o): New rule. * common/common-regcache.h (register_status) New enum. (regcache_raw_read_unsigned): New declaration. * common/common-regcache.c: New file. * regcache.h (enum register_status): Move to common-regcache.h. (regcache_raw_read_unsigned): Likewise. (regcache_raw_get_unsigned): Likewise. gdb/gdbserver/ChangeLog: * Makefile.in (SFILES): Append common/common-regcache.c. (OBS): Append common-regcache.o. (common-regcache.o): New rule. * regcache.c (init_register_cache): Initialize cache to REG_UNAVAILABLE. (regcache_raw_read_unsigned): New function. * regcache.h (REG_UNAVAILABLE, REG_VALID): Replaced by shared register_status enum.
66 lines
2.4 KiB
C
66 lines
2.4 KiB
C
/* Cache and manage the values of registers
|
|
|
|
Copyright (C) 2014-2015 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef COMMON_REGCACHE_H
|
|
#define COMMON_REGCACHE_H
|
|
|
|
/* This header is a stopgap until we have an independent regcache. */
|
|
|
|
enum register_status
|
|
{
|
|
/* The register value is not in the cache, and we don't know yet
|
|
whether it's available in the target (or traceframe). */
|
|
REG_UNKNOWN = 0,
|
|
|
|
/* The register value is valid and cached. */
|
|
REG_VALID = 1,
|
|
|
|
/* The register value is unavailable. E.g., we're inspecting a
|
|
traceframe, and this register wasn't collected. Note that this
|
|
is different a different "unavailable" from saying the register
|
|
does not exist in the target's architecture --- in that case,
|
|
the target should have given us a target description that does
|
|
not include the register in the first place. */
|
|
REG_UNAVAILABLE = -1
|
|
};
|
|
|
|
/* Return a pointer to the register cache associated with the
|
|
thread specified by PTID. This function must be provided by
|
|
the client. */
|
|
|
|
extern struct regcache *get_thread_regcache_for_ptid (ptid_t ptid);
|
|
|
|
/* Return the size of register numbered N in REGCACHE. This function
|
|
must be provided by the client. */
|
|
|
|
extern int regcache_register_size (const struct regcache *regcache, int n);
|
|
|
|
/* Read the PC register. This function must be provided by the
|
|
client. */
|
|
|
|
extern CORE_ADDR regcache_read_pc (struct regcache *regcache);
|
|
|
|
/* Read a raw register into a unsigned integer. */
|
|
extern enum register_status regcache_raw_read_unsigned
|
|
(struct regcache *regcache, int regnum, ULONGEST *val);
|
|
|
|
ULONGEST regcache_raw_get_unsigned (struct regcache *regcache, int regnum);
|
|
|
|
#endif /* COMMON_REGCACHE_H */
|