xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/arch/ppc-linux-tdesc.h (revision 6881a4007f077b54e5f51159c52b9b25f57deb0d)
17f2ac410Schristos /* Target description declarations shared between gdb, gdbserver and IPA.
27f2ac410Schristos 
3*6881a400Schristos    Copyright (C) 2018-2023 Free Software Foundation, Inc.
47f2ac410Schristos 
57f2ac410Schristos    This file is part of GDB.
67f2ac410Schristos 
77f2ac410Schristos    This program is free software; you can redistribute it and/or modify
87f2ac410Schristos    it under the terms of the GNU General Public License as published by
97f2ac410Schristos    the Free Software Foundation; either version 3 of the License, or
107f2ac410Schristos    (at your option) any later version.
117f2ac410Schristos 
127f2ac410Schristos    This program is distributed in the hope that it will be useful,
137f2ac410Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
147f2ac410Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
157f2ac410Schristos    GNU General Public License for more details.
167f2ac410Schristos 
177f2ac410Schristos    You should have received a copy of the GNU General Public License
187f2ac410Schristos    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
197f2ac410Schristos 
207f2ac410Schristos #ifndef ARCH_PPC_LINUX_TDESC_H
217f2ac410Schristos #define ARCH_PPC_LINUX_TDESC_H
227f2ac410Schristos 
237f2ac410Schristos struct target_desc;
247f2ac410Schristos 
25*6881a400Schristos extern const struct target_desc *tdesc_powerpc_32l;
26*6881a400Schristos extern const struct target_desc *tdesc_powerpc_altivec32l;
27*6881a400Schristos extern const struct target_desc *tdesc_powerpc_vsx32l;
28*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_32l;
29*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_altivec32l;
30*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_vsx32l;
31*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx32l;
32*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa207_vsx32l;
33*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa207_htm_vsx32l;
34*6881a400Schristos extern const struct target_desc *tdesc_powerpc_e500l;
357f2ac410Schristos 
36*6881a400Schristos extern const struct target_desc *tdesc_powerpc_64l;
37*6881a400Schristos extern const struct target_desc *tdesc_powerpc_altivec64l;
38*6881a400Schristos extern const struct target_desc *tdesc_powerpc_vsx64l;
39*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_64l;
40*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_altivec64l;
41*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_vsx64l;
42*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx64l;
43*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa207_vsx64l;
44*6881a400Schristos extern const struct target_desc *tdesc_powerpc_isa207_htm_vsx64l;
457f2ac410Schristos 
467f2ac410Schristos #endif /* ARCH_PPC_LINUX_TDESC_H */
47