~ubuntu-branches/debian/jessie/gdb/jessie

« back to all changes in this revision

Viewing changes to include/gdb/sim-rx.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2010-03-20 01:21:29 UTC
  • mfrom: (1.3.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100320012129-t7h25y8zgr8c2369
Tags: 7.1-1
* New upstream release, including:
  - PIE support (Closes: #346409).
  - C++ improvements, including static_cast<> et al, namespace imports,
    and bug fixes in printing virtual base classes.
  - Multi-program debugging.  One GDB can now debug multiple programs
    at the same time.
  - Python scripting improvements, including gdb.parse_and_eval.
  - Updated MIPS Linux signal frame layout (Closes: #570875).
  - No internal error stepping over _dl_debug_state (Closes: #569551).
* Update to Standards-Version: 3.8.4 (no changes required).
* Include more relevant (and smaller) docs in the gdbserver package
  (Closes: #571132).
* Do not duplicate documentation in gdb64, gdb-source, and libgdb-dev.
* Fix crash when switching into TUI mode (Closes: #568489).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* sim-rx.h --- interface between RX simulator and GDB.
 
2
 
 
3
   Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
 
4
 
 
5
   Contributed by Red Hat.
 
6
 
 
7
   This file is part of GDB.
 
8
 
 
9
   This program is free software; you can redistribute it and/or modify
 
10
   it under the terms of the GNU General Public License as published by
 
11
   the Free Software Foundation; either version 3 of the License, or
 
12
   (at your option) any later version.
 
13
 
 
14
   This program is distributed in the hope that it will be useful,
 
15
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
   GNU General Public License for more details.
 
18
 
 
19
   You should have received a copy of the GNU General Public License
 
20
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
21
 
 
22
#if !defined (SIM_RX_H)
 
23
#define SIM_RX_H
 
24
 
 
25
enum sim_rx_regnum
 
26
  {
 
27
    sim_rx_r0_regnum,
 
28
    sim_rx_r1_regnum,
 
29
    sim_rx_r2_regnum,
 
30
    sim_rx_r3_regnum,
 
31
    sim_rx_r4_regnum,
 
32
    sim_rx_r5_regnum,
 
33
    sim_rx_r6_regnum,
 
34
    sim_rx_r7_regnum,
 
35
    sim_rx_r8_regnum,
 
36
    sim_rx_r9_regnum,
 
37
    sim_rx_r10_regnum,
 
38
    sim_rx_r11_regnum,
 
39
    sim_rx_r12_regnum,
 
40
    sim_rx_r13_regnum,
 
41
    sim_rx_r14_regnum,
 
42
    sim_rx_r15_regnum,
 
43
    sim_rx_isp_regnum,
 
44
    sim_rx_usp_regnum,
 
45
    sim_rx_intb_regnum,
 
46
    sim_rx_pc_regnum,
 
47
    sim_rx_ps_regnum,
 
48
    sim_rx_bpc_regnum,
 
49
    sim_rx_bpsw_regnum,
 
50
    sim_rx_fintv_regnum,
 
51
    sim_rx_fpsw_regnum,
 
52
    sim_rx_num_regs
 
53
  };
 
54
 
 
55
#endif /* SIM_RX_H */