1 /* m32r simulator support code
2 Copyright (C) 1996, 1997, 1998, 2003 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
5 This file is part of GDB, the GNU debugger.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #define WANT_CPU m32rbf
22 #define WANT_CPU_M32RBF
28 /* Decode gdb ctrl register number. */
31 m32r_decode_gdb_ctrl_regnum (int gdb_regnum
)
35 case PSW_REGNUM
: return H_CR_PSW
;
36 case CBR_REGNUM
: return H_CR_CBR
;
37 case SPI_REGNUM
: return H_CR_SPI
;
38 case SPU_REGNUM
: return H_CR_SPU
;
39 case BPC_REGNUM
: return H_CR_BPC
;
40 case BBPSW_REGNUM
: return H_CR_BBPSW
;
41 case BBPC_REGNUM
: return H_CR_BBPC
;
42 case EVB_REGNUM
: return H_CR_CR5
;
47 /* The contents of BUF are in target byte order. */
50 m32rbf_fetch_register (SIM_CPU
*current_cpu
, int rn
, unsigned char *buf
, int len
)
53 SETTWI (buf
, m32rbf_h_gr_get (current_cpu
, rn
));
64 SETTWI (buf
, m32rbf_h_cr_get (current_cpu
,
65 m32r_decode_gdb_ctrl_regnum (rn
)));
68 SETTWI (buf
, m32rbf_h_pc_get (current_cpu
));
71 SETTWI (buf
, GETLODI (m32rbf_h_accum_get (current_cpu
)));
74 SETTWI (buf
, GETHIDI (m32rbf_h_accum_get (current_cpu
)));
83 /* The contents of BUF are in target byte order. */
86 m32rbf_store_register (SIM_CPU
*current_cpu
, int rn
, unsigned char *buf
, int len
)
89 m32rbf_h_gr_set (current_cpu
, rn
, GETTWI (buf
));
100 m32rbf_h_cr_set (current_cpu
,
101 m32r_decode_gdb_ctrl_regnum (rn
),
105 m32rbf_h_pc_set (current_cpu
, GETTWI (buf
));
109 DI val
= m32rbf_h_accum_get (current_cpu
);
110 SETLODI (val
, GETTWI (buf
));
111 m32rbf_h_accum_set (current_cpu
, val
);
116 DI val
= m32rbf_h_accum_get (current_cpu
);
117 SETHIDI (val
, GETTWI (buf
));
118 m32rbf_h_accum_set (current_cpu
, val
);
129 m32rbf_h_cr_get_handler (SIM_CPU
*current_cpu
, UINT cr
)
133 case H_CR_PSW
: /* psw */
134 return (((CPU (h_bpsw
) & 0xc1) << 8)
135 | ((CPU (h_psw
) & 0xc0) << 0)
137 case H_CR_BBPSW
: /* backup backup psw */
138 return CPU (h_bbpsw
) & 0xc1;
139 case H_CR_CBR
: /* condition bit */
140 return GET_H_COND ();
141 case H_CR_SPI
: /* interrupt stack pointer */
143 return CPU (h_gr
[H_GR_SP
]);
145 return CPU (h_cr
[H_CR_SPI
]);
146 case H_CR_SPU
: /* user stack pointer */
148 return CPU (h_gr
[H_GR_SP
]);
150 return CPU (h_cr
[H_CR_SPU
]);
151 case H_CR_BPC
: /* backup pc */
152 return CPU (h_cr
[H_CR_BPC
]) & 0xfffffffe;
153 case H_CR_BBPC
: /* backup backup pc */
154 return CPU (h_cr
[H_CR_BBPC
]) & 0xfffffffe;
155 case 4 : /* ??? unspecified, but apparently available */
156 case 5 : /* ??? unspecified, but apparently available */
157 return CPU (h_cr
[cr
]);
164 m32rbf_h_cr_set_handler (SIM_CPU
*current_cpu
, UINT cr
, USI newval
)
168 case H_CR_PSW
: /* psw */
170 int old_sm
= (CPU (h_psw
) & 0x80) != 0;
171 int new_sm
= (newval
& 0x80) != 0;
172 CPU (h_bpsw
) = (newval
>> 8) & 0xff;
173 CPU (h_psw
) = newval
& 0xff;
174 SET_H_COND (newval
& 1);
175 /* When switching stack modes, update the registers. */
176 if (old_sm
!= new_sm
)
180 /* Switching user -> system. */
181 CPU (h_cr
[H_CR_SPU
]) = CPU (h_gr
[H_GR_SP
]);
182 CPU (h_gr
[H_GR_SP
]) = CPU (h_cr
[H_CR_SPI
]);
186 /* Switching system -> user. */
187 CPU (h_cr
[H_CR_SPI
]) = CPU (h_gr
[H_GR_SP
]);
188 CPU (h_gr
[H_GR_SP
]) = CPU (h_cr
[H_CR_SPU
]);
193 case H_CR_BBPSW
: /* backup backup psw */
194 CPU (h_bbpsw
) = newval
& 0xff;
196 case H_CR_CBR
: /* condition bit */
197 SET_H_COND (newval
& 1);
199 case H_CR_SPI
: /* interrupt stack pointer */
201 CPU (h_gr
[H_GR_SP
]) = newval
;
203 CPU (h_cr
[H_CR_SPI
]) = newval
;
205 case H_CR_SPU
: /* user stack pointer */
207 CPU (h_gr
[H_GR_SP
]) = newval
;
209 CPU (h_cr
[H_CR_SPU
]) = newval
;
211 case H_CR_BPC
: /* backup pc */
212 CPU (h_cr
[H_CR_BPC
]) = newval
;
214 case H_CR_BBPC
: /* backup backup pc */
215 CPU (h_cr
[H_CR_BBPC
]) = newval
;
217 case 4 : /* ??? unspecified, but apparently available */
218 case 5 : /* ??? unspecified, but apparently available */
219 CPU (h_cr
[cr
]) = newval
;
227 /* Cover fns to access h-psw. */
230 m32rbf_h_psw_get_handler (SIM_CPU
*current_cpu
)
232 return (CPU (h_psw
) & 0xfe) | (CPU (h_cond
) & 1);
236 m32rbf_h_psw_set_handler (SIM_CPU
*current_cpu
, UQI newval
)
238 CPU (h_psw
) = newval
;
239 CPU (h_cond
) = newval
& 1;
242 /* Cover fns to access h-accum. */
245 m32rbf_h_accum_get_handler (SIM_CPU
*current_cpu
)
247 /* Sign extend the top 8 bits. */
250 r
= ANDDI (CPU (h_accum
), MAKEDI (0xffffff, 0xffffffff));
251 r
= XORDI (r
, MAKEDI (0x800000, 0));
252 r
= SUBDI (r
, MAKEDI (0x800000, 0));
258 hi
= ((hi
& 0xffffff) ^ 0x800000) - 0x800000;
265 m32rbf_h_accum_set_handler (SIM_CPU
*current_cpu
, DI newval
)
267 CPU (h_accum
) = newval
;
270 #if WITH_PROFILE_MODEL_P
272 /* FIXME: Some of these should be inline or macros. Later. */
274 /* Initialize cycle counting for an insn.
275 FIRST_P is non-zero if this is the first insn in a set of parallel
279 m32rbf_model_insn_before (SIM_CPU
*cpu
, int first_p
)
281 M32R_MISC_PROFILE
*mp
= CPU_M32R_MISC_PROFILE (cpu
);
286 mp
->load_regs_pending
= 0;
287 mp
->biggest_cycles
= 0;
291 /* Record the cycles computed for an insn.
292 LAST_P is non-zero if this is the last insn in a set of parallel insns,
293 and we update the total cycle count.
294 CYCLES is the cycle count of the insn. */
297 m32rbf_model_insn_after (SIM_CPU
*cpu
, int last_p
, int cycles
)
299 PROFILE_DATA
*p
= CPU_PROFILE_DATA (cpu
);
300 M32R_MISC_PROFILE
*mp
= CPU_M32R_MISC_PROFILE (cpu
);
301 unsigned long total
= cycles
+ mp
->cti_stall
+ mp
->load_stall
;
305 unsigned long biggest
= total
> mp
->biggest_cycles
? total
: mp
->biggest_cycles
;
306 PROFILE_MODEL_TOTAL_CYCLES (p
) += biggest
;
307 PROFILE_MODEL_CUR_INSN_CYCLES (p
) = total
;
311 /* Here we take advantage of the fact that !last_p -> first_p. */
312 mp
->biggest_cycles
= total
;
313 PROFILE_MODEL_CUR_INSN_CYCLES (p
) = total
;
316 /* Branch and load stall counts are recorded independently of the
317 total cycle count. */
318 PROFILE_MODEL_CTI_STALL_CYCLES (p
) += mp
->cti_stall
;
319 PROFILE_MODEL_LOAD_STALL_CYCLES (p
) += mp
->load_stall
;
321 mp
->load_regs
= mp
->load_regs_pending
;
325 check_load_stall (SIM_CPU
*cpu
, int regno
)
327 UINT h_gr
= CPU_M32R_MISC_PROFILE (cpu
)->load_regs
;
330 && (h_gr
& (1 << regno
)) != 0)
332 CPU_M32R_MISC_PROFILE (cpu
)->load_stall
+= 2;
333 if (TRACE_INSN_P (cpu
))
334 cgen_trace_printf (cpu
, " ; Load stall of 2 cycles.");
339 m32rbf_model_m32r_d_u_exec (SIM_CPU
*cpu
, const IDESC
*idesc
,
340 int unit_num
, int referenced
,
341 INT sr
, INT sr2
, INT dr
)
343 check_load_stall (cpu
, sr
);
344 check_load_stall (cpu
, sr2
);
345 return idesc
->timing
->units
[unit_num
].done
;
349 m32rbf_model_m32r_d_u_cmp (SIM_CPU
*cpu
, const IDESC
*idesc
,
350 int unit_num
, int referenced
,
353 check_load_stall (cpu
, src1
);
354 check_load_stall (cpu
, src2
);
355 return idesc
->timing
->units
[unit_num
].done
;
359 m32rbf_model_m32r_d_u_mac (SIM_CPU
*cpu
, const IDESC
*idesc
,
360 int unit_num
, int referenced
,
363 check_load_stall (cpu
, src1
);
364 check_load_stall (cpu
, src2
);
365 return idesc
->timing
->units
[unit_num
].done
;
369 m32rbf_model_m32r_d_u_cti (SIM_CPU
*cpu
, const IDESC
*idesc
,
370 int unit_num
, int referenced
,
373 PROFILE_DATA
*profile
= CPU_PROFILE_DATA (cpu
);
374 int taken_p
= (referenced
& (1 << 1)) != 0;
376 check_load_stall (cpu
, sr
);
379 CPU_M32R_MISC_PROFILE (cpu
)->cti_stall
+= 2;
380 PROFILE_MODEL_TAKEN_COUNT (profile
) += 1;
383 PROFILE_MODEL_UNTAKEN_COUNT (profile
) += 1;
384 return idesc
->timing
->units
[unit_num
].done
;
388 m32rbf_model_m32r_d_u_load (SIM_CPU
*cpu
, const IDESC
*idesc
,
389 int unit_num
, int referenced
,
392 CPU_M32R_MISC_PROFILE (cpu
)->load_regs_pending
|= (1 << dr
);
393 check_load_stall (cpu
, sr
);
394 return idesc
->timing
->units
[unit_num
].done
;
398 m32rbf_model_m32r_d_u_store (SIM_CPU
*cpu
, const IDESC
*idesc
,
399 int unit_num
, int referenced
,
402 check_load_stall (cpu
, src1
);
403 check_load_stall (cpu
, src2
);
404 return idesc
->timing
->units
[unit_num
].done
;
408 m32rbf_model_test_u_exec (SIM_CPU
*cpu
, const IDESC
*idesc
,
409 int unit_num
, int referenced
)
411 return idesc
->timing
->units
[unit_num
].done
;
414 #endif /* WITH_PROFILE_MODEL_P */