GDBserver
linux-cris-low.c
Go to the documentation of this file.
1 /* GNU/Linux/CRIS specific low level interface, for the remote server for GDB.
2  Copyright (C) 1995-2018 Free Software Foundation, Inc.
3 
4  This file is part of GDB.
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 3 of the License, or
9  (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 
19 #include "server.h"
20 #include "linux-low.h"
21 #include "nat/gdb_ptrace.h"
22 
23 /* Defined in auto-generated file reg-cris.c. */
24 void init_registers_cris (void);
25 extern const struct target_desc *tdesc_cris;
26 
27 /* CRISv10 */
28 #define cris_num_regs 32
29 
30 /* Locations need to match <include/asm/arch/ptrace.h>. */
31 static int cris_regmap[] = {
32  15*4, 14*4, 13*4, 12*4,
33  11*4, 10*4, 9*4, 8*4,
34  7*4, 6*4, 5*4, 4*4,
35  3*4, 2*4, 23*4, 19*4,
36 
37  -1, -1, -1, -1,
38  -1, 17*4, -1, 16*4,
39  -1, -1, -1, 18*4,
40  -1, 17*4, -1, -1
41 
42 };
43 
44 static int
46 {
47  if (cris_regmap[regno] == -1)
48  return 1;
49 
50  return (regno >= cris_num_regs);
51 }
52 
53 static int
55 {
56  if (cris_regmap[regno] == -1)
57  return 1;
58 
59  return (regno >= cris_num_regs);
60 }
61 
62 static const unsigned short cris_breakpoint = 0xe938;
63 #define cris_breakpoint_len 2
64 
65 /* Implementation of linux_target_ops method "sw_breakpoint_from_kind". */
66 
67 static const gdb_byte *
68 cris_sw_breakpoint_from_kind (int kind, int *size)
69 {
70  *size = cris_breakpoint_len;
71  return (const gdb_byte *) &cris_breakpoint;
72 }
73 
74 static int
76 {
77  unsigned short insn;
78 
79  (*the_target->read_memory) (where, (unsigned char *) &insn,
81  if (insn == cris_breakpoint)
82  return 1;
83 
84  /* If necessary, recognize more trap instructions here. GDB only uses the
85  one. */
86  return 0;
87 }
88 
89 static void
91 {
93 }
94 
96  {
99  };
100 
101 static struct regs_info regs_info =
102  {
103  NULL, /* regset_bitmap */
105  };
106 
107 static const struct regs_info *
109 {
110  return &regs_info;
111 }
112 
118  NULL, /* fetch_register */
121  NULL, /* breakpoint_kind_from_pc */
123  NULL, /* get_next_pcs */
124  0,
126 };
127 
128 void
130 {
132 }
#define cris_breakpoint_len
bfd_vma CORE_ADDR
Definition: common-types.h:41
static int cris_breakpoint_at(CORE_ADDR where)
void initialize_low_arch(void)
static const gdb_byte * cris_sw_breakpoint_from_kind(int kind, int *size)
static const unsigned short cris_breakpoint
struct linux_target_ops the_low_target
static int cris_cannot_store_register(int regno)
static struct usrregs_info cris_usrregs_info
struct target_ops * the_target
Definition: target.c:24
const struct target_desc * tdesc
Definition: inferiors.h:67
CORE_ADDR linux_get_pc_32bit(struct regcache *regcache)
Definition: linux-low.c:7411
static int cris_cannot_fetch_register(int regno)
void init_registers_cris(void)
#define cris_num_regs
struct process_info * current_process(void)
Definition: inferiors.c:210
static struct regs_info regs_info
void linux_set_pc_32bit(struct regcache *regcache, CORE_ADDR pc)
Definition: linux-low.c:7400
const struct target_desc * tdesc_cris
bfd_byte gdb_byte
Definition: common-types.h:38
static int cris_regmap[]
static const struct regs_info * cris_regs_info(void)
int(* read_memory)(CORE_ADDR memaddr, unsigned char *myaddr, int len)
Definition: target.h:166
static void cris_arch_setup(void)