*** empty log message ***
[deliverable/binutils-gdb.git] / sim / sh64 / sh64-sim.h
CommitLineData
cbb38b47
BE
1/* collection of junk waiting time to sort out
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 Contributed by Red Hat, Inc.
4
5This file is part of the GNU Simulators.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License along
18with this program; if not, write to the Free Software Foundation, Inc.,
1959 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21#ifndef SH64_SIM_H
22#define SH64_SIM_H
23
24#define GETTWI GETTSI
25#define SETTWI SETTSI
26\f
27
28enum {
29 ISM_COMPACT, ISM_MEDIA
30};
31
32/* Hardware/device support. */
33extern device sh5_devices;
34
35/* FIXME: Temporary, until device support ready. */
36struct _device { int foo; };
37
38extern IDESC * sh64_idesc_media;
39extern IDESC * sh64_idesc_compact;
40
41/* Function prototypes from sh64.c. */
42
43BI sh64_endian (SIM_CPU *);
44VOID sh64_break (SIM_CPU *, PCADDR);
45VOID sh64_trapa (SIM_CPU *, DI, PCADDR);
46VOID sh64_compact_trapa (SIM_CPU *, UQI, PCADDR);
47
48SF sh64_fldi0 (SIM_CPU *);
49SF sh64_fldi1 (SIM_CPU *);
50DF sh64_fcnvsd (SIM_CPU *, SF);
51SF sh64_fcnvds (SIM_CPU *, DF);
52
53DF sh64_fabsd (SIM_CPU *, DF);
54SF sh64_fabss (SIM_CPU *, SF);
55DF sh64_faddd (SIM_CPU *, DF, DF);
56SF sh64_fadds (SIM_CPU *, SF, SF);
57DF sh64_fdivd (SIM_CPU *, DF, DF);
58SF sh64_fdivs (SIM_CPU *, SF, SF);
59DF sh64_floatld (SIM_CPU *, SF);
60SF sh64_floatls (SIM_CPU *, SF);
61DF sh64_floatqd (SIM_CPU *, DF);
62SF sh64_floatqs (SIM_CPU *, DF);
63SF sh64_fmacs(SIM_CPU *, SF, SF, SF);
64DF sh64_fmuld (SIM_CPU *, DF, DF);
65SF sh64_fmuls (SIM_CPU *, SF, SF);
66DF sh64_fnegd (SIM_CPU *, DF);
67SF sh64_fnegs (SIM_CPU *, SF);
68DF sh64_fsqrtd (SIM_CPU *, DF);
69SF sh64_fsqrts (SIM_CPU *, SF);
70DF sh64_fsubd (SIM_CPU *, DF, DF);
71SF sh64_fsubs (SIM_CPU *, SF, SF);
72SF sh64_ftrcdl (SIM_CPU *, DF);
73DF sh64_ftrcdq (SIM_CPU *, DF);
74SF sh64_ftrcsl (SIM_CPU *, SF);
75DF sh64_ftrcsq (SIM_CPU *, SF);
76VOID sh64_ftrvs (SIM_CPU *, unsigned, unsigned, unsigned);
77
78BI sh64_fcmpeqs (SIM_CPU *, SF, SF);
79BI sh64_fcmpeqd (SIM_CPU *, DF, DF);
80BI sh64_fcmpges (SIM_CPU *, SF, SF);
81BI sh64_fcmpged (SIM_CPU *, DF, DF);
82BI sh64_fcmpgts (SIM_CPU *, SF, SF);
83BI sh64_fcmpgtd (SIM_CPU *, DF, DF);
84BI sh64_fcmpund (SIM_CPU *, DF, DF);
85BI sh64_fcmpuns (SIM_CPU *, SF, SF);
86
87DI sh64_nsb (SIM_CPU *, DI);
88
89#endif /* SH64_SIM_H */
This page took 0.206183 seconds and 4 git commands to generate.