2003-08-30 00:35:47 +08:00
|
|
|
/* Simulator CPU header for frv.
|
|
|
|
|
|
|
|
THIS FILE IS MACHINE GENERATED WITH CGEN.
|
|
|
|
|
2015-01-01 17:32:14 +08:00
|
|
|
Copyright 1996-2015 Free Software Foundation, Inc.
|
2003-08-30 00:35:47 +08:00
|
|
|
|
|
|
|
This file is part of the GNU simulators.
|
|
|
|
|
2008-12-23 09:40:25 +08:00
|
|
|
This file is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
any later version.
|
2003-08-30 00:35:47 +08:00
|
|
|
|
2008-12-23 09:40:25 +08:00
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
License for more details.
|
2003-08-30 00:35:47 +08:00
|
|
|
|
2008-12-23 09:40:25 +08:00
|
|
|
You should have received a copy of the GNU General Public License along
|
2012-12-19 15:18:22 +08:00
|
|
|
with this program; if not, see <http://www.gnu.org/licenses/>.
|
2003-08-30 00:35:47 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FRV_CPUALL_H
|
|
|
|
#define FRV_CPUALL_H
|
|
|
|
|
|
|
|
/* Include files for each cpu family. */
|
|
|
|
|
|
|
|
#ifdef WANT_CPU_FRVBF
|
|
|
|
#include "eng.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "decode.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern const MACH frv_mach;
|
2003-10-06 Dave Brolley <brolley@redhat.com>
* profile-fr550.[ch]: New files.
* configure.in: Move frv handling to alphabetically correct placement.
* Makefile.in: Add fr550 support.
* frv-sim.h,frv.c,interrups.c,memory.c,mloop.in,pipeline.c,
profile.[ch],registers.c,traps.c: Add fr550 support.
* arch.c,arch.h,cpu.c,cpu.h,cpuall.h,model.h,decode.c,decode.h,sem.c:
Regenerate.
2003-10-09 02:19:33 +08:00
|
|
|
extern const MACH fr550_mach;
|
2003-08-30 00:35:47 +08:00
|
|
|
extern const MACH fr500_mach;
|
|
|
|
extern const MACH tomcat_mach;
|
|
|
|
extern const MACH fr400_mach;
|
2004-03-01 18:11:46 +08:00
|
|
|
extern const MACH fr450_mach;
|
2003-08-30 00:35:47 +08:00
|
|
|
extern const MACH simple_mach;
|
|
|
|
|
|
|
|
#ifndef WANT_CPU
|
|
|
|
/* The ARGBUF struct. */
|
|
|
|
struct argbuf {
|
|
|
|
/* These are the baseclass definitions. */
|
|
|
|
IADDR addr;
|
|
|
|
const IDESC *idesc;
|
|
|
|
char trace_p;
|
|
|
|
char profile_p;
|
|
|
|
/* ??? Temporary hack for skip insns. */
|
|
|
|
char skip_count;
|
|
|
|
char unused;
|
|
|
|
/* cpu specific data follows */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WANT_CPU
|
|
|
|
/* A cached insn.
|
|
|
|
|
|
|
|
??? SCACHE used to contain more than just argbuf. We could delete the
|
|
|
|
type entirely and always just use ARGBUF, but for future concerns and as
|
|
|
|
a level of abstraction it is left in. */
|
|
|
|
|
|
|
|
struct scache {
|
|
|
|
struct argbuf argbuf;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* FRV_CPUALL_H */
|