GDB (API)
|
#include "defs.h"
#include "inferior.h"
#include "gdbcore.h"
#include "gdb_string.h"
#include "regcache.h"
#include "target.h"
#include "linux-nat.h"
#include "target-descriptions.h"
#include "auxv.h"
#include "observer.h"
#include "gdbthread.h"
#include "arm-tdep.h"
#include "arm-linux-tdep.h"
#include <elf/common.h>
#include <sys/user.h>
#include <sys/ptrace.h>
#include <sys/utsname.h>
#include <sys/procfs.h>
#include "gregset.h"
#include "gdb_proc_service.h"
Go to the source code of this file.
Defines | |
#define | PTRACE_GET_THREAD_AREA 22 |
#define | PTRACE_GETWMMXREGS 18 |
#define | PTRACE_SETWMMXREGS 19 |
#define | PTRACE_GETVFPREGS 27 |
#define | PTRACE_SETVFPREGS 28 |
#define | PTRACE_GETHBPREGS 29 |
#define | PTRACE_SETHBPREGS 30 |
#define | GET_THREAD_ID(PTID) get_thread_id (PTID) |
#define | IWMMXT_REGS_SIZE (16 * 8 + 6 * 4) |
#define | VFP_REGS_SIZE (32 * 8 + 4) |
Typedefs | |
typedef unsigned int | arm_hwbp_control_t |
typedef struct arm_linux_thread_points * | arm_linux_thread_points_p |
Enumerations | |
enum | arm_hwbp_type { arm_hwbp_break = 0, arm_hwbp_load = 1, arm_hwbp_store = 2, arm_hwbp_access = 3 } |
Functions | |
void | fill_gregset (const struct regcache *regcache, gdb_gregset_t *gregsetp, int regno) |
void | supply_gregset (struct regcache *regcache, const gdb_gregset_t *gregsetp) |
void | fill_fpregset (const struct regcache *regcache, gdb_fpregset_t *fpregsetp, int regno) |
void | supply_fpregset (struct regcache *regcache, const gdb_fpregset_t *fpregsetp) |
ps_err_e | ps_get_thread_area (const struct ps_prochandle *ph, lwpid_t lwpid, int idx, void **base) |
DEF_VEC_P (arm_linux_thread_points_p) | |
VEC (arm_linux_thread_points_p) | |
void | _initialize_arm_linux_nat (void) |
Variables | |
int | arm_apcs_32 |
#define GET_THREAD_ID | ( | PTID | ) | get_thread_id (PTID) |
Definition at line 89 of file arm-linux-nat.c.
#define IWMMXT_REGS_SIZE (16 * 8 + 6 * 4) |
Definition at line 380 of file arm-linux-nat.c.
#define PTRACE_GET_THREAD_AREA 22 |
Definition at line 47 of file arm-linux-nat.c.
#define PTRACE_GETHBPREGS 29 |
Definition at line 61 of file arm-linux-nat.c.
#define PTRACE_GETVFPREGS 27 |
Definition at line 56 of file arm-linux-nat.c.
#define PTRACE_GETWMMXREGS 18 |
Definition at line 51 of file arm-linux-nat.c.
#define PTRACE_SETHBPREGS 30 |
Definition at line 62 of file arm-linux-nat.c.
#define PTRACE_SETVFPREGS 28 |
Definition at line 57 of file arm-linux-nat.c.
#define PTRACE_SETWMMXREGS 19 |
Definition at line 52 of file arm-linux-nat.c.
#define VFP_REGS_SIZE (32 * 8 + 4) |
Definition at line 457 of file arm-linux-nat.c.
typedef unsigned int arm_hwbp_control_t |
Definition at line 779 of file arm-linux-nat.c.
typedef struct arm_linux_thread_points * arm_linux_thread_points_p |
enum arm_hwbp_type |
Definition at line 770 of file arm-linux-nat.c.
void _initialize_arm_linux_nat | ( | void | ) |
Definition at line 1255 of file arm-linux-nat.c.
void fill_fpregset | ( | const struct regcache * | regcache, |
gdb_fpregset_t * | fpregsetp, | ||
int | regno | ||
) |
Definition at line 598 of file arm-linux-nat.c.
void fill_gregset | ( | const struct regcache * | regcache, |
gdb_gregset_t * | gregsetp, | ||
int | regno | ||
) |
Definition at line 585 of file arm-linux-nat.c.
ps_err_e ps_get_thread_area | ( | const struct ps_prochandle * | ph, |
lwpid_t | lwpid, | ||
int | idx, | ||
void ** | base | ||
) |
Definition at line 616 of file arm-linux-nat.c.
void supply_fpregset | ( | struct regcache * | regcache, |
const gdb_fpregset_t * | fpregsetp | ||
) |
Definition at line 608 of file arm-linux-nat.c.
void supply_gregset | ( | struct regcache * | regcache, |
const gdb_gregset_t * | gregsetp | ||
) |
Definition at line 592 of file arm-linux-nat.c.
Definition at line 823 of file arm-linux-nat.c.
Definition at line 279 of file arm-tdep.c.