1 /* Generic remote debugging interface for simulators.
3 Copyright 2002 Free Software Foundation, Inc.
5 Contributed by Red Hat, Inc.
7 This file is part of GDB.
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 2 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
27 /* The REGISTER_SIM_REGNO(REGNUM) method, when there is a
28 corresponding simulator register, returns that register number as a
29 cardinal. When there is no corresponding register, it returns a
33 /* Normal sane architecture. The simulator is known to not model
35 SIM_REGNO_DOES_NOT_EXIST
= -1,
36 /* For possible backward compatibility. The register cache doesn't
37 have a corresponding name. Skip the register entirely. */
38 LEGACY_SIM_REGNO_IGNORE
= -2
41 /* Treat all raw registers as valid. */
43 extern int one2one_register_sim_regno (int regnum
);
This page took 0.031313 seconds and 4 git commands to generate.