configure: allow to override SDL_CONFIG
[picodrive.git] / pico / debug.c
CommitLineData
cff531af 1/*
2 * debug stuff
3 * (C) notaz, 2006-2009
4 *
5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
7 */
f579f7b8 8
efcba75f 9#include "pico_int.h"
7b3f44c6 10#include "sound/ym2612.h"
efcba75f 11#include "debug.h"
f579f7b8 12
13#define bit(r, x) ((r>>x)&1)
14#define MVP dstrp+=strlen(dstrp)
15void z80_debug(char *dstr);
16
17static char dstr[1024*8];
18
19char *PDebugMain(void)
20{
21 struct PicoVideo *pv=&Pico.video;
22 unsigned char *reg=pv->reg, r;
f579f7b8 23 int i, sprites_lo, sprites_hi;
24 char *dstrp;
25
26 sprites_lo = sprites_hi = 0;
99bdfd31 27 for (i = 0; Pico.est.HighPreSpr[i] != 0; i+=2)
28 if (Pico.est.HighPreSpr[i+1] & 0x8000)
f579f7b8 29 sprites_hi++;
30 else sprites_lo++;
31
32 dstrp = dstr;
33 sprintf(dstrp, "mode set 1: %02x spr lo: %2i, spr hi: %2i\n", (r=reg[0]), sprites_lo, sprites_hi); MVP;
34 sprintf(dstrp, "display_disable: %i, M3: %i, palette: %i, ?, hints: %i\n", bit(r,0), bit(r,1), bit(r,2), bit(r,4)); MVP;
35 sprintf(dstrp, "mode set 2: %02x hcnt: %i\n", (r=reg[1]), pv->reg[10]); MVP;
36 sprintf(dstrp, "SMS/gen: %i, pal: %i, dma: %i, vints: %i, disp: %i, TMS: %i\n",bit(r,2),bit(r,3),bit(r,4),bit(r,5),bit(r,6),bit(r,7)); MVP;
37 sprintf(dstrp, "mode set 3: %02x\n", (r=reg[0xB])); MVP;
38 sprintf(dstrp, "LSCR: %i, HSCR: %i, 2cell vscroll: %i, IE2: %i\n", bit(r,0), bit(r,1), bit(r,2), bit(r,3)); MVP;
39 sprintf(dstrp, "mode set 4: %02x\n", (r=reg[0xC])); MVP;
40 sprintf(dstrp, "interlace: %i%i, cells: %i, shadow: %i\n", bit(r,2), bit(r,1), (r&0x80) ? 40 : 32, bit(r,3)); MVP;
41 sprintf(dstrp, "scroll size: w: %i, h: %i SRAM: %i; eeprom: %i (%i)\n", reg[0x10]&3, (reg[0x10]&0x30)>>4,
12da51c2 42 !!(SRam.flags & SRF_ENABLED), !!(SRam.flags & SRF_EEPROM), SRam.eeprom_type); MVP;
45f2f245 43 sprintf(dstrp, "sram range: %06x-%06x, reg: %02x\n", SRam.start, SRam.end, Pico.m.sram_reg); MVP;
f579f7b8 44 sprintf(dstrp, "pend int: v:%i, h:%i, vdp status: %04x\n", bit(pv->pending_ints,5), bit(pv->pending_ints,4), pv->status); MVP;
ae214f1c 45 sprintf(dstrp, "pal: %i, hw: %02x, frame#: %i, cycles: %i\n", Pico.m.pal, Pico.m.hardware, Pico.m.frame_count, SekCyclesDone()); MVP;
5fadfb1c 46 sprintf(dstrp, "M68k: PC: %06x, SR: %04x, irql: %i\n", SekPc, SekSr, SekIrqLevel); MVP;
5fadfb1c 47 for (r = 0; r < 8; r++) {
48 sprintf(dstrp, "d%i=%08x, a%i=%08x\n", r, SekDar(r), r, SekDar(r+8)); MVP;
49 }
f579f7b8 50 sprintf(dstrp, "z80Run: %i, z80_reset: %i, z80_bnk: %06x\n", Pico.m.z80Run, Pico.m.z80_reset, Pico.m.z80_bank68k<<15); MVP;
51 z80_debug(dstrp); MVP;
52 if (strlen(dstr) > sizeof(dstr))
f8af9634 53 elprintf(EL_STATUS, "warning: debug buffer overflow (%i/%i)\n", strlen(dstr), sizeof(dstr));
f579f7b8 54
55 return dstr;
56}
57
266c6afa 58char *PDebug32x(void)
59{
f3a57b2d 60#ifndef NO_32X
266c6afa 61 char *dstrp = dstr;
62 unsigned short *r;
63 int i;
64
65 r = Pico32x.regs;
66 sprintf(dstrp, "regs:\n"); MVP;
67 for (i = 0; i < 0x40/2; i += 8) {
68 sprintf(dstrp, "%02x: %04x %04x %04x %04x %04x %04x %04x %04x\n",
69 i*2, r[i+0], r[i+1], r[i+2], r[i+3], r[i+4], r[i+5], r[i+6], r[i+7]); MVP;
70 }
be20816c 71 r = Pico32x.sh2_regs;
5fadfb1c 72 sprintf(dstrp, "SH: %04x %04x %04x IRQs: %02x eflags: %02x\n",
73 r[0], r[1], r[2], Pico32x.sh2irqs, Pico32x.emu_flags); MVP;
266c6afa 74
75 i = 0;
76 r = Pico32x.vdp_regs;
77 sprintf(dstrp, "VDP regs:\n"); MVP;
78 sprintf(dstrp, "%02x: %04x %04x %04x %04x %04x %04x %04x %04x\n",
79 i*2, r[i+0], r[i+1], r[i+2], r[i+3], r[i+4], r[i+5], r[i+6], r[i+7]); MVP;
80
81 sprintf(dstrp, " mSH2 sSH2\n"); MVP;
f81107f5 82 sprintf(dstrp, "PC,SR %08x, %03x %08x, %03x\n", sh2_pc(&msh2), sh2_sr(0), sh2_pc(&ssh2), sh2_sr(1)); MVP;
266c6afa 83 for (i = 0; i < 16/2; i++) {
84 sprintf(dstrp, "R%d,%2d %08x,%08x %08x,%08x\n", i, i + 8,
4ea707e1 85 sh2_reg(0,i), sh2_reg(0,i+8), sh2_reg(1,i), sh2_reg(1,i+8)); MVP;
266c6afa 86 }
c987bb5c 87 sprintf(dstrp, "gb,vb %08x,%08x %08x,%08x\n", sh2_gbr(0), sh2_vbr(0), sh2_gbr(1), sh2_vbr(1)); MVP;
be20816c 88 sprintf(dstrp, "IRQs/mask: %02x/%02x %02x/%02x\n",
89 Pico32x.sh2irqi[0], Pico32x.sh2irq_mask[0], Pico32x.sh2irqi[1], Pico32x.sh2irq_mask[1]); MVP;
f3a57b2d 90#else
91 dstr[0] = 0;
92#endif
266c6afa 93
94 return dstr;
95}
96
f579f7b8 97char *PDebugSpriteList(void)
98{
99 struct PicoVideo *pvid=&Pico.video;
100 int table=0,u,link=0;
101 int max_sprites = 80;
102 char *dstrp;
103
104 if (!(pvid->reg[12]&1))
105 max_sprites = 64;
106
107 dstr[0] = 0;
108 dstrp = dstr;
109
110 table=pvid->reg[5]&0x7f;
111 if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
112 table<<=8; // Get sprite table address/2
113
114 for (u=0; u < max_sprites; u++)
115 {
116 unsigned int *sprite;
117 int code, code2, sx, sy, height;
118
119 sprite=(unsigned int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
120
121 // get sprite info
122 code = sprite[0];
123
124 // check if it is on this line
125 sy = (code&0x1ff)-0x80;
126 height = ((code>>24)&3)+1;
127
128 // masking sprite?
129 code2 = sprite[1];
130 sx = ((code2>>16)&0x1ff)-0x80;
131
132 sprintf(dstrp, "#%02i x:%4i y:%4i %ix%i %s\n", u, sx, sy, ((code>>26)&3)+1, height,
133 (code2&0x8000)?"hi":"lo");
134 MVP;
135
136 link=(code>>16)&0x7f;
137 if(!link) break; // End of sprites
138 }
139
140 return dstr;
141}
142
143#define GREEN1 0x0700
144#ifdef USE_BGR555
145 #define YELLOW1 0x071c
146 #define BLUE1 0xf000
147 #define RED1 0x001e
148#else
149 #define YELLOW1 0xe700
150 #define BLUE1 0x001e
151 #define RED1 0xf000
152#endif
153
154static void set16(unsigned short *p, unsigned short d, int cnt)
155{
156 while (cnt-- > 0)
157 *p++ = d;
158}
159
160void PDebugShowSpriteStats(unsigned short *screen, int stride)
161{
162 int lines, i, u, step;
163 unsigned short *dest;
164 unsigned char *p;
165
166 step = (320-4*4-1) / MAX_LINE_SPRITES;
167 lines = 240;
168 if (!Pico.m.pal || !(Pico.video.reg[1]&8))
169 lines = 224, screen += stride*8;
170
171 for (i = 0; i < lines; i++)
172 {
173 dest = screen + stride*i;
174 p = &HighLnSpr[i][0];
175
176 // sprite graphs
177 for (u = 0; u < (p[0] & 0x7f); u++) {
178 set16(dest, (p[3+u] & 0x80) ? YELLOW1 : GREEN1, step);
179 dest += step;
180 }
181
182 // flags
183 dest = screen + stride*i + 320-4*4;
184 if (p[1] & 0x40) set16(dest+4*0, GREEN1, 4);
185 if (p[1] & 0x80) set16(dest+4*1, YELLOW1, 4);
186 if (p[1] & 0x20) set16(dest+4*2, BLUE1, 4);
187 if (p[1] & 0x10) set16(dest+4*3, RED1, 4);
188 }
189
190 // draw grid
191 for (i = step*5; i <= 320-4*4-1; i += step*5) {
192 for (u = 0; u < lines; u++)
193 screen[i + u*stride] = 0x182;
194 }
195}
196
197void PDebugShowPalette(unsigned short *screen, int stride)
198{
200772b7 199 int x, y;
f579f7b8 200
200772b7 201 Pico.m.dirtyPal = 1;
202 if (PicoAHW & PAHW_SMS)
203 PicoDoHighPal555M4();
204 else
ea38612f 205 PicoDoHighPal555(1, 0, &Pico.est);
200772b7 206 Pico.m.dirtyPal = 1;
f579f7b8 207
208 screen += 16*stride+8;
209 for (y = 0; y < 8*4; y++)
210 for (x = 0; x < 8*16; x++)
211 screen[x + y*stride] = HighPal[x/8 + (y/8)*16];
212
213 screen += 160;
214 for (y = 0; y < 8*4; y++)
215 for (x = 0; x < 8*16; x++)
216 screen[x + y*stride] = HighPal[(x/8 + (y/8)*16) | 0x40];
217
218 screen += stride*48;
219 for (y = 0; y < 8*4; y++)
220 for (x = 0; x < 8*16; x++)
221 screen[x + y*stride] = HighPal[(x/8 + (y/8)*16) | 0x80];
f579f7b8 222}
223
224#if defined(DRAW2_OVERRIDE_LINE_WIDTH)
225#define DRAW2_LINE_WIDTH DRAW2_OVERRIDE_LINE_WIDTH
226#else
227#define DRAW2_LINE_WIDTH 328
228#endif
229
230void PDebugShowSprite(unsigned short *screen, int stride, int which)
231{
232 struct PicoVideo *pvid=&Pico.video;
233 int table=0,u,link=0,*sprite=0,*fsprite,oldsprite[2];
234 int x,y,max_sprites = 80, oldcol, oldreg;
235
236 if (!(pvid->reg[12]&1))
237 max_sprites = 64;
238
239 table=pvid->reg[5]&0x7f;
240 if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
241 table<<=8; // Get sprite table address/2
242
243 for (u=0; u < max_sprites && u <= which; u++)
244 {
245 sprite=(int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
246
247 link=(sprite[0]>>16)&0x7f;
8cf22667 248 if (!link) break; // End of sprites
f579f7b8 249 }
8cf22667 250 if (u >= max_sprites) return;
f579f7b8 251
252 fsprite = (int *)(Pico.vram+(table&0x7ffc));
253 oldsprite[0] = fsprite[0];
254 oldsprite[1] = fsprite[1];
255 fsprite[0] = (sprite[0] & ~0x007f01ff) | 0x000080;
256 fsprite[1] = (sprite[1] & ~0x01ff8000) | 0x800000;
257 oldreg = pvid->reg[7];
258 oldcol = Pico.cram[0];
259 pvid->reg[7] = 0;
260 Pico.cram[0] = 0;
261 PicoDrawMask = PDRAW_SPRITES_LOW_ON;
262
263 PicoFrameFull();
264 for (y = 0; y < 8*4; y++)
265 {
266 unsigned char *ps = PicoDraw2FB + DRAW2_LINE_WIDTH*y + 8;
267 for (x = 0; x < 8*4; x++)
8cf22667 268 if (ps[x]) screen[x] = HighPal[ps[x]], ps[x] = 0;
f579f7b8 269 screen += stride;
270 }
271
272 fsprite[0] = oldsprite[0];
273 fsprite[1] = oldsprite[1];
274 pvid->reg[7] = oldreg;
275 Pico.cram[0] = oldcol;
276 PicoDrawMask = -1;
277}
278
279#define dump_ram(ram,fname) \
280{ \
281 unsigned short *sram = (unsigned short *) ram; \
282 FILE *f; \
283 int i; \
284\
285 for (i = 0; i < sizeof(ram)/2; i++) \
286 sram[i] = (sram[i]<<8) | (sram[i]>>8); \
287 f = fopen(fname, "wb"); \
288 if (f) { \
289 fwrite(ram, 1, sizeof(ram), f); \
290 fclose(f); \
291 } \
292 for (i = 0; i < sizeof(ram)/2; i++) \
293 sram[i] = (sram[i]<<8) | (sram[i]>>8); \
294}
295
296#define dump_ram_noswab(ram,fname) \
297{ \
298 FILE *f; \
299 f = fopen(fname, "wb"); \
300 if (f) { \
301 fwrite(ram, 1, sizeof(ram), f); \
302 fclose(f); \
303 } \
304}
305
306void PDebugDumpMem(void)
307{
f579f7b8 308 dump_ram_noswab(Pico.zram, "dumps/zram.bin");
f579f7b8 309 dump_ram(Pico.cram, "dumps/cram.bin");
87b0845f 310
311 if (PicoAHW & PAHW_SMS)
312 {
313 dump_ram_noswab(Pico.vramb, "dumps/vram.bin");
314 }
315 else
316 {
317 dump_ram(Pico.ram, "dumps/ram.bin");
318 dump_ram(Pico.vram, "dumps/vram.bin");
319 dump_ram(Pico.vsram,"dumps/vsram.bin");
320 }
f579f7b8 321
322 if (PicoAHW & PAHW_MCD)
323 {
324 dump_ram(Pico_mcd->prg_ram, "dumps/prg_ram.bin");
325 if (Pico_mcd->s68k_regs[3]&4) // 1M mode?
326 wram_1M_to_2M(Pico_mcd->word_ram2M);
327 dump_ram(Pico_mcd->word_ram2M, "dumps/word_ram_2M.bin");
328 wram_2M_to_1M(Pico_mcd->word_ram2M);
329 dump_ram(Pico_mcd->word_ram1M[0], "dumps/word_ram_1M_0.bin");
330 dump_ram(Pico_mcd->word_ram1M[1], "dumps/word_ram_1M_1.bin");
331 if (!(Pico_mcd->s68k_regs[3]&4)) // 2M mode?
332 wram_2M_to_1M(Pico_mcd->word_ram2M);
333 dump_ram_noswab(Pico_mcd->pcm_ram,"dumps/pcm_ram.bin");
334 dump_ram_noswab(Pico_mcd->bram, "dumps/bram.bin");
335 }
266c6afa 336
f3a57b2d 337#ifndef NO_32X
266c6afa 338 if (PicoAHW & PAHW_32X)
339 {
340 dump_ram(Pico32xMem->sdram, "dumps/sdram.bin");
341 dump_ram(Pico32xMem->dram[0], "dumps/dram0.bin");
342 dump_ram(Pico32xMem->dram[1], "dumps/dram1.bin");
343 dump_ram(Pico32xMem->pal, "dumps/pal32x.bin");
f81107f5 344 dump_ram(msh2.data_array, "dumps/data_array0.bin");
345 dump_ram(ssh2.data_array, "dumps/data_array1.bin");
266c6afa 346 }
f3a57b2d 347#endif
f579f7b8 348}
349
7b3f44c6 350void PDebugZ80Frame(void)
351{
352 int lines, line_sample;
353
87b0845f 354 if (PicoAHW & PAHW_SMS)
355 return;
356
7b3f44c6 357 if (Pico.m.pal) {
358 lines = 312;
359 line_sample = 68;
360 } else {
361 lines = 262;
362 line_sample = 93;
363 }
364
365 z80_resetCycles();
366 emustatus &= ~1;
367
368 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
369 PicoSyncZ80(line_sample*488);
370 if (ym2612.dacen && PsndDacLine <= line_sample)
371 PsndDoDAC(line_sample);
372 if (PsndOut)
373 PsndGetSamples(line_sample);
374
375 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80)) {
376 PicoSyncZ80(224*488);
377 z80_int();
378 }
379 if (ym2612.dacen && PsndDacLine <= 224)
380 PsndDoDAC(224);
381 if (PsndOut)
382 PsndGetSamples(224);
383
384 // sync z80
385 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
386 PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
387 if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)
388 PsndDoDAC(lines-1);
389
390 timers_cycle();
391}
392
87b0845f 393void PDebugCPUStep(void)
394{
395 if (PicoAHW & PAHW_SMS)
6ccf5504 396 z80_run_nr(1);
87b0845f 397 else
398 SekStepM68k();
399}
400
19886062 401#ifdef EVT_LOG
402static struct evt_t {
403 unsigned int cycles;
404 short cpu;
405 short evt;
406} *evts;
407static int first_frame;
408static int evt_alloc;
409static int evt_cnt;
410
411void pevt_log(unsigned int cycles, enum evt_cpu c, enum evt e)
412{
413 if (first_frame == 0)
414 first_frame = Pico.m.frame_count;
415 if (evt_alloc == evt_cnt) {
416 evt_alloc = evt_alloc * 2 + 16 * 1024;
417 evts = realloc(evts, evt_alloc * sizeof(evts[0]));
418 }
419 evts[evt_cnt].cycles = cycles;
420 evts[evt_cnt].cpu = c;
421 evts[evt_cnt].evt = e;
422 evt_cnt++;
423}
424
425static int evt_cmp(const void *p1, const void *p2)
426{
427 const struct evt_t *e1 = p1, *e2 = p2;
428 int ret = (int)(e1->cycles - e2->cycles);
429 if (ret)
430 return ret;
431 if (e1->evt == EVT_RUN_END || e1->evt == EVT_POLL_END)
432 return -1;
433 if (e1->evt == EVT_RUN_START || e1->evt == EVT_POLL_START)
434 return 1;
435 if (e2->evt == EVT_RUN_END || e2->evt == EVT_POLL_END)
436 return 1;
437 if (e1->evt == EVT_RUN_START || e1->evt == EVT_POLL_START)
438 return -1;
439 return 0;
440}
441
442void pevt_dump(void)
443{
444 static const char *evt_names[EVT_CNT] = {
445 "x", "x", "+run", "-run", "+poll", "-poll",
446 };
447 char evt_print[EVT_CPU_CNT][EVT_CNT] = {{0,}};
448 unsigned int start_cycles[EVT_CPU_CNT] = {0,};
449 unsigned int run_cycles[EVT_CPU_CNT] = {0,};
450 unsigned int frame_cycles[EVT_CPU_CNT] = {0,};
451 unsigned int frame_resched[EVT_CPU_CNT] = {0,};
452 unsigned int cycles = 0;
453 int frame = first_frame - 1;
454 int line = 0;
455 int cpu_mask = 0;
456 int dirty = 0;
457 int i;
458
459 qsort(evts, evt_cnt, sizeof(evts[0]), evt_cmp);
460
461 for (i = 0; i < evt_cnt; i++) {
462 int c = evts[i].cpu, e = evts[i].evt;
463 int ei, ci;
464
465 if (cycles != evts[i].cycles || (cpu_mask & (1 << c))
466 || e == EVT_FRAME_START || e == EVT_NEXT_LINE)
467 {
468 if (dirty) {
469 printf("%u:%03u:%u ", frame, line, cycles);
470 for (ci = 0; ci < EVT_CPU_CNT; ci++) {
471 int found = 0;
472 for (ei = 0; ei < EVT_CNT; ei++) {
473 if (evt_print[ci][ei]) {
474 if (ei == EVT_RUN_END) {
475 printf("%8s%4d", evt_names[ei], run_cycles[ci]);
476 run_cycles[ci] = 0;
477 }
478 else
479 printf("%8s ", evt_names[ei]);
480 found = 1;
481 }
482 }
483 if (!found)
484 printf("%12s", "");
485 }
486 printf("\n");
487 memset(evt_print, 0, sizeof(evt_print));
488 cpu_mask = 0;
489 dirty = 0;
490 }
491 cycles = evts[i].cycles;
492 }
493
494 switch (e) {
495 case EVT_FRAME_START:
496 frame++;
497 line = 0;
498 printf("%u:%03u:%u ", frame, line, cycles);
499 for (ci = 0; ci < EVT_CPU_CNT; ci++) {
500 printf("%12u", frame_cycles[ci]);
501 frame_cycles[ci] = 0;
502 }
503 printf("\n");
504 printf("%u:%03u:%u ", frame, line, cycles);
505 for (ci = 0; ci < EVT_CPU_CNT; ci++) {
506 printf("%12u", frame_resched[ci]);
507 frame_resched[ci] = 0;
508 }
509 printf("\n");
510 break;
511 case EVT_NEXT_LINE:
512 line++;
513 printf("%u:%03u:%u\n", frame, line, cycles);
514 break;
515 case EVT_RUN_START:
516 start_cycles[c] = cycles;
517 goto default_;
518 case EVT_RUN_END:
519 run_cycles[c] += cycles - start_cycles[c];
520 frame_cycles[c] += cycles - start_cycles[c];
521 frame_resched[c]++;
522 goto default_;
523 default_:
524 default:
525 evt_print[c][e] = 1;
526 cpu_mask |= 1 << c;
527 dirty = 1;
528 break;
529 }
530 }
531}
532#endif
533
12da51c2 534#if defined(CPU_CMP_R) || defined(CPU_CMP_W) || defined(DRC_CMP)
535static FILE *tl_f;
536
537void tl_write(const void *ptr, size_t size)
538{
539 if (tl_f == NULL)
540 tl_f = fopen("tracelog", "wb");
541
542 fwrite(ptr, 1, size, tl_f);
543}
544
545void tl_write_uint(unsigned char ctl, unsigned int v)
546{
547 tl_write(&ctl, sizeof(ctl));
548 tl_write(&v, sizeof(v));
549}
550
551int tl_read(void *ptr, size_t size)
552{
553 if (tl_f == NULL)
554 tl_f = fopen("tracelog", "rb");
555
556 return fread(ptr, 1, size, tl_f);
557}
558
559int tl_read_uint(void *ptr)
560{
561 return tl_read(ptr, 4);
562}
563#endif
564
19886062 565// vim:shiftwidth=2:ts=2:expandtab