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
129 // --------------------- Opcodes 0x4000+ ---------------------
\r
132 // 01000tt0 xxeeeeee (tt=negx/clr/neg/not, xx=size, eeeeee=EA)
\r
133 int type=0,size=0,ea=0,use=0;
\r
137 size=(op>>6)&3; if (size>=3) return 1;
\r
139 // See if we can do this opcode:
\r
140 if (EaCanRead (ea,size)==0||EaAn(ea)) return 1;
\r
141 if (EaCanWrite(ea )==0) return 1;
\r
143 use=OpBase(op,size);
\r
144 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
146 OpStart(op,ea); Cycles=size<2?4:6;
\r
147 if(ea >= 0x10) Cycles*=2;
\r
149 EaCalc (11,0x003f,ea,size,0,0);
\r
151 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
152 if (type==1) ot("\n");
\r
158 if(size!=2) ot(" mov r0,r0,asl #%i\n",size?16:24);
\r
159 ot(" rscs r1,r0,#0 ;@ do arithmetic\n");
\r
160 ot(" orr r3,r10,#0xb0000000 ;@ for old Z\n");
\r
163 ot(" movs r1,r1,asr #%i\n",size?16:24);
\r
164 ot(" orreq r10,r10,#0x40000000 ;@ possily missed Z\n");
\r
166 ot(" andeq r10,r10,r3 ;@ fix Z\n");
\r
173 ot(" mov r1,#0\n");
\r
174 ot(" mov r10,#0x40000000 ;@ NZCV=0100\n");
\r
181 if(size!=2) ot(" mov r0,r0,asl #%i\n",size?16:24);
\r
182 ot(" rsbs r1,r0,#0\n");
\r
184 if(size!=2) ot(" mov r1,r1,asr #%i\n",size?16:24);
\r
192 ot(" mov r0,r0,asl #%i\n",size?16:24);
\r
193 ot(" mvn r1,r0,asr #%i\n",size?16:24);
\r
196 ot(" mvn r1,r0\n");
\r
197 ot(" adds r1,r1,#0 ;@ Defines NZ, clears CV\n");
\r
202 if (type==1) eawrite_check_addrerr=1;
\r
203 EaWrite(11, 1,ea,size,0x003f,0,0);
\r
210 // --------------------- Opcodes 0x4840+ ---------------------
\r
211 // Swap, 01001000 01000nnn swap Dn
\r
217 use=op&~0x0007; // Use same opcode for all An
\r
219 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
221 OpStart(op); Cycles=4;
\r
223 EaCalc (11,0x0007,ea,2,1);
\r
224 EaRead (11, 0,ea,2,0x0007,1);
\r
226 ot(" mov r1,r0,ror #16\n");
\r
227 ot(" adds r1,r1,#0 ;@ Defines NZ, clears CV\n");
\r
230 EaWrite(11, 1,8,2,0x0007,1);
\r
237 // --------------------- Opcodes 0x4a00+ ---------------------
\r
238 // Emit a Tst opcode, 01001010 xxeeeeee
\r
245 size=(op>>6)&3; if (size>=3) return 1;
\r
247 // See if we can do this opcode:
\r
248 if (EaCanWrite(sea)==0||EaAn(sea)) return 1;
\r
250 use=OpBase(op,size);
\r
251 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
253 OpStart(op,sea); Cycles=4;
\r
255 EaCalc ( 0,0x003f,sea,size,1);
\r
256 EaRead ( 0, 0,sea,size,0x003f,1);
\r
258 ot(" adds r0,r0,#0 ;@ Defines NZ, clears CV\n");
\r
259 ot(" mrs r10,cpsr ;@ r10=flags\n");
\r
266 // --------------------- Opcodes 0x4880+ ---------------------
\r
267 // Emit an Ext opcode, 01001000 1x000nnn
\r
276 shift=32-(8<<size);
\r
278 use=OpBase(op,size);
\r
279 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
281 OpStart(op); Cycles=4;
\r
283 EaCalc (11,0x0007,ea,size+1,0,0);
\r
284 EaRead (11, 0,ea,size+1,0x0007,0,0);
\r
286 ot(" mov r0,r0,asl #%d\n",shift);
\r
287 ot(" adds r0,r0,#0 ;@ Defines NZ, clears CV\n");
\r
288 ot(" mrs r10,cpsr ;@ r10=flags\n");
\r
289 ot(" mov r1,r0,asr #%d\n",shift);
\r
292 EaWrite(11, 1,ea,size+1,0x0007,0,0);
\r
298 // --------------------- Opcodes 0x50c0+ ---------------------
\r
299 // Emit a Set cc opcode, 0101cccc 11eeeeee
\r
303 int size=0,use=0,changed_cycles=0;
\r
306 "al","", "hi","ls","cc","cs","ne","eq",
\r
307 "vc","vs","pl","mi","ge","lt","gt","le"
\r
313 if ((ea&0x38)==0x08) return 1; // dbra, not scc
\r
315 // See if we can do this opcode:
\r
316 if (EaCanWrite(ea)==0) return 1;
\r
318 use=OpBase(op,size);
\r
319 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
321 changed_cycles=ea<8 && cc>=2;
\r
322 OpStart(op,ea,0,changed_cycles); Cycles=8;
\r
323 if (ea<8) Cycles=4;
\r
326 ot(" mov r1,#0\n");
\r
331 ot(" mvn r1,#0\n");
\r
332 if (ea<8) Cycles+=2;
\r
337 ot(" tst r10,#0x60000000 ;@ hi: !C && !Z\n");
\r
338 ot(" mvneq r1,r1\n");
\r
339 if (ea<8) ot(" subeq r5,r5,#2 ;@ Extra cycles\n");
\r
342 ot(" tst r10,#0x60000000 ;@ ls: C || Z\n");
\r
343 ot(" mvnne r1,r1\n");
\r
344 if (ea<8) ot(" subne r5,r5,#2 ;@ Extra cycles\n");
\r
347 ot(";@ Is the condition true?\n");
\r
348 ot(" msr cpsr_flg,r10 ;@ ARM flags = 68000 flags\n");
\r
349 ot(" mvn%s r1,r1\n",cond[cc]);
\r
350 if (ea<8) ot(" sub%s r5,r5,#2 ;@ Extra cycles\n",cond[cc]);
\r
356 eawrite_check_addrerr=1;
\r
357 EaCalc (0,0x003f, ea,size,0,0);
\r
358 EaWrite(0, 1, ea,size,0x003f,0,0);
\r
360 opend_op_changes_cycles=changed_cycles;
\r
365 // Emit a Asr/Lsr/Roxr/Ror opcode
\r
366 static int EmitAsr(int op,int type,int dir,int count,int size,int usereg)
\r
368 char pct[8]=""; // count
\r
369 int shift=32-(8<<size);
\r
371 if (count>=1) sprintf(pct,"#%d",count); // Fixed count
\r
375 ot(";@ Use Dn for count:\n");
\r
376 ot(" and r2,r8,#0x0e00\n");
\r
377 ot(" ldr r2,[r7,r2,lsr #7]\n");
\r
378 ot(" and r2,r2,#63\n");
\r
384 ot(" mov r2,r8,lsr #9 ;@ Get 'n'\n");
\r
385 ot(" and r2,r2,#7\n\n"); strcpy(pct,"r2");
\r
388 // Take 2*n cycles:
\r
389 if (count<0) ot(" sub r5,r5,r2,asl #1 ;@ Take 2*n cycles\n\n");
\r
390 else Cycles+=count<<1;
\r
395 if (dir==0 && size<2)
\r
397 ot(";@ For shift right, use loworder bits for the operation:\n");
\r
398 ot(" mov r0,r0,%s #%d\n",type?"lsr":"asr",32-(8<<size));
\r
402 if (type==0 && dir) ot(" adds r3,r0,#0 ;@ save old value for V flag calculation, also clear V\n");
\r
404 ot(";@ Shift register:\n");
\r
405 if (type==0) ot(" movs r0,r0,%s %s\n",dir?"asl":"asr",pct);
\r
406 if (type==1) ot(" movs r0,r0,%s %s\n",dir?"lsl":"lsr",pct);
\r
409 if (usereg) { // store X only if count is not 0
\r
410 ot(" cmp %s,#0 ;@ shifting by 0?\n",pct);
\r
411 ot(" biceq r10,r10,#0x20000000 ;@ if so, clear carry\n");
\r
412 ot(" strne r10,[r7,#0x4c] ;@ else Save X bit\n");
\r
414 // count will never be 0 if we use immediate
\r
415 ot(" str r10,[r7,#0x4c] ;@ Save X bit\n");
\r
419 if (dir==0 && size<2)
\r
421 ot(";@ restore after right shift:\n");
\r
422 ot(" movs r0,r0,lsl #%d\n",32-(8<<size));
\r
424 ot(" orrmi r10,r10,#0x80000000 ;@ Potentially missed N flag\n");
\r
428 if (type==0 && dir) {
\r
429 ot(";@ calculate V flag (set if sign bit changes at anytime):\n");
\r
430 ot(" mov r1,#0x80000000\n");
\r
431 ot(" ands r3,r3,r1,asr %s\n", pct);
\r
432 ot(" cmpne r3,r1,asr %s\n", pct);
\r
433 ot(" eoreq r1,r0,r3\n"); // above check doesn't catch (-1)<<(32+), so we need this
\r
434 ot(" tsteq r1,#0x80000000\n");
\r
435 ot(" orrne r10,r10,#0x10000000\n");
\r
440 // --------------------------------------
\r
450 ot(" orr r0,r0,r0,lsr #%i\n", size?16:24);
\r
451 ot(" bic r0,r0,#0x%x\n", 1<<(32-wide));
\r
454 ot(" movs r0,r0,rrx\n");
\r
457 ot(" ldr r3,[r7,#0x4c]\n");
\r
458 ot(" movs r0,r0,lsl #1\n");
\r
460 ot(" tst r3,#0x20000000\n");
\r
461 ot(" orrne r0,r0,#0x%x\n", 1<<(32-wide));
\r
462 ot(" bicne r10,r10,#0x40000000 ;@ clear Z in case it got there\n");
\r
464 ot(" bic r10,r10,#0x10000000 ;@ make suve V is clear\n");
\r
472 ot(" subs r2,r2,#33\n");
\r
473 ot(" addmis r2,r2,#33 ;@ Now r2=0-%d\n",wide);
\r
477 ot(";@ Reduce r2 until <0:\n");
\r
478 ot("Reduce_%.4x%s\n",op,ms?"":":");
\r
479 ot(" subs r2,r2,#%d\n",wide+1);
\r
480 ot(" bpl Reduce_%.4x\n",op);
\r
481 ot(" adds r2,r2,#%d ;@ Now r2=0-%d\n",wide+1,wide);
\r
483 ot(" beq norotx_%.4x\n",op);
\r
487 if (usereg||count < 0)
\r
489 if (dir) ot(" rsb r2,r2,#%d ;@ Reverse direction\n",wide+1);
\r
493 if (dir) ot(" mov r2,#%d ;@ Reversed\n",wide+1-count);
\r
494 else ot(" mov r2,#%d\n",count);
\r
497 if (shift) ot(" mov r0,r0,lsr #%d ;@ Shift down\n",shift);
\r
500 ot(";@ First get X bit (middle):\n");
\r
501 ot(" ldr r3,[r7,#0x4c]\n");
\r
502 ot(" rsb r1,r2,#%d\n",wide);
\r
503 ot(" and r3,r3,#0x20000000\n");
\r
504 ot(" mov r3,r3,lsr #29\n");
\r
505 ot(" mov r3,r3,lsl r1\n");
\r
507 ot(";@ Rotate bits:\n");
\r
508 ot(" orr r3,r3,r0,lsr r2 ;@ Orr right part\n");
\r
509 ot(" rsbs r2,r2,#%d ;@ should also clear ARM V\n",wide+1);
\r
510 ot(" orrs r0,r3,r0,lsl r2 ;@ Orr left part, set flags\n");
\r
513 if (shift) ot(" movs r0,r0,lsl #%d ;@ Shift up and get correct NC flags\n",shift);
\r
514 OpGetFlags(0,!usereg);
\r
515 if (usereg) { // store X only if count is not 0
\r
516 ot(" str r10,[r7,#0x4c] ;@ if not 0, Save X bit\n");
\r
517 ot(" b nozerox%.4x\n",op);
\r
518 ot("norotx_%.4x%s\n",op,ms?"":":");
\r
519 ot(" ldr r2,[r7,#0x4c]\n");
\r
520 ot(" adds r0,r0,#0 ;@ Defines NZ, clears CV\n");
\r
522 ot(" and r2,r2,#0x20000000\n");
\r
523 ot(" orr r10,r10,r2 ;@ C = old_X\n");
\r
524 ot("nozerox%.4x%s\n",op,ms?"":":");
\r
530 // --------------------------------------
\r
536 ot(";@ Mirror value in whole 32 bits:\n");
\r
537 if (size<=0) ot(" orr r0,r0,r0,lsr #8\n");
\r
538 if (size<=1) ot(" orr r0,r0,r0,lsr #16\n");
\r
542 ot(";@ Rotate register:\n");
\r
543 if (!dir) ot(" adds r0,r0,#0 ;@ first clear V and C\n"); // ARM does not clear C if rot count is 0
\r
546 if (dir) ot(" rsb %s,%s,#32\n",pct,pct);
\r
547 ot(" movs r0,r0,ror %s\n",pct);
\r
552 if (dir) ror=32-ror;
\r
553 if (ror&31) ot(" movs r0,r0,ror #%d\n",ror);
\r
559 ot(" bic r10,r10,#0x30000000 ;@ clear CV\n");
\r
560 ot(";@ Get carry bit from bit 0:\n");
\r
563 ot(" cmp %s,#32 ;@ rotating by 0?\n",pct);
\r
564 ot(" tstne r0,#1 ;@ no, check bit 0\n");
\r
567 ot(" tst r0,#1\n");
\r
568 ot(" orrne r10,r10,#0x20000000\n");
\r
573 // --------------------------------------
\r
578 // Emit a Asr/Lsr/Roxr/Ror opcode - 1110cccd xxuttnnn
\r
579 // (ccc=count, d=direction(r,l) xx=size extension, u=use reg for count, tt=type, nnn=register Dn)
\r
584 int size=0,usereg=0,type=0;
\r
589 if (size>=3) return 1; // use OpAsrEa()
\r
593 if (usereg==0) count=((count-1)&7)+1; // because ccc=000 means 8
\r
595 // Use the same opcode for target registers:
\r
598 // As long as count is not 8, use the same opcode for all shift counts:
\r
599 if (usereg==0 && count!=8 && !(count==1&&type==2)) { use|=0x0e00; count=-1; }
\r
600 if (usereg) { use&=~0x0e00; count=-1; } // Use same opcode for all Dn
\r
602 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
604 OpStart(op,ea,0,count<0); Cycles=size<2?6:8;
\r
606 EaCalc(11,0x0007, ea,size,1);
\r
607 EaRead(11, 0, ea,size,0x0007,1);
\r
609 EmitAsr(op,type,dir,count, size,usereg);
\r
611 EaWrite(11, 0, ea,size,0x0007,1);
\r
613 opend_op_changes_cycles = (count<0);
\r
619 // Asr/Lsr/Roxr/Ror etc EA - 11100ttd 11eeeeee
\r
620 int OpAsrEa(int op)
\r
622 int use=0,type=0,dir=0,ea=0,size=1;
\r
628 if (ea<0x10) return 1;
\r
629 // See if we can do this opcode:
\r
630 if (EaCanRead(ea,0)==0) return 1;
\r
631 if (EaCanWrite(ea)==0) return 1;
\r
633 use=OpBase(op,size);
\r
634 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
636 OpStart(op,ea); Cycles=6; // EmitAsr() will add 2
\r
638 EaCalc (11,0x003f,ea,size,1);
\r
639 EaRead (11, 0,ea,size,0x003f,1);
\r
641 EmitAsr(op,type,dir,1,size,0);
\r
643 EaWrite(11, 0,ea,size,0x003f,1);
\r
649 int OpTas(int op, int gen_special)
\r
656 // See if we can do this opcode:
\r
657 if (EaCanWrite(ea)==0 || EaAn(ea)) return 1;
\r
660 if (op!=use) { OpUse(op,use); return 0; } // Use existing handler
\r
662 if (!gen_special) OpStart(op,ea);
\r
664 ot("Op%.4x_%s\n", op, ms?"":":");
\r
667 if(ea>=8) Cycles+=10;
\r
669 EaCalc (11,0x003f,ea,0,1);
\r
670 EaRead (11, 1,ea,0,0x003f,1);
\r
672 ot(" adds r1,r1,#0 ;@ Defines NZ, clears CV\n");
\r
676 #if CYCLONE_FOR_GENESIS
\r
677 // the original Sega hardware ignores write-back phase (to memory only)
\r
678 if (ea < 0x10 || gen_special) {
\r
680 ot(" orr r1,r1,#0x80000000 ;@ set bit7\n");
\r
682 EaWrite(11, 1,ea,0,0x003f,1);
\r
683 #if CYCLONE_FOR_GENESIS
\r
689 #if (CYCLONE_FOR_GENESIS == 2)
\r
690 if (!gen_special && ea >= 0x10) {
\r