]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/d10v/d10v_sim.h
Provide better statistics, particularly for doing VLIW work; Fix ldb to correctly...
[thirdparty/binutils-gdb.git] / sim / d10v / d10v_sim.h
CommitLineData
2934d1c9
MH
1#include <stdio.h>
2#include <ctype.h>
7eebfc62 3#include <limits.h>
2934d1c9 4#include "ansidecl.h"
87178dbd 5#include "callback.h"
2934d1c9
MH
6#include "opcode/d10v.h"
7
7eebfc62
MM
8#define DEBUG_TRACE 0x00000001
9#define DEBUG_VALUES 0x00000002
5c255669
MM
10#define DEBUG_LINE_NUMBER 0x00000004
11#define DEBUG_MEMSIZE 0x00000008
12#define DEBUG_INSTRUCTION 0x00000010
13
14#ifndef DEBUG
15#define DEBUG (DEBUG_TRACE | DEBUG_VALUES | DEBUG_LINE_NUMBER)
16#endif
87178dbd 17
7eebfc62 18extern int d10v_debug;
87178dbd 19
7eebfc62 20#if UCHAR_MAX == 255
2934d1c9 21typedef unsigned char uint8;
2934d1c9 22typedef signed char int8;
7eebfc62
MM
23#else
24#error "Char is not an 8-bit type"
25#endif
26
27#if SHRT_MAX == 32767
28typedef unsigned short uint16;
2934d1c9 29typedef signed short int16;
7eebfc62
MM
30#else
31#error "Short is not a 16-bit type"
32#endif
33
34#if INT_MAX == 2147483647
35typedef unsigned int uint32;
2934d1c9 36typedef signed int int32;
7eebfc62
MM
37
38#elif LONG_MAX == 2147483647
39typedef unsigned long uint32;
40typedef signed long int32;
41
42#else
43#error "Neither int nor long is a 32-bit type"
44#endif
45
46#if LONG_MAX > 2147483647
47typedef unsigned long uint64;
48typedef signed long int64;
49
50#elif __GNUC__
51typedef unsigned long long uint64;
2934d1c9
MH
52typedef signed long long int64;
53
7eebfc62
MM
54#else
55#error "Can't find an appropriate 64-bit type"
56#endif
57
2934d1c9
MH
58/* FIXME: D10V defines */
59typedef uint16 reg_t;
60
61struct simops
62{
63 long opcode;
64 long mask;
65 int format;
66 int cycles;
67 int unit;
68 int exec_type;
69 void (*func)();
70 int numops;
71 int operands[9];
72};
73
87178dbd
MM
74enum _ins_type
75{
aeb1f26b
MM
76 INS_UNKNOWN, /* unknown instruction */
77 INS_LONG, /* long instruction (both containers) */
78 INS_COND_TRUE, /* # times EXExxx executed other instruction */
79 INS_COND_FALSE, /* # times EXExxx did not execute other instruction */
80 INS_CYCLES, /* # cycles */
81
82 INS_LEFT, /* normal left instructions */
83 INS_LEFT_PARALLEL, /* left side of || */
84 INS_LEFT_COND_TEST, /* EXExx test on left side */
85 INS_LEFT_COND_EXE, /* execution after EXExxx test on right side succeeded */
86 INS_LEFT_NOPS, /* NOP on left side */
87
88 INS_RIGHT, /* normal right instructions */
89 INS_RIGHT_PARALLEL, /* right side of || */
90 INS_RIGHT_COND_TEST, /* EXExx test on right side */
91 INS_RIGHT_COND_EXE, /* execution after EXExxx test on left side succeeded */
92 INS_RIGHT_NOPS, /* NOP on right side */
93
7eebfc62 94 INS_MAX
87178dbd
MM
95};
96
aeb1f26b 97extern unsigned long ins_type_counters[ (int)INS_MAX ];
7eebfc62 98
2934d1c9
MH
99struct _state
100{
101 reg_t regs[16]; /* general-purpose registers */
5c255669
MM
102 reg_t cregs[16]; /* control registers */
103 int64 a[2]; /* accumulators */
2934d1c9
MH
104 uint8 SM;
105 uint8 EA;
106 uint8 DB;
107 uint8 IE;
108 uint8 RP;
109 uint8 MD;
110 uint8 FX;
111 uint8 ST;
112 uint8 F0;
113 uint8 F1;
114 uint8 C;
115 uint8 exe;
116 uint8 *imem;
117 uint8 *dmem;
5c255669
MM
118 uint32 mem_min;
119 uint32 mem_max;
4f425a32 120 int exception;
87178dbd 121 enum _ins_type ins_type;
2934d1c9
MH
122} State;
123
87178dbd 124extern host_callback *d10v_callback;
2934d1c9
MH
125extern uint16 OP[4];
126extern struct simops Simops[];
127
128#define PC (State.cregs[2])
129#define PSW (State.cregs[0])
130#define BPSW (State.cregs[1])
131#define BPC (State.cregs[3])
132#define RPT_C (State.cregs[7])
133#define RPT_S (State.cregs[8])
134#define RPT_E (State.cregs[9])
135#define MOD_S (State.cregs[10])
136#define MOD_E (State.cregs[11])
137#define IBA (State.cregs[14])
138
5c255669
MM
139#define SIG_D10V_STOP -1
140#define SIG_D10V_EXIT -2
141
2934d1c9
MH
142#define SEXT3(x) ((((x)&0x7)^(~3))+4)
143
144/* sign-extend a 4-bit number */
145#define SEXT4(x) ((((x)&0xf)^(~7))+8)
146
147/* sign-extend an 8-bit number */
148#define SEXT8(x) ((((x)&0xff)^(~0x7f))+0x80)
149
150/* sign-extend a 16-bit number */
151#define SEXT16(x) ((((x)&0xffff)^(~0x7fff))+0x8000)
152
4f425a32
MH
153/* sign-extend a 32-bit number */
154#define SEXT32(x) ((((x)&0xffffffffLL)^(~0x7fffffffLL))+0x80000000LL)
155
4c38885c
MH
156/* sign extend a 40 bit number */
157#define SEXT40(x) ((((x)&0xffffffffffLL)^(~0x7fffffffffLL))+0x8000000000LL)
158
d70b4d42
MH
159/* sign extend a 44 bit number */
160#define SEXT44(x) ((((x)&0xfffffffffffLL)^(~0x7ffffffffffLL))+0x80000000000LL)
161
162/* sign extend a 60 bit number */
163#define SEXT60(x) ((((x)&0xfffffffffffffffLL)^(~0x7ffffffffffffffLL))+0x800000000000000LL)
164
2934d1c9
MH
165#define MAX32 0x7fffffffLL
166#define MIN32 0xff80000000LL
167#define MASK32 0xffffffffLL
168#define MASK40 0xffffffffffLL
2934d1c9 169
4f425a32
MH
170#define INC_ADDR(x,i) x = ((State.MD && x == MOD_E) ? MOD_S : (x)+(i))
171
2934d1c9 172#define RB(x) (*((uint8 *)((x)+State.imem)))
4c38885c 173#define SB(addr,data) ( RB(addr) = (data & 0xff))
2934d1c9 174
5c255669
MM
175#if defined(__GNUC__) && defined(__OPTIMIZE__) && !defined(NO_ENDIAN_INLINE)
176#define ENDIAN_INLINE static __inline__
177#include "endian.c"
178#undef ENDIAN_INLINE
2934d1c9
MH
179
180#else
d6fe5ca5
MM
181extern uint32 get_longword PARAMS ((uint8 *));
182extern uint16 get_word PARAMS ((uint8 *));
183extern int64 get_longlong PARAMS ((uint8 *));
184extern void write_word PARAMS ((uint8 *addr, uint16 data));
185extern void write_longword PARAMS ((uint8 *addr, uint32 data));
186extern void write_longlong PARAMS ((uint8 *addr, int64 data));
5c255669 187#endif
d70b4d42
MH
188
189#define SW(addr,data) write_word((long)(addr)+State.imem,data)
190#define RW(x) get_word((long)(x)+State.imem)
87178dbd 191#define SLW(addr,data) write_longword((long)(addr)+State.imem,data)
d70b4d42
MH
192#define RLW(x) get_longword((long)(x)+State.imem)
193#define READ_16(x) get_word(x)
194#define WRITE_16(addr,data) write_word(addr,data)
195#define READ_64(x) get_longlong(x)
196#define WRITE_64(addr,data) write_longlong(addr,data)