xref: /netbsd-src/external/gpl3/gdb/dist/gdbserver/linux-arm-tdesc.h (revision 13ed34fa5696ce1ff8e9519eeb5619eee4331db8)
1*13ed34faSchristos /* Copyright (C) 2019-2024 Free Software Foundation, Inc.
28dffb485Schristos 
38dffb485Schristos    This file is part of GDB.
48dffb485Schristos 
58dffb485Schristos    This program is free software; you can redistribute it and/or modify
68dffb485Schristos    it under the terms of the GNU General Public License as published by
78dffb485Schristos    the Free Software Foundation; either version 3 of the License, or
88dffb485Schristos    (at your option) any later version.
98dffb485Schristos 
108dffb485Schristos    This program is distributed in the hope that it will be useful,
118dffb485Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
128dffb485Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
138dffb485Schristos    GNU General Public License for more details.
148dffb485Schristos 
158dffb485Schristos    You should have received a copy of the GNU General Public License
168dffb485Schristos    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
178dffb485Schristos 
188dffb485Schristos #ifndef GDBSERVER_LINUX_ARM_TDESC_H
198dffb485Schristos #define GDBSERVER_LINUX_ARM_TDESC_H
208dffb485Schristos 
218dffb485Schristos #include "arch/arm.h"
228dffb485Schristos 
238dffb485Schristos /* Return the Arm target description with fp registers FP_TYPE.  */
248dffb485Schristos 
258dffb485Schristos const target_desc * arm_linux_read_description (arm_fp_type fp_type);
268dffb485Schristos 
278dffb485Schristos /* For a target description TDESC, return its fp type.  */
288dffb485Schristos 
298dffb485Schristos arm_fp_type arm_linux_get_tdesc_fp_type (const target_desc *tdesc);
308dffb485Schristos 
318dffb485Schristos #endif /* linux-arm-tdesc.h.  */
32