3 // --------------------- Opcodes 0x0100+ ---------------------
\r
4 // Emit a Btst (Register) opcode 0000nnn1 ttaaaaaa
\r
5 int OpBtstReg(int op)
\r
8 int type=0,sea=0,tea=0;
\r
11 type=(op>>6)&3; // Btst/Bchg/Bclr/Bset
\r
12 // Get source and target EA
\r
15 if (tea<0x10) size=2; // For registers, 32-bits
\r
17 if ((tea&0x38)==0x08) return 1; // movep
\r
19 // See if we can do this opcode:
\r
20 if (EaCanRead(tea,0)==0) return 1;
\r
23 if (EaCanWrite(tea)==0) return 1;
\r
26 use=OpBase(op,size);
\r
27 use&=~0x0e00; // Use same handler for all registers
\r
28 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
32 if(type==1||type==3) {
\r
36 if(size>=2) Cycles+=2;
\r
39 EaCalcReadNoSE(-1,11,sea,0,0x0e00);
\r
41 EaCalcReadNoSE((type>0)?8:-1,0,tea,size,0x003f);
\r
44 ot(" and r11,r11,#7 ;@ mem - do mod 8\n"); // size always 0
\r
45 else ot(" and r11,r11,#31 ;@ reg - do mod 32\n"); // size always 2
\r
49 ot(" tst r0,r1,lsl r11 ;@ Do arithmetic\n");
\r
50 ot(" bicne r10,r10,#0x40000000\n");
\r
51 ot(" orreq r10,r10,#0x40000000 ;@ Get Z flag\n");
\r
56 if (type==1) ot(" eor r1,r0,r1,lsl r11 ;@ Toggle bit\n");
\r
57 if (type==2) ot(" bic r1,r0,r1,lsl r11 ;@ Clear bit\n");
\r
58 if (type==3) ot(" orr r1,r0,r1,lsl r11 ;@ Set bit\n");
\r
60 EaWrite(8,1,tea,size,0x003f,0,0);
\r
67 // --------------------- Opcodes 0x0800+ ---------------------
\r
68 // Emit a Btst/Bchg/Bclr/Bset (Immediate) opcode 00001000 ttaaaaaa nn
\r
69 int OpBtstImm(int op)
\r
71 int type=0,sea=0,tea=0;
\r
76 // Get source and target EA
\r
79 if (tea<0x10) size=2; // For registers, 32-bits
\r
81 // See if we can do this opcode:
\r
82 if (EaCanRead(tea,0)==0||EaAn(tea)||tea==0x3c) return 1;
\r
85 if (EaCanWrite(tea)==0) return 1;
\r
88 use=OpBase(op,size);
\r
89 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
91 OpStart(op,sea,tea);
\r
94 EaCalcReadNoSE(-1,0,sea,0,0);
\r
95 ot(" mov r11,#1\n");
\r
96 ot(" bic r10,r10,#0x40000000 ;@ Blank Z flag\n");
\r
98 ot(" and r0,r0,#7 ;@ mem - do mod 8\n"); // size always 0
\r
99 else ot(" and r0,r0,#0x1F ;@ reg - do mod 32\n"); // size always 2
\r
100 ot(" mov r11,r11,lsl r0 ;@ Make bit mask\n");
\r
103 if(type==1||type==3) {
\r
107 if(size>=2) Cycles+=2;
\r
110 EaCalcReadNoSE((type>0)?8:-1,0,tea,size,0x003f);
\r
111 ot(" tst r0,r11 ;@ Do arithmetic\n");
\r
112 ot(" orreq r10,r10,#0x40000000 ;@ Get Z flag\n");
\r
117 if (type==1) ot(" eor r1,r0,r11 ;@ Toggle bit\n");
\r
118 if (type==2) ot(" bic r1,r0,r11 ;@ Clear bit\n");
\r
119 if (type==3) ot(" orr r1,r0,r11 ;@ Set bit\n");
\r
121 EaWrite(8, 1,tea,size,0x003f,0,0);
\r
122 #if CYCLONE_FOR_GENESIS && !MEMHANDLERS_CHANGE_CYCLES
\r
123 // this is a bit hacky (device handlers might modify cycles)
\r
124 if (tea==0x38||tea==0x39)
\r
125 ot(" ldr r5,[r7,#0x5c] ;@ Load Cycles\n");
\r
134 // --------------------- Opcodes 0x4000+ ---------------------
\r
137 // 01000tt0 xxeeeeee (tt=negx/clr/neg/not, xx=size, eeeeee=EA)
\r
138 int type=0,size=0,ea=0,use=0;
\r
142 size=(op>>6)&3; if (size>=3) return 1;
\r
144 // See if we can do this opcode:
\r
145 if (EaCanRead (ea,size)==0||EaAn(ea)) return 1;
\r
146 if (EaCanWrite(ea )==0) return 1;
\r
148 use=OpBase(op,size);
\r
149 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
151 OpStart(op,ea); Cycles=size<2?4:6;
\r
152 if(ea >= 0x10) Cycles*=2;
\r
154 EaCalc (11,0x003f,ea,size,0,0);
\r
156 if (type!=1) EaRead (11,0,ea,size,0x003f,0,0); // Don't need to read for 'clr' (or do we, for a dummy read?)
\r
157 if (type==1) ot("\n");
\r
163 if(size!=2) ot(" mov r0,r0,asl #%i\n",size?16:24);
\r
164 ot(" rscs r1,r0,#0 ;@ do arithmetic\n");
\r
165 ot(" orr r3,r10,#0xb0000000 ;@ for old Z\n");
\r
168 ot(" movs r1,r1,asr #%i\n",size?16:24);
\r
169 ot(" orreq r10,r10,#0x40000000 ;@ possily missed Z\n");
\r
171 ot(" andeq r10,r10,r3 ;@ fix Z\n");
\r
178 ot(" mov r1,#0\n");
\r
179 ot(" mov r10,#0x40000000 ;@ NZCV=0100\n");
\r
186 if(size!=2) ot(" mov r0,r0,asl #%i\n",size?16:24);
\r
187 ot(" rsbs r1,r0,#0\n");
\r
189 if(size!=2) ot(" mov r1,r1,asr #%i\n",size?16:24);
\r
197 ot(" mov r0,r0,asl #%i\n",size?16:24);
\r
198 ot(" mvn r1,r0,asr #%i\n",size?16:24);
\r
201 ot(" mvn r1,r0\n");
\r
202 ot(" adds r1,r1,#0 ;@ Defines NZ, clears CV\n");
\r
207 if (type==1) eawrite_check_addrerr=1;
\r
208 EaWrite(11, 1,ea,size,0x003f,0,0);
\r
215 // --------------------- Opcodes 0x4840+ ---------------------
\r
216 // Swap, 01001000 01000nnn swap Dn
\r
222 use=op&~0x0007; // Use same opcode for all An
\r
224 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
226 OpStart(op); Cycles=4;
\r
228 EaCalc (11,0x0007,ea,2,1);
\r
229 EaRead (11, 0,ea,2,0x0007,1);
\r
231 ot(" mov r1,r0,ror #16\n");
\r
232 ot(" adds r1,r1,#0 ;@ Defines NZ, clears CV\n");
\r
235 EaWrite(11, 1,8,2,0x0007,1);
\r
242 // --------------------- Opcodes 0x4a00+ ---------------------
\r
243 // Emit a Tst opcode, 01001010 xxeeeeee
\r
250 size=(op>>6)&3; if (size>=3) return 1;
\r
252 // See if we can do this opcode:
\r
253 if (EaCanWrite(sea)==0||EaAn(sea)) return 1;
\r
255 use=OpBase(op,size);
\r
256 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
258 OpStart(op,sea); Cycles=4;
\r
260 EaCalc ( 0,0x003f,sea,size,1);
\r
261 EaRead ( 0, 0,sea,size,0x003f,1);
\r
263 ot(" adds r0,r0,#0 ;@ Defines NZ, clears CV\n");
\r
264 ot(" mrs r10,cpsr ;@ r10=flags\n");
\r
271 // --------------------- Opcodes 0x4880+ ---------------------
\r
272 // Emit an Ext opcode, 01001000 1x000nnn
\r
281 shift=32-(8<<size);
\r
283 use=OpBase(op,size);
\r
284 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
286 OpStart(op); Cycles=4;
\r
288 EaCalc (11,0x0007,ea,size+1,0,0);
\r
289 EaRead (11, 0,ea,size+1,0x0007,0,0);
\r
291 ot(" mov r0,r0,asl #%d\n",shift);
\r
292 ot(" adds r0,r0,#0 ;@ Defines NZ, clears CV\n");
\r
293 ot(" mrs r10,cpsr ;@ r10=flags\n");
\r
294 ot(" mov r1,r0,asr #%d\n",shift);
\r
297 EaWrite(11, 1,ea,size+1,0x0007,0,0);
\r
303 // --------------------- Opcodes 0x50c0+ ---------------------
\r
304 // Emit a Set cc opcode, 0101cccc 11eeeeee
\r
308 int size=0,use=0,changed_cycles=0;
\r
309 static const char * const cond[16]=
\r
311 "al","", "hi","ls","cc","cs","ne","eq",
\r
312 "vc","vs","pl","mi","ge","lt","gt","le"
\r
318 if ((ea&0x38)==0x08) return 1; // dbra, not scc
\r
320 // See if we can do this opcode:
\r
321 if (EaCanWrite(ea)==0) return 1;
\r
323 use=OpBase(op,size);
\r
324 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
326 changed_cycles=ea<8 && cc>=2;
\r
327 OpStart(op,ea,0,changed_cycles); Cycles=8;
\r
328 if (ea<8) Cycles=4;
\r
331 ot(" mov r1,#0\n");
\r
336 ot(" mvn r1,#0\n");
\r
337 if (ea<8) Cycles+=2;
\r
342 ot(" tst r10,#0x60000000 ;@ hi: !C && !Z\n");
\r
343 ot(" mvneq r1,r1\n");
\r
344 if (ea<8) ot(" subeq r5,r5,#2 ;@ Extra cycles\n");
\r
347 ot(" tst r10,#0x60000000 ;@ ls: C || Z\n");
\r
348 ot(" mvnne r1,r1\n");
\r
349 if (ea<8) ot(" subne r5,r5,#2 ;@ Extra cycles\n");
\r
352 ot(";@ Is the condition true?\n");
\r
353 ot(" msr cpsr_flg,r10 ;@ ARM flags = 68000 flags\n");
\r
354 ot(" mvn%s r1,r1\n",cond[cc]);
\r
355 if (ea<8) ot(" sub%s r5,r5,#2 ;@ Extra cycles\n",cond[cc]);
\r
361 eawrite_check_addrerr=1;
\r
362 EaCalc (0,0x003f, ea,size,0,0);
\r
363 EaWrite(0, 1, ea,size,0x003f,0,0);
\r
365 opend_op_changes_cycles=changed_cycles;
\r
370 // Emit a Asr/Lsr/Roxr/Ror opcode
\r
371 static int EmitAsr(int op,int type,int dir,int count,int size,int usereg)
\r
373 char pct[8]=""; // count
\r
374 int shift=32-(8<<size);
\r
376 if (count>=1) sprintf(pct,"#%d",count); // Fixed count
\r
380 ot(";@ Use Dn for count:\n");
\r
381 ot(" and r2,r8,#0x0e00\n");
\r
382 ot(" ldr r2,[r7,r2,lsr #7]\n");
\r
383 ot(" and r2,r2,#63\n");
\r
389 ot(" mov r2,r8,lsr #9 ;@ Get 'n'\n");
\r
390 ot(" and r2,r2,#7\n\n"); strcpy(pct,"r2");
\r
393 // Take 2*n cycles:
\r
394 if (count<0) ot(" sub r5,r5,r2,asl #1 ;@ Take 2*n cycles\n\n");
\r
395 else Cycles+=count<<1;
\r
400 if (dir==0 && size<2)
\r
402 ot(";@ For shift right, use loworder bits for the operation:\n");
\r
403 ot(" mov r0,r0,%s #%d\n",type?"lsr":"asr",32-(8<<size));
\r
407 if (type==0 && dir) ot(" adds r3,r0,#0 ;@ save old value for V flag calculation, also clear V\n");
\r
409 ot(";@ Shift register:\n");
\r
410 if (type==0) ot(" movs r0,r0,%s %s\n",dir?"asl":"asr",pct);
\r
411 if (type==1) ot(" movs r0,r0,%s %s\n",dir?"lsl":"lsr",pct);
\r
414 if (usereg) { // store X only if count is not 0
\r
415 ot(" cmp %s,#0 ;@ shifting by 0?\n",pct);
\r
416 ot(" biceq r10,r10,#0x20000000 ;@ if so, clear carry\n");
\r
417 ot(" strne r10,[r7,#0x4c] ;@ else Save X bit\n");
\r
419 // count will never be 0 if we use immediate
\r
420 ot(" str r10,[r7,#0x4c] ;@ Save X bit\n");
\r
424 if (dir==0 && size<2)
\r
426 ot(";@ restore after right shift:\n");
\r
427 ot(" movs r0,r0,lsl #%d\n",32-(8<<size));
\r
429 ot(" orrmi r10,r10,#0x80000000 ;@ Potentially missed N flag\n");
\r
433 if (type==0 && dir) {
\r
434 ot(";@ calculate V flag (set if sign bit changes at anytime):\n");
\r
435 ot(" mov r1,#0x80000000\n");
\r
436 ot(" ands r3,r3,r1,asr %s\n", pct);
\r
437 ot(" cmpne r3,r1,asr %s\n", pct);
\r
438 ot(" eoreq r1,r0,r3\n"); // above check doesn't catch (-1)<<(32+), so we need this
\r
439 ot(" tsteq r1,#0x80000000\n");
\r
440 ot(" orrne r10,r10,#0x10000000\n");
\r
445 // --------------------------------------
\r
455 ot(" orr r0,r0,r0,lsr #%i\n", size?16:24);
\r
456 ot(" bic r0,r0,#0x%x\n", 1<<(32-wide));
\r
459 ot(" movs r0,r0,rrx\n");
\r
462 ot(" ldr r3,[r7,#0x4c]\n");
\r
463 ot(" movs r0,r0,lsl #1\n");
\r
465 ot(" tst r3,#0x20000000\n");
\r
466 ot(" orrne r0,r0,#0x%x\n", 1<<(32-wide));
\r
467 ot(" bicne r10,r10,#0x40000000 ;@ clear Z in case it got there\n");
\r
469 ot(" bic r10,r10,#0x10000000 ;@ make suve V is clear\n");
\r
477 ot(" subs r2,r2,#33\n");
\r
478 ot(" addmis r2,r2,#33 ;@ Now r2=0-%d\n",wide);
\r
482 ot(";@ Reduce r2 until <0:\n");
\r
483 ot("Reduce_%.4x%s\n",op,ms?"":":");
\r
484 ot(" subs r2,r2,#%d\n",wide+1);
\r
485 ot(" bpl Reduce_%.4x\n",op);
\r
486 ot(" adds r2,r2,#%d ;@ Now r2=0-%d\n",wide+1,wide);
\r
488 ot(" beq norotx_%.4x\n",op);
\r
492 if (usereg||count < 0)
\r
494 if (dir) ot(" rsb r2,r2,#%d ;@ Reverse direction\n",wide+1);
\r
498 if (dir) ot(" mov r2,#%d ;@ Reversed\n",wide+1-count);
\r
499 else ot(" mov r2,#%d\n",count);
\r
502 if (shift) ot(" mov r0,r0,lsr #%d ;@ Shift down\n",shift);
\r
505 ot(";@ First get X bit (middle):\n");
\r
506 ot(" ldr r3,[r7,#0x4c]\n");
\r
507 ot(" rsb r1,r2,#%d\n",wide);
\r
508 ot(" and r3,r3,#0x20000000\n");
\r
509 ot(" mov r3,r3,lsr #29\n");
\r
510 ot(" mov r3,r3,lsl r1\n");
\r
512 ot(";@ Rotate bits:\n");
\r
513 ot(" orr r3,r3,r0,lsr r2 ;@ Orr right part\n");
\r
514 ot(" rsbs r2,r2,#%d ;@ should also clear ARM V\n",wide+1);
\r
515 ot(" orrs r0,r3,r0,lsl r2 ;@ Orr left part, set flags\n");
\r
518 if (shift) ot(" movs r0,r0,lsl #%d ;@ Shift up and get correct NC flags\n",shift);
\r
519 OpGetFlags(0,!usereg);
\r
520 if (usereg) { // store X only if count is not 0
\r
521 ot(" str r10,[r7,#0x4c] ;@ if not 0, Save X bit\n");
\r
522 ot(" b nozerox%.4x\n",op);
\r
523 ot("norotx_%.4x%s\n",op,ms?"":":");
\r
524 ot(" ldr r2,[r7,#0x4c]\n");
\r
525 ot(" adds r0,r0,#0 ;@ Defines NZ, clears CV\n");
\r
527 ot(" and r2,r2,#0x20000000\n");
\r
528 ot(" orr r10,r10,r2 ;@ C = old_X\n");
\r
529 ot("nozerox%.4x%s\n",op,ms?"":":");
\r
535 // --------------------------------------
\r
541 ot(";@ Mirror value in whole 32 bits:\n");
\r
542 if (size<=0) ot(" orr r0,r0,r0,lsr #8\n");
\r
543 if (size<=1) ot(" orr r0,r0,r0,lsr #16\n");
\r
547 ot(";@ Rotate register:\n");
\r
548 if (!dir) ot(" adds r0,r0,#0 ;@ first clear V and C\n"); // ARM does not clear C if rot count is 0
\r
551 if (dir) ot(" rsb %s,%s,#32\n",pct,pct);
\r
552 ot(" movs r0,r0,ror %s\n",pct);
\r
557 if (dir) ror=32-ror;
\r
558 if (ror&31) ot(" movs r0,r0,ror #%d\n",ror);
\r
564 ot(" bic r10,r10,#0x30000000 ;@ clear CV\n");
\r
565 ot(";@ Get carry bit from bit 0:\n");
\r
568 ot(" cmp %s,#32 ;@ rotating by 0?\n",pct);
\r
569 ot(" tstne r0,#1 ;@ no, check bit 0\n");
\r
572 ot(" tst r0,#1\n");
\r
573 ot(" orrne r10,r10,#0x20000000\n");
\r
578 // --------------------------------------
\r
583 // Emit a Asr/Lsr/Roxr/Ror opcode - 1110cccd xxuttnnn
\r
584 // (ccc=count, d=direction(r,l) xx=size extension, u=use reg for count, tt=type, nnn=register Dn)
\r
589 int size=0,usereg=0,type=0;
\r
594 if (size>=3) return 1; // use OpAsrEa()
\r
598 if (usereg==0) count=((count-1)&7)+1; // because ccc=000 means 8
\r
600 // Use the same opcode for target registers:
\r
603 // As long as count is not 8, use the same opcode for all shift counts:
\r
604 if (usereg==0 && count!=8 && !(count==1&&type==2)) { use|=0x0e00; count=-1; }
\r
605 if (usereg) { use&=~0x0e00; count=-1; } // Use same opcode for all Dn
\r
607 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
609 OpStart(op,ea,0,count<0); Cycles=size<2?6:8;
\r
611 EaCalc(11,0x0007, ea,size,1);
\r
612 EaRead(11, 0, ea,size,0x0007,1);
\r
614 EmitAsr(op,type,dir,count, size,usereg);
\r
616 EaWrite(11, 0, ea,size,0x0007,1);
\r
618 opend_op_changes_cycles = (count<0);
\r
624 // Asr/Lsr/Roxr/Ror etc EA - 11100ttd 11eeeeee
\r
625 int OpAsrEa(int op)
\r
627 int use=0,type=0,dir=0,ea=0,size=1;
\r
633 if (ea<0x10) return 1;
\r
634 // See if we can do this opcode:
\r
635 if (EaCanRead(ea,0)==0) return 1;
\r
636 if (EaCanWrite(ea)==0) return 1;
\r
638 use=OpBase(op,size);
\r
639 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
641 OpStart(op,ea); Cycles=6; // EmitAsr() will add 2
\r
643 EaCalc (11,0x003f,ea,size,1);
\r
644 EaRead (11, 0,ea,size,0x003f,1);
\r
646 EmitAsr(op,type,dir,1,size,0);
\r
648 EaWrite(11, 0,ea,size,0x003f,1);
\r
654 int OpTas(int op, int gen_special)
\r
661 // See if we can do this opcode:
\r
662 if (EaCanWrite(ea)==0 || EaAn(ea)) return 1;
\r
665 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
667 if (!gen_special) OpStart(op,ea);
\r
669 ot("Op%.4x_%s\n", op, ms?"":":");
\r
672 if(ea>=8) Cycles+=10;
\r
674 EaCalc (11,0x003f,ea,0,1);
\r
675 EaRead (11, 1,ea,0,0x003f,1);
\r
677 ot(" adds r1,r1,#0 ;@ Defines NZ, clears CV\n");
\r
681 #if CYCLONE_FOR_GENESIS
\r
682 // the original Sega hardware ignores write-back phase (to memory only)
\r
683 if (ea < 0x10 || gen_special) {
\r
685 ot(" orr r1,r1,#0x80000000 ;@ set bit7\n");
\r
687 EaWrite(11, 1,ea,0,0x003f,1);
\r
688 #if CYCLONE_FOR_GENESIS
\r
694 #if (CYCLONE_FOR_GENESIS == 2)
\r
695 if (!gen_special && ea >= 0x10) {
\r