2002-02-01 11:44:32 +00:00
|
|
|
/* Simulator CPU header for sh.
|
|
|
|
|
|
|
|
THIS FILE IS MACHINE GENERATED WITH CGEN.
|
|
|
|
|
2016-01-01 04:33:14 +00:00
|
|
|
Copyright 1996-2016 Free Software Foundation, Inc.
|
2002-02-01 11:44:32 +00:00
|
|
|
|
2006-10-18 Dave Brolley <brolley@redhat.com>
* Contribute the following changes:
2006-06-14 Dave Brolley <brolley@redhat.com>
* sh64-sim.h (sh64_fipr,sh64_fiprs,sh64_fldp,sh64_fstp,sh64_ftrv)
(sh64_fpref): New functions.
* sh64.c (sh64_fipr,sh64_fiprs,sh64_fldp,sh64_fstp,sh64_ftrv)
(sh64_fpref): New functions.
(sh_models): Add sh2e, sh2a, sh2a_nofpu, sh4_nofpu, sh4a,
sh4a_nofpu and sh4al.
(sh2e_mach): New MACH.
(sh2a_fpu_mach): New MACH.
(sh2a_nofpu_mach): New MACH.
(sh4_nofpu): New MACH.
(sh4a_mach): New MACH.
(sh4a_nofpu_mach): New MACH.
(sh4al_mach): New MACH.
* Makefile.in (stamp-*): Depend on $(CGEN_CPU_DIR)/sh-sim.cpu. Pass
archfile to CGEN script.
* arch.c: Regenerated.
* arch.h: Regenerated.
* cpu.c: Regenerated.
* cpu.h: Regenerated.
* cpuall.h: Regenerated.
* decode-compact.c: Regenerated.
* decode-compact.h: Regenerated.
* decode-media.c: Regenerated.
* decode-media.h: Regenerated.
* defs-compact.h: Regenerated.
* defs-media.h: Regenerated.
* sem-compact-switch.c: Regenerated.
* sem-compact.c: Regenerated.
* sem-media-switch.c: Regenerated.
* sem-media.c: Regenerated.
* sh-desc.c: Regenerated.
* sh-desc.h: Regenerated.
* sh-opc.h: Regenerated.
2006-10-18 18:13:22 +00:00
|
|
|
This file is part of the GNU simulators.
|
2002-02-01 11:44:32 +00:00
|
|
|
|
2009-11-04 04:40:47 +00: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.
|
2002-02-01 11:44:32 +00:00
|
|
|
|
2009-11-04 04:40:47 +00: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.
|
2002-02-01 11:44:32 +00:00
|
|
|
|
2009-11-04 04:40:47 +00:00
|
|
|
You should have received a copy of the GNU General Public License along
|
2012-12-19 07:18:22 +00:00
|
|
|
with this program; if not, see <http://www.gnu.org/licenses/>.
|
2002-02-01 11:44:32 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SH_CPUALL_H
|
|
|
|
#define SH_CPUALL_H
|
|
|
|
|
|
|
|
/* Include files for each cpu family. */
|
|
|
|
|
|
|
|
#ifdef WANT_CPU_SH64
|
|
|
|
#include "eng.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "decode.h"
|
|
|
|
#endif
|
|
|
|
|
2015-12-25 09:12:55 +00:00
|
|
|
extern const SIM_MACH sh2_mach;
|
|
|
|
extern const SIM_MACH sh2e_mach;
|
|
|
|
extern const SIM_MACH sh2a_fpu_mach;
|
|
|
|
extern const SIM_MACH sh2a_nofpu_mach;
|
|
|
|
extern const SIM_MACH sh3_mach;
|
|
|
|
extern const SIM_MACH sh3e_mach;
|
|
|
|
extern const SIM_MACH sh4_nofpu_mach;
|
|
|
|
extern const SIM_MACH sh4_mach;
|
|
|
|
extern const SIM_MACH sh4a_nofpu_mach;
|
|
|
|
extern const SIM_MACH sh4a_mach;
|
|
|
|
extern const SIM_MACH sh4al_mach;
|
|
|
|
extern const SIM_MACH sh5_mach;
|
2002-02-01 11:44:32 +00:00
|
|
|
|
|
|
|
#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 /* SH_CPUALL_H */
|