drc: some more debug logging
[pcsx_rearmed.git] / libpcsxcore / new_dynarec / new_dynarec.c
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  *   Mupen64plus - new_dynarec.c                                           *
3  *   Copyright (C) 2009-2011 Ari64                                         *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
19  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
20
21 #include <stdlib.h>
22 #include <stdint.h> //include for uint64_t
23 #include <assert.h>
24 #include <errno.h>
25 #include <sys/mman.h>
26 #ifdef __MACH__
27 #include <libkern/OSCacheControl.h>
28 #endif
29 #ifdef _3DS
30 #include <3ds_utils.h>
31 #endif
32
33 #include "new_dynarec_config.h"
34 #include "../psxhle.h"
35 #include "../psxinterpreter.h"
36 #include "../gte.h"
37 #include "emu_if.h" // emulator interface
38
39 #define noinline __attribute__((noinline,noclone))
40 #ifndef ARRAY_SIZE
41 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
42 #endif
43 #ifndef min
44 #define min(a, b) ((b) < (a) ? (b) : (a))
45 #endif
46 #ifndef max
47 #define max(a, b) ((b) > (a) ? (b) : (a))
48 #endif
49
50 //#define DISASM
51 //#define ASSEM_PRINT
52 //#define REG_ALLOC_PRINT
53
54 #ifdef ASSEM_PRINT
55 #define assem_debug printf
56 #else
57 #define assem_debug(...)
58 #endif
59 //#define inv_debug printf
60 #define inv_debug(...)
61
62 #ifdef __i386__
63 #include "assem_x86.h"
64 #endif
65 #ifdef __x86_64__
66 #include "assem_x64.h"
67 #endif
68 #ifdef __arm__
69 #include "assem_arm.h"
70 #endif
71 #ifdef __aarch64__
72 #include "assem_arm64.h"
73 #endif
74
75 #define RAM_SIZE 0x200000
76 #define MAXBLOCK 4096
77 #define MAX_OUTPUT_BLOCK_SIZE 262144
78
79 #ifdef VITA
80 // apparently Vita has a 16MB limit, so either we cut tc in half,
81 // or use this hack (it's a hack because tc size was designed to be power-of-2)
82 #define TC_REDUCE_BYTES 4096
83 #else
84 #define TC_REDUCE_BYTES 0
85 #endif
86
87 struct ndrc_mem
88 {
89   u_char translation_cache[(1 << TARGET_SIZE_2) - TC_REDUCE_BYTES];
90   struct
91   {
92     struct tramp_insns ops[2048 / sizeof(struct tramp_insns)];
93     const void *f[2048 / sizeof(void *)];
94   } tramp;
95 };
96
97 #ifdef BASE_ADDR_DYNAMIC
98 static struct ndrc_mem *ndrc;
99 #else
100 static struct ndrc_mem ndrc_ __attribute__((aligned(4096)));
101 static struct ndrc_mem *ndrc = &ndrc_;
102 #endif
103
104 // stubs
105 enum stub_type {
106   CC_STUB = 1,
107   FP_STUB = 2,
108   LOADB_STUB = 3,
109   LOADH_STUB = 4,
110   LOADW_STUB = 5,
111   LOADD_STUB = 6,
112   LOADBU_STUB = 7,
113   LOADHU_STUB = 8,
114   STOREB_STUB = 9,
115   STOREH_STUB = 10,
116   STOREW_STUB = 11,
117   STORED_STUB = 12,
118   STORELR_STUB = 13,
119   INVCODE_STUB = 14,
120 };
121
122 // regmap_pre[i]    - regs before [i] insn starts; dirty things here that
123 //                    don't match .regmap will be written back
124 // [i].regmap_entry - regs that must be set up if someone jumps here
125 // [i].regmap       - regs [i] insn will read/(over)write
126 // branch_regs[i].* - same as above but for branches, takes delay slot into account
127 struct regstat
128 {
129   signed char regmap_entry[HOST_REGS];
130   signed char regmap[HOST_REGS];
131   uint64_t wasdirty;
132   uint64_t dirty;
133   uint64_t u;
134   u_int wasconst;                // before; for example 'lw r2, (r2)' wasconst is true
135   u_int isconst;                 //  ... but isconst is false when r2 is known
136   u_int loadedconst;             // host regs that have constants loaded
137   u_int waswritten;              // MIPS regs that were used as store base before
138 };
139
140 // note: asm depends on this layout
141 struct ll_entry
142 {
143   u_int vaddr;
144   u_int reg_sv_flags;
145   void *addr;
146   struct ll_entry *next;
147 };
148
149 struct ht_entry
150 {
151   u_int vaddr[2];
152   void *tcaddr[2];
153 };
154
155 struct code_stub
156 {
157   enum stub_type type;
158   void *addr;
159   void *retaddr;
160   u_int a;
161   uintptr_t b;
162   uintptr_t c;
163   u_int d;
164   u_int e;
165 };
166
167 struct link_entry
168 {
169   void *addr;
170   u_int target;
171   u_int ext;
172 };
173
174 static struct decoded_insn
175 {
176   u_char itype;
177   u_char opcode;
178   u_char opcode2;
179   u_char rs1;
180   u_char rs2;
181   u_char rt1;
182   u_char rt2;
183   u_char lt1;
184   u_char bt:1;
185   u_char ooo:1;
186   u_char is_ds:1;
187   u_char is_jump:1;
188   u_char is_ujump:1;
189   u_char is_load:1;
190   u_char is_store:1;
191 } dops[MAXBLOCK];
192
193   // used by asm:
194   u_char *out;
195   struct ht_entry hash_table[65536]  __attribute__((aligned(16)));
196   struct ll_entry *jump_in[4096] __attribute__((aligned(16)));
197   struct ll_entry *jump_dirty[4096];
198
199   static struct ll_entry *jump_out[4096];
200   static u_int start;
201   static u_int *source;
202   static char insn[MAXBLOCK][10];
203   static uint64_t gte_rs[MAXBLOCK]; // gte: 32 data and 32 ctl regs
204   static uint64_t gte_rt[MAXBLOCK];
205   static uint64_t gte_unneeded[MAXBLOCK];
206   static u_int smrv[32]; // speculated MIPS register values
207   static u_int smrv_strong; // mask or regs that are likely to have correct values
208   static u_int smrv_weak; // same, but somewhat less likely
209   static u_int smrv_strong_next; // same, but after current insn executes
210   static u_int smrv_weak_next;
211   static int imm[MAXBLOCK];
212   static u_int ba[MAXBLOCK];
213   static uint64_t unneeded_reg[MAXBLOCK];
214   static uint64_t branch_unneeded_reg[MAXBLOCK];
215   // see 'struct regstat' for a description
216   static signed char regmap_pre[MAXBLOCK][HOST_REGS];
217   // contains 'real' consts at [i] insn, but may differ from what's actually
218   // loaded in host reg as 'final' value is always loaded, see get_final_value()
219   static uint32_t current_constmap[HOST_REGS];
220   static uint32_t constmap[MAXBLOCK][HOST_REGS];
221   static struct regstat regs[MAXBLOCK];
222   static struct regstat branch_regs[MAXBLOCK];
223   static signed char minimum_free_regs[MAXBLOCK];
224   static u_int needed_reg[MAXBLOCK];
225   static u_int wont_dirty[MAXBLOCK];
226   static u_int will_dirty[MAXBLOCK];
227   static int ccadj[MAXBLOCK];
228   static int slen;
229   static void *instr_addr[MAXBLOCK];
230   static struct link_entry link_addr[MAXBLOCK];
231   static int linkcount;
232   static struct code_stub stubs[MAXBLOCK*3];
233   static int stubcount;
234   static u_int literals[1024][2];
235   static int literalcount;
236   static int is_delayslot;
237   static char shadow[1048576]  __attribute__((aligned(16)));
238   static void *copy;
239   static int expirep;
240   static u_int stop_after_jal;
241   static u_int f1_hack;
242
243   int new_dynarec_hacks;
244   int new_dynarec_hacks_pergame;
245   int new_dynarec_hacks_old;
246   int new_dynarec_did_compile;
247
248   #define HACK_ENABLED(x) ((new_dynarec_hacks | new_dynarec_hacks_pergame) & (x))
249
250   extern int cycle_count; // ... until end of the timeslice, counts -N -> 0
251   extern int last_count;  // last absolute target, often = next_interupt
252   extern int pcaddr;
253   extern int pending_exception;
254   extern int branch_target;
255   extern uintptr_t ram_offset;
256   extern uintptr_t mini_ht[32][2];
257   extern u_char restore_candidate[512];
258
259   /* registers that may be allocated */
260   /* 1-31 gpr */
261 #define LOREG 32 // lo
262 #define HIREG 33 // hi
263 //#define FSREG 34 // FPU status (FCSR)
264 #define CSREG 35 // Coprocessor status
265 #define CCREG 36 // Cycle count
266 #define INVCP 37 // Pointer to invalid_code
267 //#define MMREG 38 // Pointer to memory_map
268 #define ROREG 39 // ram offset (if rdram!=0x80000000)
269 #define TEMPREG 40
270 #define FTEMP 40 // FPU temporary register
271 #define PTEMP 41 // Prefetch temporary register
272 //#define TLREG 42 // TLB mapping offset
273 #define RHASH 43 // Return address hash
274 #define RHTBL 44 // Return address hash table address
275 #define RTEMP 45 // JR/JALR address register
276 #define MAXREG 45
277 #define AGEN1 46 // Address generation temporary register
278 //#define AGEN2 47 // Address generation temporary register
279 //#define MGEN1 48 // Maptable address generation temporary register
280 //#define MGEN2 49 // Maptable address generation temporary register
281 #define BTREG 50 // Branch target temporary register
282
283   /* instruction types */
284 #define NOP 0     // No operation
285 #define LOAD 1    // Load
286 #define STORE 2   // Store
287 #define LOADLR 3  // Unaligned load
288 #define STORELR 4 // Unaligned store
289 #define MOV 5     // Move
290 #define ALU 6     // Arithmetic/logic
291 #define MULTDIV 7 // Multiply/divide
292 #define SHIFT 8   // Shift by register
293 #define SHIFTIMM 9// Shift by immediate
294 #define IMM16 10  // 16-bit immediate
295 #define RJUMP 11  // Unconditional jump to register
296 #define UJUMP 12  // Unconditional jump
297 #define CJUMP 13  // Conditional branch (BEQ/BNE/BGTZ/BLEZ)
298 #define SJUMP 14  // Conditional branch (regimm format)
299 #define COP0 15   // Coprocessor 0
300 #define COP1 16   // Coprocessor 1
301 #define C1LS 17   // Coprocessor 1 load/store
302 //#define FJUMP 18  // Conditional branch (floating point)
303 //#define FLOAT 19  // Floating point unit
304 //#define FCONV 20  // Convert integer to float
305 //#define FCOMP 21  // Floating point compare (sets FSREG)
306 #define SYSCALL 22// SYSCALL,BREAK
307 #define OTHER 23  // Other
308 #define SPAN 24   // Branch/delay slot spans 2 pages
309 #define NI 25     // Not implemented
310 #define HLECALL 26// PCSX fake opcodes for HLE
311 #define COP2 27   // Coprocessor 2 move
312 #define C2LS 28   // Coprocessor 2 load/store
313 #define C2OP 29   // Coprocessor 2 operation
314 #define INTCALL 30// Call interpreter to handle rare corner cases
315
316   /* branch codes */
317 #define TAKEN 1
318 #define NOTTAKEN 2
319 #define NULLDS 3
320
321 #define DJT_1 (void *)1l // no function, just a label in assem_debug log
322 #define DJT_2 (void *)2l
323
324 // asm linkage
325 int new_recompile_block(u_int addr);
326 void *get_addr_ht(u_int vaddr);
327 void invalidate_block(u_int block);
328 void invalidate_addr(u_int addr);
329 void remove_hash(int vaddr);
330 void dyna_linker();
331 void dyna_linker_ds();
332 void verify_code();
333 void verify_code_ds();
334 void cc_interrupt();
335 void fp_exception();
336 void fp_exception_ds();
337 void jump_syscall   (u_int u0, u_int u1, u_int pc);
338 void jump_syscall_ds(u_int u0, u_int u1, u_int pc);
339 void jump_break   (u_int u0, u_int u1, u_int pc);
340 void jump_break_ds(u_int u0, u_int u1, u_int pc);
341 void jump_to_new_pc();
342 void call_gteStall();
343 void new_dyna_leave();
344
345 // Needed by assembler
346 static void wb_register(signed char r, const signed char regmap[], uint64_t dirty);
347 static void wb_dirtys(const signed char i_regmap[], uint64_t i_dirty);
348 static void wb_needed_dirtys(const signed char i_regmap[], uint64_t i_dirty, int addr);
349 static void load_all_regs(const signed char i_regmap[]);
350 static void load_needed_regs(const signed char i_regmap[], const signed char next_regmap[]);
351 static void load_regs_entry(int t);
352 static void load_all_consts(const signed char regmap[], u_int dirty, int i);
353 static u_int get_host_reglist(const signed char *regmap);
354
355 static int verify_dirty(const u_int *ptr);
356 static int get_final_value(int hr, int i, int *value);
357 static void add_stub(enum stub_type type, void *addr, void *retaddr,
358   u_int a, uintptr_t b, uintptr_t c, u_int d, u_int e);
359 static void add_stub_r(enum stub_type type, void *addr, void *retaddr,
360   int i, int addr_reg, const struct regstat *i_regs, int ccadj, u_int reglist);
361 static void add_to_linker(void *addr, u_int target, int ext);
362 static void *emit_fastpath_cmp_jump(int i, const struct regstat *i_regs,
363   int addr, int *offset_reg, int *addr_reg_override);
364 static void *get_direct_memhandler(void *table, u_int addr,
365   enum stub_type type, uintptr_t *addr_host);
366 static void cop2_do_stall_check(u_int op, int i, const struct regstat *i_regs, u_int reglist);
367 static void pass_args(int a0, int a1);
368 static void emit_far_jump(const void *f);
369 static void emit_far_call(const void *f);
370
371 #ifdef VITA
372 #include <psp2/kernel/sysmem.h>
373 static int sceBlock;
374 // note: this interacts with RetroArch's Vita bootstrap code: bootstrap/vita/sbrk.c
375 extern int getVMBlock();
376 int _newlib_vm_size_user = sizeof(*ndrc);
377 #endif
378
379 static void mprotect_w_x(void *start, void *end, int is_x)
380 {
381 #ifdef NO_WRITE_EXEC
382   #if defined(VITA)
383   // *Open* enables write on all memory that was
384   // allocated by sceKernelAllocMemBlockForVM()?
385   if (is_x)
386     sceKernelCloseVMDomain();
387   else
388     sceKernelOpenVMDomain();
389   #else
390   u_long mstart = (u_long)start & ~4095ul;
391   u_long mend = (u_long)end;
392   if (mprotect((void *)mstart, mend - mstart,
393                PROT_READ | (is_x ? PROT_EXEC : PROT_WRITE)) != 0)
394     SysPrintf("mprotect(%c) failed: %s\n", is_x ? 'x' : 'w', strerror(errno));
395   #endif
396 #endif
397 }
398
399 static void start_tcache_write(void *start, void *end)
400 {
401   mprotect_w_x(start, end, 0);
402 }
403
404 static void end_tcache_write(void *start, void *end)
405 {
406 #if defined(__arm__) || defined(__aarch64__)
407   size_t len = (char *)end - (char *)start;
408   #if   defined(__BLACKBERRY_QNX__)
409   msync(start, len, MS_SYNC | MS_CACHE_ONLY | MS_INVALIDATE_ICACHE);
410   #elif defined(__MACH__)
411   sys_cache_control(kCacheFunctionPrepareForExecution, start, len);
412   #elif defined(VITA)
413   sceKernelSyncVMDomain(sceBlock, start, len);
414   #elif defined(_3DS)
415   ctr_flush_invalidate_cache();
416   #elif defined(__aarch64__)
417   // as of 2021, __clear_cache() is still broken on arm64
418   // so here is a custom one :(
419   clear_cache_arm64(start, end);
420   #else
421   __clear_cache(start, end);
422   #endif
423   (void)len;
424 #endif
425
426   mprotect_w_x(start, end, 1);
427 }
428
429 static void *start_block(void)
430 {
431   u_char *end = out + MAX_OUTPUT_BLOCK_SIZE;
432   if (end > ndrc->translation_cache + sizeof(ndrc->translation_cache))
433     end = ndrc->translation_cache + sizeof(ndrc->translation_cache);
434   start_tcache_write(out, end);
435   return out;
436 }
437
438 static void end_block(void *start)
439 {
440   end_tcache_write(start, out);
441 }
442
443 // also takes care of w^x mappings when patching code
444 static u_int needs_clear_cache[1<<(TARGET_SIZE_2-17)];
445
446 static void mark_clear_cache(void *target)
447 {
448   uintptr_t offset = (u_char *)target - ndrc->translation_cache;
449   u_int mask = 1u << ((offset >> 12) & 31);
450   if (!(needs_clear_cache[offset >> 17] & mask)) {
451     char *start = (char *)((uintptr_t)target & ~4095l);
452     start_tcache_write(start, start + 4095);
453     needs_clear_cache[offset >> 17] |= mask;
454   }
455 }
456
457 // Clearing the cache is rather slow on ARM Linux, so mark the areas
458 // that need to be cleared, and then only clear these areas once.
459 static void do_clear_cache(void)
460 {
461   int i, j;
462   for (i = 0; i < (1<<(TARGET_SIZE_2-17)); i++)
463   {
464     u_int bitmap = needs_clear_cache[i];
465     if (!bitmap)
466       continue;
467     for (j = 0; j < 32; j++)
468     {
469       u_char *start, *end;
470       if (!(bitmap & (1<<j)))
471         continue;
472
473       start = ndrc->translation_cache + i*131072 + j*4096;
474       end = start + 4095;
475       for (j++; j < 32; j++) {
476         if (!(bitmap & (1<<j)))
477           break;
478         end += 4096;
479       }
480       end_tcache_write(start, end);
481     }
482     needs_clear_cache[i] = 0;
483   }
484 }
485
486 //#define DEBUG_CYCLE_COUNT 1
487
488 #define NO_CYCLE_PENALTY_THR 12
489
490 int cycle_multiplier = CYCLE_MULT_DEFAULT; // 100 for 1.0
491 int cycle_multiplier_override;
492 int cycle_multiplier_old;
493 static int cycle_multiplier_active;
494
495 static int CLOCK_ADJUST(int x)
496 {
497   int m = cycle_multiplier_active;
498   int s = (x >> 31) | 1;
499   return (x * m + s * 50) / 100;
500 }
501
502 static int ds_writes_rjump_rs(int i)
503 {
504   return dops[i].rs1 != 0 && (dops[i].rs1 == dops[i+1].rt1 || dops[i].rs1 == dops[i+1].rt2);
505 }
506
507 static u_int get_page(u_int vaddr)
508 {
509   u_int page=vaddr&~0xe0000000;
510   if (page < 0x1000000)
511     page &= ~0x0e00000; // RAM mirrors
512   page>>=12;
513   if(page>2048) page=2048+(page&2047);
514   return page;
515 }
516
517 // no virtual mem in PCSX
518 static u_int get_vpage(u_int vaddr)
519 {
520   return get_page(vaddr);
521 }
522
523 static struct ht_entry *hash_table_get(u_int vaddr)
524 {
525   return &hash_table[((vaddr>>16)^vaddr)&0xFFFF];
526 }
527
528 static void hash_table_add(struct ht_entry *ht_bin, u_int vaddr, void *tcaddr)
529 {
530   ht_bin->vaddr[1] = ht_bin->vaddr[0];
531   ht_bin->tcaddr[1] = ht_bin->tcaddr[0];
532   ht_bin->vaddr[0] = vaddr;
533   ht_bin->tcaddr[0] = tcaddr;
534 }
535
536 // some messy ari64's code, seems to rely on unsigned 32bit overflow
537 static int doesnt_expire_soon(void *tcaddr)
538 {
539   u_int diff = (u_int)((u_char *)tcaddr - out) << (32-TARGET_SIZE_2);
540   return diff > (u_int)(0x60000000 + (MAX_OUTPUT_BLOCK_SIZE << (32-TARGET_SIZE_2)));
541 }
542
543 // Get address from virtual address
544 // This is called from the recompiled JR/JALR instructions
545 void noinline *get_addr(u_int vaddr)
546 {
547   u_int page=get_page(vaddr);
548   u_int vpage=get_vpage(vaddr);
549   struct ll_entry *head;
550   //printf("TRACE: count=%d next=%d (get_addr %x,page %d)\n",Count,next_interupt,vaddr,page);
551   head=jump_in[page];
552   while(head!=NULL) {
553     if(head->vaddr==vaddr) {
554   //printf("TRACE: count=%d next=%d (get_addr match %x: %p)\n",Count,next_interupt,vaddr,head->addr);
555       hash_table_add(hash_table_get(vaddr), vaddr, head->addr);
556       return head->addr;
557     }
558     head=head->next;
559   }
560   head=jump_dirty[vpage];
561   while(head!=NULL) {
562     if(head->vaddr==vaddr) {
563       //printf("TRACE: count=%d next=%d (get_addr match dirty %x: %p)\n",Count,next_interupt,vaddr,head->addr);
564       // Don't restore blocks which are about to expire from the cache
565       if (doesnt_expire_soon(head->addr))
566       if (verify_dirty(head->addr)) {
567         //printf("restore candidate: %x (%d) d=%d\n",vaddr,page,invalid_code[vaddr>>12]);
568         invalid_code[vaddr>>12]=0;
569         inv_code_start=inv_code_end=~0;
570         if(vpage<2048) {
571           restore_candidate[vpage>>3]|=1<<(vpage&7);
572         }
573         else restore_candidate[page>>3]|=1<<(page&7);
574         struct ht_entry *ht_bin = hash_table_get(vaddr);
575         if (ht_bin->vaddr[0] == vaddr)
576           ht_bin->tcaddr[0] = head->addr; // Replace existing entry
577         else
578           hash_table_add(ht_bin, vaddr, head->addr);
579
580         return head->addr;
581       }
582     }
583     head=head->next;
584   }
585   //printf("TRACE: count=%d next=%d (get_addr no-match %x)\n",Count,next_interupt,vaddr);
586   int r=new_recompile_block(vaddr);
587   if(r==0) return get_addr(vaddr);
588   // Execute in unmapped page, generate pagefault execption
589   Status|=2;
590   Cause=(vaddr<<31)|0x8;
591   EPC=(vaddr&1)?vaddr-5:vaddr;
592   BadVAddr=(vaddr&~1);
593   Context=(Context&0xFF80000F)|((BadVAddr>>9)&0x007FFFF0);
594   EntryHi=BadVAddr&0xFFFFE000;
595   return get_addr_ht(0x80000000);
596 }
597 // Look up address in hash table first
598 void *get_addr_ht(u_int vaddr)
599 {
600   //printf("TRACE: count=%d next=%d (get_addr_ht %x)\n",Count,next_interupt,vaddr);
601   const struct ht_entry *ht_bin = hash_table_get(vaddr);
602   if (ht_bin->vaddr[0] == vaddr) return ht_bin->tcaddr[0];
603   if (ht_bin->vaddr[1] == vaddr) return ht_bin->tcaddr[1];
604   return get_addr(vaddr);
605 }
606
607 static void clear_all_regs(signed char regmap[])
608 {
609   memset(regmap, -1, sizeof(regmap[0]) * HOST_REGS);
610 }
611
612 static signed char get_reg(const signed char regmap[],int r)
613 {
614   int hr;
615   for (hr=0;hr<HOST_REGS;hr++) if(hr!=EXCLUDE_REG&&regmap[hr]==r) return hr;
616   return -1;
617 }
618
619 // Find a register that is available for two consecutive cycles
620 static signed char get_reg2(signed char regmap1[], const signed char regmap2[], int r)
621 {
622   int hr;
623   for (hr=0;hr<HOST_REGS;hr++) if(hr!=EXCLUDE_REG&&regmap1[hr]==r&&regmap2[hr]==r) return hr;
624   return -1;
625 }
626
627 int count_free_regs(signed char regmap[])
628 {
629   int count=0;
630   int hr;
631   for(hr=0;hr<HOST_REGS;hr++)
632   {
633     if(hr!=EXCLUDE_REG) {
634       if(regmap[hr]<0) count++;
635     }
636   }
637   return count;
638 }
639
640 void dirty_reg(struct regstat *cur,signed char reg)
641 {
642   int hr;
643   if(!reg) return;
644   for (hr=0;hr<HOST_REGS;hr++) {
645     if((cur->regmap[hr]&63)==reg) {
646       cur->dirty|=1<<hr;
647     }
648   }
649 }
650
651 static void set_const(struct regstat *cur, signed char reg, uint32_t value)
652 {
653   int hr;
654   if(!reg) return;
655   for (hr=0;hr<HOST_REGS;hr++) {
656     if(cur->regmap[hr]==reg) {
657       cur->isconst|=1<<hr;
658       current_constmap[hr]=value;
659     }
660   }
661 }
662
663 static void clear_const(struct regstat *cur, signed char reg)
664 {
665   int hr;
666   if(!reg) return;
667   for (hr=0;hr<HOST_REGS;hr++) {
668     if((cur->regmap[hr]&63)==reg) {
669       cur->isconst&=~(1<<hr);
670     }
671   }
672 }
673
674 static int is_const(struct regstat *cur, signed char reg)
675 {
676   int hr;
677   if(reg<0) return 0;
678   if(!reg) return 1;
679   for (hr=0;hr<HOST_REGS;hr++) {
680     if((cur->regmap[hr]&63)==reg) {
681       return (cur->isconst>>hr)&1;
682     }
683   }
684   return 0;
685 }
686
687 static uint32_t get_const(struct regstat *cur, signed char reg)
688 {
689   int hr;
690   if(!reg) return 0;
691   for (hr=0;hr<HOST_REGS;hr++) {
692     if(cur->regmap[hr]==reg) {
693       return current_constmap[hr];
694     }
695   }
696   SysPrintf("Unknown constant in r%d\n",reg);
697   abort();
698 }
699
700 // Least soon needed registers
701 // Look at the next ten instructions and see which registers
702 // will be used.  Try not to reallocate these.
703 void lsn(u_char hsn[], int i, int *preferred_reg)
704 {
705   int j;
706   int b=-1;
707   for(j=0;j<9;j++)
708   {
709     if(i+j>=slen) {
710       j=slen-i-1;
711       break;
712     }
713     if (dops[i+j].is_ujump)
714     {
715       // Don't go past an unconditonal jump
716       j++;
717       break;
718     }
719   }
720   for(;j>=0;j--)
721   {
722     if(dops[i+j].rs1) hsn[dops[i+j].rs1]=j;
723     if(dops[i+j].rs2) hsn[dops[i+j].rs2]=j;
724     if(dops[i+j].rt1) hsn[dops[i+j].rt1]=j;
725     if(dops[i+j].rt2) hsn[dops[i+j].rt2]=j;
726     if(dops[i+j].itype==STORE || dops[i+j].itype==STORELR) {
727       // Stores can allocate zero
728       hsn[dops[i+j].rs1]=j;
729       hsn[dops[i+j].rs2]=j;
730     }
731     if (ram_offset && (dops[i+j].is_load || dops[i+j].is_store))
732       hsn[ROREG] = j;
733     // On some architectures stores need invc_ptr
734     #if defined(HOST_IMM8)
735     if (dops[i+j].is_store)
736       hsn[INVCP] = j;
737     #endif
738     if(i+j>=0&&(dops[i+j].itype==UJUMP||dops[i+j].itype==CJUMP||dops[i+j].itype==SJUMP))
739     {
740       hsn[CCREG]=j;
741       b=j;
742     }
743   }
744   if(b>=0)
745   {
746     if(ba[i+b]>=start && ba[i+b]<(start+slen*4))
747     {
748       // Follow first branch
749       int t=(ba[i+b]-start)>>2;
750       j=7-b;if(t+j>=slen) j=slen-t-1;
751       for(;j>=0;j--)
752       {
753         if(dops[t+j].rs1) if(hsn[dops[t+j].rs1]>j+b+2) hsn[dops[t+j].rs1]=j+b+2;
754         if(dops[t+j].rs2) if(hsn[dops[t+j].rs2]>j+b+2) hsn[dops[t+j].rs2]=j+b+2;
755         //if(dops[t+j].rt1) if(hsn[dops[t+j].rt1]>j+b+2) hsn[dops[t+j].rt1]=j+b+2;
756         //if(dops[t+j].rt2) if(hsn[dops[t+j].rt2]>j+b+2) hsn[dops[t+j].rt2]=j+b+2;
757       }
758     }
759     // TODO: preferred register based on backward branch
760   }
761   // Delay slot should preferably not overwrite branch conditions or cycle count
762   if (i > 0 && dops[i-1].is_jump) {
763     if(dops[i-1].rs1) if(hsn[dops[i-1].rs1]>1) hsn[dops[i-1].rs1]=1;
764     if(dops[i-1].rs2) if(hsn[dops[i-1].rs2]>1) hsn[dops[i-1].rs2]=1;
765     hsn[CCREG]=1;
766     // ...or hash tables
767     hsn[RHASH]=1;
768     hsn[RHTBL]=1;
769   }
770   // Coprocessor load/store needs FTEMP, even if not declared
771   if(dops[i].itype==C2LS) {
772     hsn[FTEMP]=0;
773   }
774   // Load L/R also uses FTEMP as a temporary register
775   if(dops[i].itype==LOADLR) {
776     hsn[FTEMP]=0;
777   }
778   // Also SWL/SWR/SDL/SDR
779   if(dops[i].opcode==0x2a||dops[i].opcode==0x2e||dops[i].opcode==0x2c||dops[i].opcode==0x2d) {
780     hsn[FTEMP]=0;
781   }
782   // Don't remove the miniht registers
783   if(dops[i].itype==UJUMP||dops[i].itype==RJUMP)
784   {
785     hsn[RHASH]=0;
786     hsn[RHTBL]=0;
787   }
788 }
789
790 // We only want to allocate registers if we're going to use them again soon
791 int needed_again(int r, int i)
792 {
793   int j;
794   int b=-1;
795   int rn=10;
796
797   if (i > 0 && dops[i-1].is_ujump)
798   {
799     if(ba[i-1]<start || ba[i-1]>start+slen*4-4)
800       return 0; // Don't need any registers if exiting the block
801   }
802   for(j=0;j<9;j++)
803   {
804     if(i+j>=slen) {
805       j=slen-i-1;
806       break;
807     }
808     if (dops[i+j].is_ujump)
809     {
810       // Don't go past an unconditonal jump
811       j++;
812       break;
813     }
814     if(dops[i+j].itype==SYSCALL||dops[i+j].itype==HLECALL||dops[i+j].itype==INTCALL||((source[i+j]&0xfc00003f)==0x0d))
815     {
816       break;
817     }
818   }
819   for(;j>=1;j--)
820   {
821     if(dops[i+j].rs1==r) rn=j;
822     if(dops[i+j].rs2==r) rn=j;
823     if((unneeded_reg[i+j]>>r)&1) rn=10;
824     if(i+j>=0&&(dops[i+j].itype==UJUMP||dops[i+j].itype==CJUMP||dops[i+j].itype==SJUMP))
825     {
826       b=j;
827     }
828   }
829   if(rn<10) return 1;
830   (void)b;
831   return 0;
832 }
833
834 // Try to match register allocations at the end of a loop with those
835 // at the beginning
836 int loop_reg(int i, int r, int hr)
837 {
838   int j,k;
839   for(j=0;j<9;j++)
840   {
841     if(i+j>=slen) {
842       j=slen-i-1;
843       break;
844     }
845     if (dops[i+j].is_ujump)
846     {
847       // Don't go past an unconditonal jump
848       j++;
849       break;
850     }
851   }
852   k=0;
853   if(i>0){
854     if(dops[i-1].itype==UJUMP||dops[i-1].itype==CJUMP||dops[i-1].itype==SJUMP)
855       k--;
856   }
857   for(;k<j;k++)
858   {
859     assert(r < 64);
860     if((unneeded_reg[i+k]>>r)&1) return hr;
861     if(i+k>=0&&(dops[i+k].itype==UJUMP||dops[i+k].itype==CJUMP||dops[i+k].itype==SJUMP))
862     {
863       if(ba[i+k]>=start && ba[i+k]<(start+i*4))
864       {
865         int t=(ba[i+k]-start)>>2;
866         int reg=get_reg(regs[t].regmap_entry,r);
867         if(reg>=0) return reg;
868         //reg=get_reg(regs[t+1].regmap_entry,r);
869         //if(reg>=0) return reg;
870       }
871     }
872   }
873   return hr;
874 }
875
876
877 // Allocate every register, preserving source/target regs
878 void alloc_all(struct regstat *cur,int i)
879 {
880   int hr;
881
882   for(hr=0;hr<HOST_REGS;hr++) {
883     if(hr!=EXCLUDE_REG) {
884       if(((cur->regmap[hr]&63)!=dops[i].rs1)&&((cur->regmap[hr]&63)!=dops[i].rs2)&&
885          ((cur->regmap[hr]&63)!=dops[i].rt1)&&((cur->regmap[hr]&63)!=dops[i].rt2))
886       {
887         cur->regmap[hr]=-1;
888         cur->dirty&=~(1<<hr);
889       }
890       // Don't need zeros
891       if((cur->regmap[hr]&63)==0)
892       {
893         cur->regmap[hr]=-1;
894         cur->dirty&=~(1<<hr);
895       }
896     }
897   }
898 }
899
900 #ifndef NDEBUG
901 static int host_tempreg_in_use;
902
903 static void host_tempreg_acquire(void)
904 {
905   assert(!host_tempreg_in_use);
906   host_tempreg_in_use = 1;
907 }
908
909 static void host_tempreg_release(void)
910 {
911   host_tempreg_in_use = 0;
912 }
913 #else
914 static void host_tempreg_acquire(void) {}
915 static void host_tempreg_release(void) {}
916 #endif
917
918 #ifdef ASSEM_PRINT
919 extern void gen_interupt();
920 extern void do_insn_cmp();
921 #define FUNCNAME(f) { f, " " #f }
922 static const struct {
923   void *addr;
924   const char *name;
925 } function_names[] = {
926   FUNCNAME(cc_interrupt),
927   FUNCNAME(gen_interupt),
928   FUNCNAME(get_addr_ht),
929   FUNCNAME(get_addr),
930   FUNCNAME(jump_handler_read8),
931   FUNCNAME(jump_handler_read16),
932   FUNCNAME(jump_handler_read32),
933   FUNCNAME(jump_handler_write8),
934   FUNCNAME(jump_handler_write16),
935   FUNCNAME(jump_handler_write32),
936   FUNCNAME(invalidate_addr),
937   FUNCNAME(jump_to_new_pc),
938   FUNCNAME(jump_break),
939   FUNCNAME(jump_break_ds),
940   FUNCNAME(jump_syscall),
941   FUNCNAME(jump_syscall_ds),
942   FUNCNAME(call_gteStall),
943   FUNCNAME(new_dyna_leave),
944   FUNCNAME(pcsx_mtc0),
945   FUNCNAME(pcsx_mtc0_ds),
946 #ifdef DRC_DBG
947   FUNCNAME(do_insn_cmp),
948 #endif
949 #ifdef __arm__
950   FUNCNAME(verify_code),
951 #endif
952 };
953
954 static const char *func_name(const void *a)
955 {
956   int i;
957   for (i = 0; i < sizeof(function_names)/sizeof(function_names[0]); i++)
958     if (function_names[i].addr == a)
959       return function_names[i].name;
960   return "";
961 }
962 #else
963 #define func_name(x) ""
964 #endif
965
966 #ifdef __i386__
967 #include "assem_x86.c"
968 #endif
969 #ifdef __x86_64__
970 #include "assem_x64.c"
971 #endif
972 #ifdef __arm__
973 #include "assem_arm.c"
974 #endif
975 #ifdef __aarch64__
976 #include "assem_arm64.c"
977 #endif
978
979 static void *get_trampoline(const void *f)
980 {
981   size_t i;
982
983   for (i = 0; i < ARRAY_SIZE(ndrc->tramp.f); i++) {
984     if (ndrc->tramp.f[i] == f || ndrc->tramp.f[i] == NULL)
985       break;
986   }
987   if (i == ARRAY_SIZE(ndrc->tramp.f)) {
988     SysPrintf("trampoline table is full, last func %p\n", f);
989     abort();
990   }
991   if (ndrc->tramp.f[i] == NULL) {
992     start_tcache_write(&ndrc->tramp.f[i], &ndrc->tramp.f[i + 1]);
993     ndrc->tramp.f[i] = f;
994     end_tcache_write(&ndrc->tramp.f[i], &ndrc->tramp.f[i + 1]);
995   }
996   return &ndrc->tramp.ops[i];
997 }
998
999 static void emit_far_jump(const void *f)
1000 {
1001   if (can_jump_or_call(f)) {
1002     emit_jmp(f);
1003     return;
1004   }
1005
1006   f = get_trampoline(f);
1007   emit_jmp(f);
1008 }
1009
1010 static void emit_far_call(const void *f)
1011 {
1012   if (can_jump_or_call(f)) {
1013     emit_call(f);
1014     return;
1015   }
1016
1017   f = get_trampoline(f);
1018   emit_call(f);
1019 }
1020
1021 // Add virtual address mapping to linked list
1022 void ll_add(struct ll_entry **head,int vaddr,void *addr)
1023 {
1024   struct ll_entry *new_entry;
1025   new_entry=malloc(sizeof(struct ll_entry));
1026   assert(new_entry!=NULL);
1027   new_entry->vaddr=vaddr;
1028   new_entry->reg_sv_flags=0;
1029   new_entry->addr=addr;
1030   new_entry->next=*head;
1031   *head=new_entry;
1032 }
1033
1034 void ll_add_flags(struct ll_entry **head,int vaddr,u_int reg_sv_flags,void *addr)
1035 {
1036   ll_add(head,vaddr,addr);
1037   (*head)->reg_sv_flags=reg_sv_flags;
1038 }
1039
1040 // Check if an address is already compiled
1041 // but don't return addresses which are about to expire from the cache
1042 void *check_addr(u_int vaddr)
1043 {
1044   struct ht_entry *ht_bin = hash_table_get(vaddr);
1045   size_t i;
1046   for (i = 0; i < ARRAY_SIZE(ht_bin->vaddr); i++) {
1047     if (ht_bin->vaddr[i] == vaddr)
1048       if (doesnt_expire_soon((u_char *)ht_bin->tcaddr[i] - MAX_OUTPUT_BLOCK_SIZE))
1049         if (isclean(ht_bin->tcaddr[i]))
1050           return ht_bin->tcaddr[i];
1051   }
1052   u_int page=get_page(vaddr);
1053   struct ll_entry *head;
1054   head=jump_in[page];
1055   while (head != NULL) {
1056     if (head->vaddr == vaddr) {
1057       if (doesnt_expire_soon(head->addr)) {
1058         // Update existing entry with current address
1059         if (ht_bin->vaddr[0] == vaddr) {
1060           ht_bin->tcaddr[0] = head->addr;
1061           return head->addr;
1062         }
1063         if (ht_bin->vaddr[1] == vaddr) {
1064           ht_bin->tcaddr[1] = head->addr;
1065           return head->addr;
1066         }
1067         // Insert into hash table with low priority.
1068         // Don't evict existing entries, as they are probably
1069         // addresses that are being accessed frequently.
1070         if (ht_bin->vaddr[0] == -1) {
1071           ht_bin->vaddr[0] = vaddr;
1072           ht_bin->tcaddr[0] = head->addr;
1073         }
1074         else if (ht_bin->vaddr[1] == -1) {
1075           ht_bin->vaddr[1] = vaddr;
1076           ht_bin->tcaddr[1] = head->addr;
1077         }
1078         return head->addr;
1079       }
1080     }
1081     head=head->next;
1082   }
1083   return 0;
1084 }
1085
1086 void remove_hash(int vaddr)
1087 {
1088   //printf("remove hash: %x\n",vaddr);
1089   struct ht_entry *ht_bin = hash_table_get(vaddr);
1090   if (ht_bin->vaddr[1] == vaddr) {
1091     ht_bin->vaddr[1] = -1;
1092     ht_bin->tcaddr[1] = NULL;
1093   }
1094   if (ht_bin->vaddr[0] == vaddr) {
1095     ht_bin->vaddr[0] = ht_bin->vaddr[1];
1096     ht_bin->tcaddr[0] = ht_bin->tcaddr[1];
1097     ht_bin->vaddr[1] = -1;
1098     ht_bin->tcaddr[1] = NULL;
1099   }
1100 }
1101
1102 static void ll_remove_matching_addrs(struct ll_entry **head,
1103   uintptr_t base_offs_s, int shift)
1104 {
1105   struct ll_entry *next;
1106   while(*head) {
1107     uintptr_t o1 = (u_char *)(*head)->addr - ndrc->translation_cache;
1108     uintptr_t o2 = o1 - MAX_OUTPUT_BLOCK_SIZE;
1109     if ((o1 >> shift) == base_offs_s || (o2 >> shift) == base_offs_s)
1110     {
1111       inv_debug("EXP: Remove pointer to %p (%x)\n",(*head)->addr,(*head)->vaddr);
1112       remove_hash((*head)->vaddr);
1113       next=(*head)->next;
1114       free(*head);
1115       *head=next;
1116     }
1117     else
1118     {
1119       head=&((*head)->next);
1120     }
1121   }
1122 }
1123
1124 // Remove all entries from linked list
1125 void ll_clear(struct ll_entry **head)
1126 {
1127   struct ll_entry *cur;
1128   struct ll_entry *next;
1129   if((cur=*head)) {
1130     *head=0;
1131     while(cur) {
1132       next=cur->next;
1133       free(cur);
1134       cur=next;
1135     }
1136   }
1137 }
1138
1139 // Dereference the pointers and remove if it matches
1140 static void ll_kill_pointers(struct ll_entry *head,
1141   uintptr_t base_offs_s, int shift)
1142 {
1143   while(head) {
1144     u_char *ptr = get_pointer(head->addr);
1145     uintptr_t o1 = ptr - ndrc->translation_cache;
1146     uintptr_t o2 = o1 - MAX_OUTPUT_BLOCK_SIZE;
1147     inv_debug("EXP: Lookup pointer to %p at %p (%x)\n",ptr,head->addr,head->vaddr);
1148     if ((o1 >> shift) == base_offs_s || (o2 >> shift) == base_offs_s)
1149     {
1150       inv_debug("EXP: Kill pointer at %p (%x)\n",head->addr,head->vaddr);
1151       void *host_addr=find_extjump_insn(head->addr);
1152       mark_clear_cache(host_addr);
1153       set_jump_target(host_addr, head->addr);
1154     }
1155     head=head->next;
1156   }
1157 }
1158
1159 // This is called when we write to a compiled block (see do_invstub)
1160 static void invalidate_page(u_int page)
1161 {
1162   struct ll_entry *head;
1163   struct ll_entry *next;
1164   head=jump_in[page];
1165   jump_in[page]=0;
1166   while(head!=NULL) {
1167     inv_debug("INVALIDATE: %x\n",head->vaddr);
1168     remove_hash(head->vaddr);
1169     next=head->next;
1170     free(head);
1171     head=next;
1172   }
1173   head=jump_out[page];
1174   jump_out[page]=0;
1175   while(head!=NULL) {
1176     inv_debug("INVALIDATE: kill pointer to %x (%p)\n",head->vaddr,head->addr);
1177     void *host_addr=find_extjump_insn(head->addr);
1178     mark_clear_cache(host_addr);
1179     set_jump_target(host_addr, head->addr); // point back to dyna_linker
1180     next=head->next;
1181     free(head);
1182     head=next;
1183   }
1184 }
1185
1186 static void invalidate_block_range(u_int block, u_int first, u_int last)
1187 {
1188   u_int page=get_page(block<<12);
1189   //printf("first=%d last=%d\n",first,last);
1190   invalidate_page(page);
1191   assert(first+5>page); // NB: this assumes MAXBLOCK<=4096 (4 pages)
1192   assert(last<page+5);
1193   // Invalidate the adjacent pages if a block crosses a 4K boundary
1194   while(first<page) {
1195     invalidate_page(first);
1196     first++;
1197   }
1198   for(first=page+1;first<last;first++) {
1199     invalidate_page(first);
1200   }
1201   do_clear_cache();
1202
1203   // Don't trap writes
1204   invalid_code[block]=1;
1205
1206   #ifdef USE_MINI_HT
1207   memset(mini_ht,-1,sizeof(mini_ht));
1208   #endif
1209 }
1210
1211 void invalidate_block(u_int block)
1212 {
1213   u_int page=get_page(block<<12);
1214   u_int vpage=get_vpage(block<<12);
1215   inv_debug("INVALIDATE: %x (%d)\n",block<<12,page);
1216   //inv_debug("invalid_code[block]=%d\n",invalid_code[block]);
1217   u_int first,last;
1218   first=last=page;
1219   struct ll_entry *head;
1220   head=jump_dirty[vpage];
1221   //printf("page=%d vpage=%d\n",page,vpage);
1222   while(head!=NULL) {
1223     if(vpage>2047||(head->vaddr>>12)==block) { // Ignore vaddr hash collision
1224       u_char *start, *end;
1225       get_bounds(head->addr, &start, &end);
1226       //printf("start: %p end: %p\n", start, end);
1227       if (page < 2048 && start >= rdram && end < rdram+RAM_SIZE) {
1228         if (((start-rdram)>>12) <= page && ((end-1-rdram)>>12) >= page) {
1229           if ((((start-rdram)>>12)&2047) < first) first = ((start-rdram)>>12)&2047;
1230           if ((((end-1-rdram)>>12)&2047) > last)  last = ((end-1-rdram)>>12)&2047;
1231         }
1232       }
1233     }
1234     head=head->next;
1235   }
1236   invalidate_block_range(block,first,last);
1237 }
1238
1239 void invalidate_addr(u_int addr)
1240 {
1241   //static int rhits;
1242   // this check is done by the caller
1243   //if (inv_code_start<=addr&&addr<=inv_code_end) { rhits++; return; }
1244   u_int page=get_vpage(addr);
1245   if(page<2048) { // RAM
1246     struct ll_entry *head;
1247     u_int addr_min=~0, addr_max=0;
1248     u_int mask=RAM_SIZE-1;
1249     u_int addr_main=0x80000000|(addr&mask);
1250     int pg1;
1251     inv_code_start=addr_main&~0xfff;
1252     inv_code_end=addr_main|0xfff;
1253     pg1=page;
1254     if (pg1>0) {
1255       // must check previous page too because of spans..
1256       pg1--;
1257       inv_code_start-=0x1000;
1258     }
1259     for(;pg1<=page;pg1++) {
1260       for(head=jump_dirty[pg1];head!=NULL;head=head->next) {
1261         u_char *start_h, *end_h;
1262         u_int start, end;
1263         get_bounds(head->addr, &start_h, &end_h);
1264         start = (uintptr_t)start_h - ram_offset;
1265         end = (uintptr_t)end_h - ram_offset;
1266         if(start<=addr_main&&addr_main<end) {
1267           if(start<addr_min) addr_min=start;
1268           if(end>addr_max) addr_max=end;
1269         }
1270         else if(addr_main<start) {
1271           if(start<inv_code_end)
1272             inv_code_end=start-1;
1273         }
1274         else {
1275           if(end>inv_code_start)
1276             inv_code_start=end;
1277         }
1278       }
1279     }
1280     if (addr_min!=~0) {
1281       inv_debug("INV ADDR: %08x hit %08x-%08x\n", addr, addr_min, addr_max);
1282       inv_code_start=inv_code_end=~0;
1283       invalidate_block_range(addr>>12,(addr_min&mask)>>12,(addr_max&mask)>>12);
1284       return;
1285     }
1286     else {
1287       inv_code_start=(addr&~mask)|(inv_code_start&mask);
1288       inv_code_end=(addr&~mask)|(inv_code_end&mask);
1289       inv_debug("INV ADDR: %08x miss, inv %08x-%08x, sk %d\n", addr, inv_code_start, inv_code_end, 0);
1290       return;
1291     }
1292   }
1293   invalidate_block(addr>>12);
1294 }
1295
1296 // This is called when loading a save state.
1297 // Anything could have changed, so invalidate everything.
1298 void invalidate_all_pages(void)
1299 {
1300   u_int page;
1301   for(page=0;page<4096;page++)
1302     invalidate_page(page);
1303   for(page=0;page<1048576;page++)
1304     if(!invalid_code[page]) {
1305       restore_candidate[(page&2047)>>3]|=1<<(page&7);
1306       restore_candidate[((page&2047)>>3)+256]|=1<<(page&7);
1307     }
1308   #ifdef USE_MINI_HT
1309   memset(mini_ht,-1,sizeof(mini_ht));
1310   #endif
1311   do_clear_cache();
1312 }
1313
1314 static void do_invstub(int n)
1315 {
1316   literal_pool(20);
1317   u_int reglist=stubs[n].a;
1318   set_jump_target(stubs[n].addr, out);
1319   save_regs(reglist);
1320   if(stubs[n].b!=0) emit_mov(stubs[n].b,0);
1321   emit_far_call(invalidate_addr);
1322   restore_regs(reglist);
1323   emit_jmp(stubs[n].retaddr); // return address
1324 }
1325
1326 // Add an entry to jump_out after making a link
1327 // src should point to code by emit_extjump2()
1328 void add_jump_out(u_int vaddr,void *src)
1329 {
1330   u_int page=get_page(vaddr);
1331   inv_debug("add_jump_out: %p -> %x (%d)\n",src,vaddr,page);
1332   check_extjump2(src);
1333   ll_add(jump_out+page,vaddr,src);
1334   //inv_debug("add_jump_out:  to %p\n",get_pointer(src));
1335 }
1336
1337 // If a code block was found to be unmodified (bit was set in
1338 // restore_candidate) and it remains unmodified (bit is clear
1339 // in invalid_code) then move the entries for that 4K page from
1340 // the dirty list to the clean list.
1341 void clean_blocks(u_int page)
1342 {
1343   struct ll_entry *head;
1344   inv_debug("INV: clean_blocks page=%d\n",page);
1345   head=jump_dirty[page];
1346   while(head!=NULL) {
1347     if(!invalid_code[head->vaddr>>12]) {
1348       // Don't restore blocks which are about to expire from the cache
1349       if (doesnt_expire_soon(head->addr)) {
1350         if(verify_dirty(head->addr)) {
1351           u_char *start, *end;
1352           //printf("Possibly Restore %x (%p)\n",head->vaddr, head->addr);
1353           u_int i;
1354           u_int inv=0;
1355           get_bounds(head->addr, &start, &end);
1356           if (start - rdram < RAM_SIZE) {
1357             for (i = (start-rdram+0x80000000)>>12; i <= (end-1-rdram+0x80000000)>>12; i++) {
1358               inv|=invalid_code[i];
1359             }
1360           }
1361           else if((signed int)head->vaddr>=(signed int)0x80000000+RAM_SIZE) {
1362             inv=1;
1363           }
1364           if(!inv) {
1365             void *clean_addr = get_clean_addr(head->addr);
1366             if (doesnt_expire_soon(clean_addr)) {
1367               u_int ppage=page;
1368               inv_debug("INV: Restored %x (%p/%p)\n",head->vaddr, head->addr, clean_addr);
1369               //printf("page=%x, addr=%x\n",page,head->vaddr);
1370               //assert(head->vaddr>>12==(page|0x80000));
1371               ll_add_flags(jump_in+ppage,head->vaddr,head->reg_sv_flags,clean_addr);
1372               struct ht_entry *ht_bin = hash_table_get(head->vaddr);
1373               if (ht_bin->vaddr[0] == head->vaddr)
1374                 ht_bin->tcaddr[0] = clean_addr; // Replace existing entry
1375               if (ht_bin->vaddr[1] == head->vaddr)
1376                 ht_bin->tcaddr[1] = clean_addr; // Replace existing entry
1377             }
1378           }
1379         }
1380       }
1381     }
1382     head=head->next;
1383   }
1384 }
1385
1386 /* Register allocation */
1387
1388 // Note: registers are allocated clean (unmodified state)
1389 // if you intend to modify the register, you must call dirty_reg().
1390 static void alloc_reg(struct regstat *cur,int i,signed char reg)
1391 {
1392   int r,hr;
1393   int preferred_reg = PREFERRED_REG_FIRST
1394     + reg % (PREFERRED_REG_LAST - PREFERRED_REG_FIRST + 1);
1395   if (reg == CCREG) preferred_reg = HOST_CCREG;
1396   if (reg == PTEMP || reg == FTEMP) preferred_reg = 12;
1397   assert(PREFERRED_REG_FIRST != EXCLUDE_REG && EXCLUDE_REG != HOST_REGS);
1398
1399   // Don't allocate unused registers
1400   if((cur->u>>reg)&1) return;
1401
1402   // see if it's already allocated
1403   for(hr=0;hr<HOST_REGS;hr++)
1404   {
1405     if(cur->regmap[hr]==reg) return;
1406   }
1407
1408   // Keep the same mapping if the register was already allocated in a loop
1409   preferred_reg = loop_reg(i,reg,preferred_reg);
1410
1411   // Try to allocate the preferred register
1412   if(cur->regmap[preferred_reg]==-1) {
1413     cur->regmap[preferred_reg]=reg;
1414     cur->dirty&=~(1<<preferred_reg);
1415     cur->isconst&=~(1<<preferred_reg);
1416     return;
1417   }
1418   r=cur->regmap[preferred_reg];
1419   assert(r < 64);
1420   if((cur->u>>r)&1) {
1421     cur->regmap[preferred_reg]=reg;
1422     cur->dirty&=~(1<<preferred_reg);
1423     cur->isconst&=~(1<<preferred_reg);
1424     return;
1425   }
1426
1427   // Clear any unneeded registers
1428   // We try to keep the mapping consistent, if possible, because it
1429   // makes branches easier (especially loops).  So we try to allocate
1430   // first (see above) before removing old mappings.  If this is not
1431   // possible then go ahead and clear out the registers that are no
1432   // longer needed.
1433   for(hr=0;hr<HOST_REGS;hr++)
1434   {
1435     r=cur->regmap[hr];
1436     if(r>=0) {
1437       assert(r < 64);
1438       if((cur->u>>r)&1) {cur->regmap[hr]=-1;break;}
1439     }
1440   }
1441
1442   // Try to allocate any available register, but prefer
1443   // registers that have not been used recently.
1444   if (i > 0) {
1445     for (hr = PREFERRED_REG_FIRST; ; ) {
1446       if (cur->regmap[hr] < 0) {
1447         int oldreg = regs[i-1].regmap[hr];
1448         if (oldreg < 0 || (oldreg != dops[i-1].rs1 && oldreg != dops[i-1].rs2
1449              && oldreg != dops[i-1].rt1 && oldreg != dops[i-1].rt2))
1450         {
1451           cur->regmap[hr]=reg;
1452           cur->dirty&=~(1<<hr);
1453           cur->isconst&=~(1<<hr);
1454           return;
1455         }
1456       }
1457       hr++;
1458       if (hr == EXCLUDE_REG)
1459         hr++;
1460       if (hr == HOST_REGS)
1461         hr = 0;
1462       if (hr == PREFERRED_REG_FIRST)
1463         break;
1464     }
1465   }
1466
1467   // Try to allocate any available register
1468   for (hr = PREFERRED_REG_FIRST; ; ) {
1469     if (cur->regmap[hr] < 0) {
1470       cur->regmap[hr]=reg;
1471       cur->dirty&=~(1<<hr);
1472       cur->isconst&=~(1<<hr);
1473       return;
1474     }
1475     hr++;
1476     if (hr == EXCLUDE_REG)
1477       hr++;
1478     if (hr == HOST_REGS)
1479       hr = 0;
1480     if (hr == PREFERRED_REG_FIRST)
1481       break;
1482   }
1483
1484   // Ok, now we have to evict someone
1485   // Pick a register we hopefully won't need soon
1486   u_char hsn[MAXREG+1];
1487   memset(hsn,10,sizeof(hsn));
1488   int j;
1489   lsn(hsn,i,&preferred_reg);
1490   //printf("eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",cur->regmap[0],cur->regmap[1],cur->regmap[2],cur->regmap[3],cur->regmap[5],cur->regmap[6],cur->regmap[7]);
1491   //printf("hsn(%x): %d %d %d %d %d %d %d\n",start+i*4,hsn[cur->regmap[0]&63],hsn[cur->regmap[1]&63],hsn[cur->regmap[2]&63],hsn[cur->regmap[3]&63],hsn[cur->regmap[5]&63],hsn[cur->regmap[6]&63],hsn[cur->regmap[7]&63]);
1492   if(i>0) {
1493     // Don't evict the cycle count at entry points, otherwise the entry
1494     // stub will have to write it.
1495     if(dops[i].bt&&hsn[CCREG]>2) hsn[CCREG]=2;
1496     if (i>1 && hsn[CCREG] > 2 && dops[i-2].is_jump) hsn[CCREG]=2;
1497     for(j=10;j>=3;j--)
1498     {
1499       // Alloc preferred register if available
1500       if(hsn[r=cur->regmap[preferred_reg]&63]==j) {
1501         for(hr=0;hr<HOST_REGS;hr++) {
1502           // Evict both parts of a 64-bit register
1503           if((cur->regmap[hr]&63)==r) {
1504             cur->regmap[hr]=-1;
1505             cur->dirty&=~(1<<hr);
1506             cur->isconst&=~(1<<hr);
1507           }
1508         }
1509         cur->regmap[preferred_reg]=reg;
1510         return;
1511       }
1512       for(r=1;r<=MAXREG;r++)
1513       {
1514         if(hsn[r]==j&&r!=dops[i-1].rs1&&r!=dops[i-1].rs2&&r!=dops[i-1].rt1&&r!=dops[i-1].rt2) {
1515           for(hr=0;hr<HOST_REGS;hr++) {
1516             if(hr!=HOST_CCREG||j<hsn[CCREG]) {
1517               if(cur->regmap[hr]==r) {
1518                 cur->regmap[hr]=reg;
1519                 cur->dirty&=~(1<<hr);
1520                 cur->isconst&=~(1<<hr);
1521                 return;
1522               }
1523             }
1524           }
1525         }
1526       }
1527     }
1528   }
1529   for(j=10;j>=0;j--)
1530   {
1531     for(r=1;r<=MAXREG;r++)
1532     {
1533       if(hsn[r]==j) {
1534         for(hr=0;hr<HOST_REGS;hr++) {
1535           if(cur->regmap[hr]==r) {
1536             cur->regmap[hr]=reg;
1537             cur->dirty&=~(1<<hr);
1538             cur->isconst&=~(1<<hr);
1539             return;
1540           }
1541         }
1542       }
1543     }
1544   }
1545   SysPrintf("This shouldn't happen (alloc_reg)");abort();
1546 }
1547
1548 // Allocate a temporary register.  This is done without regard to
1549 // dirty status or whether the register we request is on the unneeded list
1550 // Note: This will only allocate one register, even if called multiple times
1551 static void alloc_reg_temp(struct regstat *cur,int i,signed char reg)
1552 {
1553   int r,hr;
1554   int preferred_reg = -1;
1555
1556   // see if it's already allocated
1557   for(hr=0;hr<HOST_REGS;hr++)
1558   {
1559     if(hr!=EXCLUDE_REG&&cur->regmap[hr]==reg) return;
1560   }
1561
1562   // Try to allocate any available register
1563   for(hr=HOST_REGS-1;hr>=0;hr--) {
1564     if(hr!=EXCLUDE_REG&&cur->regmap[hr]==-1) {
1565       cur->regmap[hr]=reg;
1566       cur->dirty&=~(1<<hr);
1567       cur->isconst&=~(1<<hr);
1568       return;
1569     }
1570   }
1571
1572   // Find an unneeded register
1573   for(hr=HOST_REGS-1;hr>=0;hr--)
1574   {
1575     r=cur->regmap[hr];
1576     if(r>=0) {
1577       assert(r < 64);
1578       if((cur->u>>r)&1) {
1579         if(i==0||((unneeded_reg[i-1]>>r)&1)) {
1580           cur->regmap[hr]=reg;
1581           cur->dirty&=~(1<<hr);
1582           cur->isconst&=~(1<<hr);
1583           return;
1584         }
1585       }
1586     }
1587   }
1588
1589   // Ok, now we have to evict someone
1590   // Pick a register we hopefully won't need soon
1591   // TODO: we might want to follow unconditional jumps here
1592   // TODO: get rid of dupe code and make this into a function
1593   u_char hsn[MAXREG+1];
1594   memset(hsn,10,sizeof(hsn));
1595   int j;
1596   lsn(hsn,i,&preferred_reg);
1597   //printf("hsn: %d %d %d %d %d %d %d\n",hsn[cur->regmap[0]&63],hsn[cur->regmap[1]&63],hsn[cur->regmap[2]&63],hsn[cur->regmap[3]&63],hsn[cur->regmap[5]&63],hsn[cur->regmap[6]&63],hsn[cur->regmap[7]&63]);
1598   if(i>0) {
1599     // Don't evict the cycle count at entry points, otherwise the entry
1600     // stub will have to write it.
1601     if(dops[i].bt&&hsn[CCREG]>2) hsn[CCREG]=2;
1602     if (i>1 && hsn[CCREG] > 2 && dops[i-2].is_jump) hsn[CCREG]=2;
1603     for(j=10;j>=3;j--)
1604     {
1605       for(r=1;r<=MAXREG;r++)
1606       {
1607         if(hsn[r]==j&&r!=dops[i-1].rs1&&r!=dops[i-1].rs2&&r!=dops[i-1].rt1&&r!=dops[i-1].rt2) {
1608           for(hr=0;hr<HOST_REGS;hr++) {
1609             if(hr!=HOST_CCREG||hsn[CCREG]>2) {
1610               if(cur->regmap[hr]==r) {
1611                 cur->regmap[hr]=reg;
1612                 cur->dirty&=~(1<<hr);
1613                 cur->isconst&=~(1<<hr);
1614                 return;
1615               }
1616             }
1617           }
1618         }
1619       }
1620     }
1621   }
1622   for(j=10;j>=0;j--)
1623   {
1624     for(r=1;r<=MAXREG;r++)
1625     {
1626       if(hsn[r]==j) {
1627         for(hr=0;hr<HOST_REGS;hr++) {
1628           if(cur->regmap[hr]==r) {
1629             cur->regmap[hr]=reg;
1630             cur->dirty&=~(1<<hr);
1631             cur->isconst&=~(1<<hr);
1632             return;
1633           }
1634         }
1635       }
1636     }
1637   }
1638   SysPrintf("This shouldn't happen");abort();
1639 }
1640
1641 static void mov_alloc(struct regstat *current,int i)
1642 {
1643   if (dops[i].rs1 == HIREG || dops[i].rs1 == LOREG) {
1644     alloc_cc(current,i); // for stalls
1645     dirty_reg(current,CCREG);
1646   }
1647
1648   // Note: Don't need to actually alloc the source registers
1649   //alloc_reg(current,i,dops[i].rs1);
1650   alloc_reg(current,i,dops[i].rt1);
1651
1652   clear_const(current,dops[i].rs1);
1653   clear_const(current,dops[i].rt1);
1654   dirty_reg(current,dops[i].rt1);
1655 }
1656
1657 static void shiftimm_alloc(struct regstat *current,int i)
1658 {
1659   if(dops[i].opcode2<=0x3) // SLL/SRL/SRA
1660   {
1661     if(dops[i].rt1) {
1662       if(dops[i].rs1&&needed_again(dops[i].rs1,i)) alloc_reg(current,i,dops[i].rs1);
1663       else dops[i].lt1=dops[i].rs1;
1664       alloc_reg(current,i,dops[i].rt1);
1665       dirty_reg(current,dops[i].rt1);
1666       if(is_const(current,dops[i].rs1)) {
1667         int v=get_const(current,dops[i].rs1);
1668         if(dops[i].opcode2==0x00) set_const(current,dops[i].rt1,v<<imm[i]);
1669         if(dops[i].opcode2==0x02) set_const(current,dops[i].rt1,(u_int)v>>imm[i]);
1670         if(dops[i].opcode2==0x03) set_const(current,dops[i].rt1,v>>imm[i]);
1671       }
1672       else clear_const(current,dops[i].rt1);
1673     }
1674   }
1675   else
1676   {
1677     clear_const(current,dops[i].rs1);
1678     clear_const(current,dops[i].rt1);
1679   }
1680
1681   if(dops[i].opcode2>=0x38&&dops[i].opcode2<=0x3b) // DSLL/DSRL/DSRA
1682   {
1683     assert(0);
1684   }
1685   if(dops[i].opcode2==0x3c) // DSLL32
1686   {
1687     assert(0);
1688   }
1689   if(dops[i].opcode2==0x3e) // DSRL32
1690   {
1691     assert(0);
1692   }
1693   if(dops[i].opcode2==0x3f) // DSRA32
1694   {
1695     assert(0);
1696   }
1697 }
1698
1699 static void shift_alloc(struct regstat *current,int i)
1700 {
1701   if(dops[i].rt1) {
1702     if(dops[i].opcode2<=0x07) // SLLV/SRLV/SRAV
1703     {
1704       if(dops[i].rs1) alloc_reg(current,i,dops[i].rs1);
1705       if(dops[i].rs2) alloc_reg(current,i,dops[i].rs2);
1706       alloc_reg(current,i,dops[i].rt1);
1707       if(dops[i].rt1==dops[i].rs2) {
1708         alloc_reg_temp(current,i,-1);
1709         minimum_free_regs[i]=1;
1710       }
1711     } else { // DSLLV/DSRLV/DSRAV
1712       assert(0);
1713     }
1714     clear_const(current,dops[i].rs1);
1715     clear_const(current,dops[i].rs2);
1716     clear_const(current,dops[i].rt1);
1717     dirty_reg(current,dops[i].rt1);
1718   }
1719 }
1720
1721 static void alu_alloc(struct regstat *current,int i)
1722 {
1723   if(dops[i].opcode2>=0x20&&dops[i].opcode2<=0x23) { // ADD/ADDU/SUB/SUBU
1724     if(dops[i].rt1) {
1725       if(dops[i].rs1&&dops[i].rs2) {
1726         alloc_reg(current,i,dops[i].rs1);
1727         alloc_reg(current,i,dops[i].rs2);
1728       }
1729       else {
1730         if(dops[i].rs1&&needed_again(dops[i].rs1,i)) alloc_reg(current,i,dops[i].rs1);
1731         if(dops[i].rs2&&needed_again(dops[i].rs2,i)) alloc_reg(current,i,dops[i].rs2);
1732       }
1733       alloc_reg(current,i,dops[i].rt1);
1734     }
1735   }
1736   if(dops[i].opcode2==0x2a||dops[i].opcode2==0x2b) { // SLT/SLTU
1737     if(dops[i].rt1) {
1738       alloc_reg(current,i,dops[i].rs1);
1739       alloc_reg(current,i,dops[i].rs2);
1740       alloc_reg(current,i,dops[i].rt1);
1741     }
1742   }
1743   if(dops[i].opcode2>=0x24&&dops[i].opcode2<=0x27) { // AND/OR/XOR/NOR
1744     if(dops[i].rt1) {
1745       if(dops[i].rs1&&dops[i].rs2) {
1746         alloc_reg(current,i,dops[i].rs1);
1747         alloc_reg(current,i,dops[i].rs2);
1748       }
1749       else
1750       {
1751         if(dops[i].rs1&&needed_again(dops[i].rs1,i)) alloc_reg(current,i,dops[i].rs1);
1752         if(dops[i].rs2&&needed_again(dops[i].rs2,i)) alloc_reg(current,i,dops[i].rs2);
1753       }
1754       alloc_reg(current,i,dops[i].rt1);
1755     }
1756   }
1757   if(dops[i].opcode2>=0x2c&&dops[i].opcode2<=0x2f) { // DADD/DADDU/DSUB/DSUBU
1758     assert(0);
1759   }
1760   clear_const(current,dops[i].rs1);
1761   clear_const(current,dops[i].rs2);
1762   clear_const(current,dops[i].rt1);
1763   dirty_reg(current,dops[i].rt1);
1764 }
1765
1766 static void imm16_alloc(struct regstat *current,int i)
1767 {
1768   if(dops[i].rs1&&needed_again(dops[i].rs1,i)) alloc_reg(current,i,dops[i].rs1);
1769   else dops[i].lt1=dops[i].rs1;
1770   if(dops[i].rt1) alloc_reg(current,i,dops[i].rt1);
1771   if(dops[i].opcode==0x18||dops[i].opcode==0x19) { // DADDI/DADDIU
1772     assert(0);
1773   }
1774   else if(dops[i].opcode==0x0a||dops[i].opcode==0x0b) { // SLTI/SLTIU
1775     clear_const(current,dops[i].rs1);
1776     clear_const(current,dops[i].rt1);
1777   }
1778   else if(dops[i].opcode>=0x0c&&dops[i].opcode<=0x0e) { // ANDI/ORI/XORI
1779     if(is_const(current,dops[i].rs1)) {
1780       int v=get_const(current,dops[i].rs1);
1781       if(dops[i].opcode==0x0c) set_const(current,dops[i].rt1,v&imm[i]);
1782       if(dops[i].opcode==0x0d) set_const(current,dops[i].rt1,v|imm[i]);
1783       if(dops[i].opcode==0x0e) set_const(current,dops[i].rt1,v^imm[i]);
1784     }
1785     else clear_const(current,dops[i].rt1);
1786   }
1787   else if(dops[i].opcode==0x08||dops[i].opcode==0x09) { // ADDI/ADDIU
1788     if(is_const(current,dops[i].rs1)) {
1789       int v=get_const(current,dops[i].rs1);
1790       set_const(current,dops[i].rt1,v+imm[i]);
1791     }
1792     else clear_const(current,dops[i].rt1);
1793   }
1794   else {
1795     set_const(current,dops[i].rt1,imm[i]<<16); // LUI
1796   }
1797   dirty_reg(current,dops[i].rt1);
1798 }
1799
1800 static void load_alloc(struct regstat *current,int i)
1801 {
1802   clear_const(current,dops[i].rt1);
1803   //if(dops[i].rs1!=dops[i].rt1&&needed_again(dops[i].rs1,i)) clear_const(current,dops[i].rs1); // Does this help or hurt?
1804   if(!dops[i].rs1) current->u&=~1LL; // Allow allocating r0 if it's the source register
1805   if (needed_again(dops[i].rs1, i))
1806     alloc_reg(current, i, dops[i].rs1);
1807   if (ram_offset)
1808     alloc_reg(current, i, ROREG);
1809   if(dops[i].rt1&&!((current->u>>dops[i].rt1)&1)) {
1810     alloc_reg(current,i,dops[i].rt1);
1811     assert(get_reg(current->regmap,dops[i].rt1)>=0);
1812     if(dops[i].opcode==0x27||dops[i].opcode==0x37) // LWU/LD
1813     {
1814       assert(0);
1815     }
1816     else if(dops[i].opcode==0x1A||dops[i].opcode==0x1B) // LDL/LDR
1817     {
1818       assert(0);
1819     }
1820     dirty_reg(current,dops[i].rt1);
1821     // LWL/LWR need a temporary register for the old value
1822     if(dops[i].opcode==0x22||dops[i].opcode==0x26)
1823     {
1824       alloc_reg(current,i,FTEMP);
1825       alloc_reg_temp(current,i,-1);
1826       minimum_free_regs[i]=1;
1827     }
1828   }
1829   else
1830   {
1831     // Load to r0 or unneeded register (dummy load)
1832     // but we still need a register to calculate the address
1833     if(dops[i].opcode==0x22||dops[i].opcode==0x26)
1834     {
1835       alloc_reg(current,i,FTEMP); // LWL/LWR need another temporary
1836     }
1837     alloc_reg_temp(current,i,-1);
1838     minimum_free_regs[i]=1;
1839     if(dops[i].opcode==0x1A||dops[i].opcode==0x1B) // LDL/LDR
1840     {
1841       assert(0);
1842     }
1843   }
1844 }
1845
1846 void store_alloc(struct regstat *current,int i)
1847 {
1848   clear_const(current,dops[i].rs2);
1849   if(!(dops[i].rs2)) current->u&=~1LL; // Allow allocating r0 if necessary
1850   if(needed_again(dops[i].rs1,i)) alloc_reg(current,i,dops[i].rs1);
1851   alloc_reg(current,i,dops[i].rs2);
1852   if(dops[i].opcode==0x2c||dops[i].opcode==0x2d||dops[i].opcode==0x3f) { // 64-bit SDL/SDR/SD
1853     assert(0);
1854   }
1855   if (ram_offset)
1856     alloc_reg(current, i, ROREG);
1857   #if defined(HOST_IMM8)
1858   // On CPUs without 32-bit immediates we need a pointer to invalid_code
1859   alloc_reg(current, i, INVCP);
1860   #endif
1861   if(dops[i].opcode==0x2a||dops[i].opcode==0x2e||dops[i].opcode==0x2c||dops[i].opcode==0x2d) { // SWL/SWL/SDL/SDR
1862     alloc_reg(current,i,FTEMP);
1863   }
1864   // We need a temporary register for address generation
1865   alloc_reg_temp(current,i,-1);
1866   minimum_free_regs[i]=1;
1867 }
1868
1869 void c1ls_alloc(struct regstat *current,int i)
1870 {
1871   clear_const(current,dops[i].rt1);
1872   alloc_reg(current,i,CSREG); // Status
1873 }
1874
1875 void c2ls_alloc(struct regstat *current,int i)
1876 {
1877   clear_const(current,dops[i].rt1);
1878   if(needed_again(dops[i].rs1,i)) alloc_reg(current,i,dops[i].rs1);
1879   alloc_reg(current,i,FTEMP);
1880   if (ram_offset)
1881     alloc_reg(current, i, ROREG);
1882   #if defined(HOST_IMM8)
1883   // On CPUs without 32-bit immediates we need a pointer to invalid_code
1884   if (dops[i].opcode == 0x3a) // SWC2
1885     alloc_reg(current,i,INVCP);
1886   #endif
1887   // We need a temporary register for address generation
1888   alloc_reg_temp(current,i,-1);
1889   minimum_free_regs[i]=1;
1890 }
1891
1892 #ifndef multdiv_alloc
1893 void multdiv_alloc(struct regstat *current,int i)
1894 {
1895   //  case 0x18: MULT
1896   //  case 0x19: MULTU
1897   //  case 0x1A: DIV
1898   //  case 0x1B: DIVU
1899   //  case 0x1C: DMULT
1900   //  case 0x1D: DMULTU
1901   //  case 0x1E: DDIV
1902   //  case 0x1F: DDIVU
1903   clear_const(current,dops[i].rs1);
1904   clear_const(current,dops[i].rs2);
1905   alloc_cc(current,i); // for stalls
1906   if(dops[i].rs1&&dops[i].rs2)
1907   {
1908     if((dops[i].opcode2&4)==0) // 32-bit
1909     {
1910       current->u&=~(1LL<<HIREG);
1911       current->u&=~(1LL<<LOREG);
1912       alloc_reg(current,i,HIREG);
1913       alloc_reg(current,i,LOREG);
1914       alloc_reg(current,i,dops[i].rs1);
1915       alloc_reg(current,i,dops[i].rs2);
1916       dirty_reg(current,HIREG);
1917       dirty_reg(current,LOREG);
1918     }
1919     else // 64-bit
1920     {
1921       assert(0);
1922     }
1923   }
1924   else
1925   {
1926     // Multiply by zero is zero.
1927     // MIPS does not have a divide by zero exception.
1928     // The result is undefined, we return zero.
1929     alloc_reg(current,i,HIREG);
1930     alloc_reg(current,i,LOREG);
1931     dirty_reg(current,HIREG);
1932     dirty_reg(current,LOREG);
1933   }
1934 }
1935 #endif
1936
1937 void cop0_alloc(struct regstat *current,int i)
1938 {
1939   if(dops[i].opcode2==0) // MFC0
1940   {
1941     if(dops[i].rt1) {
1942       clear_const(current,dops[i].rt1);
1943       alloc_all(current,i);
1944       alloc_reg(current,i,dops[i].rt1);
1945       dirty_reg(current,dops[i].rt1);
1946     }
1947   }
1948   else if(dops[i].opcode2==4) // MTC0
1949   {
1950     if(dops[i].rs1){
1951       clear_const(current,dops[i].rs1);
1952       alloc_reg(current,i,dops[i].rs1);
1953       alloc_all(current,i);
1954     }
1955     else {
1956       alloc_all(current,i); // FIXME: Keep r0
1957       current->u&=~1LL;
1958       alloc_reg(current,i,0);
1959     }
1960   }
1961   else
1962   {
1963     // TLBR/TLBWI/TLBWR/TLBP/ERET
1964     assert(dops[i].opcode2==0x10);
1965     alloc_all(current,i);
1966   }
1967   minimum_free_regs[i]=HOST_REGS;
1968 }
1969
1970 static void cop2_alloc(struct regstat *current,int i)
1971 {
1972   if (dops[i].opcode2 < 3) // MFC2/CFC2
1973   {
1974     alloc_cc(current,i); // for stalls
1975     dirty_reg(current,CCREG);
1976     if(dops[i].rt1){
1977       clear_const(current,dops[i].rt1);
1978       alloc_reg(current,i,dops[i].rt1);
1979       dirty_reg(current,dops[i].rt1);
1980     }
1981   }
1982   else if (dops[i].opcode2 > 3) // MTC2/CTC2
1983   {
1984     if(dops[i].rs1){
1985       clear_const(current,dops[i].rs1);
1986       alloc_reg(current,i,dops[i].rs1);
1987     }
1988     else {
1989       current->u&=~1LL;
1990       alloc_reg(current,i,0);
1991     }
1992   }
1993   alloc_reg_temp(current,i,-1);
1994   minimum_free_regs[i]=1;
1995 }
1996
1997 void c2op_alloc(struct regstat *current,int i)
1998 {
1999   alloc_cc(current,i); // for stalls
2000   dirty_reg(current,CCREG);
2001   alloc_reg_temp(current,i,-1);
2002 }
2003
2004 void syscall_alloc(struct regstat *current,int i)
2005 {
2006   alloc_cc(current,i);
2007   dirty_reg(current,CCREG);
2008   alloc_all(current,i);
2009   minimum_free_regs[i]=HOST_REGS;
2010   current->isconst=0;
2011 }
2012
2013 void delayslot_alloc(struct regstat *current,int i)
2014 {
2015   switch(dops[i].itype) {
2016     case UJUMP:
2017     case CJUMP:
2018     case SJUMP:
2019     case RJUMP:
2020     case SYSCALL:
2021     case HLECALL:
2022     case SPAN:
2023       assem_debug("jump in the delay slot.  this shouldn't happen.\n");//abort();
2024       SysPrintf("Disabled speculative precompilation\n");
2025       stop_after_jal=1;
2026       break;
2027     case IMM16:
2028       imm16_alloc(current,i);
2029       break;
2030     case LOAD:
2031     case LOADLR:
2032       load_alloc(current,i);
2033       break;
2034     case STORE:
2035     case STORELR:
2036       store_alloc(current,i);
2037       break;
2038     case ALU:
2039       alu_alloc(current,i);
2040       break;
2041     case SHIFT:
2042       shift_alloc(current,i);
2043       break;
2044     case MULTDIV:
2045       multdiv_alloc(current,i);
2046       break;
2047     case SHIFTIMM:
2048       shiftimm_alloc(current,i);
2049       break;
2050     case MOV:
2051       mov_alloc(current,i);
2052       break;
2053     case COP0:
2054       cop0_alloc(current,i);
2055       break;
2056     case COP1:
2057       break;
2058     case COP2:
2059       cop2_alloc(current,i);
2060       break;
2061     case C1LS:
2062       c1ls_alloc(current,i);
2063       break;
2064     case C2LS:
2065       c2ls_alloc(current,i);
2066       break;
2067     case C2OP:
2068       c2op_alloc(current,i);
2069       break;
2070   }
2071 }
2072
2073 // Special case where a branch and delay slot span two pages in virtual memory
2074 static void pagespan_alloc(struct regstat *current,int i)
2075 {
2076   current->isconst=0;
2077   current->wasconst=0;
2078   regs[i].wasconst=0;
2079   minimum_free_regs[i]=HOST_REGS;
2080   alloc_all(current,i);
2081   alloc_cc(current,i);
2082   dirty_reg(current,CCREG);
2083   if(dops[i].opcode==3) // JAL
2084   {
2085     alloc_reg(current,i,31);
2086     dirty_reg(current,31);
2087   }
2088   if(dops[i].opcode==0&&(dops[i].opcode2&0x3E)==8) // JR/JALR
2089   {
2090     alloc_reg(current,i,dops[i].rs1);
2091     if (dops[i].rt1!=0) {
2092       alloc_reg(current,i,dops[i].rt1);
2093       dirty_reg(current,dops[i].rt1);
2094     }
2095   }
2096   if((dops[i].opcode&0x2E)==4) // BEQ/BNE/BEQL/BNEL
2097   {
2098     if(dops[i].rs1) alloc_reg(current,i,dops[i].rs1);
2099     if(dops[i].rs2) alloc_reg(current,i,dops[i].rs2);
2100   }
2101   else
2102   if((dops[i].opcode&0x2E)==6) // BLEZ/BGTZ/BLEZL/BGTZL
2103   {
2104     if(dops[i].rs1) alloc_reg(current,i,dops[i].rs1);
2105   }
2106   //else ...
2107 }
2108
2109 static void add_stub(enum stub_type type, void *addr, void *retaddr,
2110   u_int a, uintptr_t b, uintptr_t c, u_int d, u_int e)
2111 {
2112   assert(stubcount < ARRAY_SIZE(stubs));
2113   stubs[stubcount].type = type;
2114   stubs[stubcount].addr = addr;
2115   stubs[stubcount].retaddr = retaddr;
2116   stubs[stubcount].a = a;
2117   stubs[stubcount].b = b;
2118   stubs[stubcount].c = c;
2119   stubs[stubcount].d = d;
2120   stubs[stubcount].e = e;
2121   stubcount++;
2122 }
2123
2124 static void add_stub_r(enum stub_type type, void *addr, void *retaddr,
2125   int i, int addr_reg, const struct regstat *i_regs, int ccadj, u_int reglist)
2126 {
2127   add_stub(type, addr, retaddr, i, addr_reg, (uintptr_t)i_regs, ccadj, reglist);
2128 }
2129
2130 // Write out a single register
2131 static void wb_register(signed char r, const signed char regmap[], uint64_t dirty)
2132 {
2133   int hr;
2134   for(hr=0;hr<HOST_REGS;hr++) {
2135     if(hr!=EXCLUDE_REG) {
2136       if((regmap[hr]&63)==r) {
2137         if((dirty>>hr)&1) {
2138           assert(regmap[hr]<64);
2139           emit_storereg(r,hr);
2140         }
2141       }
2142     }
2143   }
2144 }
2145
2146 static void wb_valid(signed char pre[],signed char entry[],u_int dirty_pre,u_int dirty,uint64_t u)
2147 {
2148   //if(dirty_pre==dirty) return;
2149   int hr,reg;
2150   for(hr=0;hr<HOST_REGS;hr++) {
2151     if(hr!=EXCLUDE_REG) {
2152       reg=pre[hr];
2153       if(((~u)>>(reg&63))&1) {
2154         if(reg>0) {
2155           if(((dirty_pre&~dirty)>>hr)&1) {
2156             if(reg>0&&reg<34) {
2157               emit_storereg(reg,hr);
2158             }
2159             else if(reg>=64) {
2160               assert(0);
2161             }
2162           }
2163         }
2164       }
2165     }
2166   }
2167 }
2168
2169 // trashes r2
2170 static void pass_args(int a0, int a1)
2171 {
2172   if(a0==1&&a1==0) {
2173     // must swap
2174     emit_mov(a0,2); emit_mov(a1,1); emit_mov(2,0);
2175   }
2176   else if(a0!=0&&a1==0) {
2177     emit_mov(a1,1);
2178     if (a0>=0) emit_mov(a0,0);
2179   }
2180   else {
2181     if(a0>=0&&a0!=0) emit_mov(a0,0);
2182     if(a1>=0&&a1!=1) emit_mov(a1,1);
2183   }
2184 }
2185
2186 static void alu_assemble(int i, const struct regstat *i_regs)
2187 {
2188   if(dops[i].opcode2>=0x20&&dops[i].opcode2<=0x23) { // ADD/ADDU/SUB/SUBU
2189     if(dops[i].rt1) {
2190       signed char s1,s2,t;
2191       t=get_reg(i_regs->regmap,dops[i].rt1);
2192       if(t>=0) {
2193         s1=get_reg(i_regs->regmap,dops[i].rs1);
2194         s2=get_reg(i_regs->regmap,dops[i].rs2);
2195         if(dops[i].rs1&&dops[i].rs2) {
2196           assert(s1>=0);
2197           assert(s2>=0);
2198           if(dops[i].opcode2&2) emit_sub(s1,s2,t);
2199           else emit_add(s1,s2,t);
2200         }
2201         else if(dops[i].rs1) {
2202           if(s1>=0) emit_mov(s1,t);
2203           else emit_loadreg(dops[i].rs1,t);
2204         }
2205         else if(dops[i].rs2) {
2206           if(s2>=0) {
2207             if(dops[i].opcode2&2) emit_neg(s2,t);
2208             else emit_mov(s2,t);
2209           }
2210           else {
2211             emit_loadreg(dops[i].rs2,t);
2212             if(dops[i].opcode2&2) emit_neg(t,t);
2213           }
2214         }
2215         else emit_zeroreg(t);
2216       }
2217     }
2218   }
2219   if(dops[i].opcode2>=0x2c&&dops[i].opcode2<=0x2f) { // DADD/DADDU/DSUB/DSUBU
2220     assert(0);
2221   }
2222   if(dops[i].opcode2==0x2a||dops[i].opcode2==0x2b) { // SLT/SLTU
2223     if(dops[i].rt1) {
2224       signed char s1l,s2l,t;
2225       {
2226         t=get_reg(i_regs->regmap,dops[i].rt1);
2227         //assert(t>=0);
2228         if(t>=0) {
2229           s1l=get_reg(i_regs->regmap,dops[i].rs1);
2230           s2l=get_reg(i_regs->regmap,dops[i].rs2);
2231           if(dops[i].rs2==0) // rx<r0
2232           {
2233             if(dops[i].opcode2==0x2a&&dops[i].rs1!=0) { // SLT
2234               assert(s1l>=0);
2235               emit_shrimm(s1l,31,t);
2236             }
2237             else // SLTU (unsigned can not be less than zero, 0<0)
2238               emit_zeroreg(t);
2239           }
2240           else if(dops[i].rs1==0) // r0<rx
2241           {
2242             assert(s2l>=0);
2243             if(dops[i].opcode2==0x2a) // SLT
2244               emit_set_gz32(s2l,t);
2245             else // SLTU (set if not zero)
2246               emit_set_nz32(s2l,t);
2247           }
2248           else{
2249             assert(s1l>=0);assert(s2l>=0);
2250             if(dops[i].opcode2==0x2a) // SLT
2251               emit_set_if_less32(s1l,s2l,t);
2252             else // SLTU
2253               emit_set_if_carry32(s1l,s2l,t);
2254           }
2255         }
2256       }
2257     }
2258   }
2259   if(dops[i].opcode2>=0x24&&dops[i].opcode2<=0x27) { // AND/OR/XOR/NOR
2260     if(dops[i].rt1) {
2261       signed char s1l,s2l,tl;
2262       tl=get_reg(i_regs->regmap,dops[i].rt1);
2263       {
2264         if(tl>=0) {
2265           s1l=get_reg(i_regs->regmap,dops[i].rs1);
2266           s2l=get_reg(i_regs->regmap,dops[i].rs2);
2267           if(dops[i].rs1&&dops[i].rs2) {
2268             assert(s1l>=0);
2269             assert(s2l>=0);
2270             if(dops[i].opcode2==0x24) { // AND
2271               emit_and(s1l,s2l,tl);
2272             } else
2273             if(dops[i].opcode2==0x25) { // OR
2274               emit_or(s1l,s2l,tl);
2275             } else
2276             if(dops[i].opcode2==0x26) { // XOR
2277               emit_xor(s1l,s2l,tl);
2278             } else
2279             if(dops[i].opcode2==0x27) { // NOR
2280               emit_or(s1l,s2l,tl);
2281               emit_not(tl,tl);
2282             }
2283           }
2284           else
2285           {
2286             if(dops[i].opcode2==0x24) { // AND
2287               emit_zeroreg(tl);
2288             } else
2289             if(dops[i].opcode2==0x25||dops[i].opcode2==0x26) { // OR/XOR
2290               if(dops[i].rs1){
2291                 if(s1l>=0) emit_mov(s1l,tl);
2292                 else emit_loadreg(dops[i].rs1,tl); // CHECK: regmap_entry?
2293               }
2294               else
2295               if(dops[i].rs2){
2296                 if(s2l>=0) emit_mov(s2l,tl);
2297                 else emit_loadreg(dops[i].rs2,tl); // CHECK: regmap_entry?
2298               }
2299               else emit_zeroreg(tl);
2300             } else
2301             if(dops[i].opcode2==0x27) { // NOR
2302               if(dops[i].rs1){
2303                 if(s1l>=0) emit_not(s1l,tl);
2304                 else {
2305                   emit_loadreg(dops[i].rs1,tl);
2306                   emit_not(tl,tl);
2307                 }
2308               }
2309               else
2310               if(dops[i].rs2){
2311                 if(s2l>=0) emit_not(s2l,tl);
2312                 else {
2313                   emit_loadreg(dops[i].rs2,tl);
2314                   emit_not(tl,tl);
2315                 }
2316               }
2317               else emit_movimm(-1,tl);
2318             }
2319           }
2320         }
2321       }
2322     }
2323   }
2324 }
2325
2326 static void imm16_assemble(int i, const struct regstat *i_regs)
2327 {
2328   if (dops[i].opcode==0x0f) { // LUI
2329     if(dops[i].rt1) {
2330       signed char t;
2331       t=get_reg(i_regs->regmap,dops[i].rt1);
2332       //assert(t>=0);
2333       if(t>=0) {
2334         if(!((i_regs->isconst>>t)&1))
2335           emit_movimm(imm[i]<<16,t);
2336       }
2337     }
2338   }
2339   if(dops[i].opcode==0x08||dops[i].opcode==0x09) { // ADDI/ADDIU
2340     if(dops[i].rt1) {
2341       signed char s,t;
2342       t=get_reg(i_regs->regmap,dops[i].rt1);
2343       s=get_reg(i_regs->regmap,dops[i].rs1);
2344       if(dops[i].rs1) {
2345         //assert(t>=0);
2346         //assert(s>=0);
2347         if(t>=0) {
2348           if(!((i_regs->isconst>>t)&1)) {
2349             if(s<0) {
2350               if(i_regs->regmap_entry[t]!=dops[i].rs1) emit_loadreg(dops[i].rs1,t);
2351               emit_addimm(t,imm[i],t);
2352             }else{
2353               if(!((i_regs->wasconst>>s)&1))
2354                 emit_addimm(s,imm[i],t);
2355               else
2356                 emit_movimm(constmap[i][s]+imm[i],t);
2357             }
2358           }
2359         }
2360       } else {
2361         if(t>=0) {
2362           if(!((i_regs->isconst>>t)&1))
2363             emit_movimm(imm[i],t);
2364         }
2365       }
2366     }
2367   }
2368   if(dops[i].opcode==0x18||dops[i].opcode==0x19) { // DADDI/DADDIU
2369     if(dops[i].rt1) {
2370       signed char sl,tl;
2371       tl=get_reg(i_regs->regmap,dops[i].rt1);
2372       sl=get_reg(i_regs->regmap,dops[i].rs1);
2373       if(tl>=0) {
2374         if(dops[i].rs1) {
2375           assert(sl>=0);
2376           emit_addimm(sl,imm[i],tl);
2377         } else {
2378           emit_movimm(imm[i],tl);
2379         }
2380       }
2381     }
2382   }
2383   else if(dops[i].opcode==0x0a||dops[i].opcode==0x0b) { // SLTI/SLTIU
2384     if(dops[i].rt1) {
2385       //assert(dops[i].rs1!=0); // r0 might be valid, but it's probably a bug
2386       signed char sl,t;
2387       t=get_reg(i_regs->regmap,dops[i].rt1);
2388       sl=get_reg(i_regs->regmap,dops[i].rs1);
2389       //assert(t>=0);
2390       if(t>=0) {
2391         if(dops[i].rs1>0) {
2392             if(dops[i].opcode==0x0a) { // SLTI
2393               if(sl<0) {
2394                 if(i_regs->regmap_entry[t]!=dops[i].rs1) emit_loadreg(dops[i].rs1,t);
2395                 emit_slti32(t,imm[i],t);
2396               }else{
2397                 emit_slti32(sl,imm[i],t);
2398               }
2399             }
2400             else { // SLTIU
2401               if(sl<0) {
2402                 if(i_regs->regmap_entry[t]!=dops[i].rs1) emit_loadreg(dops[i].rs1,t);
2403                 emit_sltiu32(t,imm[i],t);
2404               }else{
2405                 emit_sltiu32(sl,imm[i],t);
2406               }
2407             }
2408         }else{
2409           // SLTI(U) with r0 is just stupid,
2410           // nonetheless examples can be found
2411           if(dops[i].opcode==0x0a) // SLTI
2412             if(0<imm[i]) emit_movimm(1,t);
2413             else emit_zeroreg(t);
2414           else // SLTIU
2415           {
2416             if(imm[i]) emit_movimm(1,t);
2417             else emit_zeroreg(t);
2418           }
2419         }
2420       }
2421     }
2422   }
2423   else if(dops[i].opcode>=0x0c&&dops[i].opcode<=0x0e) { // ANDI/ORI/XORI
2424     if(dops[i].rt1) {
2425       signed char sl,tl;
2426       tl=get_reg(i_regs->regmap,dops[i].rt1);
2427       sl=get_reg(i_regs->regmap,dops[i].rs1);
2428       if(tl>=0 && !((i_regs->isconst>>tl)&1)) {
2429         if(dops[i].opcode==0x0c) //ANDI
2430         {
2431           if(dops[i].rs1) {
2432             if(sl<0) {
2433               if(i_regs->regmap_entry[tl]!=dops[i].rs1) emit_loadreg(dops[i].rs1,tl);
2434               emit_andimm(tl,imm[i],tl);
2435             }else{
2436               if(!((i_regs->wasconst>>sl)&1))
2437                 emit_andimm(sl,imm[i],tl);
2438               else
2439                 emit_movimm(constmap[i][sl]&imm[i],tl);
2440             }
2441           }
2442           else
2443             emit_zeroreg(tl);
2444         }
2445         else
2446         {
2447           if(dops[i].rs1) {
2448             if(sl<0) {
2449               if(i_regs->regmap_entry[tl]!=dops[i].rs1) emit_loadreg(dops[i].rs1,tl);
2450             }
2451             if(dops[i].opcode==0x0d) { // ORI
2452               if(sl<0) {
2453                 emit_orimm(tl,imm[i],tl);
2454               }else{
2455                 if(!((i_regs->wasconst>>sl)&1))
2456                   emit_orimm(sl,imm[i],tl);
2457                 else
2458                   emit_movimm(constmap[i][sl]|imm[i],tl);
2459               }
2460             }
2461             if(dops[i].opcode==0x0e) { // XORI
2462               if(sl<0) {
2463                 emit_xorimm(tl,imm[i],tl);
2464               }else{
2465                 if(!((i_regs->wasconst>>sl)&1))
2466                   emit_xorimm(sl,imm[i],tl);
2467                 else
2468                   emit_movimm(constmap[i][sl]^imm[i],tl);
2469               }
2470             }
2471           }
2472           else {
2473             emit_movimm(imm[i],tl);
2474           }
2475         }
2476       }
2477     }
2478   }
2479 }
2480
2481 static void shiftimm_assemble(int i, const struct regstat *i_regs)
2482 {
2483   if(dops[i].opcode2<=0x3) // SLL/SRL/SRA
2484   {
2485     if(dops[i].rt1) {
2486       signed char s,t;
2487       t=get_reg(i_regs->regmap,dops[i].rt1);
2488       s=get_reg(i_regs->regmap,dops[i].rs1);
2489       //assert(t>=0);
2490       if(t>=0&&!((i_regs->isconst>>t)&1)){
2491         if(dops[i].rs1==0)
2492         {
2493           emit_zeroreg(t);
2494         }
2495         else
2496         {
2497           if(s<0&&i_regs->regmap_entry[t]!=dops[i].rs1) emit_loadreg(dops[i].rs1,t);
2498           if(imm[i]) {
2499             if(dops[i].opcode2==0) // SLL
2500             {
2501               emit_shlimm(s<0?t:s,imm[i],t);
2502             }
2503             if(dops[i].opcode2==2) // SRL
2504             {
2505               emit_shrimm(s<0?t:s,imm[i],t);
2506             }
2507             if(dops[i].opcode2==3) // SRA
2508             {
2509               emit_sarimm(s<0?t:s,imm[i],t);
2510             }
2511           }else{
2512             // Shift by zero
2513             if(s>=0 && s!=t) emit_mov(s,t);
2514           }
2515         }
2516       }
2517       //emit_storereg(dops[i].rt1,t); //DEBUG
2518     }
2519   }
2520   if(dops[i].opcode2>=0x38&&dops[i].opcode2<=0x3b) // DSLL/DSRL/DSRA
2521   {
2522     assert(0);
2523   }
2524   if(dops[i].opcode2==0x3c) // DSLL32
2525   {
2526     assert(0);
2527   }
2528   if(dops[i].opcode2==0x3e) // DSRL32
2529   {
2530     assert(0);
2531   }
2532   if(dops[i].opcode2==0x3f) // DSRA32
2533   {
2534     assert(0);
2535   }
2536 }
2537
2538 #ifndef shift_assemble
2539 static void shift_assemble(int i, const struct regstat *i_regs)
2540 {
2541   signed char s,t,shift;
2542   if (dops[i].rt1 == 0)
2543     return;
2544   assert(dops[i].opcode2<=0x07); // SLLV/SRLV/SRAV
2545   t = get_reg(i_regs->regmap, dops[i].rt1);
2546   s = get_reg(i_regs->regmap, dops[i].rs1);
2547   shift = get_reg(i_regs->regmap, dops[i].rs2);
2548   if (t < 0)
2549     return;
2550
2551   if(dops[i].rs1==0)
2552     emit_zeroreg(t);
2553   else if(dops[i].rs2==0) {
2554     assert(s>=0);
2555     if(s!=t) emit_mov(s,t);
2556   }
2557   else {
2558     host_tempreg_acquire();
2559     emit_andimm(shift,31,HOST_TEMPREG);
2560     switch(dops[i].opcode2) {
2561     case 4: // SLLV
2562       emit_shl(s,HOST_TEMPREG,t);
2563       break;
2564     case 6: // SRLV
2565       emit_shr(s,HOST_TEMPREG,t);
2566       break;
2567     case 7: // SRAV
2568       emit_sar(s,HOST_TEMPREG,t);
2569       break;
2570     default:
2571       assert(0);
2572     }
2573     host_tempreg_release();
2574   }
2575 }
2576
2577 #endif
2578
2579 enum {
2580   MTYPE_8000 = 0,
2581   MTYPE_8020,
2582   MTYPE_0000,
2583   MTYPE_A000,
2584   MTYPE_1F80,
2585 };
2586
2587 static int get_ptr_mem_type(u_int a)
2588 {
2589   if(a < 0x00200000) {
2590     if(a<0x1000&&((start>>20)==0xbfc||(start>>24)==0xa0))
2591       // return wrong, must use memhandler for BIOS self-test to pass
2592       // 007 does similar stuff from a00 mirror, weird stuff
2593       return MTYPE_8000;
2594     return MTYPE_0000;
2595   }
2596   if(0x1f800000 <= a && a < 0x1f801000)
2597     return MTYPE_1F80;
2598   if(0x80200000 <= a && a < 0x80800000)
2599     return MTYPE_8020;
2600   if(0xa0000000 <= a && a < 0xa0200000)
2601     return MTYPE_A000;
2602   return MTYPE_8000;
2603 }
2604
2605 static int get_ro_reg(const struct regstat *i_regs, int host_tempreg_free)
2606 {
2607   int r = get_reg(i_regs->regmap, ROREG);
2608   if (r < 0 && host_tempreg_free) {
2609     host_tempreg_acquire();
2610     emit_loadreg(ROREG, r = HOST_TEMPREG);
2611   }
2612   if (r < 0)
2613     abort();
2614   return r;
2615 }
2616
2617 static void *emit_fastpath_cmp_jump(int i, const struct regstat *i_regs,
2618   int addr, int *offset_reg, int *addr_reg_override)
2619 {
2620   void *jaddr = NULL;
2621   int type = 0;
2622   int mr = dops[i].rs1;
2623   *offset_reg = -1;
2624   if(((smrv_strong|smrv_weak)>>mr)&1) {
2625     type=get_ptr_mem_type(smrv[mr]);
2626     //printf("set %08x @%08x r%d %d\n", smrv[mr], start+i*4, mr, type);
2627   }
2628   else {
2629     // use the mirror we are running on
2630     type=get_ptr_mem_type(start);
2631     //printf("set nospec   @%08x r%d %d\n", start+i*4, mr, type);
2632   }
2633
2634   if(type==MTYPE_8020) { // RAM 80200000+ mirror
2635     host_tempreg_acquire();
2636     emit_andimm(addr,~0x00e00000,HOST_TEMPREG);
2637     addr=*addr_reg_override=HOST_TEMPREG;
2638     type=0;
2639   }
2640   else if(type==MTYPE_0000) { // RAM 0 mirror
2641     host_tempreg_acquire();
2642     emit_orimm(addr,0x80000000,HOST_TEMPREG);
2643     addr=*addr_reg_override=HOST_TEMPREG;
2644     type=0;
2645   }
2646   else if(type==MTYPE_A000) { // RAM A mirror
2647     host_tempreg_acquire();
2648     emit_andimm(addr,~0x20000000,HOST_TEMPREG);
2649     addr=*addr_reg_override=HOST_TEMPREG;
2650     type=0;
2651   }
2652   else if(type==MTYPE_1F80) { // scratchpad
2653     if (psxH == (void *)0x1f800000) {
2654       host_tempreg_acquire();
2655       emit_xorimm(addr,0x1f800000,HOST_TEMPREG);
2656       emit_cmpimm(HOST_TEMPREG,0x1000);
2657       host_tempreg_release();
2658       jaddr=out;
2659       emit_jc(0);
2660     }
2661     else {
2662       // do the usual RAM check, jump will go to the right handler
2663       type=0;
2664     }
2665   }
2666
2667   if (type == 0) // need ram check
2668   {
2669     emit_cmpimm(addr,RAM_SIZE);
2670     jaddr = out;
2671     #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
2672     // Hint to branch predictor that the branch is unlikely to be taken
2673     if (dops[i].rs1 >= 28)
2674       emit_jno_unlikely(0);
2675     else
2676     #endif
2677       emit_jno(0);
2678     if (ram_offset != 0)
2679       *offset_reg = get_ro_reg(i_regs, 0);
2680   }
2681
2682   return jaddr;
2683 }
2684
2685 // return memhandler, or get directly accessable address and return 0
2686 static void *get_direct_memhandler(void *table, u_int addr,
2687   enum stub_type type, uintptr_t *addr_host)
2688 {
2689   uintptr_t msb = 1ull << (sizeof(uintptr_t)*8 - 1);
2690   uintptr_t l1, l2 = 0;
2691   l1 = ((uintptr_t *)table)[addr>>12];
2692   if (!(l1 & msb)) {
2693     uintptr_t v = l1 << 1;
2694     *addr_host = v + addr;
2695     return NULL;
2696   }
2697   else {
2698     l1 <<= 1;
2699     if (type == LOADB_STUB || type == LOADBU_STUB || type == STOREB_STUB)
2700       l2 = ((uintptr_t *)l1)[0x1000/4 + 0x1000/2 + (addr&0xfff)];
2701     else if (type == LOADH_STUB || type == LOADHU_STUB || type == STOREH_STUB)
2702       l2 = ((uintptr_t *)l1)[0x1000/4 + (addr&0xfff)/2];
2703     else
2704       l2 = ((uintptr_t *)l1)[(addr&0xfff)/4];
2705     if (!(l2 & msb)) {
2706       uintptr_t v = l2 << 1;
2707       *addr_host = v + (addr&0xfff);
2708       return NULL;
2709     }
2710     return (void *)(l2 << 1);
2711   }
2712 }
2713
2714 static u_int get_host_reglist(const signed char *regmap)
2715 {
2716   u_int reglist = 0, hr;
2717   for (hr = 0; hr < HOST_REGS; hr++) {
2718     if (hr != EXCLUDE_REG && regmap[hr] >= 0)
2719       reglist |= 1 << hr;
2720   }
2721   return reglist;
2722 }
2723
2724 static u_int reglist_exclude(u_int reglist, int r1, int r2)
2725 {
2726   if (r1 >= 0)
2727     reglist &= ~(1u << r1);
2728   if (r2 >= 0)
2729     reglist &= ~(1u << r2);
2730   return reglist;
2731 }
2732
2733 // find a temp caller-saved register not in reglist (so assumed to be free)
2734 static int reglist_find_free(u_int reglist)
2735 {
2736   u_int free_regs = ~reglist & CALLER_SAVE_REGS;
2737   if (free_regs == 0)
2738     return -1;
2739   return __builtin_ctz(free_regs);
2740 }
2741
2742 static void do_load_word(int a, int rt, int offset_reg)
2743 {
2744   if (offset_reg >= 0)
2745     emit_ldr_dualindexed(offset_reg, a, rt);
2746   else
2747     emit_readword_indexed(0, a, rt);
2748 }
2749
2750 static void do_store_word(int a, int ofs, int rt, int offset_reg, int preseve_a)
2751 {
2752   if (offset_reg < 0) {
2753     emit_writeword_indexed(rt, ofs, a);
2754     return;
2755   }
2756   if (ofs != 0)
2757     emit_addimm(a, ofs, a);
2758   emit_str_dualindexed(offset_reg, a, rt);
2759   if (ofs != 0 && preseve_a)
2760     emit_addimm(a, -ofs, a);
2761 }
2762
2763 static void do_store_hword(int a, int ofs, int rt, int offset_reg, int preseve_a)
2764 {
2765   if (offset_reg < 0) {
2766     emit_writehword_indexed(rt, ofs, a);
2767     return;
2768   }
2769   if (ofs != 0)
2770     emit_addimm(a, ofs, a);
2771   emit_strh_dualindexed(offset_reg, a, rt);
2772   if (ofs != 0 && preseve_a)
2773     emit_addimm(a, -ofs, a);
2774 }
2775
2776 static void do_store_byte(int a, int rt, int offset_reg)
2777 {
2778   if (offset_reg >= 0)
2779     emit_strb_dualindexed(offset_reg, a, rt);
2780   else
2781     emit_writebyte_indexed(rt, 0, a);
2782 }
2783
2784 static void load_assemble(int i, const struct regstat *i_regs, int ccadj_)
2785 {
2786   int s,tl,addr;
2787   int offset;
2788   void *jaddr=0;
2789   int memtarget=0,c=0;
2790   int offset_reg = -1;
2791   int fastio_reg_override = -1;
2792   u_int reglist=get_host_reglist(i_regs->regmap);
2793   tl=get_reg(i_regs->regmap,dops[i].rt1);
2794   s=get_reg(i_regs->regmap,dops[i].rs1);
2795   offset=imm[i];
2796   if(i_regs->regmap[HOST_CCREG]==CCREG) reglist&=~(1<<HOST_CCREG);
2797   if(s>=0) {
2798     c=(i_regs->wasconst>>s)&1;
2799     if (c) {
2800       memtarget=((signed int)(constmap[i][s]+offset))<(signed int)0x80000000+RAM_SIZE;
2801     }
2802   }
2803   //printf("load_assemble: c=%d\n",c);
2804   //if(c) printf("load_assemble: const=%lx\n",(long)constmap[i][s]+offset);
2805   // FIXME: Even if the load is a NOP, we should check for pagefaults...
2806   if((tl<0&&(!c||(((u_int)constmap[i][s]+offset)>>16)==0x1f80))
2807     ||dops[i].rt1==0) {
2808       // could be FIFO, must perform the read
2809       // ||dummy read
2810       assem_debug("(forced read)\n");
2811       tl=get_reg(i_regs->regmap,-1);
2812       assert(tl>=0);
2813   }
2814   if(offset||s<0||c) addr=tl;
2815   else addr=s;
2816   //if(tl<0) tl=get_reg(i_regs->regmap,-1);
2817  if(tl>=0) {
2818   //printf("load_assemble: c=%d\n",c);
2819   //if(c) printf("load_assemble: const=%lx\n",(long)constmap[i][s]+offset);
2820   assert(tl>=0); // Even if the load is a NOP, we must check for pagefaults and I/O
2821   reglist&=~(1<<tl);
2822   if(!c) {
2823     #ifdef R29_HACK
2824     // Strmnnrmn's speed hack
2825     if(dops[i].rs1!=29||start<0x80001000||start>=0x80000000+RAM_SIZE)
2826     #endif
2827     {
2828       jaddr = emit_fastpath_cmp_jump(i, i_regs, addr,
2829                 &offset_reg, &fastio_reg_override);
2830     }
2831   }
2832   else if (ram_offset && memtarget) {
2833     offset_reg = get_ro_reg(i_regs, 0);
2834   }
2835   int dummy=(dops[i].rt1==0)||(tl!=get_reg(i_regs->regmap,dops[i].rt1)); // ignore loads to r0 and unneeded reg
2836   switch (dops[i].opcode) {
2837   case 0x20: // LB
2838     if(!c||memtarget) {
2839       if(!dummy) {
2840         int a = tl;
2841         if (!c) a = addr;
2842         if (fastio_reg_override >= 0)
2843           a = fastio_reg_override;
2844
2845         if (offset_reg >= 0)
2846           emit_ldrsb_dualindexed(offset_reg, a, tl);
2847         else
2848           emit_movsbl_indexed(0, a, tl);
2849       }
2850       if(jaddr)
2851         add_stub_r(LOADB_STUB,jaddr,out,i,addr,i_regs,ccadj_,reglist);
2852     }
2853     else
2854       inline_readstub(LOADB_STUB,i,constmap[i][s]+offset,i_regs->regmap,dops[i].rt1,ccadj_,reglist);
2855     break;
2856   case 0x21: // LH
2857     if(!c||memtarget) {
2858       if(!dummy) {
2859         int a = tl;
2860         if (!c) a = addr;
2861         if (fastio_reg_override >= 0)
2862           a = fastio_reg_override;
2863         if (offset_reg >= 0)
2864           emit_ldrsh_dualindexed(offset_reg, a, tl);
2865         else
2866           emit_movswl_indexed(0, a, tl);
2867       }
2868       if(jaddr)
2869         add_stub_r(LOADH_STUB,jaddr,out,i,addr,i_regs,ccadj_,reglist);
2870     }
2871     else
2872       inline_readstub(LOADH_STUB,i,constmap[i][s]+offset,i_regs->regmap,dops[i].rt1,ccadj_,reglist);
2873     break;
2874   case 0x23: // LW
2875     if(!c||memtarget) {
2876       if(!dummy) {
2877         int a = addr;
2878         if (fastio_reg_override >= 0)
2879           a = fastio_reg_override;
2880         do_load_word(a, tl, offset_reg);
2881       }
2882       if(jaddr)
2883         add_stub_r(LOADW_STUB,jaddr,out,i,addr,i_regs,ccadj_,reglist);
2884     }
2885     else
2886       inline_readstub(LOADW_STUB,i,constmap[i][s]+offset,i_regs->regmap,dops[i].rt1,ccadj_,reglist);
2887     break;
2888   case 0x24: // LBU
2889     if(!c||memtarget) {
2890       if(!dummy) {
2891         int a = tl;
2892         if (!c) a = addr;
2893         if (fastio_reg_override >= 0)
2894           a = fastio_reg_override;
2895
2896         if (offset_reg >= 0)
2897           emit_ldrb_dualindexed(offset_reg, a, tl);
2898         else
2899           emit_movzbl_indexed(0, a, tl);
2900       }
2901       if(jaddr)
2902         add_stub_r(LOADBU_STUB,jaddr,out,i,addr,i_regs,ccadj_,reglist);
2903     }
2904     else
2905       inline_readstub(LOADBU_STUB,i,constmap[i][s]+offset,i_regs->regmap,dops[i].rt1,ccadj_,reglist);
2906     break;
2907   case 0x25: // LHU
2908     if(!c||memtarget) {
2909       if(!dummy) {
2910         int a = tl;
2911         if(!c) a = addr;
2912         if (fastio_reg_override >= 0)
2913           a = fastio_reg_override;
2914         if (offset_reg >= 0)
2915           emit_ldrh_dualindexed(offset_reg, a, tl);
2916         else
2917           emit_movzwl_indexed(0, a, tl);
2918       }
2919       if(jaddr)
2920         add_stub_r(LOADHU_STUB,jaddr,out,i,addr,i_regs,ccadj_,reglist);
2921     }
2922     else
2923       inline_readstub(LOADHU_STUB,i,constmap[i][s]+offset,i_regs->regmap,dops[i].rt1,ccadj_,reglist);
2924     break;
2925   case 0x27: // LWU
2926   case 0x37: // LD
2927   default:
2928     assert(0);
2929   }
2930  }
2931  if (fastio_reg_override == HOST_TEMPREG || offset_reg == HOST_TEMPREG)
2932    host_tempreg_release();
2933 }
2934
2935 #ifndef loadlr_assemble
2936 static void loadlr_assemble(int i, const struct regstat *i_regs, int ccadj_)
2937 {
2938   int s,tl,temp,temp2,addr;
2939   int offset;
2940   void *jaddr=0;
2941   int memtarget=0,c=0;
2942   int offset_reg = -1;
2943   int fastio_reg_override = -1;
2944   u_int reglist=get_host_reglist(i_regs->regmap);
2945   tl=get_reg(i_regs->regmap,dops[i].rt1);
2946   s=get_reg(i_regs->regmap,dops[i].rs1);
2947   temp=get_reg(i_regs->regmap,-1);
2948   temp2=get_reg(i_regs->regmap,FTEMP);
2949   addr=get_reg(i_regs->regmap,AGEN1+(i&1));
2950   assert(addr<0);
2951   offset=imm[i];
2952   reglist|=1<<temp;
2953   if(offset||s<0||c) addr=temp2;
2954   else addr=s;
2955   if(s>=0) {
2956     c=(i_regs->wasconst>>s)&1;
2957     if(c) {
2958       memtarget=((signed int)(constmap[i][s]+offset))<(signed int)0x80000000+RAM_SIZE;
2959     }
2960   }
2961   if(!c) {
2962     emit_shlimm(addr,3,temp);
2963     if (dops[i].opcode==0x22||dops[i].opcode==0x26) {
2964       emit_andimm(addr,0xFFFFFFFC,temp2); // LWL/LWR
2965     }else{
2966       emit_andimm(addr,0xFFFFFFF8,temp2); // LDL/LDR
2967     }
2968     jaddr = emit_fastpath_cmp_jump(i, i_regs, temp2,
2969               &offset_reg, &fastio_reg_override);
2970   }
2971   else {
2972     if (ram_offset && memtarget) {
2973       offset_reg = get_ro_reg(i_regs, 0);
2974     }
2975     if (dops[i].opcode==0x22||dops[i].opcode==0x26) {
2976       emit_movimm(((constmap[i][s]+offset)<<3)&24,temp); // LWL/LWR
2977     }else{
2978       emit_movimm(((constmap[i][s]+offset)<<3)&56,temp); // LDL/LDR
2979     }
2980   }
2981   if (dops[i].opcode==0x22||dops[i].opcode==0x26) { // LWL/LWR
2982     if(!c||memtarget) {
2983       int a = temp2;
2984       if (fastio_reg_override >= 0)
2985         a = fastio_reg_override;
2986       do_load_word(a, temp2, offset_reg);
2987       if (fastio_reg_override == HOST_TEMPREG || offset_reg == HOST_TEMPREG)
2988         host_tempreg_release();
2989       if(jaddr) add_stub_r(LOADW_STUB,jaddr,out,i,temp2,i_regs,ccadj_,reglist);
2990     }
2991     else
2992       inline_readstub(LOADW_STUB,i,(constmap[i][s]+offset)&0xFFFFFFFC,i_regs->regmap,FTEMP,ccadj_,reglist);
2993     if(dops[i].rt1) {
2994       assert(tl>=0);
2995       emit_andimm(temp,24,temp);
2996       if (dops[i].opcode==0x22) // LWL
2997         emit_xorimm(temp,24,temp);
2998       host_tempreg_acquire();
2999       emit_movimm(-1,HOST_TEMPREG);
3000       if (dops[i].opcode==0x26) {
3001         emit_shr(temp2,temp,temp2);
3002         emit_bic_lsr(tl,HOST_TEMPREG,temp,tl);
3003       }else{
3004         emit_shl(temp2,temp,temp2);
3005         emit_bic_lsl(tl,HOST_TEMPREG,temp,tl);
3006       }
3007       host_tempreg_release();
3008       emit_or(temp2,tl,tl);
3009     }
3010     //emit_storereg(dops[i].rt1,tl); // DEBUG
3011   }
3012   if (dops[i].opcode==0x1A||dops[i].opcode==0x1B) { // LDL/LDR
3013     assert(0);
3014   }
3015 }
3016 #endif
3017
3018 static void store_assemble(int i, const struct regstat *i_regs, int ccadj_)
3019 {
3020   int s,tl;
3021   int addr,temp;
3022   int offset;
3023   void *jaddr=0;
3024   enum stub_type type=0;
3025   int memtarget=0,c=0;
3026   int agr=AGEN1+(i&1);
3027   int offset_reg = -1;
3028   int fastio_reg_override = -1;
3029   u_int reglist=get_host_reglist(i_regs->regmap);
3030   tl=get_reg(i_regs->regmap,dops[i].rs2);
3031   s=get_reg(i_regs->regmap,dops[i].rs1);
3032   temp=get_reg(i_regs->regmap,agr);
3033   if(temp<0) temp=get_reg(i_regs->regmap,-1);
3034   offset=imm[i];
3035   if(s>=0) {
3036     c=(i_regs->wasconst>>s)&1;
3037     if(c) {
3038       memtarget=((signed int)(constmap[i][s]+offset))<(signed int)0x80000000+RAM_SIZE;
3039     }
3040   }
3041   assert(tl>=0);
3042   assert(temp>=0);
3043   if(i_regs->regmap[HOST_CCREG]==CCREG) reglist&=~(1<<HOST_CCREG);
3044   if(offset||s<0||c) addr=temp;
3045   else addr=s;
3046   if (!c) {
3047     jaddr = emit_fastpath_cmp_jump(i, i_regs, addr,
3048               &offset_reg, &fastio_reg_override);
3049   }
3050   else if (ram_offset && memtarget) {
3051     offset_reg = get_ro_reg(i_regs, 0);
3052   }
3053
3054   switch (dops[i].opcode) {
3055   case 0x28: // SB
3056     if(!c||memtarget) {
3057       int a = temp;
3058       if (!c) a = addr;
3059       if (fastio_reg_override >= 0)
3060         a = fastio_reg_override;
3061       do_store_byte(a, tl, offset_reg);
3062     }
3063     type = STOREB_STUB;
3064     break;
3065   case 0x29: // SH
3066     if(!c||memtarget) {
3067       int a = temp;
3068       if (!c) a = addr;
3069       if (fastio_reg_override >= 0)
3070         a = fastio_reg_override;
3071       do_store_hword(a, 0, tl, offset_reg, 1);
3072     }
3073     type = STOREH_STUB;
3074     break;
3075   case 0x2B: // SW
3076     if(!c||memtarget) {
3077       int a = addr;
3078       if (fastio_reg_override >= 0)
3079         a = fastio_reg_override;
3080       do_store_word(a, 0, tl, offset_reg, 1);
3081     }
3082     type = STOREW_STUB;
3083     break;
3084   case 0x3F: // SD
3085   default:
3086     assert(0);
3087   }
3088   if (fastio_reg_override == HOST_TEMPREG || offset_reg == HOST_TEMPREG)
3089     host_tempreg_release();
3090   if(jaddr) {
3091     // PCSX store handlers don't check invcode again
3092     reglist|=1<<addr;
3093     add_stub_r(type,jaddr,out,i,addr,i_regs,ccadj_,reglist);
3094     jaddr=0;
3095   }
3096   if(!(i_regs->waswritten&(1<<dops[i].rs1)) && !HACK_ENABLED(NDHACK_NO_SMC_CHECK)) {
3097     if(!c||memtarget) {
3098       #ifdef DESTRUCTIVE_SHIFT
3099       // The x86 shift operation is 'destructive'; it overwrites the
3100       // source register, so we need to make a copy first and use that.
3101       addr=temp;
3102       #endif
3103       #if defined(HOST_IMM8)
3104       int ir=get_reg(i_regs->regmap,INVCP);
3105       assert(ir>=0);
3106       emit_cmpmem_indexedsr12_reg(ir,addr,1);
3107       #else
3108       emit_cmpmem_indexedsr12_imm(invalid_code,addr,1);
3109       #endif
3110       #if defined(HAVE_CONDITIONAL_CALL) && !defined(DESTRUCTIVE_SHIFT)
3111       emit_callne(invalidate_addr_reg[addr]);
3112       #else
3113       void *jaddr2 = out;
3114       emit_jne(0);
3115       add_stub(INVCODE_STUB,jaddr2,out,reglist|(1<<HOST_CCREG),addr,0,0,0);
3116       #endif
3117     }
3118   }
3119   u_int addr_val=constmap[i][s]+offset;
3120   if(jaddr) {
3121     add_stub_r(type,jaddr,out,i,addr,i_regs,ccadj_,reglist);
3122   } else if(c&&!memtarget) {
3123     inline_writestub(type,i,addr_val,i_regs->regmap,dops[i].rs2,ccadj_,reglist);
3124   }
3125   // basic current block modification detection..
3126   // not looking back as that should be in mips cache already
3127   // (see Spyro2 title->attract mode)
3128   if(c&&start+i*4<addr_val&&addr_val<start+slen*4) {
3129     SysPrintf("write to %08x hits block %08x, pc=%08x\n",addr_val,start,start+i*4);
3130     assert(i_regs->regmap==regs[i].regmap); // not delay slot
3131     if(i_regs->regmap==regs[i].regmap) {
3132       load_all_consts(regs[i].regmap_entry,regs[i].wasdirty,i);
3133       wb_dirtys(regs[i].regmap_entry,regs[i].wasdirty);
3134       emit_movimm(start+i*4+4,0);
3135       emit_writeword(0,&pcaddr);
3136       emit_addimm(HOST_CCREG,2,HOST_CCREG);
3137       emit_far_call(get_addr_ht);
3138       emit_jmpreg(0);
3139     }
3140   }
3141 }
3142
3143 static void storelr_assemble(int i, const struct regstat *i_regs, int ccadj_)
3144 {
3145   int s,tl;
3146   int temp;
3147   int offset;
3148   void *jaddr=0;
3149   void *case1, *case23, *case3;
3150   void *done0, *done1, *done2;
3151   int memtarget=0,c=0;
3152   int agr=AGEN1+(i&1);
3153   int offset_reg = -1;
3154   u_int reglist=get_host_reglist(i_regs->regmap);
3155   tl=get_reg(i_regs->regmap,dops[i].rs2);
3156   s=get_reg(i_regs->regmap,dops[i].rs1);
3157   temp=get_reg(i_regs->regmap,agr);
3158   if(temp<0) temp=get_reg(i_regs->regmap,-1);
3159   offset=imm[i];
3160   if(s>=0) {
3161     c=(i_regs->isconst>>s)&1;
3162     if(c) {
3163       memtarget=((signed int)(constmap[i][s]+offset))<(signed int)0x80000000+RAM_SIZE;
3164     }
3165   }
3166   assert(tl>=0);
3167   assert(temp>=0);
3168   if(!c) {
3169     emit_cmpimm(s<0||offset?temp:s,RAM_SIZE);
3170     if(!offset&&s!=temp) emit_mov(s,temp);
3171     jaddr=out;
3172     emit_jno(0);
3173   }
3174   else
3175   {
3176     if(!memtarget||!dops[i].rs1) {
3177       jaddr=out;
3178       emit_jmp(0);
3179     }
3180   }
3181   if (ram_offset)
3182     offset_reg = get_ro_reg(i_regs, 0);
3183
3184   if (dops[i].opcode==0x2C||dops[i].opcode==0x2D) { // SDL/SDR
3185     assert(0);
3186   }
3187
3188   emit_testimm(temp,2);
3189   case23=out;
3190   emit_jne(0);
3191   emit_testimm(temp,1);
3192   case1=out;
3193   emit_jne(0);
3194   // 0
3195   if (dops[i].opcode == 0x2A) { // SWL
3196     // Write msb into least significant byte
3197     if (dops[i].rs2) emit_rorimm(tl, 24, tl);
3198     do_store_byte(temp, tl, offset_reg);
3199     if (dops[i].rs2) emit_rorimm(tl, 8, tl);
3200   }
3201   else if (dops[i].opcode == 0x2E) { // SWR
3202     // Write entire word
3203     do_store_word(temp, 0, tl, offset_reg, 1);
3204   }
3205   done0 = out;
3206   emit_jmp(0);
3207   // 1
3208   set_jump_target(case1, out);
3209   if (dops[i].opcode == 0x2A) { // SWL
3210     // Write two msb into two least significant bytes
3211     if (dops[i].rs2) emit_rorimm(tl, 16, tl);
3212     do_store_hword(temp, -1, tl, offset_reg, 0);
3213     if (dops[i].rs2) emit_rorimm(tl, 16, tl);
3214   }
3215   else if (dops[i].opcode == 0x2E) { // SWR
3216     // Write 3 lsb into three most significant bytes
3217     do_store_byte(temp, tl, offset_reg);
3218     if (dops[i].rs2) emit_rorimm(tl, 8, tl);
3219     do_store_hword(temp, 1, tl, offset_reg, 0);
3220     if (dops[i].rs2) emit_rorimm(tl, 24, tl);
3221   }
3222   done1=out;
3223   emit_jmp(0);
3224   // 2,3
3225   set_jump_target(case23, out);
3226   emit_testimm(temp,1);
3227   case3 = out;
3228   emit_jne(0);
3229   // 2
3230   if (dops[i].opcode==0x2A) { // SWL
3231     // Write 3 msb into three least significant bytes
3232     if (dops[i].rs2) emit_rorimm(tl, 8, tl);
3233     do_store_hword(temp, -2, tl, offset_reg, 1);
3234     if (dops[i].rs2) emit_rorimm(tl, 16, tl);
3235     do_store_byte(temp, tl, offset_reg);
3236     if (dops[i].rs2) emit_rorimm(tl, 8, tl);
3237   }
3238   else if (dops[i].opcode == 0x2E) { // SWR
3239     // Write two lsb into two most significant bytes
3240     do_store_hword(temp, 0, tl, offset_reg, 1);
3241   }
3242   done2 = out;
3243   emit_jmp(0);
3244   // 3
3245   set_jump_target(case3, out);
3246   if (dops[i].opcode == 0x2A) { // SWL
3247     do_store_word(temp, -3, tl, offset_reg, 0);
3248   }
3249   else if (dops[i].opcode == 0x2E) { // SWR
3250     do_store_byte(temp, tl, offset_reg);
3251   }
3252   set_jump_target(done0, out);
3253   set_jump_target(done1, out);
3254   set_jump_target(done2, out);
3255   if (offset_reg == HOST_TEMPREG)
3256     host_tempreg_release();
3257   if(!c||!memtarget)
3258     add_stub_r(STORELR_STUB,jaddr,out,i,temp,i_regs,ccadj_,reglist);
3259   if(!(i_regs->waswritten&(1<<dops[i].rs1)) && !HACK_ENABLED(NDHACK_NO_SMC_CHECK)) {
3260     #if defined(HOST_IMM8)
3261     int ir=get_reg(i_regs->regmap,INVCP);
3262     assert(ir>=0);
3263     emit_cmpmem_indexedsr12_reg(ir,temp,1);
3264     #else
3265     emit_cmpmem_indexedsr12_imm(invalid_code,temp,1);
3266     #endif
3267     #if defined(HAVE_CONDITIONAL_CALL) && !defined(DESTRUCTIVE_SHIFT)
3268     emit_callne(invalidate_addr_reg[temp]);
3269     #else
3270     void *jaddr2 = out;
3271     emit_jne(0);
3272     add_stub(INVCODE_STUB,jaddr2,out,reglist|(1<<HOST_CCREG),temp,0,0,0);
3273     #endif
3274   }
3275 }
3276
3277 static void cop0_assemble(int i, const struct regstat *i_regs, int ccadj_)
3278 {
3279   if(dops[i].opcode2==0) // MFC0
3280   {
3281     signed char t=get_reg(i_regs->regmap,dops[i].rt1);
3282     u_int copr=(source[i]>>11)&0x1f;
3283     //assert(t>=0); // Why does this happen?  OOT is weird
3284     if(t>=0&&dops[i].rt1!=0) {
3285       emit_readword(&reg_cop0[copr],t);
3286     }
3287   }
3288   else if(dops[i].opcode2==4) // MTC0
3289   {
3290     signed char s=get_reg(i_regs->regmap,dops[i].rs1);
3291     char copr=(source[i]>>11)&0x1f;
3292     assert(s>=0);
3293     wb_register(dops[i].rs1,i_regs->regmap,i_regs->dirty);
3294     if(copr==9||copr==11||copr==12||copr==13) {
3295       emit_readword(&last_count,HOST_TEMPREG);
3296       emit_loadreg(CCREG,HOST_CCREG); // TODO: do proper reg alloc
3297       emit_add(HOST_CCREG,HOST_TEMPREG,HOST_CCREG);
3298       emit_addimm(HOST_CCREG,ccadj_,HOST_CCREG);
3299       emit_writeword(HOST_CCREG,&Count);
3300     }
3301     // What a mess.  The status register (12) can enable interrupts,
3302     // so needs a special case to handle a pending interrupt.
3303     // The interrupt must be taken immediately, because a subsequent
3304     // instruction might disable interrupts again.
3305     if(copr==12||copr==13) {
3306       if (is_delayslot) {
3307         // burn cycles to cause cc_interrupt, which will
3308         // reschedule next_interupt. Relies on CCREG from above.
3309         assem_debug("MTC0 DS %d\n", copr);
3310         emit_writeword(HOST_CCREG,&last_count);
3311         emit_movimm(0,HOST_CCREG);
3312         emit_storereg(CCREG,HOST_CCREG);
3313         emit_loadreg(dops[i].rs1,1);
3314         emit_movimm(copr,0);
3315         emit_far_call(pcsx_mtc0_ds);
3316         emit_loadreg(dops[i].rs1,s);
3317         return;
3318       }
3319       emit_movimm(start+i*4+4,HOST_TEMPREG);
3320       emit_writeword(HOST_TEMPREG,&pcaddr);
3321       emit_movimm(0,HOST_TEMPREG);
3322       emit_writeword(HOST_TEMPREG,&pending_exception);
3323     }
3324     if(s==HOST_CCREG)
3325       emit_loadreg(dops[i].rs1,1);
3326     else if(s!=1)
3327       emit_mov(s,1);
3328     emit_movimm(copr,0);
3329     emit_far_call(pcsx_mtc0);
3330     if(copr==9||copr==11||copr==12||copr==13) {
3331       emit_readword(&Count,HOST_CCREG);
3332       emit_readword(&next_interupt,HOST_TEMPREG);
3333       emit_addimm(HOST_CCREG,-ccadj_,HOST_CCREG);
3334       emit_sub(HOST_CCREG,HOST_TEMPREG,HOST_CCREG);
3335       emit_writeword(HOST_TEMPREG,&last_count);
3336       emit_storereg(CCREG,HOST_CCREG);
3337     }
3338     if(copr==12||copr==13) {
3339       assert(!is_delayslot);
3340       emit_readword(&pending_exception,14);
3341       emit_test(14,14);
3342       void *jaddr = out;
3343       emit_jeq(0);
3344       emit_readword(&pcaddr, 0);
3345       emit_addimm(HOST_CCREG,2,HOST_CCREG);
3346       emit_far_call(get_addr_ht);
3347       emit_jmpreg(0);
3348       set_jump_target(jaddr, out);
3349     }
3350     emit_loadreg(dops[i].rs1,s);
3351   }
3352   else
3353   {
3354     assert(dops[i].opcode2==0x10);
3355     //if((source[i]&0x3f)==0x10) // RFE
3356     {
3357       emit_readword(&Status,0);
3358       emit_andimm(0,0x3c,1);
3359       emit_andimm(0,~0xf,0);
3360       emit_orrshr_imm(1,2,0);
3361       emit_writeword(0,&Status);
3362     }
3363   }
3364 }
3365
3366 static void cop1_unusable(int i, const struct regstat *i_regs)
3367 {
3368   // XXX: should just just do the exception instead
3369   //if(!cop1_usable)
3370   {
3371     void *jaddr=out;
3372     emit_jmp(0);
3373     add_stub_r(FP_STUB,jaddr,out,i,0,i_regs,is_delayslot,0);
3374   }
3375 }
3376
3377 static void cop1_assemble(int i, const struct regstat *i_regs)
3378 {
3379   cop1_unusable(i, i_regs);
3380 }
3381
3382 static void c1ls_assemble(int i, const struct regstat *i_regs)
3383 {
3384   cop1_unusable(i, i_regs);
3385 }
3386
3387 // FP_STUB
3388 static void do_cop1stub(int n)
3389 {
3390   literal_pool(256);
3391   assem_debug("do_cop1stub %x\n",start+stubs[n].a*4);
3392   set_jump_target(stubs[n].addr, out);
3393   int i=stubs[n].a;
3394 //  int rs=stubs[n].b;
3395   struct regstat *i_regs=(struct regstat *)stubs[n].c;
3396   int ds=stubs[n].d;
3397   if(!ds) {
3398     load_all_consts(regs[i].regmap_entry,regs[i].wasdirty,i);
3399     //if(i_regs!=&regs[i]) printf("oops: regs[i]=%x i_regs=%x",(int)&regs[i],(int)i_regs);
3400   }
3401   //else {printf("fp exception in delay slot\n");}
3402   wb_dirtys(i_regs->regmap_entry,i_regs->wasdirty);
3403   if(regs[i].regmap_entry[HOST_CCREG]!=CCREG) emit_loadreg(CCREG,HOST_CCREG);
3404   emit_movimm(start+(i-ds)*4,EAX); // Get PC
3405   emit_addimm(HOST_CCREG,ccadj[i],HOST_CCREG); // CHECK: is this right?  There should probably be an extra cycle...
3406   emit_far_jump(ds?fp_exception_ds:fp_exception);
3407 }
3408
3409 static int cop2_is_stalling_op(int i, int *cycles)
3410 {
3411   if (dops[i].opcode == 0x3a) { // SWC2
3412     *cycles = 0;
3413     return 1;
3414   }
3415   if (dops[i].itype == COP2 && (dops[i].opcode2 == 0 || dops[i].opcode2 == 2)) { // MFC2/CFC2
3416     *cycles = 0;
3417     return 1;
3418   }
3419   if (dops[i].itype == C2OP) {
3420     *cycles = gte_cycletab[source[i] & 0x3f];
3421     return 1;
3422   }
3423   // ... what about MTC2/CTC2/LWC2?
3424   return 0;
3425 }
3426
3427 #if 0
3428 static void log_gte_stall(int stall, u_int cycle)
3429 {
3430   if ((u_int)stall <= 44)
3431     printf("x    stall %2d %u\n", stall, cycle + last_count);
3432 }
3433
3434 static void emit_log_gte_stall(int i, int stall, u_int reglist)
3435 {
3436   save_regs(reglist);
3437   if (stall > 0)
3438     emit_movimm(stall, 0);
3439   else
3440     emit_mov(HOST_TEMPREG, 0);
3441   emit_addimm(HOST_CCREG, ccadj[i], 1);
3442   emit_far_call(log_gte_stall);
3443   restore_regs(reglist);
3444 }
3445 #endif
3446
3447 static void cop2_do_stall_check(u_int op, int i, const struct regstat *i_regs, u_int reglist)
3448 {
3449   int j = i, other_gte_op_cycles = -1, stall = -MAXBLOCK, cycles_passed;
3450   int rtmp = reglist_find_free(reglist);
3451
3452   if (HACK_ENABLED(NDHACK_NO_STALLS))
3453     return;
3454   if (get_reg(i_regs->regmap, CCREG) != HOST_CCREG) {
3455     // happens occasionally... cc evicted? Don't bother then
3456     //printf("no cc %08x\n", start + i*4);
3457     return;
3458   }
3459   if (!dops[i].bt) {
3460     for (j = i - 1; j >= 0; j--) {
3461       //if (dops[j].is_ds) break;
3462       if (cop2_is_stalling_op(j, &other_gte_op_cycles) || dops[j].bt)
3463         break;
3464       if (j > 0 && ccadj[j - 1] > ccadj[j])
3465         break;
3466     }
3467     j = max(j, 0);
3468   }
3469   cycles_passed = ccadj[i] - ccadj[j];
3470   if (other_gte_op_cycles >= 0)
3471     stall = other_gte_op_cycles - cycles_passed;
3472   else if (cycles_passed >= 44)
3473     stall = 0; // can't stall
3474   if (stall == -MAXBLOCK && rtmp >= 0) {
3475     // unknown stall, do the expensive runtime check
3476     assem_debug("; cop2_do_stall_check\n");
3477 #if 0 // too slow
3478     save_regs(reglist);
3479     emit_movimm(gte_cycletab[op], 0);
3480     emit_addimm(HOST_CCREG, ccadj[i], 1);
3481     emit_far_call(call_gteStall);
3482     restore_regs(reglist);
3483 #else
3484     host_tempreg_acquire();
3485     emit_readword(&psxRegs.gteBusyCycle, rtmp);
3486     emit_addimm(rtmp, -ccadj[i], rtmp);
3487     emit_sub(rtmp, HOST_CCREG, HOST_TEMPREG);
3488     emit_cmpimm(HOST_TEMPREG, 44);
3489     emit_cmovb_reg(rtmp, HOST_CCREG);
3490     //emit_log_gte_stall(i, 0, reglist);
3491     host_tempreg_release();
3492 #endif
3493   }
3494   else if (stall > 0) {
3495     //emit_log_gte_stall(i, stall, reglist);
3496     emit_addimm(HOST_CCREG, stall, HOST_CCREG);
3497   }
3498
3499   // save gteBusyCycle, if needed
3500   if (gte_cycletab[op] == 0)
3501     return;
3502   other_gte_op_cycles = -1;
3503   for (j = i + 1; j < slen; j++) {
3504     if (cop2_is_stalling_op(j, &other_gte_op_cycles))
3505       break;
3506     if (dops[j].is_jump) {
3507       // check ds
3508       if (j + 1 < slen && cop2_is_stalling_op(j + 1, &other_gte_op_cycles))
3509         j++;
3510       break;
3511     }
3512   }
3513   if (other_gte_op_cycles >= 0)
3514     // will handle stall when assembling that op
3515     return;
3516   cycles_passed = ccadj[min(j, slen -1)] - ccadj[i];
3517   if (cycles_passed >= 44)
3518     return;
3519   assem_debug("; save gteBusyCycle\n");
3520   host_tempreg_acquire();
3521 #if 0
3522   emit_readword(&last_count, HOST_TEMPREG);
3523   emit_add(HOST_TEMPREG, HOST_CCREG, HOST_TEMPREG);
3524   emit_addimm(HOST_TEMPREG, ccadj[i], HOST_TEMPREG);
3525   emit_addimm(HOST_TEMPREG, gte_cycletab[op]), HOST_TEMPREG);
3526   emit_writeword(HOST_TEMPREG, &psxRegs.gteBusyCycle);
3527 #else
3528   emit_addimm(HOST_CCREG, ccadj[i] + gte_cycletab[op], HOST_TEMPREG);
3529   emit_writeword(HOST_TEMPREG, &psxRegs.gteBusyCycle);
3530 #endif
3531   host_tempreg_release();
3532 }
3533
3534 static int is_mflohi(int i)
3535 {
3536   return (dops[i].itype == MOV && (dops[i].rs1 == HIREG || dops[i].rs1 == LOREG));
3537 }
3538
3539 static int check_multdiv(int i, int *cycles)
3540 {
3541   if (dops[i].itype != MULTDIV)
3542     return 0;
3543   if (dops[i].opcode2 == 0x18 || dops[i].opcode2 == 0x19) // MULT(U)
3544     *cycles = 11; // approx from 7 11 14
3545   else
3546     *cycles = 37;
3547   return 1;
3548 }
3549
3550 static void multdiv_prepare_stall(int i, const struct regstat *i_regs, int ccadj_)
3551 {
3552   int j, found = 0, c = 0;
3553   if (HACK_ENABLED(NDHACK_NO_STALLS))
3554     return;
3555   if (get_reg(i_regs->regmap, CCREG) != HOST_CCREG) {
3556     // happens occasionally... cc evicted? Don't bother then
3557     return;
3558   }
3559   for (j = i + 1; j < slen; j++) {
3560     if (dops[j].bt)
3561       break;
3562     if ((found = is_mflohi(j)))
3563       break;
3564     if (dops[j].is_jump) {
3565       // check ds
3566       if (j + 1 < slen && (found = is_mflohi(j + 1)))
3567         j++;
3568       break;
3569     }
3570   }
3571   if (found)
3572     // handle all in multdiv_do_stall()
3573     return;
3574   check_multdiv(i, &c);
3575   assert(c > 0);
3576   assem_debug("; muldiv prepare stall %d\n", c);
3577   host_tempreg_acquire();
3578   emit_addimm(HOST_CCREG, ccadj_ + c, HOST_TEMPREG);
3579   emit_writeword(HOST_TEMPREG, &psxRegs.muldivBusyCycle);
3580   host_tempreg_release();
3581 }
3582
3583 static void multdiv_do_stall(int i, const struct regstat *i_regs)
3584 {
3585   int j, known_cycles = 0;
3586   u_int reglist = get_host_reglist(i_regs->regmap);
3587   int rtmp = get_reg(i_regs->regmap, -1);
3588   if (rtmp < 0)
3589     rtmp = reglist_find_free(reglist);
3590   if (HACK_ENABLED(NDHACK_NO_STALLS))
3591     return;
3592   if (get_reg(i_regs->regmap, CCREG) != HOST_CCREG || rtmp < 0) {
3593     // happens occasionally... cc evicted? Don't bother then
3594     //printf("no cc/rtmp %08x\n", start + i*4);
3595     return;
3596   }
3597   if (!dops[i].bt) {
3598     for (j = i - 1; j >= 0; j--) {
3599       if (dops[j].is_ds) break;
3600       if (check_multdiv(j, &known_cycles))
3601         break;
3602       if (is_mflohi(j))
3603         // already handled by this op
3604         return;
3605       if (dops[j].bt || (j > 0 && ccadj[j - 1] > ccadj[j]))
3606         break;
3607     }
3608     j = max(j, 0);
3609   }
3610   if (known_cycles > 0) {
3611     known_cycles -= ccadj[i] - ccadj[j];
3612     assem_debug("; muldiv stall resolved %d\n", known_cycles);
3613     if (known_cycles > 0)
3614       emit_addimm(HOST_CCREG, known_cycles, HOST_CCREG);
3615     return;
3616   }
3617   assem_debug("; muldiv stall unresolved\n");
3618   host_tempreg_acquire();
3619   emit_readword(&psxRegs.muldivBusyCycle, rtmp);
3620   emit_addimm(rtmp, -ccadj[i], rtmp);
3621   emit_sub(rtmp, HOST_CCREG, HOST_TEMPREG);
3622   emit_cmpimm(HOST_TEMPREG, 37);
3623   emit_cmovb_reg(rtmp, HOST_CCREG);
3624   //emit_log_gte_stall(i, 0, reglist);
3625   host_tempreg_release();
3626 }
3627
3628 static void cop2_get_dreg(u_int copr,signed char tl,signed char temp)
3629 {
3630   switch (copr) {
3631     case 1:
3632     case 3:
3633     case 5:
3634     case 8:
3635     case 9:
3636     case 10:
3637     case 11:
3638       emit_readword(&reg_cop2d[copr],tl);
3639       emit_signextend16(tl,tl);
3640       emit_writeword(tl,&reg_cop2d[copr]); // hmh
3641       break;
3642     case 7:
3643     case 16:
3644     case 17:
3645     case 18:
3646     case 19:
3647       emit_readword(&reg_cop2d[copr],tl);
3648       emit_andimm(tl,0xffff,tl);
3649       emit_writeword(tl,&reg_cop2d[copr]);
3650       break;
3651     case 15:
3652       emit_readword(&reg_cop2d[14],tl); // SXY2
3653       emit_writeword(tl,&reg_cop2d[copr]);
3654       break;
3655     case 28:
3656     case 29:
3657       c2op_mfc2_29_assemble(tl,temp);
3658       break;
3659     default:
3660       emit_readword(&reg_cop2d[copr],tl);
3661       break;
3662   }
3663 }
3664
3665 static void cop2_put_dreg(u_int copr,signed char sl,signed char temp)
3666 {
3667   switch (copr) {
3668     case 15:
3669       emit_readword(&reg_cop2d[13],temp);  // SXY1
3670       emit_writeword(sl,&reg_cop2d[copr]);
3671       emit_writeword(temp,&reg_cop2d[12]); // SXY0
3672       emit_readword(&reg_cop2d[14],temp);  // SXY2
3673       emit_writeword(sl,&reg_cop2d[14]);
3674       emit_writeword(temp,&reg_cop2d[13]); // SXY1
3675       break;
3676     case 28:
3677       emit_andimm(sl,0x001f,temp);
3678       emit_shlimm(temp,7,temp);
3679       emit_writeword(temp,&reg_cop2d[9]);
3680       emit_andimm(sl,0x03e0,temp);
3681       emit_shlimm(temp,2,temp);
3682       emit_writeword(temp,&reg_cop2d[10]);
3683       emit_andimm(sl,0x7c00,temp);
3684       emit_shrimm(temp,3,temp);
3685       emit_writeword(temp,&reg_cop2d[11]);
3686       emit_writeword(sl,&reg_cop2d[28]);
3687       break;
3688     case 30:
3689       emit_xorsar_imm(sl,sl,31,temp);
3690 #if defined(HAVE_ARMV5) || defined(__aarch64__)
3691       emit_clz(temp,temp);
3692 #else
3693       emit_movs(temp,HOST_TEMPREG);
3694       emit_movimm(0,temp);
3695       emit_jeq((int)out+4*4);
3696       emit_addpl_imm(temp,1,temp);
3697       emit_lslpls_imm(HOST_TEMPREG,1,HOST_TEMPREG);
3698       emit_jns((int)out-2*4);
3699 #endif
3700       emit_writeword(sl,&reg_cop2d[30]);
3701       emit_writeword(temp,&reg_cop2d[31]);
3702       break;
3703     case 31:
3704       break;
3705     default:
3706       emit_writeword(sl,&reg_cop2d[copr]);
3707       break;
3708   }
3709 }
3710
3711 static void c2ls_assemble(int i, const struct regstat *i_regs, int ccadj_)
3712 {
3713   int s,tl;
3714   int ar;
3715   int offset;
3716   int memtarget=0,c=0;
3717   void *jaddr2=NULL;
3718   enum stub_type type;
3719   int agr=AGEN1+(i&1);
3720   int offset_reg = -1;
3721   int fastio_reg_override = -1;
3722   u_int reglist=get_host_reglist(i_regs->regmap);
3723   u_int copr=(source[i]>>16)&0x1f;
3724   s=get_reg(i_regs->regmap,dops[i].rs1);
3725   tl=get_reg(i_regs->regmap,FTEMP);
3726   offset=imm[i];
3727   assert(dops[i].rs1>0);
3728   assert(tl>=0);
3729
3730   if(i_regs->regmap[HOST_CCREG]==CCREG)
3731     reglist&=~(1<<HOST_CCREG);
3732
3733   // get the address
3734   if (dops[i].opcode==0x3a) { // SWC2
3735     ar=get_reg(i_regs->regmap,agr);
3736     if(ar<0) ar=get_reg(i_regs->regmap,-1);
3737     reglist|=1<<ar;
3738   } else { // LWC2
3739     ar=tl;
3740   }
3741   if(s>=0) c=(i_regs->wasconst>>s)&1;
3742   memtarget=c&&(((signed int)(constmap[i][s]+offset))<(signed int)0x80000000+RAM_SIZE);
3743   if (!offset&&!c&&s>=0) ar=s;
3744   assert(ar>=0);
3745
3746   cop2_do_stall_check(0, i, i_regs, reglist);
3747
3748   if (dops[i].opcode==0x3a) { // SWC2
3749     cop2_get_dreg(copr,tl,-1);
3750     type=STOREW_STUB;
3751   }
3752   else
3753     type=LOADW_STUB;
3754
3755   if(c&&!memtarget) {
3756     jaddr2=out;
3757     emit_jmp(0); // inline_readstub/inline_writestub?
3758   }
3759   else {
3760     if(!c) {
3761       jaddr2 = emit_fastpath_cmp_jump(i, i_regs, ar,
3762                 &offset_reg, &fastio_reg_override);
3763     }
3764     else if (ram_offset && memtarget) {
3765       offset_reg = get_ro_reg(i_regs, 0);
3766     }
3767     switch (dops[i].opcode) {
3768     case 0x32: { // LWC2
3769       int a = ar;
3770       if (fastio_reg_override >= 0)
3771         a = fastio_reg_override;
3772       do_load_word(a, tl, offset_reg);
3773       break;
3774     }
3775     case 0x3a: { // SWC2
3776       #ifdef DESTRUCTIVE_SHIFT
3777       if(!offset&&!c&&s>=0) emit_mov(s,ar);
3778       #endif
3779       int a = ar;
3780       if (fastio_reg_override >= 0)
3781         a = fastio_reg_override;
3782       do_store_word(a, 0, tl, offset_reg, 1);
3783       break;
3784     }
3785     default:
3786       assert(0);
3787     }
3788   }
3789   if (fastio_reg_override == HOST_TEMPREG || offset_reg == HOST_TEMPREG)
3790     host_tempreg_release();
3791   if(jaddr2)
3792     add_stub_r(type,jaddr2,out,i,ar,i_regs,ccadj_,reglist);
3793   if(dops[i].opcode==0x3a) // SWC2
3794   if(!(i_regs->waswritten&(1<<dops[i].rs1)) && !HACK_ENABLED(NDHACK_NO_SMC_CHECK)) {
3795 #if defined(HOST_IMM8)
3796     int ir=get_reg(i_regs->regmap,INVCP);
3797     assert(ir>=0);
3798     emit_cmpmem_indexedsr12_reg(ir,ar,1);
3799 #else
3800     emit_cmpmem_indexedsr12_imm(invalid_code,ar,1);
3801 #endif
3802     #if defined(HAVE_CONDITIONAL_CALL) && !defined(DESTRUCTIVE_SHIFT)
3803     emit_callne(invalidate_addr_reg[ar]);
3804     #else
3805     void *jaddr3 = out;
3806     emit_jne(0);
3807     add_stub(INVCODE_STUB,jaddr3,out,reglist|(1<<HOST_CCREG),ar,0,0,0);
3808     #endif
3809   }
3810   if (dops[i].opcode==0x32) { // LWC2
3811     host_tempreg_acquire();
3812     cop2_put_dreg(copr,tl,HOST_TEMPREG);
3813     host_tempreg_release();
3814   }
3815 }
3816
3817 static void cop2_assemble(int i, const struct regstat *i_regs)
3818 {
3819   u_int copr = (source[i]>>11) & 0x1f;
3820   signed char temp = get_reg(i_regs->regmap, -1);
3821
3822   if (!HACK_ENABLED(NDHACK_NO_STALLS)) {
3823     u_int reglist = reglist_exclude(get_host_reglist(i_regs->regmap), temp, -1);
3824     if (dops[i].opcode2 == 0 || dops[i].opcode2 == 2) { // MFC2/CFC2
3825       signed char tl = get_reg(i_regs->regmap, dops[i].rt1);
3826       reglist = reglist_exclude(reglist, tl, -1);
3827     }
3828     cop2_do_stall_check(0, i, i_regs, reglist);
3829   }
3830   if (dops[i].opcode2==0) { // MFC2
3831     signed char tl=get_reg(i_regs->regmap,dops[i].rt1);
3832     if(tl>=0&&dops[i].rt1!=0)
3833       cop2_get_dreg(copr,tl,temp);
3834   }
3835   else if (dops[i].opcode2==4) { // MTC2
3836     signed char sl=get_reg(i_regs->regmap,dops[i].rs1);
3837     cop2_put_dreg(copr,sl,temp);
3838   }
3839   else if (dops[i].opcode2==2) // CFC2
3840   {
3841     signed char tl=get_reg(i_regs->regmap,dops[i].rt1);
3842     if(tl>=0&&dops[i].rt1!=0)
3843       emit_readword(&reg_cop2c[copr],tl);
3844   }
3845   else if (dops[i].opcode2==6) // CTC2
3846   {
3847     signed char sl=get_reg(i_regs->regmap,dops[i].rs1);
3848     switch(copr) {
3849       case 4:
3850       case 12:
3851       case 20:
3852       case 26:
3853       case 27:
3854       case 29:
3855       case 30:
3856         emit_signextend16(sl,temp);
3857         break;
3858       case 31:
3859         c2op_ctc2_31_assemble(sl,temp);
3860         break;
3861       default:
3862         temp=sl;
3863         break;
3864     }
3865     emit_writeword(temp,&reg_cop2c[copr]);
3866     assert(sl>=0);
3867   }
3868 }
3869
3870 static void do_unalignedwritestub(int n)
3871 {
3872   assem_debug("do_unalignedwritestub %x\n",start+stubs[n].a*4);
3873   literal_pool(256);
3874   set_jump_target(stubs[n].addr, out);
3875
3876   int i=stubs[n].a;
3877   struct regstat *i_regs=(struct regstat *)stubs[n].c;
3878   int addr=stubs[n].b;
3879   u_int reglist=stubs[n].e;
3880   signed char *i_regmap=i_regs->regmap;
3881   int temp2=get_reg(i_regmap,FTEMP);
3882   int rt;
3883   rt=get_reg(i_regmap,dops[i].rs2);
3884   assert(rt>=0);
3885   assert(addr>=0);
3886   assert(dops[i].opcode==0x2a||dops[i].opcode==0x2e); // SWL/SWR only implemented
3887   reglist|=(1<<addr);
3888   reglist&=~(1<<temp2);
3889
3890   // don't bother with it and call write handler
3891   save_regs(reglist);
3892   pass_args(addr,rt);
3893   int cc=get_reg(i_regmap,CCREG);
3894   if(cc<0)
3895     emit_loadreg(CCREG,2);
3896   emit_addimm(cc<0?2:cc,(int)stubs[n].d+1,2);
3897   emit_far_call((dops[i].opcode==0x2a?jump_handle_swl:jump_handle_swr));
3898   emit_addimm(0,-((int)stubs[n].d+1),cc<0?2:cc);
3899   if(cc<0)
3900     emit_storereg(CCREG,2);
3901   restore_regs(reglist);
3902   emit_jmp(stubs[n].retaddr); // return address
3903 }
3904
3905 #ifndef multdiv_assemble
3906 void multdiv_assemble(int i,struct regstat *i_regs)
3907 {
3908   printf("Need multdiv_assemble for this architecture.\n");
3909   abort();
3910 }
3911 #endif
3912
3913 static void mov_assemble(int i, const struct regstat *i_regs)
3914 {
3915   //if(dops[i].opcode2==0x10||dops[i].opcode2==0x12) { // MFHI/MFLO
3916   //if(dops[i].opcode2==0x11||dops[i].opcode2==0x13) { // MTHI/MTLO
3917   if(dops[i].rt1) {
3918     signed char sl,tl;
3919     tl=get_reg(i_regs->regmap,dops[i].rt1);
3920     //assert(tl>=0);
3921     if(tl>=0) {
3922       sl=get_reg(i_regs->regmap,dops[i].rs1);
3923       if(sl>=0) emit_mov(sl,tl);
3924       else emit_loadreg(dops[i].rs1,tl);
3925     }
3926   }
3927   if (dops[i].rs1 == HIREG || dops[i].rs1 == LOREG) // MFHI/MFLO
3928     multdiv_do_stall(i, i_regs);
3929 }
3930
3931 // call interpreter, exception handler, things that change pc/regs/cycles ...
3932 static void call_c_cpu_handler(int i, const struct regstat *i_regs, int ccadj_, u_int pc, void *func)
3933 {
3934   signed char ccreg=get_reg(i_regs->regmap,CCREG);
3935   assert(ccreg==HOST_CCREG);
3936   assert(!is_delayslot);
3937   (void)ccreg;
3938
3939   emit_movimm(pc,3); // Get PC
3940   emit_readword(&last_count,2);
3941   emit_writeword(3,&psxRegs.pc);
3942   emit_addimm(HOST_CCREG,ccadj_,HOST_CCREG);
3943   emit_add(2,HOST_CCREG,2);
3944   emit_writeword(2,&psxRegs.cycle);
3945   emit_far_call(func);
3946   emit_far_jump(jump_to_new_pc);
3947 }
3948
3949 static void syscall_assemble(int i, const struct regstat *i_regs, int ccadj_)
3950 {
3951   // 'break' tends to be littered around to catch things like
3952   // division by 0 and is almost never executed, so don't emit much code here
3953   void *func = (dops[i].opcode2 == 0x0C)
3954     ? (is_delayslot ? jump_syscall_ds : jump_syscall)
3955     : (is_delayslot ? jump_break_ds : jump_break);
3956   assert(get_reg(i_regs->regmap, CCREG) == HOST_CCREG);
3957   emit_movimm(start + i*4, 2); // pc
3958   emit_addimm(HOST_CCREG, ccadj_ + CLOCK_ADJUST(1), HOST_CCREG);
3959   emit_far_jump(func);
3960 }
3961
3962 static void hlecall_assemble(int i, const struct regstat *i_regs, int ccadj_)
3963 {
3964   void *hlefunc = psxNULL;
3965   uint32_t hleCode = source[i] & 0x03ffffff;
3966   if (hleCode < ARRAY_SIZE(psxHLEt))
3967     hlefunc = psxHLEt[hleCode];
3968
3969   call_c_cpu_handler(i, i_regs, ccadj_, start + i*4+4, hlefunc);
3970 }
3971
3972 static void intcall_assemble(int i, const struct regstat *i_regs, int ccadj_)
3973 {
3974   call_c_cpu_handler(i, i_regs, ccadj_, start + i*4, execI);
3975 }
3976
3977 static void speculate_mov(int rs,int rt)
3978 {
3979   if(rt!=0) {
3980     smrv_strong_next|=1<<rt;
3981     smrv[rt]=smrv[rs];
3982   }
3983 }
3984
3985 static void speculate_mov_weak(int rs,int rt)
3986 {
3987   if(rt!=0) {
3988     smrv_weak_next|=1<<rt;
3989     smrv[rt]=smrv[rs];
3990   }
3991 }
3992
3993 static void speculate_register_values(int i)
3994 {
3995   if(i==0) {
3996     memcpy(smrv,psxRegs.GPR.r,sizeof(smrv));
3997     // gp,sp are likely to stay the same throughout the block
3998     smrv_strong_next=(1<<28)|(1<<29)|(1<<30);
3999     smrv_weak_next=~smrv_strong_next;
4000     //printf(" llr %08x\n", smrv[4]);
4001   }
4002   smrv_strong=smrv_strong_next;
4003   smrv_weak=smrv_weak_next;
4004   switch(dops[i].itype) {
4005     case ALU:
4006       if     ((smrv_strong>>dops[i].rs1)&1) speculate_mov(dops[i].rs1,dops[i].rt1);
4007       else if((smrv_strong>>dops[i].rs2)&1) speculate_mov(dops[i].rs2,dops[i].rt1);
4008       else if((smrv_weak>>dops[i].rs1)&1) speculate_mov_weak(dops[i].rs1,dops[i].rt1);
4009       else if((smrv_weak>>dops[i].rs2)&1) speculate_mov_weak(dops[i].rs2,dops[i].rt1);
4010       else {
4011         smrv_strong_next&=~(1<<dops[i].rt1);
4012         smrv_weak_next&=~(1<<dops[i].rt1);
4013       }
4014       break;
4015     case SHIFTIMM:
4016       smrv_strong_next&=~(1<<dops[i].rt1);
4017       smrv_weak_next&=~(1<<dops[i].rt1);
4018       // fallthrough
4019     case IMM16:
4020       if(dops[i].rt1&&is_const(&regs[i],dops[i].rt1)) {
4021         int value,hr=get_reg(regs[i].regmap,dops[i].rt1);
4022         if(hr>=0) {
4023           if(get_final_value(hr,i,&value))
4024                smrv[dops[i].rt1]=value;
4025           else smrv[dops[i].rt1]=constmap[i][hr];
4026           smrv_strong_next|=1<<dops[i].rt1;
4027         }
4028       }
4029       else {
4030         if     ((smrv_strong>>dops[i].rs1)&1) speculate_mov(dops[i].rs1,dops[i].rt1);
4031         else if((smrv_weak>>dops[i].rs1)&1) speculate_mov_weak(dops[i].rs1,dops[i].rt1);
4032       }
4033       break;
4034     case LOAD:
4035       if(start<0x2000&&(dops[i].rt1==26||(smrv[dops[i].rt1]>>24)==0xa0)) {
4036         // special case for BIOS
4037         smrv[dops[i].rt1]=0xa0000000;
4038         smrv_strong_next|=1<<dops[i].rt1;
4039         break;
4040       }
4041       // fallthrough
4042     case SHIFT:
4043     case LOADLR:
4044     case MOV:
4045       smrv_strong_next&=~(1<<dops[i].rt1);
4046       smrv_weak_next&=~(1<<dops[i].rt1);
4047       break;
4048     case COP0:
4049     case COP2:
4050       if(dops[i].opcode2==0||dops[i].opcode2==2) { // MFC/CFC
4051         smrv_strong_next&=~(1<<dops[i].rt1);
4052         smrv_weak_next&=~(1<<dops[i].rt1);
4053       }
4054       break;
4055     case C2LS:
4056       if (dops[i].opcode==0x32) { // LWC2
4057         smrv_strong_next&=~(1<<dops[i].rt1);
4058         smrv_weak_next&=~(1<<dops[i].rt1);
4059       }
4060       break;
4061   }
4062 #if 0
4063   int r=4;
4064   printf("x %08x %08x %d %d c %08x %08x\n",smrv[r],start+i*4,
4065     ((smrv_strong>>r)&1),(smrv_weak>>r)&1,regs[i].isconst,regs[i].wasconst);
4066 #endif
4067 }
4068
4069 static void ujump_assemble(int i, const struct regstat *i_regs);
4070 static void rjump_assemble(int i, const struct regstat *i_regs);
4071 static void cjump_assemble(int i, const struct regstat *i_regs);
4072 static void sjump_assemble(int i, const struct regstat *i_regs);
4073 static void pagespan_assemble(int i, const struct regstat *i_regs);
4074
4075 static int assemble(int i, const struct regstat *i_regs, int ccadj_)
4076 {
4077   int ds = 0;
4078   switch (dops[i].itype) {
4079     case ALU:
4080       alu_assemble(i, i_regs);
4081       break;
4082     case IMM16:
4083       imm16_assemble(i, i_regs);
4084       break;
4085     case SHIFT:
4086       shift_assemble(i, i_regs);
4087       break;
4088     case SHIFTIMM:
4089       shiftimm_assemble(i, i_regs);
4090       break;
4091     case LOAD:
4092       load_assemble(i, i_regs, ccadj_);
4093       break;
4094     case LOADLR:
4095       loadlr_assemble(i, i_regs, ccadj_);
4096       break;
4097     case STORE:
4098       store_assemble(i, i_regs, ccadj_);
4099       break;
4100     case STORELR:
4101       storelr_assemble(i, i_regs, ccadj_);
4102       break;
4103     case COP0:
4104       cop0_assemble(i, i_regs, ccadj_);
4105       break;
4106     case COP1:
4107       cop1_assemble(i, i_regs);
4108       break;
4109     case C1LS:
4110       c1ls_assemble(i, i_regs);
4111       break;
4112     case COP2:
4113       cop2_assemble(i, i_regs);
4114       break;
4115     case C2LS:
4116       c2ls_assemble(i, i_regs, ccadj_);
4117       break;
4118     case C2OP:
4119       c2op_assemble(i, i_regs);
4120       break;
4121     case MULTDIV:
4122       multdiv_assemble(i, i_regs);
4123       multdiv_prepare_stall(i, i_regs, ccadj_);
4124       break;
4125     case MOV:
4126       mov_assemble(i, i_regs);
4127       break;
4128     case SYSCALL:
4129       syscall_assemble(i, i_regs, ccadj_);
4130       break;
4131     case HLECALL:
4132       hlecall_assemble(i, i_regs, ccadj_);
4133       break;
4134     case INTCALL:
4135       intcall_assemble(i, i_regs, ccadj_);
4136       break;
4137     case UJUMP:
4138       ujump_assemble(i, i_regs);
4139       ds = 1;
4140       break;
4141     case RJUMP:
4142       rjump_assemble(i, i_regs);
4143       ds = 1;
4144       break;
4145     case CJUMP:
4146       cjump_assemble(i, i_regs);
4147       ds = 1;
4148       break;
4149     case SJUMP:
4150       sjump_assemble(i, i_regs);
4151       ds = 1;
4152       break;
4153     case SPAN:
4154       pagespan_assemble(i, i_regs);
4155       break;
4156     case NOP:
4157     case OTHER:
4158     case NI:
4159       // not handled, just skip
4160       break;
4161     default:
4162       assert(0);
4163   }
4164   return ds;
4165 }
4166
4167 static void ds_assemble(int i, const struct regstat *i_regs)
4168 {
4169   speculate_register_values(i);
4170   is_delayslot = 1;
4171   switch (dops[i].itype) {
4172     case SYSCALL:
4173     case HLECALL:
4174     case INTCALL:
4175     case SPAN:
4176     case UJUMP:
4177     case RJUMP:
4178     case CJUMP:
4179     case SJUMP:
4180       SysPrintf("Jump in the delay slot.  This is probably a bug.\n");
4181       break;
4182     default:
4183       assemble(i, i_regs, ccadj[i]);
4184   }
4185   is_delayslot = 0;
4186 }
4187
4188 // Is the branch target a valid internal jump?
4189 static int internal_branch(int addr)
4190 {
4191   if(addr&1) return 0; // Indirect (register) jump
4192   if(addr>=start && addr<start+slen*4-4)
4193   {
4194     return 1;
4195   }
4196   return 0;
4197 }
4198
4199 static void wb_invalidate(signed char pre[],signed char entry[],uint64_t dirty,uint64_t u)
4200 {
4201   int hr;
4202   for(hr=0;hr<HOST_REGS;hr++) {
4203     if(hr!=EXCLUDE_REG) {
4204       if(pre[hr]!=entry[hr]) {
4205         if(pre[hr]>=0) {
4206           if((dirty>>hr)&1) {
4207             if(get_reg(entry,pre[hr])<0) {
4208               assert(pre[hr]<64);
4209               if(!((u>>pre[hr])&1))
4210                 emit_storereg(pre[hr],hr);
4211             }
4212           }
4213         }
4214       }
4215     }
4216   }
4217   // Move from one register to another (no writeback)
4218   for(hr=0;hr<HOST_REGS;hr++) {
4219     if(hr!=EXCLUDE_REG) {
4220       if(pre[hr]!=entry[hr]) {
4221         if(pre[hr]>=0&&(pre[hr]&63)<TEMPREG) {
4222           int nr;
4223           if((nr=get_reg(entry,pre[hr]))>=0) {
4224             emit_mov(hr,nr);
4225           }
4226         }
4227       }
4228     }
4229   }
4230 }
4231
4232 // Load the specified registers
4233 // This only loads the registers given as arguments because
4234 // we don't want to load things that will be overwritten
4235 static void load_regs(signed char entry[],signed char regmap[],int rs1,int rs2)
4236 {
4237   int hr;
4238   // Load 32-bit regs
4239   for(hr=0;hr<HOST_REGS;hr++) {
4240     if(hr!=EXCLUDE_REG&&regmap[hr]>=0) {
4241       if(entry[hr]!=regmap[hr]) {
4242         if(regmap[hr]==rs1||regmap[hr]==rs2)
4243         {
4244           if(regmap[hr]==0) {
4245             emit_zeroreg(hr);
4246           }
4247           else
4248           {
4249             emit_loadreg(regmap[hr],hr);
4250           }
4251         }
4252       }
4253     }
4254   }
4255 }
4256
4257 // Load registers prior to the start of a loop
4258 // so that they are not loaded within the loop
4259 static void loop_preload(signed char pre[],signed char entry[])
4260 {
4261   int hr;
4262   for(hr=0;hr<HOST_REGS;hr++) {
4263     if(hr!=EXCLUDE_REG) {
4264       if(pre[hr]!=entry[hr]) {
4265         if(entry[hr]>=0) {
4266           if(get_reg(pre,entry[hr])<0) {
4267             assem_debug("loop preload:\n");
4268             //printf("loop preload: %d\n",hr);
4269             if(entry[hr]==0) {
4270               emit_zeroreg(hr);
4271             }
4272             else if(entry[hr]<TEMPREG)
4273             {
4274               emit_loadreg(entry[hr],hr);
4275             }
4276             else if(entry[hr]-64<TEMPREG)
4277             {
4278               emit_loadreg(entry[hr],hr);
4279             }
4280           }
4281         }
4282       }
4283     }
4284   }
4285 }
4286
4287 // Generate address for load/store instruction
4288 // goes to AGEN for writes, FTEMP for LOADLR and cop1/2 loads
4289 void address_generation(int i, const struct regstat *i_regs, signed char entry[])
4290 {
4291   if (dops[i].is_load || dops[i].is_store) {
4292     int ra=-1;
4293     int agr=AGEN1+(i&1);
4294     if(dops[i].itype==LOAD) {
4295       ra=get_reg(i_regs->regmap,dops[i].rt1);
4296       if(ra<0) ra=get_reg(i_regs->regmap,-1);
4297       assert(ra>=0);
4298     }
4299     if(dops[i].itype==LOADLR) {
4300       ra=get_reg(i_regs->regmap,FTEMP);
4301     }
4302     if(dops[i].itype==STORE||dops[i].itype==STORELR) {
4303       ra=get_reg(i_regs->regmap,agr);
4304       if(ra<0) ra=get_reg(i_regs->regmap,-1);
4305     }
4306     if(dops[i].itype==C2LS) {
4307       if ((dops[i].opcode&0x3b)==0x31||(dops[i].opcode&0x3b)==0x32) // LWC1/LDC1/LWC2/LDC2
4308         ra=get_reg(i_regs->regmap,FTEMP);
4309       else { // SWC1/SDC1/SWC2/SDC2
4310         ra=get_reg(i_regs->regmap,agr);
4311         if(ra<0) ra=get_reg(i_regs->regmap,-1);
4312       }
4313     }
4314     int rs=get_reg(i_regs->regmap,dops[i].rs1);
4315     if(ra>=0) {
4316       int offset=imm[i];
4317       int c=(i_regs->wasconst>>rs)&1;
4318       if(dops[i].rs1==0) {
4319         // Using r0 as a base address
4320         if(!entry||entry[ra]!=agr) {
4321           if (dops[i].opcode==0x22||dops[i].opcode==0x26) {
4322             emit_movimm(offset&0xFFFFFFFC,ra); // LWL/LWR
4323           }else if (dops[i].opcode==0x1a||dops[i].opcode==0x1b) {
4324             emit_movimm(offset&0xFFFFFFF8,ra); // LDL/LDR
4325           }else{
4326             emit_movimm(offset,ra);
4327           }
4328         } // else did it in the previous cycle
4329       }
4330       else if(rs<0) {
4331         if(!entry||entry[ra]!=dops[i].rs1)
4332           emit_loadreg(dops[i].rs1,ra);
4333         //if(!entry||entry[ra]!=dops[i].rs1)
4334         //  printf("poor load scheduling!\n");
4335       }
4336       else if(c) {
4337         if(dops[i].rs1!=dops[i].rt1||dops[i].itype!=LOAD) {
4338           if(!entry||entry[ra]!=agr) {
4339             if (dops[i].opcode==0x22||dops[i].opcode==0x26) {
4340               emit_movimm((constmap[i][rs]+offset)&0xFFFFFFFC,ra); // LWL/LWR
4341             }else if (dops[i].opcode==0x1a||dops[i].opcode==0x1b) {
4342               emit_movimm((constmap[i][rs]+offset)&0xFFFFFFF8,ra); // LDL/LDR
4343             }else{
4344               emit_movimm(constmap[i][rs]+offset,ra);
4345               regs[i].loadedconst|=1<<ra;
4346             }
4347           } // else did it in the previous cycle
4348         } // else load_consts already did it
4349       }
4350       if(offset&&!c&&dops[i].rs1) {
4351         if(rs>=0) {
4352           emit_addimm(rs,offset,ra);
4353         }else{
4354           emit_addimm(ra,offset,ra);
4355         }
4356       }
4357     }
4358   }
4359   // Preload constants for next instruction
4360   if (dops[i+1].is_load || dops[i+1].is_store) {
4361     int agr,ra;
4362     // Actual address
4363     agr=AGEN1+((i+1)&1);
4364     ra=get_reg(i_regs->regmap,agr);
4365     if(ra>=0) {
4366       int rs=get_reg(regs[i+1].regmap,dops[i+1].rs1);
4367       int offset=imm[i+1];
4368       int c=(regs[i+1].wasconst>>rs)&1;
4369       if(c&&(dops[i+1].rs1!=dops[i+1].rt1||dops[i+1].itype!=LOAD)) {
4370         if (dops[i+1].opcode==0x22||dops[i+1].opcode==0x26) {
4371           emit_movimm((constmap[i+1][rs]+offset)&0xFFFFFFFC,ra); // LWL/LWR
4372         }else if (dops[i+1].opcode==0x1a||dops[i+1].opcode==0x1b) {
4373           emit_movimm((constmap[i+1][rs]+offset)&0xFFFFFFF8,ra); // LDL/LDR
4374         }else{
4375           emit_movimm(constmap[i+1][rs]+offset,ra);
4376           regs[i+1].loadedconst|=1<<ra;
4377         }
4378       }
4379       else if(dops[i+1].rs1==0) {
4380         // Using r0 as a base address
4381         if (dops[i+1].opcode==0x22||dops[i+1].opcode==0x26) {
4382           emit_movimm(offset&0xFFFFFFFC,ra); // LWL/LWR
4383         }else if (dops[i+1].opcode==0x1a||dops[i+1].opcode==0x1b) {
4384           emit_movimm(offset&0xFFFFFFF8,ra); // LDL/LDR
4385         }else{
4386           emit_movimm(offset,ra);
4387         }
4388       }
4389     }
4390   }
4391 }
4392
4393 static int get_final_value(int hr, int i, int *value)
4394 {
4395   int reg=regs[i].regmap[hr];
4396   while(i<slen-1) {
4397     if(regs[i+1].regmap[hr]!=reg) break;
4398     if(!((regs[i+1].isconst>>hr)&1)) break;
4399     if(dops[i+1].bt) break;
4400     i++;
4401   }
4402   if(i<slen-1) {
4403     if (dops[i].is_jump) {
4404       *value=constmap[i][hr];
4405       return 1;
4406     }
4407     if(!dops[i+1].bt) {
4408       if (dops[i+1].is_jump) {
4409         // Load in delay slot, out-of-order execution
4410         if(dops[i+2].itype==LOAD&&dops[i+2].rs1==reg&&dops[i+2].rt1==reg&&((regs[i+1].wasconst>>hr)&1))
4411         {
4412           // Precompute load address
4413           *value=constmap[i][hr]+imm[i+2];
4414           return 1;
4415         }
4416       }
4417       if(dops[i+1].itype==LOAD&&dops[i+1].rs1==reg&&dops[i+1].rt1==reg)
4418       {
4419         // Precompute load address
4420         *value=constmap[i][hr]+imm[i+1];
4421         //printf("c=%x imm=%lx\n",(long)constmap[i][hr],imm[i+1]);
4422         return 1;
4423       }
4424     }
4425   }
4426   *value=constmap[i][hr];
4427   //printf("c=%lx\n",(long)constmap[i][hr]);
4428   if(i==slen-1) return 1;
4429   assert(reg < 64);
4430   return !((unneeded_reg[i+1]>>reg)&1);
4431 }
4432
4433 // Load registers with known constants
4434 static void load_consts(signed char pre[],signed char regmap[],int i)
4435 {
4436   int hr,hr2;
4437   // propagate loaded constant flags
4438   if(i==0||dops[i].bt)
4439     regs[i].loadedconst=0;
4440   else {
4441     for(hr=0;hr<HOST_REGS;hr++) {
4442       if(hr!=EXCLUDE_REG&&regmap[hr]>=0&&((regs[i-1].isconst>>hr)&1)&&pre[hr]==regmap[hr]
4443          &&regmap[hr]==regs[i-1].regmap[hr]&&((regs[i-1].loadedconst>>hr)&1))
4444       {
4445         regs[i].loadedconst|=1<<hr;
4446       }
4447     }
4448   }
4449   // Load 32-bit regs
4450   for(hr=0;hr<HOST_REGS;hr++) {
4451     if(hr!=EXCLUDE_REG&&regmap[hr]>=0) {
4452       //if(entry[hr]!=regmap[hr]) {
4453       if(!((regs[i].loadedconst>>hr)&1)) {
4454         assert(regmap[hr]<64);
4455         if(((regs[i].isconst>>hr)&1)&&regmap[hr]>0) {
4456           int value,similar=0;
4457           if(get_final_value(hr,i,&value)) {
4458             // see if some other register has similar value
4459             for(hr2=0;hr2<HOST_REGS;hr2++) {
4460               if(hr2!=EXCLUDE_REG&&((regs[i].loadedconst>>hr2)&1)) {
4461                 if(is_similar_value(value,constmap[i][hr2])) {
4462                   similar=1;
4463                   break;
4464                 }
4465               }
4466             }
4467             if(similar) {
4468               int value2;
4469               if(get_final_value(hr2,i,&value2)) // is this needed?
4470                 emit_movimm_from(value2,hr2,value,hr);
4471               else
4472                 emit_movimm(value,hr);
4473             }
4474             else if(value==0) {
4475               emit_zeroreg(hr);
4476             }
4477             else {
4478               emit_movimm(value,hr);
4479             }
4480           }
4481           regs[i].loadedconst|=1<<hr;
4482         }
4483       }
4484     }
4485   }
4486 }
4487
4488 static void load_all_consts(const signed char regmap[], u_int dirty, int i)
4489 {
4490   int hr;
4491   // Load 32-bit regs
4492   for(hr=0;hr<HOST_REGS;hr++) {
4493     if(hr!=EXCLUDE_REG&&regmap[hr]>=0&&((dirty>>hr)&1)) {
4494       assert(regmap[hr] < 64);
4495       if(((regs[i].isconst>>hr)&1)&&regmap[hr]>0) {
4496         int value=constmap[i][hr];
4497         if(value==0) {
4498           emit_zeroreg(hr);
4499         }
4500         else {
4501           emit_movimm(value,hr);
4502         }
4503       }
4504     }
4505   }
4506 }
4507
4508 // Write out all dirty registers (except cycle count)
4509 static void wb_dirtys(const signed char i_regmap[], uint64_t i_dirty)
4510 {
4511   int hr;
4512   for(hr=0;hr<HOST_REGS;hr++) {
4513     if(hr!=EXCLUDE_REG) {
4514       if(i_regmap[hr]>0) {
4515         if(i_regmap[hr]!=CCREG) {
4516           if((i_dirty>>hr)&1) {
4517             assert(i_regmap[hr]<64);
4518             emit_storereg(i_regmap[hr],hr);
4519           }
4520         }
4521       }
4522     }
4523   }
4524 }
4525
4526 // Write out dirty registers that we need to reload (pair with load_needed_regs)
4527 // This writes the registers not written by store_regs_bt
4528 static void wb_needed_dirtys(const signed char i_regmap[], uint64_t i_dirty, int addr)
4529 {
4530   int hr;
4531   int t=(addr-start)>>2;
4532   for(hr=0;hr<HOST_REGS;hr++) {
4533     if(hr!=EXCLUDE_REG) {
4534       if(i_regmap[hr]>0) {
4535         if(i_regmap[hr]!=CCREG) {
4536           if(i_regmap[hr]==regs[t].regmap_entry[hr] && ((regs[t].dirty>>hr)&1)) {
4537             if((i_dirty>>hr)&1) {
4538               assert(i_regmap[hr]<64);
4539               emit_storereg(i_regmap[hr],hr);
4540             }
4541           }
4542         }
4543       }
4544     }
4545   }
4546 }
4547
4548 // Load all registers (except cycle count)
4549 static void load_all_regs(const signed char i_regmap[])
4550 {
4551   int hr;
4552   for(hr=0;hr<HOST_REGS;hr++) {
4553     if(hr!=EXCLUDE_REG) {
4554       if(i_regmap[hr]==0) {
4555         emit_zeroreg(hr);
4556       }
4557       else
4558       if(i_regmap[hr]>0 && (i_regmap[hr]&63)<TEMPREG && i_regmap[hr]!=CCREG)
4559       {
4560         emit_loadreg(i_regmap[hr],hr);
4561       }
4562     }
4563   }
4564 }
4565
4566 // Load all current registers also needed by next instruction
4567 static void load_needed_regs(const signed char i_regmap[], const signed char next_regmap[])
4568 {
4569   int hr;
4570   for(hr=0;hr<HOST_REGS;hr++) {
4571     if(hr!=EXCLUDE_REG) {
4572       if(get_reg(next_regmap,i_regmap[hr])>=0) {
4573         if(i_regmap[hr]==0) {
4574           emit_zeroreg(hr);
4575         }
4576         else
4577         if(i_regmap[hr]>0 && (i_regmap[hr]&63)<TEMPREG && i_regmap[hr]!=CCREG)
4578         {
4579           emit_loadreg(i_regmap[hr],hr);
4580         }
4581       }
4582     }
4583   }
4584 }
4585
4586 // Load all regs, storing cycle count if necessary
4587 static void load_regs_entry(int t)
4588 {
4589   int hr;
4590   if(dops[t].is_ds) emit_addimm(HOST_CCREG,CLOCK_ADJUST(1),HOST_CCREG);
4591   else if(ccadj[t]) emit_addimm(HOST_CCREG,-ccadj[t],HOST_CCREG);
4592   if(regs[t].regmap_entry[HOST_CCREG]!=CCREG) {
4593     emit_storereg(CCREG,HOST_CCREG);
4594   }
4595   // Load 32-bit regs
4596   for(hr=0;hr<HOST_REGS;hr++) {
4597     if(regs[t].regmap_entry[hr]>=0&&regs[t].regmap_entry[hr]<TEMPREG) {
4598       if(regs[t].regmap_entry[hr]==0) {
4599         emit_zeroreg(hr);
4600       }
4601       else if(regs[t].regmap_entry[hr]!=CCREG)
4602       {
4603         emit_loadreg(regs[t].regmap_entry[hr],hr);
4604       }
4605     }
4606   }
4607 }
4608
4609 // Store dirty registers prior to branch
4610 void store_regs_bt(signed char i_regmap[],uint64_t i_dirty,int addr)
4611 {
4612   if(internal_branch(addr))
4613   {
4614     int t=(addr-start)>>2;
4615     int hr;
4616     for(hr=0;hr<HOST_REGS;hr++) {
4617       if(hr!=EXCLUDE_REG) {
4618         if(i_regmap[hr]>0 && i_regmap[hr]!=CCREG) {
4619           if(i_regmap[hr]!=regs[t].regmap_entry[hr] || !((regs[t].dirty>>hr)&1)) {
4620             if((i_dirty>>hr)&1) {
4621               assert(i_regmap[hr]<64);
4622               if(!((unneeded_reg[t]>>i_regmap[hr])&1))
4623                 emit_storereg(i_regmap[hr],hr);
4624             }
4625           }
4626         }
4627       }
4628     }
4629   }
4630   else
4631   {
4632     // Branch out of this block, write out all dirty regs
4633     wb_dirtys(i_regmap,i_dirty);
4634   }
4635 }
4636
4637 // Load all needed registers for branch target
4638 static void load_regs_bt(signed char i_regmap[],uint64_t i_dirty,int addr)
4639 {
4640   //if(addr>=start && addr<(start+slen*4))
4641   if(internal_branch(addr))
4642   {
4643     int t=(addr-start)>>2;
4644     int hr;
4645     // Store the cycle count before loading something else
4646     if(i_regmap[HOST_CCREG]!=CCREG) {
4647       assert(i_regmap[HOST_CCREG]==-1);
4648     }
4649     if(regs[t].regmap_entry[HOST_CCREG]!=CCREG) {
4650       emit_storereg(CCREG,HOST_CCREG);
4651     }
4652     // Load 32-bit regs
4653     for(hr=0;hr<HOST_REGS;hr++) {
4654       if(hr!=EXCLUDE_REG&&regs[t].regmap_entry[hr]>=0&&regs[t].regmap_entry[hr]<TEMPREG) {
4655         if(i_regmap[hr]!=regs[t].regmap_entry[hr]) {
4656           if(regs[t].regmap_entry[hr]==0) {
4657             emit_zeroreg(hr);
4658           }
4659           else if(regs[t].regmap_entry[hr]!=CCREG)
4660           {
4661             emit_loadreg(regs[t].regmap_entry[hr],hr);
4662           }
4663         }
4664       }
4665     }
4666   }
4667 }
4668
4669 static int match_bt(signed char i_regmap[],uint64_t i_dirty,int addr)
4670 {
4671   if(addr>=start && addr<start+slen*4-4)
4672   {
4673     int t=(addr-start)>>2;
4674     int hr;
4675     if(regs[t].regmap_entry[HOST_CCREG]!=CCREG) return 0;
4676     for(hr=0;hr<HOST_REGS;hr++)
4677     {
4678       if(hr!=EXCLUDE_REG)
4679       {
4680         if(i_regmap[hr]!=regs[t].regmap_entry[hr])
4681         {
4682           if(regs[t].regmap_entry[hr]>=0&&(regs[t].regmap_entry[hr]|64)<TEMPREG+64)
4683           {
4684             return 0;
4685           }
4686           else
4687           if((i_dirty>>hr)&1)
4688           {
4689             if(i_regmap[hr]<TEMPREG)
4690             {
4691               if(!((unneeded_reg[t]>>i_regmap[hr])&1))
4692                 return 0;
4693             }
4694             else if(i_regmap[hr]>=64&&i_regmap[hr]<TEMPREG+64)
4695             {
4696               assert(0);
4697             }
4698           }
4699         }
4700         else // Same register but is it 32-bit or dirty?
4701         if(i_regmap[hr]>=0)
4702         {
4703           if(!((regs[t].dirty>>hr)&1))
4704           {
4705             if((i_dirty>>hr)&1)
4706             {
4707               if(!((unneeded_reg[t]>>i_regmap[hr])&1))
4708               {
4709                 //printf("%x: dirty no match\n",addr);
4710                 return 0;
4711               }
4712             }
4713           }
4714         }
4715       }
4716     }
4717     // Delay slots are not valid branch targets
4718     //if(t>0&&(dops[t-1].is_jump) return 0;
4719     // Delay slots require additional processing, so do not match
4720     if(dops[t].is_ds) return 0;
4721   }
4722   else
4723   {
4724     int hr;
4725     for(hr=0;hr<HOST_REGS;hr++)
4726     {
4727       if(hr!=EXCLUDE_REG)
4728       {
4729         if(i_regmap[hr]>=0)
4730         {
4731           if(hr!=HOST_CCREG||i_regmap[hr]!=CCREG)
4732           {
4733             if((i_dirty>>hr)&1)
4734             {
4735               return 0;
4736             }
4737           }
4738         }
4739       }
4740     }
4741   }
4742   return 1;
4743 }
4744
4745 #ifdef DRC_DBG
4746 static void drc_dbg_emit_do_cmp(int i, int ccadj_)
4747 {
4748   extern void do_insn_cmp();
4749   //extern int cycle;
4750   u_int hr, reglist = get_host_reglist(regs[i].regmap);
4751
4752   assem_debug("//do_insn_cmp %08x\n", start+i*4);
4753   save_regs(reglist);
4754   // write out changed consts to match the interpreter
4755   if (i > 0 && !dops[i].bt) {
4756     for (hr = 0; hr < HOST_REGS; hr++) {
4757       int reg = regs[i].regmap_entry[hr]; // regs[i-1].regmap[hr];
4758       if (hr == EXCLUDE_REG || reg < 0)
4759         continue;
4760       if (!((regs[i-1].isconst >> hr) & 1))
4761         continue;
4762       if (i > 1 && reg == regs[i-2].regmap[hr] && constmap[i-1][hr] == constmap[i-2][hr])
4763         continue;
4764       emit_movimm(constmap[i-1][hr],0);
4765       emit_storereg(reg, 0);
4766     }
4767   }
4768   emit_movimm(start+i*4,0);
4769   emit_writeword(0,&pcaddr);
4770   int cc = get_reg(regs[i].regmap_entry, CCREG);
4771   if (cc < 0)
4772     emit_loadreg(CCREG, cc = 0);
4773   emit_addimm(cc, ccadj_, 0);
4774   emit_writeword(0, &psxRegs.cycle);
4775   emit_far_call(do_insn_cmp);
4776   //emit_readword(&cycle,0);
4777   //emit_addimm(0,2,0);
4778   //emit_writeword(0,&cycle);
4779   (void)get_reg2;
4780   restore_regs(reglist);
4781   assem_debug("\\\\do_insn_cmp\n");
4782 }
4783 #else
4784 #define drc_dbg_emit_do_cmp(x,y)
4785 #endif
4786
4787 // Used when a branch jumps into the delay slot of another branch
4788 static void ds_assemble_entry(int i)
4789 {
4790   int t = (ba[i] - start) >> 2;
4791   int ccadj_ = -CLOCK_ADJUST(1);
4792   if (!instr_addr[t])
4793     instr_addr[t] = out;
4794   assem_debug("Assemble delay slot at %x\n",ba[i]);
4795   assem_debug("<->\n");
4796   drc_dbg_emit_do_cmp(t, ccadj_);
4797   if(regs[t].regmap_entry[HOST_CCREG]==CCREG&&regs[t].regmap[HOST_CCREG]!=CCREG)
4798     wb_register(CCREG,regs[t].regmap_entry,regs[t].wasdirty);
4799   load_regs(regs[t].regmap_entry,regs[t].regmap,dops[t].rs1,dops[t].rs2);
4800   address_generation(t,&regs[t],regs[t].regmap_entry);
4801   if (ram_offset && (dops[t].is_load || dops[t].is_store))
4802     load_regs(regs[t].regmap_entry,regs[t].regmap,ROREG,ROREG);
4803   if (dops[t].is_store)
4804     load_regs(regs[t].regmap_entry,regs[t].regmap,INVCP,INVCP);
4805   is_delayslot=0;
4806   switch (dops[t].itype) {
4807     case SYSCALL:
4808     case HLECALL:
4809     case INTCALL:
4810     case SPAN:
4811     case UJUMP:
4812     case RJUMP:
4813     case CJUMP:
4814     case SJUMP:
4815       SysPrintf("Jump in the delay slot.  This is probably a bug.\n");
4816       break;
4817     default:
4818       assemble(t, &regs[t], ccadj_);
4819   }
4820   store_regs_bt(regs[t].regmap,regs[t].dirty,ba[i]+4);
4821   load_regs_bt(regs[t].regmap,regs[t].dirty,ba[i]+4);
4822   if(internal_branch(ba[i]+4))
4823     assem_debug("branch: internal\n");
4824   else
4825     assem_debug("branch: external\n");
4826   assert(internal_branch(ba[i]+4));
4827   add_to_linker(out,ba[i]+4,internal_branch(ba[i]+4));
4828   emit_jmp(0);
4829 }
4830
4831 static void emit_extjump(void *addr, u_int target)
4832 {
4833   emit_extjump2(addr, target, dyna_linker);
4834 }
4835
4836 static void emit_extjump_ds(void *addr, u_int target)
4837 {
4838   emit_extjump2(addr, target, dyna_linker_ds);
4839 }
4840
4841 // Load 2 immediates optimizing for small code size
4842 static void emit_mov2imm_compact(int imm1,u_int rt1,int imm2,u_int rt2)
4843 {
4844   emit_movimm(imm1,rt1);
4845   emit_movimm_from(imm1,rt1,imm2,rt2);
4846 }
4847
4848 static void do_cc(int i, const signed char i_regmap[], int *adj,
4849   int addr, int taken, int invert)
4850 {
4851   int count, count_plus2;
4852   void *jaddr;
4853   void *idle=NULL;
4854   int t=0;
4855   if(dops[i].itype==RJUMP)
4856   {
4857     *adj=0;
4858   }
4859   //if(ba[i]>=start && ba[i]<(start+slen*4))
4860   if(internal_branch(ba[i]))
4861   {
4862     t=(ba[i]-start)>>2;
4863     if(dops[t].is_ds) *adj=-CLOCK_ADJUST(1); // Branch into delay slot adds an extra cycle
4864     else *adj=ccadj[t];
4865   }
4866   else
4867   {
4868     *adj=0;
4869   }
4870   count = ccadj[i];
4871   count_plus2 = count + CLOCK_ADJUST(2);
4872   if(taken==TAKEN && i==(ba[i]-start)>>2 && source[i+1]==0) {
4873     // Idle loop
4874     if(count&1) emit_addimm_and_set_flags(2*(count+2),HOST_CCREG);
4875     idle=out;
4876     //emit_subfrommem(&idlecount,HOST_CCREG); // Count idle cycles
4877     emit_andimm(HOST_CCREG,3,HOST_CCREG);
4878     jaddr=out;
4879     emit_jmp(0);
4880   }
4881   else if(*adj==0||invert) {
4882     int cycles = count_plus2;
4883     // faster loop HACK
4884 #if 0
4885     if (t&&*adj) {
4886       int rel=t-i;
4887       if(-NO_CYCLE_PENALTY_THR<rel&&rel<0)
4888         cycles=*adj+count+2-*adj;
4889     }
4890 #endif
4891     emit_addimm_and_set_flags(cycles, HOST_CCREG);
4892     jaddr = out;
4893     emit_jns(0);
4894   }
4895   else
4896   {
4897     emit_cmpimm(HOST_CCREG, -count_plus2);
4898     jaddr = out;
4899     emit_jns(0);
4900   }
4901   add_stub(CC_STUB,jaddr,idle?idle:out,(*adj==0||invert||idle)?0:count_plus2,i,addr,taken,0);
4902 }
4903
4904 static void do_ccstub(int n)
4905 {
4906   literal_pool(256);
4907   assem_debug("do_ccstub %x\n",start+(u_int)stubs[n].b*4);
4908   set_jump_target(stubs[n].addr, out);
4909   int i=stubs[n].b;
4910   if(stubs[n].d==NULLDS) {
4911     // Delay slot instruction is nullified ("likely" branch)
4912     wb_dirtys(regs[i].regmap,regs[i].dirty);
4913   }
4914   else if(stubs[n].d!=TAKEN) {
4915     wb_dirtys(branch_regs[i].regmap,branch_regs[i].dirty);
4916   }
4917   else {
4918     if(internal_branch(ba[i]))
4919       wb_needed_dirtys(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
4920   }
4921   if(stubs[n].c!=-1)
4922   {
4923     // Save PC as return address
4924     emit_movimm(stubs[n].c,EAX);
4925     emit_writeword(EAX,&pcaddr);
4926   }
4927   else
4928   {
4929     // Return address depends on which way the branch goes
4930     if(dops[i].itype==CJUMP||dops[i].itype==SJUMP)
4931     {
4932       int s1l=get_reg(branch_regs[i].regmap,dops[i].rs1);
4933       int s2l=get_reg(branch_regs[i].regmap,dops[i].rs2);
4934       if(dops[i].rs1==0)
4935       {
4936         s1l=s2l;
4937         s2l=-1;
4938       }
4939       else if(dops[i].rs2==0)
4940       {
4941         s2l=-1;
4942       }
4943       assert(s1l>=0);
4944       #ifdef DESTRUCTIVE_WRITEBACK
4945       if(dops[i].rs1) {
4946         if((branch_regs[i].dirty>>s1l)&&1)
4947           emit_loadreg(dops[i].rs1,s1l);
4948       }
4949       else {
4950         if((branch_regs[i].dirty>>s1l)&1)
4951           emit_loadreg(dops[i].rs2,s1l);
4952       }
4953       if(s2l>=0)
4954         if((branch_regs[i].dirty>>s2l)&1)
4955           emit_loadreg(dops[i].rs2,s2l);
4956       #endif
4957       int hr=0;
4958       int addr=-1,alt=-1,ntaddr=-1;
4959       while(hr<HOST_REGS)
4960       {
4961         if(hr!=EXCLUDE_REG && hr!=HOST_CCREG &&
4962            (branch_regs[i].regmap[hr]&63)!=dops[i].rs1 &&
4963            (branch_regs[i].regmap[hr]&63)!=dops[i].rs2 )
4964         {
4965           addr=hr++;break;
4966         }
4967         hr++;
4968       }
4969       while(hr<HOST_REGS)
4970       {
4971         if(hr!=EXCLUDE_REG && hr!=HOST_CCREG &&
4972            (branch_regs[i].regmap[hr]&63)!=dops[i].rs1 &&
4973            (branch_regs[i].regmap[hr]&63)!=dops[i].rs2 )
4974         {
4975           alt=hr++;break;
4976         }
4977         hr++;
4978       }
4979       if((dops[i].opcode&0x2E)==6) // BLEZ/BGTZ needs another register
4980       {
4981         while(hr<HOST_REGS)
4982         {
4983           if(hr!=EXCLUDE_REG && hr!=HOST_CCREG &&
4984              (branch_regs[i].regmap[hr]&63)!=dops[i].rs1 &&
4985              (branch_regs[i].regmap[hr]&63)!=dops[i].rs2 )
4986           {
4987             ntaddr=hr;break;
4988           }
4989           hr++;
4990         }
4991         assert(hr<HOST_REGS);
4992       }
4993       if((dops[i].opcode&0x2f)==4) // BEQ
4994       {
4995         #ifdef HAVE_CMOV_IMM
4996         if(s2l>=0) emit_cmp(s1l,s2l);
4997         else emit_test(s1l,s1l);
4998         emit_cmov2imm_e_ne_compact(ba[i],start+i*4+8,addr);
4999         #else
5000         emit_mov2imm_compact(ba[i],addr,start+i*4+8,alt);
5001         if(s2l>=0) emit_cmp(s1l,s2l);
5002         else emit_test(s1l,s1l);
5003         emit_cmovne_reg(alt,addr);
5004         #endif
5005       }
5006       if((dops[i].opcode&0x2f)==5) // BNE
5007       {
5008         #ifdef HAVE_CMOV_IMM
5009         if(s2l>=0) emit_cmp(s1l,s2l);
5010         else emit_test(s1l,s1l);
5011         emit_cmov2imm_e_ne_compact(start+i*4+8,ba[i],addr);
5012         #else
5013         emit_mov2imm_compact(start+i*4+8,addr,ba[i],alt);
5014         if(s2l>=0) emit_cmp(s1l,s2l);
5015         else emit_test(s1l,s1l);
5016         emit_cmovne_reg(alt,addr);
5017         #endif
5018       }
5019       if((dops[i].opcode&0x2f)==6) // BLEZ
5020       {
5021         //emit_movimm(ba[i],alt);
5022         //emit_movimm(start+i*4+8,addr);
5023         emit_mov2imm_compact(ba[i],alt,start+i*4+8,addr);
5024         emit_cmpimm(s1l,1);
5025         emit_cmovl_reg(alt,addr);
5026       }
5027       if((dops[i].opcode&0x2f)==7) // BGTZ
5028       {
5029         //emit_movimm(ba[i],addr);
5030         //emit_movimm(start+i*4+8,ntaddr);
5031         emit_mov2imm_compact(ba[i],addr,start+i*4+8,ntaddr);
5032         emit_cmpimm(s1l,1);
5033         emit_cmovl_reg(ntaddr,addr);
5034       }
5035       if((dops[i].opcode==1)&&(dops[i].opcode2&0x2D)==0) // BLTZ
5036       {
5037         //emit_movimm(ba[i],alt);
5038         //emit_movimm(start+i*4+8,addr);
5039         emit_mov2imm_compact(ba[i],alt,start+i*4+8,addr);
5040         emit_test(s1l,s1l);
5041         emit_cmovs_reg(alt,addr);
5042       }
5043       if((dops[i].opcode==1)&&(dops[i].opcode2&0x2D)==1) // BGEZ
5044       {
5045         //emit_movimm(ba[i],addr);
5046         //emit_movimm(start+i*4+8,alt);
5047         emit_mov2imm_compact(ba[i],addr,start+i*4+8,alt);
5048         emit_test(s1l,s1l);
5049         emit_cmovs_reg(alt,addr);
5050       }
5051       if(dops[i].opcode==0x11 && dops[i].opcode2==0x08 ) {
5052         if(source[i]&0x10000) // BC1T
5053         {
5054           //emit_movimm(ba[i],alt);
5055           //emit_movimm(start+i*4+8,addr);
5056           emit_mov2imm_compact(ba[i],alt,start+i*4+8,addr);
5057           emit_testimm(s1l,0x800000);
5058           emit_cmovne_reg(alt,addr);
5059         }
5060         else // BC1F
5061         {
5062           //emit_movimm(ba[i],addr);
5063           //emit_movimm(start+i*4+8,alt);
5064           emit_mov2imm_compact(ba[i],addr,start+i*4+8,alt);
5065           emit_testimm(s1l,0x800000);
5066           emit_cmovne_reg(alt,addr);
5067         }
5068       }
5069       emit_writeword(addr,&pcaddr);
5070     }
5071     else
5072     if(dops[i].itype==RJUMP)
5073     {
5074       int r=get_reg(branch_regs[i].regmap,dops[i].rs1);
5075       if (ds_writes_rjump_rs(i)) {
5076         r=get_reg(branch_regs[i].regmap,RTEMP);
5077       }
5078       emit_writeword(r,&pcaddr);
5079     }
5080     else {SysPrintf("Unknown branch type in do_ccstub\n");abort();}
5081   }
5082   // Update cycle count
5083   assert(branch_regs[i].regmap[HOST_CCREG]==CCREG||branch_regs[i].regmap[HOST_CCREG]==-1);
5084   if(stubs[n].a) emit_addimm(HOST_CCREG,(int)stubs[n].a,HOST_CCREG);
5085   emit_far_call(cc_interrupt);
5086   if(stubs[n].a) emit_addimm(HOST_CCREG,-(int)stubs[n].a,HOST_CCREG);
5087   if(stubs[n].d==TAKEN) {
5088     if(internal_branch(ba[i]))
5089       load_needed_regs(branch_regs[i].regmap,regs[(ba[i]-start)>>2].regmap_entry);
5090     else if(dops[i].itype==RJUMP) {
5091       if(get_reg(branch_regs[i].regmap,RTEMP)>=0)
5092         emit_readword(&pcaddr,get_reg(branch_regs[i].regmap,RTEMP));
5093       else
5094         emit_loadreg(dops[i].rs1,get_reg(branch_regs[i].regmap,dops[i].rs1));
5095     }
5096   }else if(stubs[n].d==NOTTAKEN) {
5097     if(i<slen-2) load_needed_regs(branch_regs[i].regmap,regmap_pre[i+2]);
5098     else load_all_regs(branch_regs[i].regmap);
5099   }else if(stubs[n].d==NULLDS) {
5100     // Delay slot instruction is nullified ("likely" branch)
5101     if(i<slen-2) load_needed_regs(regs[i].regmap,regmap_pre[i+2]);
5102     else load_all_regs(regs[i].regmap);
5103   }else{
5104     load_all_regs(branch_regs[i].regmap);
5105   }
5106   if (stubs[n].retaddr)
5107     emit_jmp(stubs[n].retaddr);
5108   else
5109     do_jump_vaddr(stubs[n].e);
5110 }
5111
5112 static void add_to_linker(void *addr, u_int target, int ext)
5113 {
5114   assert(linkcount < ARRAY_SIZE(link_addr));
5115   link_addr[linkcount].addr = addr;
5116   link_addr[linkcount].target = target;
5117   link_addr[linkcount].ext = ext;
5118   linkcount++;
5119 }
5120
5121 static void ujump_assemble_write_ra(int i)
5122 {
5123   int rt;
5124   unsigned int return_address;
5125   rt=get_reg(branch_regs[i].regmap,31);
5126   assem_debug("branch(%d): eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7]);
5127   //assert(rt>=0);
5128   return_address=start+i*4+8;
5129   if(rt>=0) {
5130     #ifdef USE_MINI_HT
5131     if(internal_branch(return_address)&&dops[i+1].rt1!=31) {
5132       int temp=-1; // note: must be ds-safe
5133       #ifdef HOST_TEMPREG
5134       temp=HOST_TEMPREG;
5135       #endif
5136       if(temp>=0) do_miniht_insert(return_address,rt,temp);
5137       else emit_movimm(return_address,rt);
5138     }
5139     else
5140     #endif
5141     {
5142       #ifdef REG_PREFETCH
5143       if(temp>=0)
5144       {
5145         if(i_regmap[temp]!=PTEMP) emit_movimm((uintptr_t)hash_table_get(return_address),temp);
5146       }
5147       #endif
5148       emit_movimm(return_address,rt); // PC into link register
5149       #ifdef IMM_PREFETCH
5150       emit_prefetch(hash_table_get(return_address));
5151       #endif
5152     }
5153   }
5154 }
5155
5156 static void ujump_assemble(int i, const struct regstat *i_regs)
5157 {
5158   int ra_done=0;
5159   if(i==(ba[i]-start)>>2) assem_debug("idle loop\n");
5160   address_generation(i+1,i_regs,regs[i].regmap_entry);
5161   #ifdef REG_PREFETCH
5162   int temp=get_reg(branch_regs[i].regmap,PTEMP);
5163   if(dops[i].rt1==31&&temp>=0)
5164   {
5165     signed char *i_regmap=i_regs->regmap;
5166     int return_address=start+i*4+8;
5167     if(get_reg(branch_regs[i].regmap,31)>0)
5168     if(i_regmap[temp]==PTEMP) emit_movimm((uintptr_t)hash_table_get(return_address),temp);
5169   }
5170   #endif
5171   if(dops[i].rt1==31&&(dops[i].rt1==dops[i+1].rs1||dops[i].rt1==dops[i+1].rs2)) {
5172     ujump_assemble_write_ra(i); // writeback ra for DS
5173     ra_done=1;
5174   }
5175   ds_assemble(i+1,i_regs);
5176   uint64_t bc_unneeded=branch_regs[i].u;
5177   bc_unneeded|=1|(1LL<<dops[i].rt1);
5178   wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,bc_unneeded);
5179   load_regs(regs[i].regmap,branch_regs[i].regmap,CCREG,CCREG);
5180   if(!ra_done&&dops[i].rt1==31)
5181     ujump_assemble_write_ra(i);
5182   int cc,adj;
5183   cc=get_reg(branch_regs[i].regmap,CCREG);
5184   assert(cc==HOST_CCREG);
5185   store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5186   #ifdef REG_PREFETCH
5187   if(dops[i].rt1==31&&temp>=0) emit_prefetchreg(temp);
5188   #endif
5189   do_cc(i,branch_regs[i].regmap,&adj,ba[i],TAKEN,0);
5190   if(adj) emit_addimm(cc, ccadj[i] + CLOCK_ADJUST(2) - adj, cc);
5191   load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5192   if(internal_branch(ba[i]))
5193     assem_debug("branch: internal\n");
5194   else
5195     assem_debug("branch: external\n");
5196   if (internal_branch(ba[i]) && dops[(ba[i]-start)>>2].is_ds) {
5197     ds_assemble_entry(i);
5198   }
5199   else {
5200     add_to_linker(out,ba[i],internal_branch(ba[i]));
5201     emit_jmp(0);
5202   }
5203 }
5204
5205 static void rjump_assemble_write_ra(int i)
5206 {
5207   int rt,return_address;
5208   assert(dops[i+1].rt1!=dops[i].rt1);
5209   assert(dops[i+1].rt2!=dops[i].rt1);
5210   rt=get_reg(branch_regs[i].regmap,dops[i].rt1);
5211   assem_debug("branch(%d): eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7]);
5212   assert(rt>=0);
5213   return_address=start+i*4+8;
5214   #ifdef REG_PREFETCH
5215   if(temp>=0)
5216   {
5217     if(i_regmap[temp]!=PTEMP) emit_movimm((uintptr_t)hash_table_get(return_address),temp);
5218   }
5219   #endif
5220   emit_movimm(return_address,rt); // PC into link register
5221   #ifdef IMM_PREFETCH
5222   emit_prefetch(hash_table_get(return_address));
5223   #endif
5224 }
5225
5226 static void rjump_assemble(int i, const struct regstat *i_regs)
5227 {
5228   int temp;
5229   int rs,cc;
5230   int ra_done=0;
5231   rs=get_reg(branch_regs[i].regmap,dops[i].rs1);
5232   assert(rs>=0);
5233   if (ds_writes_rjump_rs(i)) {
5234     // Delay slot abuse, make a copy of the branch address register
5235     temp=get_reg(branch_regs[i].regmap,RTEMP);
5236     assert(temp>=0);
5237     assert(regs[i].regmap[temp]==RTEMP);
5238     emit_mov(rs,temp);
5239     rs=temp;
5240   }
5241   address_generation(i+1,i_regs,regs[i].regmap_entry);
5242   #ifdef REG_PREFETCH
5243   if(dops[i].rt1==31)
5244   {
5245     if((temp=get_reg(branch_regs[i].regmap,PTEMP))>=0) {
5246       signed char *i_regmap=i_regs->regmap;
5247       int return_address=start+i*4+8;
5248       if(i_regmap[temp]==PTEMP) emit_movimm((uintptr_t)hash_table_get(return_address),temp);
5249     }
5250   }
5251   #endif
5252   #ifdef USE_MINI_HT
5253   if(dops[i].rs1==31) {
5254     int rh=get_reg(regs[i].regmap,RHASH);
5255     if(rh>=0) do_preload_rhash(rh);
5256   }
5257   #endif
5258   if(dops[i].rt1!=0&&(dops[i].rt1==dops[i+1].rs1||dops[i].rt1==dops[i+1].rs2)) {
5259     rjump_assemble_write_ra(i);
5260     ra_done=1;
5261   }
5262   ds_assemble(i+1,i_regs);
5263   uint64_t bc_unneeded=branch_regs[i].u;
5264   bc_unneeded|=1|(1LL<<dops[i].rt1);
5265   bc_unneeded&=~(1LL<<dops[i].rs1);
5266   wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,bc_unneeded);
5267   load_regs(regs[i].regmap,branch_regs[i].regmap,dops[i].rs1,CCREG);
5268   if(!ra_done&&dops[i].rt1!=0)
5269     rjump_assemble_write_ra(i);
5270   cc=get_reg(branch_regs[i].regmap,CCREG);
5271   assert(cc==HOST_CCREG);
5272   (void)cc;
5273   #ifdef USE_MINI_HT
5274   int rh=get_reg(branch_regs[i].regmap,RHASH);
5275   int ht=get_reg(branch_regs[i].regmap,RHTBL);
5276   if(dops[i].rs1==31) {
5277     if(regs[i].regmap[rh]!=RHASH) do_preload_rhash(rh);
5278     do_preload_rhtbl(ht);
5279     do_rhash(rs,rh);
5280   }
5281   #endif
5282   store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,-1);
5283   #ifdef DESTRUCTIVE_WRITEBACK
5284   if((branch_regs[i].dirty>>rs)&1) {
5285     if(dops[i].rs1!=dops[i+1].rt1&&dops[i].rs1!=dops[i+1].rt2) {
5286       emit_loadreg(dops[i].rs1,rs);
5287     }
5288   }
5289   #endif
5290   #ifdef REG_PREFETCH
5291   if(dops[i].rt1==31&&temp>=0) emit_prefetchreg(temp);
5292   #endif
5293   #ifdef USE_MINI_HT
5294   if(dops[i].rs1==31) {
5295     do_miniht_load(ht,rh);
5296   }
5297   #endif
5298   //do_cc(i,branch_regs[i].regmap,&adj,-1,TAKEN);
5299   //if(adj) emit_addimm(cc,2*(ccadj[i]+2-adj),cc); // ??? - Shouldn't happen
5300   //assert(adj==0);
5301   emit_addimm_and_set_flags(ccadj[i] + CLOCK_ADJUST(2), HOST_CCREG);
5302   add_stub(CC_STUB,out,NULL,0,i,-1,TAKEN,rs);
5303   if(dops[i+1].itype==COP0&&(source[i+1]&0x3f)==0x10)
5304     // special case for RFE
5305     emit_jmp(0);
5306   else
5307     emit_jns(0);
5308   //load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,-1);
5309   #ifdef USE_MINI_HT
5310   if(dops[i].rs1==31) {
5311     do_miniht_jump(rs,rh,ht);
5312   }
5313   else
5314   #endif
5315   {
5316     do_jump_vaddr(rs);
5317   }
5318   #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
5319   if(dops[i].rt1!=31&&i<slen-2&&(((u_int)out)&7)) emit_mov(13,13);
5320   #endif
5321 }
5322
5323 static void cjump_assemble(int i, const struct regstat *i_regs)
5324 {
5325   const signed char *i_regmap = i_regs->regmap;
5326   int cc;
5327   int match;
5328   match=match_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5329   assem_debug("match=%d\n",match);
5330   int s1l,s2l;
5331   int unconditional=0,nop=0;
5332   int invert=0;
5333   int internal=internal_branch(ba[i]);
5334   if(i==(ba[i]-start)>>2) assem_debug("idle loop\n");
5335   if(!match) invert=1;
5336   #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
5337   if(i>(ba[i]-start)>>2) invert=1;
5338   #endif
5339   #ifdef __aarch64__
5340   invert=1; // because of near cond. branches
5341   #endif
5342
5343   if(dops[i].ooo) {
5344     s1l=get_reg(branch_regs[i].regmap,dops[i].rs1);
5345     s2l=get_reg(branch_regs[i].regmap,dops[i].rs2);
5346   }
5347   else {
5348     s1l=get_reg(i_regmap,dops[i].rs1);
5349     s2l=get_reg(i_regmap,dops[i].rs2);
5350   }
5351   if(dops[i].rs1==0&&dops[i].rs2==0)
5352   {
5353     if(dops[i].opcode&1) nop=1;
5354     else unconditional=1;
5355     //assert(dops[i].opcode!=5);
5356     //assert(dops[i].opcode!=7);
5357     //assert(dops[i].opcode!=0x15);
5358     //assert(dops[i].opcode!=0x17);
5359   }
5360   else if(dops[i].rs1==0)
5361   {
5362     s1l=s2l;
5363     s2l=-1;
5364   }
5365   else if(dops[i].rs2==0)
5366   {
5367     s2l=-1;
5368   }
5369
5370   if(dops[i].ooo) {
5371     // Out of order execution (delay slot first)
5372     //printf("OOOE\n");
5373     address_generation(i+1,i_regs,regs[i].regmap_entry);
5374     ds_assemble(i+1,i_regs);
5375     int adj;
5376     uint64_t bc_unneeded=branch_regs[i].u;
5377     bc_unneeded&=~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
5378     bc_unneeded|=1;
5379     wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,bc_unneeded);
5380     load_regs(regs[i].regmap,branch_regs[i].regmap,dops[i].rs1,dops[i].rs2);
5381     load_regs(regs[i].regmap,branch_regs[i].regmap,CCREG,CCREG);
5382     cc=get_reg(branch_regs[i].regmap,CCREG);
5383     assert(cc==HOST_CCREG);
5384     if(unconditional)
5385       store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5386     //do_cc(i,branch_regs[i].regmap,&adj,unconditional?ba[i]:-1,unconditional);
5387     //assem_debug("cycle count (adj)\n");
5388     if(unconditional) {
5389       do_cc(i,branch_regs[i].regmap,&adj,ba[i],TAKEN,0);
5390       if(i!=(ba[i]-start)>>2 || source[i+1]!=0) {
5391         if(adj) emit_addimm(cc, ccadj[i] + CLOCK_ADJUST(2) - adj, cc);
5392         load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5393         if(internal)
5394           assem_debug("branch: internal\n");
5395         else
5396           assem_debug("branch: external\n");
5397         if (internal && dops[(ba[i]-start)>>2].is_ds) {
5398           ds_assemble_entry(i);
5399         }
5400         else {
5401           add_to_linker(out,ba[i],internal);
5402           emit_jmp(0);
5403         }
5404         #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
5405         if(((u_int)out)&7) emit_addnop(0);
5406         #endif
5407       }
5408     }
5409     else if(nop) {
5410       emit_addimm_and_set_flags(ccadj[i] + CLOCK_ADJUST(2), cc);
5411       void *jaddr=out;
5412       emit_jns(0);
5413       add_stub(CC_STUB,jaddr,out,0,i,start+i*4+8,NOTTAKEN,0);
5414     }
5415     else {
5416       void *taken = NULL, *nottaken = NULL, *nottaken1 = NULL;
5417       do_cc(i,branch_regs[i].regmap,&adj,-1,0,invert);
5418       if(adj&&!invert) emit_addimm(cc, ccadj[i] + CLOCK_ADJUST(2) - adj, cc);
5419
5420       //printf("branch(%d): eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7]);
5421       assert(s1l>=0);
5422       if(dops[i].opcode==4) // BEQ
5423       {
5424         if(s2l>=0) emit_cmp(s1l,s2l);
5425         else emit_test(s1l,s1l);
5426         if(invert){
5427           nottaken=out;
5428           emit_jne(DJT_1);
5429         }else{
5430           add_to_linker(out,ba[i],internal);
5431           emit_jeq(0);
5432         }
5433       }
5434       if(dops[i].opcode==5) // BNE
5435       {
5436         if(s2l>=0) emit_cmp(s1l,s2l);
5437         else emit_test(s1l,s1l);
5438         if(invert){
5439           nottaken=out;
5440           emit_jeq(DJT_1);
5441         }else{
5442           add_to_linker(out,ba[i],internal);
5443           emit_jne(0);
5444         }
5445       }
5446       if(dops[i].opcode==6) // BLEZ
5447       {
5448         emit_cmpimm(s1l,1);
5449         if(invert){
5450           nottaken=out;
5451           emit_jge(DJT_1);
5452         }else{
5453           add_to_linker(out,ba[i],internal);
5454           emit_jl(0);
5455         }
5456       }
5457       if(dops[i].opcode==7) // BGTZ
5458       {
5459         emit_cmpimm(s1l,1);
5460         if(invert){
5461           nottaken=out;
5462           emit_jl(DJT_1);
5463         }else{
5464           add_to_linker(out,ba[i],internal);
5465           emit_jge(0);
5466         }
5467       }
5468       if(invert) {
5469         if(taken) set_jump_target(taken, out);
5470         #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
5471         if (match && (!internal || !dops[(ba[i]-start)>>2].is_ds)) {
5472           if(adj) {
5473             emit_addimm(cc,-adj,cc);
5474             add_to_linker(out,ba[i],internal);
5475           }else{
5476             emit_addnop(13);
5477             add_to_linker(out,ba[i],internal*2);
5478           }
5479           emit_jmp(0);
5480         }else
5481         #endif
5482         {
5483           if(adj) emit_addimm(cc,-adj,cc);
5484           store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5485           load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5486           if(internal)
5487             assem_debug("branch: internal\n");
5488           else
5489             assem_debug("branch: external\n");
5490           if (internal && dops[(ba[i] - start) >> 2].is_ds) {
5491             ds_assemble_entry(i);
5492           }
5493           else {
5494             add_to_linker(out,ba[i],internal);
5495             emit_jmp(0);
5496           }
5497         }
5498         set_jump_target(nottaken, out);
5499       }
5500
5501       if(nottaken1) set_jump_target(nottaken1, out);
5502       if(adj) {
5503         if(!invert) emit_addimm(cc,adj,cc);
5504       }
5505     } // (!unconditional)
5506   } // if(ooo)
5507   else
5508   {
5509     // In-order execution (branch first)
5510     void *taken = NULL, *nottaken = NULL, *nottaken1 = NULL;
5511     if(!unconditional&&!nop) {
5512       //printf("branch(%d): eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7]);
5513       assert(s1l>=0);
5514       if((dops[i].opcode&0x2f)==4) // BEQ
5515       {
5516         if(s2l>=0) emit_cmp(s1l,s2l);
5517         else emit_test(s1l,s1l);
5518         nottaken=out;
5519         emit_jne(DJT_2);
5520       }
5521       if((dops[i].opcode&0x2f)==5) // BNE
5522       {
5523         if(s2l>=0) emit_cmp(s1l,s2l);
5524         else emit_test(s1l,s1l);
5525         nottaken=out;
5526         emit_jeq(DJT_2);
5527       }
5528       if((dops[i].opcode&0x2f)==6) // BLEZ
5529       {
5530         emit_cmpimm(s1l,1);
5531         nottaken=out;
5532         emit_jge(DJT_2);
5533       }
5534       if((dops[i].opcode&0x2f)==7) // BGTZ
5535       {
5536         emit_cmpimm(s1l,1);
5537         nottaken=out;
5538         emit_jl(DJT_2);
5539       }
5540     } // if(!unconditional)
5541     int adj;
5542     uint64_t ds_unneeded=branch_regs[i].u;
5543     ds_unneeded&=~((1LL<<dops[i+1].rs1)|(1LL<<dops[i+1].rs2));
5544     ds_unneeded|=1;
5545     // branch taken
5546     if(!nop) {
5547       if(taken) set_jump_target(taken, out);
5548       assem_debug("1:\n");
5549       wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,ds_unneeded);
5550       // load regs
5551       load_regs(regs[i].regmap,branch_regs[i].regmap,dops[i+1].rs1,dops[i+1].rs2);
5552       address_generation(i+1,&branch_regs[i],0);
5553       if (ram_offset)
5554         load_regs(regs[i].regmap,branch_regs[i].regmap,ROREG,ROREG);
5555       load_regs(regs[i].regmap,branch_regs[i].regmap,CCREG,INVCP);
5556       ds_assemble(i+1,&branch_regs[i]);
5557       cc=get_reg(branch_regs[i].regmap,CCREG);
5558       if(cc==-1) {
5559         emit_loadreg(CCREG,cc=HOST_CCREG);
5560         // CHECK: Is the following instruction (fall thru) allocated ok?
5561       }
5562       assert(cc==HOST_CCREG);
5563       store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5564       do_cc(i,i_regmap,&adj,ba[i],TAKEN,0);
5565       assem_debug("cycle count (adj)\n");
5566       if(adj) emit_addimm(cc, ccadj[i] + CLOCK_ADJUST(2) - adj, cc);
5567       load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5568       if(internal)
5569         assem_debug("branch: internal\n");
5570       else
5571         assem_debug("branch: external\n");
5572       if (internal && dops[(ba[i] - start) >> 2].is_ds) {
5573         ds_assemble_entry(i);
5574       }
5575       else {
5576         add_to_linker(out,ba[i],internal);
5577         emit_jmp(0);
5578       }
5579     }
5580     // branch not taken
5581     if(!unconditional) {
5582       if(nottaken1) set_jump_target(nottaken1, out);
5583       set_jump_target(nottaken, out);
5584       assem_debug("2:\n");
5585       wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,ds_unneeded);
5586       // load regs
5587       load_regs(regs[i].regmap,branch_regs[i].regmap,dops[i+1].rs1,dops[i+1].rs2);
5588       address_generation(i+1,&branch_regs[i],0);
5589       if (ram_offset)
5590         load_regs(regs[i].regmap,branch_regs[i].regmap,ROREG,ROREG);
5591       load_regs(regs[i].regmap,branch_regs[i].regmap,CCREG,INVCP);
5592       ds_assemble(i+1,&branch_regs[i]);
5593       cc=get_reg(branch_regs[i].regmap,CCREG);
5594       if (cc == -1) {
5595         // Cycle count isn't in a register, temporarily load it then write it out
5596         emit_loadreg(CCREG,HOST_CCREG);
5597         emit_addimm_and_set_flags(ccadj[i] + CLOCK_ADJUST(2), HOST_CCREG);
5598         void *jaddr=out;
5599         emit_jns(0);
5600         add_stub(CC_STUB,jaddr,out,0,i,start+i*4+8,NOTTAKEN,0);
5601         emit_storereg(CCREG,HOST_CCREG);
5602       }
5603       else{
5604         cc=get_reg(i_regmap,CCREG);
5605         assert(cc==HOST_CCREG);
5606         emit_addimm_and_set_flags(ccadj[i] + CLOCK_ADJUST(2), cc);
5607         void *jaddr=out;
5608         emit_jns(0);
5609         add_stub(CC_STUB,jaddr,out,0,i,start+i*4+8,NOTTAKEN,0);
5610       }
5611     }
5612   }
5613 }
5614
5615 static void sjump_assemble(int i, const struct regstat *i_regs)
5616 {
5617   const signed char *i_regmap = i_regs->regmap;
5618   int cc;
5619   int match;
5620   match=match_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5621   assem_debug("smatch=%d ooo=%d\n", match, dops[i].ooo);
5622   int s1l;
5623   int unconditional=0,nevertaken=0;
5624   int invert=0;
5625   int internal=internal_branch(ba[i]);
5626   if(i==(ba[i]-start)>>2) assem_debug("idle loop\n");
5627   if(!match) invert=1;
5628   #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
5629   if(i>(ba[i]-start)>>2) invert=1;
5630   #endif
5631   #ifdef __aarch64__
5632   invert=1; // because of near cond. branches
5633   #endif
5634
5635   //if(dops[i].opcode2>=0x10) return; // FIXME (BxxZAL)
5636   //assert(dops[i].opcode2<0x10||dops[i].rs1==0); // FIXME (BxxZAL)
5637
5638   if(dops[i].ooo) {
5639     s1l=get_reg(branch_regs[i].regmap,dops[i].rs1);
5640   }
5641   else {
5642     s1l=get_reg(i_regmap,dops[i].rs1);
5643   }
5644   if(dops[i].rs1==0)
5645   {
5646     if(dops[i].opcode2&1) unconditional=1;
5647     else nevertaken=1;
5648     // These are never taken (r0 is never less than zero)
5649     //assert(dops[i].opcode2!=0);
5650     //assert(dops[i].opcode2!=2);
5651     //assert(dops[i].opcode2!=0x10);
5652     //assert(dops[i].opcode2!=0x12);
5653   }
5654
5655   if(dops[i].ooo) {
5656     // Out of order execution (delay slot first)
5657     //printf("OOOE\n");
5658     address_generation(i+1,i_regs,regs[i].regmap_entry);
5659     ds_assemble(i+1,i_regs);
5660     int adj;
5661     uint64_t bc_unneeded=branch_regs[i].u;
5662     bc_unneeded&=~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
5663     bc_unneeded|=1;
5664     wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,bc_unneeded);
5665     load_regs(regs[i].regmap,branch_regs[i].regmap,dops[i].rs1,dops[i].rs1);
5666     load_regs(regs[i].regmap,branch_regs[i].regmap,CCREG,CCREG);
5667     if(dops[i].rt1==31) {
5668       int rt,return_address;
5669       rt=get_reg(branch_regs[i].regmap,31);
5670       assem_debug("branch(%d): eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7]);
5671       if(rt>=0) {
5672         // Save the PC even if the branch is not taken
5673         return_address=start+i*4+8;
5674         emit_movimm(return_address,rt); // PC into link register
5675         #ifdef IMM_PREFETCH
5676         if(!nevertaken) emit_prefetch(hash_table_get(return_address));
5677         #endif
5678       }
5679     }
5680     cc=get_reg(branch_regs[i].regmap,CCREG);
5681     assert(cc==HOST_CCREG);
5682     if(unconditional)
5683       store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5684     //do_cc(i,branch_regs[i].regmap,&adj,unconditional?ba[i]:-1,unconditional);
5685     assem_debug("cycle count (adj)\n");
5686     if(unconditional) {
5687       do_cc(i,branch_regs[i].regmap,&adj,ba[i],TAKEN,0);
5688       if(i!=(ba[i]-start)>>2 || source[i+1]!=0) {
5689         if(adj) emit_addimm(cc, ccadj[i] + CLOCK_ADJUST(2) - adj, cc);
5690         load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5691         if(internal)
5692           assem_debug("branch: internal\n");
5693         else
5694           assem_debug("branch: external\n");
5695         if (internal && dops[(ba[i] - start) >> 2].is_ds) {
5696           ds_assemble_entry(i);
5697         }
5698         else {
5699           add_to_linker(out,ba[i],internal);
5700           emit_jmp(0);
5701         }
5702         #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
5703         if(((u_int)out)&7) emit_addnop(0);
5704         #endif
5705       }
5706     }
5707     else if(nevertaken) {
5708       emit_addimm_and_set_flags(ccadj[i] + CLOCK_ADJUST(2), cc);
5709       void *jaddr=out;
5710       emit_jns(0);
5711       add_stub(CC_STUB,jaddr,out,0,i,start+i*4+8,NOTTAKEN,0);
5712     }
5713     else {
5714       void *nottaken = NULL;
5715       do_cc(i,branch_regs[i].regmap,&adj,-1,0,invert);
5716       if(adj&&!invert) emit_addimm(cc, ccadj[i] + CLOCK_ADJUST(2) - adj, cc);
5717       {
5718         assert(s1l>=0);
5719         if((dops[i].opcode2&0xf)==0) // BLTZ/BLTZAL
5720         {
5721           emit_test(s1l,s1l);
5722           if(invert){
5723             nottaken=out;
5724             emit_jns(DJT_1);
5725           }else{
5726             add_to_linker(out,ba[i],internal);
5727             emit_js(0);
5728           }
5729         }
5730         if((dops[i].opcode2&0xf)==1) // BGEZ/BLTZAL
5731         {
5732           emit_test(s1l,s1l);
5733           if(invert){
5734             nottaken=out;
5735             emit_js(DJT_1);
5736           }else{
5737             add_to_linker(out,ba[i],internal);
5738             emit_jns(0);
5739           }
5740         }
5741       }
5742
5743       if(invert) {
5744         #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
5745         if (match && (!internal || !dops[(ba[i] - start) >> 2].is_ds)) {
5746           if(adj) {
5747             emit_addimm(cc,-adj,cc);
5748             add_to_linker(out,ba[i],internal);
5749           }else{
5750             emit_addnop(13);
5751             add_to_linker(out,ba[i],internal*2);
5752           }
5753           emit_jmp(0);
5754         }else
5755         #endif
5756         {
5757           if(adj) emit_addimm(cc,-adj,cc);
5758           store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5759           load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5760           if(internal)
5761             assem_debug("branch: internal\n");
5762           else
5763             assem_debug("branch: external\n");
5764           if (internal && dops[(ba[i] - start) >> 2].is_ds) {
5765             ds_assemble_entry(i);
5766           }
5767           else {
5768             add_to_linker(out,ba[i],internal);
5769             emit_jmp(0);
5770           }
5771         }
5772         set_jump_target(nottaken, out);
5773       }
5774
5775       if(adj) {
5776         if(!invert) emit_addimm(cc,adj,cc);
5777       }
5778     } // (!unconditional)
5779   } // if(ooo)
5780   else
5781   {
5782     // In-order execution (branch first)
5783     //printf("IOE\n");
5784     void *nottaken = NULL;
5785     if(dops[i].rt1==31) {
5786       int rt,return_address;
5787       rt=get_reg(branch_regs[i].regmap,31);
5788       if(rt>=0) {
5789         // Save the PC even if the branch is not taken
5790         return_address=start+i*4+8;
5791         emit_movimm(return_address,rt); // PC into link register
5792         #ifdef IMM_PREFETCH
5793         emit_prefetch(hash_table_get(return_address));
5794         #endif
5795       }
5796     }
5797     if(!unconditional) {
5798       //printf("branch(%d): eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7]);
5799         assert(s1l>=0);
5800         if((dops[i].opcode2&0x0d)==0) // BLTZ/BLTZL/BLTZAL/BLTZALL
5801         {
5802           emit_test(s1l,s1l);
5803           nottaken=out;
5804           emit_jns(DJT_1);
5805         }
5806         if((dops[i].opcode2&0x0d)==1) // BGEZ/BGEZL/BGEZAL/BGEZALL
5807         {
5808           emit_test(s1l,s1l);
5809           nottaken=out;
5810           emit_js(DJT_1);
5811         }
5812     } // if(!unconditional)
5813     int adj;
5814     uint64_t ds_unneeded=branch_regs[i].u;
5815     ds_unneeded&=~((1LL<<dops[i+1].rs1)|(1LL<<dops[i+1].rs2));
5816     ds_unneeded|=1;
5817     // branch taken
5818     if(!nevertaken) {
5819       //assem_debug("1:\n");
5820       wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,ds_unneeded);
5821       // load regs
5822       load_regs(regs[i].regmap,branch_regs[i].regmap,dops[i+1].rs1,dops[i+1].rs2);
5823       address_generation(i+1,&branch_regs[i],0);
5824       if (ram_offset)
5825         load_regs(regs[i].regmap,branch_regs[i].regmap,ROREG,ROREG);
5826       load_regs(regs[i].regmap,branch_regs[i].regmap,CCREG,INVCP);
5827       ds_assemble(i+1,&branch_regs[i]);
5828       cc=get_reg(branch_regs[i].regmap,CCREG);
5829       if(cc==-1) {
5830         emit_loadreg(CCREG,cc=HOST_CCREG);
5831         // CHECK: Is the following instruction (fall thru) allocated ok?
5832       }
5833       assert(cc==HOST_CCREG);
5834       store_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5835       do_cc(i,i_regmap,&adj,ba[i],TAKEN,0);
5836       assem_debug("cycle count (adj)\n");
5837       if(adj) emit_addimm(cc, ccadj[i] + CLOCK_ADJUST(2) - adj, cc);
5838       load_regs_bt(branch_regs[i].regmap,branch_regs[i].dirty,ba[i]);
5839       if(internal)
5840         assem_debug("branch: internal\n");
5841       else
5842         assem_debug("branch: external\n");
5843       if (internal && dops[(ba[i] - start) >> 2].is_ds) {
5844         ds_assemble_entry(i);
5845       }
5846       else {
5847         add_to_linker(out,ba[i],internal);
5848         emit_jmp(0);
5849       }
5850     }
5851     // branch not taken
5852     if(!unconditional) {
5853       set_jump_target(nottaken, out);
5854       assem_debug("1:\n");
5855       wb_invalidate(regs[i].regmap,branch_regs[i].regmap,regs[i].dirty,ds_unneeded);
5856       load_regs(regs[i].regmap,branch_regs[i].regmap,dops[i+1].rs1,dops[i+1].rs2);
5857       address_generation(i+1,&branch_regs[i],0);
5858       load_regs(regs[i].regmap,branch_regs[i].regmap,CCREG,CCREG);
5859       ds_assemble(i+1,&branch_regs[i]);
5860       cc=get_reg(branch_regs[i].regmap,CCREG);
5861       if (cc == -1) {
5862         // Cycle count isn't in a register, temporarily load it then write it out
5863         emit_loadreg(CCREG,HOST_CCREG);
5864         emit_addimm_and_set_flags(ccadj[i] + CLOCK_ADJUST(2), HOST_CCREG);
5865         void *jaddr=out;
5866         emit_jns(0);
5867         add_stub(CC_STUB,jaddr,out,0,i,start+i*4+8,NOTTAKEN,0);
5868         emit_storereg(CCREG,HOST_CCREG);
5869       }
5870       else{
5871         cc=get_reg(i_regmap,CCREG);
5872         assert(cc==HOST_CCREG);
5873         emit_addimm_and_set_flags(ccadj[i] + CLOCK_ADJUST(2), cc);
5874         void *jaddr=out;
5875         emit_jns(0);
5876         add_stub(CC_STUB,jaddr,out,0,i,start+i*4+8,NOTTAKEN,0);
5877       }
5878     }
5879   }
5880 }
5881
5882 static void pagespan_assemble(int i, const struct regstat *i_regs)
5883 {
5884   int s1l=get_reg(i_regs->regmap,dops[i].rs1);
5885   int s2l=get_reg(i_regs->regmap,dops[i].rs2);
5886   void *taken = NULL;
5887   void *nottaken = NULL;
5888   int unconditional=0;
5889   if(dops[i].rs1==0)
5890   {
5891     s1l=s2l;
5892     s2l=-1;
5893   }
5894   else if(dops[i].rs2==0)
5895   {
5896     s2l=-1;
5897   }
5898   int hr=0;
5899   int addr=-1,alt=-1,ntaddr=-1;
5900   if(i_regs->regmap[HOST_BTREG]<0) {addr=HOST_BTREG;}
5901   else {
5902     while(hr<HOST_REGS)
5903     {
5904       if(hr!=EXCLUDE_REG && hr!=HOST_CCREG &&
5905          (i_regs->regmap[hr]&63)!=dops[i].rs1 &&
5906          (i_regs->regmap[hr]&63)!=dops[i].rs2 )
5907       {
5908         addr=hr++;break;
5909       }
5910       hr++;
5911     }
5912   }
5913   while(hr<HOST_REGS)
5914   {
5915     if(hr!=EXCLUDE_REG && hr!=HOST_CCREG && hr!=HOST_BTREG &&
5916        (i_regs->regmap[hr]&63)!=dops[i].rs1 &&
5917        (i_regs->regmap[hr]&63)!=dops[i].rs2 )
5918     {
5919       alt=hr++;break;
5920     }
5921     hr++;
5922   }
5923   if((dops[i].opcode&0x2E)==6) // BLEZ/BGTZ needs another register
5924   {
5925     while(hr<HOST_REGS)
5926     {
5927       if(hr!=EXCLUDE_REG && hr!=HOST_CCREG && hr!=HOST_BTREG &&
5928          (i_regs->regmap[hr]&63)!=dops[i].rs1 &&
5929          (i_regs->regmap[hr]&63)!=dops[i].rs2 )
5930       {
5931         ntaddr=hr;break;
5932       }
5933       hr++;
5934     }
5935   }
5936   assert(hr<HOST_REGS);
5937   if((dops[i].opcode&0x2e)==4||dops[i].opcode==0x11) { // BEQ/BNE/BEQL/BNEL/BC1
5938     load_regs(regs[i].regmap_entry,regs[i].regmap,CCREG,CCREG);
5939   }
5940   emit_addimm(HOST_CCREG, ccadj[i] + CLOCK_ADJUST(2), HOST_CCREG);
5941   if(dops[i].opcode==2) // J
5942   {
5943     unconditional=1;
5944   }
5945   if(dops[i].opcode==3) // JAL
5946   {
5947     // TODO: mini_ht
5948     int rt=get_reg(i_regs->regmap,31);
5949     emit_movimm(start+i*4+8,rt);
5950     unconditional=1;
5951   }
5952   if(dops[i].opcode==0&&(dops[i].opcode2&0x3E)==8) // JR/JALR
5953   {
5954     emit_mov(s1l,addr);
5955     if(dops[i].opcode2==9) // JALR
5956     {
5957       int rt=get_reg(i_regs->regmap,dops[i].rt1);
5958       emit_movimm(start+i*4+8,rt);
5959     }
5960   }
5961   if((dops[i].opcode&0x3f)==4) // BEQ
5962   {
5963     if(dops[i].rs1==dops[i].rs2)
5964     {
5965       unconditional=1;
5966     }
5967     else
5968     #ifdef HAVE_CMOV_IMM
5969     if(1) {
5970       if(s2l>=0) emit_cmp(s1l,s2l);
5971       else emit_test(s1l,s1l);
5972       emit_cmov2imm_e_ne_compact(ba[i],start+i*4+8,addr);
5973     }
5974     else
5975     #endif
5976     {
5977       assert(s1l>=0);
5978       emit_mov2imm_compact(ba[i],addr,start+i*4+8,alt);
5979       if(s2l>=0) emit_cmp(s1l,s2l);
5980       else emit_test(s1l,s1l);
5981       emit_cmovne_reg(alt,addr);
5982     }
5983   }
5984   if((dops[i].opcode&0x3f)==5) // BNE
5985   {
5986     #ifdef HAVE_CMOV_IMM
5987     if(s2l>=0) emit_cmp(s1l,s2l);
5988     else emit_test(s1l,s1l);
5989     emit_cmov2imm_e_ne_compact(start+i*4+8,ba[i],addr);
5990     #else
5991     assert(s1l>=0);
5992     emit_mov2imm_compact(start+i*4+8,addr,ba[i],alt);
5993     if(s2l>=0) emit_cmp(s1l,s2l);
5994     else emit_test(s1l,s1l);
5995     emit_cmovne_reg(alt,addr);
5996     #endif
5997   }
5998   if((dops[i].opcode&0x3f)==0x14) // BEQL
5999   {
6000     if(s2l>=0) emit_cmp(s1l,s2l);
6001     else emit_test(s1l,s1l);
6002     if(nottaken) set_jump_target(nottaken, out);
6003     nottaken=out;
6004     emit_jne(0);
6005   }
6006   if((dops[i].opcode&0x3f)==0x15) // BNEL
6007   {
6008     if(s2l>=0) emit_cmp(s1l,s2l);
6009     else emit_test(s1l,s1l);
6010     nottaken=out;
6011     emit_jeq(0);
6012     if(taken) set_jump_target(taken, out);
6013   }
6014   if((dops[i].opcode&0x3f)==6) // BLEZ
6015   {
6016     emit_mov2imm_compact(ba[i],alt,start+i*4+8,addr);
6017     emit_cmpimm(s1l,1);
6018     emit_cmovl_reg(alt,addr);
6019   }
6020   if((dops[i].opcode&0x3f)==7) // BGTZ
6021   {
6022     emit_mov2imm_compact(ba[i],addr,start+i*4+8,ntaddr);
6023     emit_cmpimm(s1l,1);
6024     emit_cmovl_reg(ntaddr,addr);
6025   }
6026   if((dops[i].opcode&0x3f)==0x16) // BLEZL
6027   {
6028     assert((dops[i].opcode&0x3f)!=0x16);
6029   }
6030   if((dops[i].opcode&0x3f)==0x17) // BGTZL
6031   {
6032     assert((dops[i].opcode&0x3f)!=0x17);
6033   }
6034   assert(dops[i].opcode!=1); // BLTZ/BGEZ
6035
6036   //FIXME: Check CSREG
6037   if(dops[i].opcode==0x11 && dops[i].opcode2==0x08 ) {
6038     if((source[i]&0x30000)==0) // BC1F
6039     {
6040       emit_mov2imm_compact(ba[i],addr,start+i*4+8,alt);
6041       emit_testimm(s1l,0x800000);
6042       emit_cmovne_reg(alt,addr);
6043     }
6044     if((source[i]&0x30000)==0x10000) // BC1T
6045     {
6046       emit_mov2imm_compact(ba[i],alt,start+i*4+8,addr);
6047       emit_testimm(s1l,0x800000);
6048       emit_cmovne_reg(alt,addr);
6049     }
6050     if((source[i]&0x30000)==0x20000) // BC1FL
6051     {
6052       emit_testimm(s1l,0x800000);
6053       nottaken=out;
6054       emit_jne(0);
6055     }
6056     if((source[i]&0x30000)==0x30000) // BC1TL
6057     {
6058       emit_testimm(s1l,0x800000);
6059       nottaken=out;
6060       emit_jeq(0);
6061     }
6062   }
6063
6064   assert(i_regs->regmap[HOST_CCREG]==CCREG);
6065   wb_dirtys(regs[i].regmap,regs[i].dirty);
6066   if(unconditional)
6067   {
6068     emit_movimm(ba[i],HOST_BTREG);
6069   }
6070   else if(addr!=HOST_BTREG)
6071   {
6072     emit_mov(addr,HOST_BTREG);
6073   }
6074   void *branch_addr=out;
6075   emit_jmp(0);
6076   int target_addr=start+i*4+5;
6077   void *stub=out;
6078   void *compiled_target_addr=check_addr(target_addr);
6079   emit_extjump_ds(branch_addr, target_addr);
6080   if(compiled_target_addr) {
6081     set_jump_target(branch_addr, compiled_target_addr);
6082     add_jump_out(target_addr,stub);
6083   }
6084   else set_jump_target(branch_addr, stub);
6085 }
6086
6087 // Assemble the delay slot for the above
6088 static void pagespan_ds()
6089 {
6090   assem_debug("initial delay slot:\n");
6091   u_int vaddr=start+1;
6092   u_int page=get_page(vaddr);
6093   u_int vpage=get_vpage(vaddr);
6094   ll_add(jump_dirty+vpage,vaddr,(void *)out);
6095   do_dirty_stub_ds(slen*4);
6096   ll_add(jump_in+page,vaddr,(void *)out);
6097   assert(regs[0].regmap_entry[HOST_CCREG]==CCREG);
6098   if(regs[0].regmap[HOST_CCREG]!=CCREG)
6099     wb_register(CCREG,regs[0].regmap_entry,regs[0].wasdirty);
6100   if(regs[0].regmap[HOST_BTREG]!=BTREG)
6101     emit_writeword(HOST_BTREG,&branch_target);
6102   load_regs(regs[0].regmap_entry,regs[0].regmap,dops[0].rs1,dops[0].rs2);
6103   address_generation(0,&regs[0],regs[0].regmap_entry);
6104   if (ram_offset && (dops[0].is_load || dops[0].is_store))
6105     load_regs(regs[0].regmap_entry,regs[0].regmap,ROREG,ROREG);
6106   if (dops[0].is_store)
6107     load_regs(regs[0].regmap_entry,regs[0].regmap,INVCP,INVCP);
6108   is_delayslot=0;
6109   switch (dops[0].itype) {
6110     case SYSCALL:
6111     case HLECALL:
6112     case INTCALL:
6113     case SPAN:
6114     case UJUMP:
6115     case RJUMP:
6116     case CJUMP:
6117     case SJUMP:
6118       SysPrintf("Jump in the delay slot.  This is probably a bug.\n");
6119       break;
6120     default:
6121       assemble(0, &regs[0], 0);
6122   }
6123   int btaddr=get_reg(regs[0].regmap,BTREG);
6124   if(btaddr<0) {
6125     btaddr=get_reg(regs[0].regmap,-1);
6126     emit_readword(&branch_target,btaddr);
6127   }
6128   assert(btaddr!=HOST_CCREG);
6129   if(regs[0].regmap[HOST_CCREG]!=CCREG) emit_loadreg(CCREG,HOST_CCREG);
6130 #ifdef HOST_IMM8
6131   host_tempreg_acquire();
6132   emit_movimm(start+4,HOST_TEMPREG);
6133   emit_cmp(btaddr,HOST_TEMPREG);
6134   host_tempreg_release();
6135 #else
6136   emit_cmpimm(btaddr,start+4);
6137 #endif
6138   void *branch = out;
6139   emit_jeq(0);
6140   store_regs_bt(regs[0].regmap,regs[0].dirty,-1);
6141   do_jump_vaddr(btaddr);
6142   set_jump_target(branch, out);
6143   store_regs_bt(regs[0].regmap,regs[0].dirty,start+4);
6144   load_regs_bt(regs[0].regmap,regs[0].dirty,start+4);
6145 }
6146
6147 static void check_regmap(signed char *regmap)
6148 {
6149 #ifndef NDEBUG
6150   int i,j;
6151   for (i = 0; i < HOST_REGS; i++) {
6152     if (regmap[i] < 0)
6153       continue;
6154     for (j = i + 1; j < HOST_REGS; j++)
6155       assert(regmap[i] != regmap[j]);
6156   }
6157 #endif
6158 }
6159
6160 // Basic liveness analysis for MIPS registers
6161 static void unneeded_registers(int istart,int iend,int r)
6162 {
6163   int i;
6164   uint64_t u,gte_u,b,gte_b;
6165   uint64_t temp_u,temp_gte_u=0;
6166   uint64_t gte_u_unknown=0;
6167   if (HACK_ENABLED(NDHACK_GTE_UNNEEDED))
6168     gte_u_unknown=~0ll;
6169   if(iend==slen-1) {
6170     u=1;
6171     gte_u=gte_u_unknown;
6172   }else{
6173     //u=unneeded_reg[iend+1];
6174     u=1;
6175     gte_u=gte_unneeded[iend+1];
6176   }
6177
6178   for (i=iend;i>=istart;i--)
6179   {
6180     //printf("unneeded registers i=%d (%d,%d) r=%d\n",i,istart,iend,r);
6181     if(dops[i].is_jump)
6182     {
6183       // If subroutine call, flag return address as a possible branch target
6184       if(dops[i].rt1==31 && i<slen-2) dops[i+2].bt=1;
6185
6186       if(ba[i]<start || ba[i]>=(start+slen*4))
6187       {
6188         // Branch out of this block, flush all regs
6189         u=1;
6190         gte_u=gte_u_unknown;
6191         branch_unneeded_reg[i]=u;
6192         // Merge in delay slot
6193         u|=(1LL<<dops[i+1].rt1)|(1LL<<dops[i+1].rt2);
6194         u&=~((1LL<<dops[i+1].rs1)|(1LL<<dops[i+1].rs2));
6195         u|=1;
6196         gte_u|=gte_rt[i+1];
6197         gte_u&=~gte_rs[i+1];
6198       }
6199       else
6200       {
6201         // Internal branch, flag target
6202         dops[(ba[i]-start)>>2].bt=1;
6203         if(ba[i]<=start+i*4) {
6204           // Backward branch
6205           if(dops[i].is_ujump)
6206           {
6207             // Unconditional branch
6208             temp_u=1;
6209             temp_gte_u=0;
6210           } else {
6211             // Conditional branch (not taken case)
6212             temp_u=unneeded_reg[i+2];
6213             temp_gte_u&=gte_unneeded[i+2];
6214           }
6215           // Merge in delay slot
6216           temp_u|=(1LL<<dops[i+1].rt1)|(1LL<<dops[i+1].rt2);
6217           temp_u&=~((1LL<<dops[i+1].rs1)|(1LL<<dops[i+1].rs2));
6218           temp_u|=1;
6219           temp_gte_u|=gte_rt[i+1];
6220           temp_gte_u&=~gte_rs[i+1];
6221           temp_u|=(1LL<<dops[i].rt1)|(1LL<<dops[i].rt2);
6222           temp_u&=~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
6223           temp_u|=1;
6224           temp_gte_u|=gte_rt[i];
6225           temp_gte_u&=~gte_rs[i];
6226           unneeded_reg[i]=temp_u;
6227           gte_unneeded[i]=temp_gte_u;
6228           // Only go three levels deep.  This recursion can take an
6229           // excessive amount of time if there are a lot of nested loops.
6230           if(r<2) {
6231             unneeded_registers((ba[i]-start)>>2,i-1,r+1);
6232           }else{
6233             unneeded_reg[(ba[i]-start)>>2]=1;
6234             gte_unneeded[(ba[i]-start)>>2]=gte_u_unknown;
6235           }
6236         } /*else*/ if(1) {
6237           if (dops[i].is_ujump)
6238           {
6239             // Unconditional branch
6240             u=unneeded_reg[(ba[i]-start)>>2];
6241             gte_u=gte_unneeded[(ba[i]-start)>>2];
6242             branch_unneeded_reg[i]=u;
6243             // Merge in delay slot
6244             u|=(1LL<<dops[i+1].rt1)|(1LL<<dops[i+1].rt2);
6245             u&=~((1LL<<dops[i+1].rs1)|(1LL<<dops[i+1].rs2));
6246             u|=1;
6247             gte_u|=gte_rt[i+1];
6248             gte_u&=~gte_rs[i+1];
6249           } else {
6250             // Conditional branch
6251             b=unneeded_reg[(ba[i]-start)>>2];
6252             gte_b=gte_unneeded[(ba[i]-start)>>2];
6253             branch_unneeded_reg[i]=b;
6254             // Branch delay slot
6255             b|=(1LL<<dops[i+1].rt1)|(1LL<<dops[i+1].rt2);
6256             b&=~((1LL<<dops[i+1].rs1)|(1LL<<dops[i+1].rs2));
6257             b|=1;
6258             gte_b|=gte_rt[i+1];
6259             gte_b&=~gte_rs[i+1];
6260             u&=b;
6261             gte_u&=gte_b;
6262             if(i<slen-1) {
6263               branch_unneeded_reg[i]&=unneeded_reg[i+2];
6264             } else {
6265               branch_unneeded_reg[i]=1;
6266             }
6267           }
6268         }
6269       }
6270     }
6271     else if(dops[i].itype==SYSCALL||dops[i].itype==HLECALL||dops[i].itype==INTCALL)
6272     {
6273       // SYSCALL instruction (software interrupt)
6274       u=1;
6275     }
6276     else if(dops[i].itype==COP0 && (source[i]&0x3f)==0x18)
6277     {
6278       // ERET instruction (return from interrupt)
6279       u=1;
6280     }
6281     //u=1; // DEBUG
6282     // Written registers are unneeded
6283     u|=1LL<<dops[i].rt1;
6284     u|=1LL<<dops[i].rt2;
6285     gte_u|=gte_rt[i];
6286     // Accessed registers are needed
6287     u&=~(1LL<<dops[i].rs1);
6288     u&=~(1LL<<dops[i].rs2);
6289     gte_u&=~gte_rs[i];
6290     if(gte_rs[i]&&dops[i].rt1&&(unneeded_reg[i+1]&(1ll<<dops[i].rt1)))
6291       gte_u|=gte_rs[i]&gte_unneeded[i+1]; // MFC2/CFC2 to dead register, unneeded
6292     // Source-target dependencies
6293     // R0 is always unneeded
6294     u|=1;
6295     // Save it
6296     unneeded_reg[i]=u;
6297     gte_unneeded[i]=gte_u;
6298     /*
6299     printf("ur (%d,%d) %x: ",istart,iend,start+i*4);
6300     printf("U:");
6301     int r;
6302     for(r=1;r<=CCREG;r++) {
6303       if((unneeded_reg[i]>>r)&1) {
6304         if(r==HIREG) printf(" HI");
6305         else if(r==LOREG) printf(" LO");
6306         else printf(" r%d",r);
6307       }
6308     }
6309     printf("\n");
6310     */
6311   }
6312 }
6313
6314 // Write back dirty registers as soon as we will no longer modify them,
6315 // so that we don't end up with lots of writes at the branches.
6316 void clean_registers(int istart,int iend,int wr)
6317 {
6318   int i;
6319   int r;
6320   u_int will_dirty_i,will_dirty_next,temp_will_dirty;
6321   u_int wont_dirty_i,wont_dirty_next,temp_wont_dirty;
6322   if(iend==slen-1) {
6323     will_dirty_i=will_dirty_next=0;
6324     wont_dirty_i=wont_dirty_next=0;
6325   }else{
6326     will_dirty_i=will_dirty_next=will_dirty[iend+1];
6327     wont_dirty_i=wont_dirty_next=wont_dirty[iend+1];
6328   }
6329   for (i=iend;i>=istart;i--)
6330   {
6331     if(dops[i].is_jump)
6332     {
6333       if(ba[i]<start || ba[i]>=(start+slen*4))
6334       {
6335         // Branch out of this block, flush all regs
6336         if (dops[i].is_ujump)
6337         {
6338           // Unconditional branch
6339           will_dirty_i=0;
6340           wont_dirty_i=0;
6341           // Merge in delay slot (will dirty)
6342           for(r=0;r<HOST_REGS;r++) {
6343             if(r!=EXCLUDE_REG) {
6344               if((branch_regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6345               if((branch_regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6346               if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6347               if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6348               if((branch_regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6349               if(branch_regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6350               if(branch_regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6351               if((regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6352               if((regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6353               if((regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6354               if((regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6355               if((regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6356               if(regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6357               if(regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6358             }
6359           }
6360         }
6361         else
6362         {
6363           // Conditional branch
6364           will_dirty_i=0;
6365           wont_dirty_i=wont_dirty_next;
6366           // Merge in delay slot (will dirty)
6367           for(r=0;r<HOST_REGS;r++) {
6368             if(r!=EXCLUDE_REG) {
6369               if (1) { // !dops[i].likely) {
6370                 // Might not dirty if likely branch is not taken
6371                 if((branch_regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6372                 if((branch_regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6373                 if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6374                 if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6375                 if((branch_regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6376                 if(branch_regs[i].regmap[r]==0) will_dirty_i&=~(1<<r);
6377                 if(branch_regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6378                 //if((regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6379                 //if((regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6380                 if((regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6381                 if((regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6382                 if((regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6383                 if(regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6384                 if(regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6385               }
6386             }
6387           }
6388         }
6389         // Merge in delay slot (wont dirty)
6390         for(r=0;r<HOST_REGS;r++) {
6391           if(r!=EXCLUDE_REG) {
6392             if((regs[i].regmap[r]&63)==dops[i].rt1) wont_dirty_i|=1<<r;
6393             if((regs[i].regmap[r]&63)==dops[i].rt2) wont_dirty_i|=1<<r;
6394             if((regs[i].regmap[r]&63)==dops[i+1].rt1) wont_dirty_i|=1<<r;
6395             if((regs[i].regmap[r]&63)==dops[i+1].rt2) wont_dirty_i|=1<<r;
6396             if(regs[i].regmap[r]==CCREG) wont_dirty_i|=1<<r;
6397             if((branch_regs[i].regmap[r]&63)==dops[i].rt1) wont_dirty_i|=1<<r;
6398             if((branch_regs[i].regmap[r]&63)==dops[i].rt2) wont_dirty_i|=1<<r;
6399             if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) wont_dirty_i|=1<<r;
6400             if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) wont_dirty_i|=1<<r;
6401             if(branch_regs[i].regmap[r]==CCREG) wont_dirty_i|=1<<r;
6402           }
6403         }
6404         if(wr) {
6405           #ifndef DESTRUCTIVE_WRITEBACK
6406           branch_regs[i].dirty&=wont_dirty_i;
6407           #endif
6408           branch_regs[i].dirty|=will_dirty_i;
6409         }
6410       }
6411       else
6412       {
6413         // Internal branch
6414         if(ba[i]<=start+i*4) {
6415           // Backward branch
6416           if (dops[i].is_ujump)
6417           {
6418             // Unconditional branch
6419             temp_will_dirty=0;
6420             temp_wont_dirty=0;
6421             // Merge in delay slot (will dirty)
6422             for(r=0;r<HOST_REGS;r++) {
6423               if(r!=EXCLUDE_REG) {
6424                 if((branch_regs[i].regmap[r]&63)==dops[i].rt1) temp_will_dirty|=1<<r;
6425                 if((branch_regs[i].regmap[r]&63)==dops[i].rt2) temp_will_dirty|=1<<r;
6426                 if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) temp_will_dirty|=1<<r;
6427                 if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) temp_will_dirty|=1<<r;
6428                 if((branch_regs[i].regmap[r]&63)>33) temp_will_dirty&=~(1<<r);
6429                 if(branch_regs[i].regmap[r]<=0) temp_will_dirty&=~(1<<r);
6430                 if(branch_regs[i].regmap[r]==CCREG) temp_will_dirty|=1<<r;
6431                 if((regs[i].regmap[r]&63)==dops[i].rt1) temp_will_dirty|=1<<r;
6432                 if((regs[i].regmap[r]&63)==dops[i].rt2) temp_will_dirty|=1<<r;
6433                 if((regs[i].regmap[r]&63)==dops[i+1].rt1) temp_will_dirty|=1<<r;
6434                 if((regs[i].regmap[r]&63)==dops[i+1].rt2) temp_will_dirty|=1<<r;
6435                 if((regs[i].regmap[r]&63)>33) temp_will_dirty&=~(1<<r);
6436                 if(regs[i].regmap[r]<=0) temp_will_dirty&=~(1<<r);
6437                 if(regs[i].regmap[r]==CCREG) temp_will_dirty|=1<<r;
6438               }
6439             }
6440           } else {
6441             // Conditional branch (not taken case)
6442             temp_will_dirty=will_dirty_next;
6443             temp_wont_dirty=wont_dirty_next;
6444             // Merge in delay slot (will dirty)
6445             for(r=0;r<HOST_REGS;r++) {
6446               if(r!=EXCLUDE_REG) {
6447                 if (1) { // !dops[i].likely) {
6448                   // Will not dirty if likely branch is not taken
6449                   if((branch_regs[i].regmap[r]&63)==dops[i].rt1) temp_will_dirty|=1<<r;
6450                   if((branch_regs[i].regmap[r]&63)==dops[i].rt2) temp_will_dirty|=1<<r;
6451                   if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) temp_will_dirty|=1<<r;
6452                   if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) temp_will_dirty|=1<<r;
6453                   if((branch_regs[i].regmap[r]&63)>33) temp_will_dirty&=~(1<<r);
6454                   if(branch_regs[i].regmap[r]==0) temp_will_dirty&=~(1<<r);
6455                   if(branch_regs[i].regmap[r]==CCREG) temp_will_dirty|=1<<r;
6456                   //if((regs[i].regmap[r]&63)==dops[i].rt1) temp_will_dirty|=1<<r;
6457                   //if((regs[i].regmap[r]&63)==dops[i].rt2) temp_will_dirty|=1<<r;
6458                   if((regs[i].regmap[r]&63)==dops[i+1].rt1) temp_will_dirty|=1<<r;
6459                   if((regs[i].regmap[r]&63)==dops[i+1].rt2) temp_will_dirty|=1<<r;
6460                   if((regs[i].regmap[r]&63)>33) temp_will_dirty&=~(1<<r);
6461                   if(regs[i].regmap[r]<=0) temp_will_dirty&=~(1<<r);
6462                   if(regs[i].regmap[r]==CCREG) temp_will_dirty|=1<<r;
6463                 }
6464               }
6465             }
6466           }
6467           // Merge in delay slot (wont dirty)
6468           for(r=0;r<HOST_REGS;r++) {
6469             if(r!=EXCLUDE_REG) {
6470               if((regs[i].regmap[r]&63)==dops[i].rt1) temp_wont_dirty|=1<<r;
6471               if((regs[i].regmap[r]&63)==dops[i].rt2) temp_wont_dirty|=1<<r;
6472               if((regs[i].regmap[r]&63)==dops[i+1].rt1) temp_wont_dirty|=1<<r;
6473               if((regs[i].regmap[r]&63)==dops[i+1].rt2) temp_wont_dirty|=1<<r;
6474               if(regs[i].regmap[r]==CCREG) temp_wont_dirty|=1<<r;
6475               if((branch_regs[i].regmap[r]&63)==dops[i].rt1) temp_wont_dirty|=1<<r;
6476               if((branch_regs[i].regmap[r]&63)==dops[i].rt2) temp_wont_dirty|=1<<r;
6477               if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) temp_wont_dirty|=1<<r;
6478               if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) temp_wont_dirty|=1<<r;
6479               if(branch_regs[i].regmap[r]==CCREG) temp_wont_dirty|=1<<r;
6480             }
6481           }
6482           // Deal with changed mappings
6483           if(i<iend) {
6484             for(r=0;r<HOST_REGS;r++) {
6485               if(r!=EXCLUDE_REG) {
6486                 if(regs[i].regmap[r]!=regmap_pre[i][r]) {
6487                   temp_will_dirty&=~(1<<r);
6488                   temp_wont_dirty&=~(1<<r);
6489                   if((regmap_pre[i][r]&63)>0 && (regmap_pre[i][r]&63)<34) {
6490                     temp_will_dirty|=((unneeded_reg[i]>>(regmap_pre[i][r]&63))&1)<<r;
6491                     temp_wont_dirty|=((unneeded_reg[i]>>(regmap_pre[i][r]&63))&1)<<r;
6492                   } else {
6493                     temp_will_dirty|=1<<r;
6494                     temp_wont_dirty|=1<<r;
6495                   }
6496                 }
6497               }
6498             }
6499           }
6500           if(wr) {
6501             will_dirty[i]=temp_will_dirty;
6502             wont_dirty[i]=temp_wont_dirty;
6503             clean_registers((ba[i]-start)>>2,i-1,0);
6504           }else{
6505             // Limit recursion.  It can take an excessive amount
6506             // of time if there are a lot of nested loops.
6507             will_dirty[(ba[i]-start)>>2]=0;
6508             wont_dirty[(ba[i]-start)>>2]=-1;
6509           }
6510         }
6511         /*else*/ if(1)
6512         {
6513           if (dops[i].is_ujump)
6514           {
6515             // Unconditional branch
6516             will_dirty_i=0;
6517             wont_dirty_i=0;
6518           //if(ba[i]>start+i*4) { // Disable recursion (for debugging)
6519             for(r=0;r<HOST_REGS;r++) {
6520               if(r!=EXCLUDE_REG) {
6521                 if(branch_regs[i].regmap[r]==regs[(ba[i]-start)>>2].regmap_entry[r]) {
6522                   will_dirty_i|=will_dirty[(ba[i]-start)>>2]&(1<<r);
6523                   wont_dirty_i|=wont_dirty[(ba[i]-start)>>2]&(1<<r);
6524                 }
6525                 if(branch_regs[i].regmap[r]>=0) {
6526                   will_dirty_i|=((unneeded_reg[(ba[i]-start)>>2]>>(branch_regs[i].regmap[r]&63))&1)<<r;
6527                   wont_dirty_i|=((unneeded_reg[(ba[i]-start)>>2]>>(branch_regs[i].regmap[r]&63))&1)<<r;
6528                 }
6529               }
6530             }
6531           //}
6532             // Merge in delay slot
6533             for(r=0;r<HOST_REGS;r++) {
6534               if(r!=EXCLUDE_REG) {
6535                 if((branch_regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6536                 if((branch_regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6537                 if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6538                 if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6539                 if((branch_regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6540                 if(branch_regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6541                 if(branch_regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6542                 if((regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6543                 if((regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6544                 if((regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6545                 if((regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6546                 if((regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6547                 if(regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6548                 if(regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6549               }
6550             }
6551           } else {
6552             // Conditional branch
6553             will_dirty_i=will_dirty_next;
6554             wont_dirty_i=wont_dirty_next;
6555           //if(ba[i]>start+i*4) { // Disable recursion (for debugging)
6556             for(r=0;r<HOST_REGS;r++) {
6557               if(r!=EXCLUDE_REG) {
6558                 signed char target_reg=branch_regs[i].regmap[r];
6559                 if(target_reg==regs[(ba[i]-start)>>2].regmap_entry[r]) {
6560                   will_dirty_i&=will_dirty[(ba[i]-start)>>2]&(1<<r);
6561                   wont_dirty_i|=wont_dirty[(ba[i]-start)>>2]&(1<<r);
6562                 }
6563                 else if(target_reg>=0) {
6564                   will_dirty_i&=((unneeded_reg[(ba[i]-start)>>2]>>(target_reg&63))&1)<<r;
6565                   wont_dirty_i|=((unneeded_reg[(ba[i]-start)>>2]>>(target_reg&63))&1)<<r;
6566                 }
6567               }
6568             }
6569           //}
6570             // Merge in delay slot
6571             for(r=0;r<HOST_REGS;r++) {
6572               if(r!=EXCLUDE_REG) {
6573                 if (1) { // !dops[i].likely) {
6574                   // Might not dirty if likely branch is not taken
6575                   if((branch_regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6576                   if((branch_regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6577                   if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6578                   if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6579                   if((branch_regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6580                   if(branch_regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6581                   if(branch_regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6582                   //if((regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6583                   //if((regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6584                   if((regs[i].regmap[r]&63)==dops[i+1].rt1) will_dirty_i|=1<<r;
6585                   if((regs[i].regmap[r]&63)==dops[i+1].rt2) will_dirty_i|=1<<r;
6586                   if((regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6587                   if(regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6588                   if(regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6589                 }
6590               }
6591             }
6592           }
6593           // Merge in delay slot (won't dirty)
6594           for(r=0;r<HOST_REGS;r++) {
6595             if(r!=EXCLUDE_REG) {
6596               if((regs[i].regmap[r]&63)==dops[i].rt1) wont_dirty_i|=1<<r;
6597               if((regs[i].regmap[r]&63)==dops[i].rt2) wont_dirty_i|=1<<r;
6598               if((regs[i].regmap[r]&63)==dops[i+1].rt1) wont_dirty_i|=1<<r;
6599               if((regs[i].regmap[r]&63)==dops[i+1].rt2) wont_dirty_i|=1<<r;
6600               if(regs[i].regmap[r]==CCREG) wont_dirty_i|=1<<r;
6601               if((branch_regs[i].regmap[r]&63)==dops[i].rt1) wont_dirty_i|=1<<r;
6602               if((branch_regs[i].regmap[r]&63)==dops[i].rt2) wont_dirty_i|=1<<r;
6603               if((branch_regs[i].regmap[r]&63)==dops[i+1].rt1) wont_dirty_i|=1<<r;
6604               if((branch_regs[i].regmap[r]&63)==dops[i+1].rt2) wont_dirty_i|=1<<r;
6605               if(branch_regs[i].regmap[r]==CCREG) wont_dirty_i|=1<<r;
6606             }
6607           }
6608           if(wr) {
6609             #ifndef DESTRUCTIVE_WRITEBACK
6610             branch_regs[i].dirty&=wont_dirty_i;
6611             #endif
6612             branch_regs[i].dirty|=will_dirty_i;
6613           }
6614         }
6615       }
6616     }
6617     else if(dops[i].itype==SYSCALL||dops[i].itype==HLECALL||dops[i].itype==INTCALL)
6618     {
6619       // SYSCALL instruction (software interrupt)
6620       will_dirty_i=0;
6621       wont_dirty_i=0;
6622     }
6623     else if(dops[i].itype==COP0 && (source[i]&0x3f)==0x18)
6624     {
6625       // ERET instruction (return from interrupt)
6626       will_dirty_i=0;
6627       wont_dirty_i=0;
6628     }
6629     will_dirty_next=will_dirty_i;
6630     wont_dirty_next=wont_dirty_i;
6631     for(r=0;r<HOST_REGS;r++) {
6632       if(r!=EXCLUDE_REG) {
6633         if((regs[i].regmap[r]&63)==dops[i].rt1) will_dirty_i|=1<<r;
6634         if((regs[i].regmap[r]&63)==dops[i].rt2) will_dirty_i|=1<<r;
6635         if((regs[i].regmap[r]&63)>33) will_dirty_i&=~(1<<r);
6636         if(regs[i].regmap[r]<=0) will_dirty_i&=~(1<<r);
6637         if(regs[i].regmap[r]==CCREG) will_dirty_i|=1<<r;
6638         if((regs[i].regmap[r]&63)==dops[i].rt1) wont_dirty_i|=1<<r;
6639         if((regs[i].regmap[r]&63)==dops[i].rt2) wont_dirty_i|=1<<r;
6640         if(regs[i].regmap[r]==CCREG) wont_dirty_i|=1<<r;
6641         if(i>istart) {
6642           if (!dops[i].is_jump)
6643           {
6644             // Don't store a register immediately after writing it,
6645             // may prevent dual-issue.
6646             if((regs[i].regmap[r]&63)==dops[i-1].rt1) wont_dirty_i|=1<<r;
6647             if((regs[i].regmap[r]&63)==dops[i-1].rt2) wont_dirty_i|=1<<r;
6648           }
6649         }
6650       }
6651     }
6652     // Save it
6653     will_dirty[i]=will_dirty_i;
6654     wont_dirty[i]=wont_dirty_i;
6655     // Mark registers that won't be dirtied as not dirty
6656     if(wr) {
6657         regs[i].dirty|=will_dirty_i;
6658         #ifndef DESTRUCTIVE_WRITEBACK
6659         regs[i].dirty&=wont_dirty_i;
6660         if(dops[i].is_jump)
6661         {
6662           if (i < iend-1 && !dops[i].is_ujump) {
6663             for(r=0;r<HOST_REGS;r++) {
6664               if(r!=EXCLUDE_REG) {
6665                 if(regs[i].regmap[r]==regmap_pre[i+2][r]) {
6666                   regs[i+2].wasdirty&=wont_dirty_i|~(1<<r);
6667                 }else {/*printf("i: %x (%d) mismatch(+2): %d\n",start+i*4,i,r);assert(!((wont_dirty_i>>r)&1));*/}
6668               }
6669             }
6670           }
6671         }
6672         else
6673         {
6674           if(i<iend) {
6675             for(r=0;r<HOST_REGS;r++) {
6676               if(r!=EXCLUDE_REG) {
6677                 if(regs[i].regmap[r]==regmap_pre[i+1][r]) {
6678                   regs[i+1].wasdirty&=wont_dirty_i|~(1<<r);
6679                 }else {/*printf("i: %x (%d) mismatch(+1): %d\n",start+i*4,i,r);assert(!((wont_dirty_i>>r)&1));*/}
6680               }
6681             }
6682           }
6683         }
6684         #endif
6685       //}
6686     }
6687     // Deal with changed mappings
6688     temp_will_dirty=will_dirty_i;
6689     temp_wont_dirty=wont_dirty_i;
6690     for(r=0;r<HOST_REGS;r++) {
6691       if(r!=EXCLUDE_REG) {
6692         int nr;
6693         if(regs[i].regmap[r]==regmap_pre[i][r]) {
6694           if(wr) {
6695             #ifndef DESTRUCTIVE_WRITEBACK
6696             regs[i].wasdirty&=wont_dirty_i|~(1<<r);
6697             #endif
6698             regs[i].wasdirty|=will_dirty_i&(1<<r);
6699           }
6700         }
6701         else if(regmap_pre[i][r]>=0&&(nr=get_reg(regs[i].regmap,regmap_pre[i][r]))>=0) {
6702           // Register moved to a different register
6703           will_dirty_i&=~(1<<r);
6704           wont_dirty_i&=~(1<<r);
6705           will_dirty_i|=((temp_will_dirty>>nr)&1)<<r;
6706           wont_dirty_i|=((temp_wont_dirty>>nr)&1)<<r;
6707           if(wr) {
6708             #ifndef DESTRUCTIVE_WRITEBACK
6709             regs[i].wasdirty&=wont_dirty_i|~(1<<r);
6710             #endif
6711             regs[i].wasdirty|=will_dirty_i&(1<<r);
6712           }
6713         }
6714         else {
6715           will_dirty_i&=~(1<<r);
6716           wont_dirty_i&=~(1<<r);
6717           if((regmap_pre[i][r]&63)>0 && (regmap_pre[i][r]&63)<34) {
6718             will_dirty_i|=((unneeded_reg[i]>>(regmap_pre[i][r]&63))&1)<<r;
6719             wont_dirty_i|=((unneeded_reg[i]>>(regmap_pre[i][r]&63))&1)<<r;
6720           } else {
6721             wont_dirty_i|=1<<r;
6722             /*printf("i: %x (%d) mismatch: %d\n",start+i*4,i,r);assert(!((will_dirty>>r)&1));*/
6723           }
6724         }
6725       }
6726     }
6727   }
6728 }
6729
6730 #ifdef DISASM
6731 #include <inttypes.h>
6732 void print_regmap(const char *name, const signed char *regmap)
6733 {
6734   char buf[5];
6735   int i, l;
6736   fputs(name, stdout);
6737   for (i = 0; i < HOST_REGS; i++) {
6738     l = 0;
6739     if (regmap[i] >= 0)
6740       l = snprintf(buf, sizeof(buf), "$%d", regmap[i]);
6741     for (; l < 3; l++)
6742       buf[l] = ' ';
6743     buf[l] = 0;
6744     printf(" r%d=%s", i, buf);
6745   }
6746   fputs("\n", stdout);
6747 }
6748
6749   /* disassembly */
6750 void disassemble_inst(int i)
6751 {
6752     if (dops[i].bt) printf("*"); else printf(" ");
6753     switch(dops[i].itype) {
6754       case UJUMP:
6755         printf (" %x: %s %8x\n",start+i*4,insn[i],ba[i]);break;
6756       case CJUMP:
6757         printf (" %x: %s r%d,r%d,%8x\n",start+i*4,insn[i],dops[i].rs1,dops[i].rs2,i?start+i*4+4+((signed int)((unsigned int)source[i]<<16)>>14):*ba);break;
6758       case SJUMP:
6759         printf (" %x: %s r%d,%8x\n",start+i*4,insn[i],dops[i].rs1,start+i*4+4+((signed int)((unsigned int)source[i]<<16)>>14));break;
6760       case RJUMP:
6761         if (dops[i].opcode==0x9&&dops[i].rt1!=31)
6762           printf (" %x: %s r%d,r%d\n",start+i*4,insn[i],dops[i].rt1,dops[i].rs1);
6763         else
6764           printf (" %x: %s r%d\n",start+i*4,insn[i],dops[i].rs1);
6765         break;
6766       case SPAN:
6767         printf (" %x: %s (pagespan) r%d,r%d,%8x\n",start+i*4,insn[i],dops[i].rs1,dops[i].rs2,ba[i]);break;
6768       case IMM16:
6769         if(dops[i].opcode==0xf) //LUI
6770           printf (" %x: %s r%d,%4x0000\n",start+i*4,insn[i],dops[i].rt1,imm[i]&0xffff);
6771         else
6772           printf (" %x: %s r%d,r%d,%d\n",start+i*4,insn[i],dops[i].rt1,dops[i].rs1,imm[i]);
6773         break;
6774       case LOAD:
6775       case LOADLR:
6776         printf (" %x: %s r%d,r%d+%x\n",start+i*4,insn[i],dops[i].rt1,dops[i].rs1,imm[i]);
6777         break;
6778       case STORE:
6779       case STORELR:
6780         printf (" %x: %s r%d,r%d+%x\n",start+i*4,insn[i],dops[i].rs2,dops[i].rs1,imm[i]);
6781         break;
6782       case ALU:
6783       case SHIFT:
6784         printf (" %x: %s r%d,r%d,r%d\n",start+i*4,insn[i],dops[i].rt1,dops[i].rs1,dops[i].rs2);
6785         break;
6786       case MULTDIV:
6787         printf (" %x: %s r%d,r%d\n",start+i*4,insn[i],dops[i].rs1,dops[i].rs2);
6788         break;
6789       case SHIFTIMM:
6790         printf (" %x: %s r%d,r%d,%d\n",start+i*4,insn[i],dops[i].rt1,dops[i].rs1,imm[i]);
6791         break;
6792       case MOV:
6793         if((dops[i].opcode2&0x1d)==0x10)
6794           printf (" %x: %s r%d\n",start+i*4,insn[i],dops[i].rt1);
6795         else if((dops[i].opcode2&0x1d)==0x11)
6796           printf (" %x: %s r%d\n",start+i*4,insn[i],dops[i].rs1);
6797         else
6798           printf (" %x: %s\n",start+i*4,insn[i]);
6799         break;
6800       case COP0:
6801         if(dops[i].opcode2==0)
6802           printf (" %x: %s r%d,cpr0[%d]\n",start+i*4,insn[i],dops[i].rt1,(source[i]>>11)&0x1f); // MFC0
6803         else if(dops[i].opcode2==4)
6804           printf (" %x: %s r%d,cpr0[%d]\n",start+i*4,insn[i],dops[i].rs1,(source[i]>>11)&0x1f); // MTC0
6805         else printf (" %x: %s\n",start+i*4,insn[i]);
6806         break;
6807       case COP1:
6808         if(dops[i].opcode2<3)
6809           printf (" %x: %s r%d,cpr1[%d]\n",start+i*4,insn[i],dops[i].rt1,(source[i]>>11)&0x1f); // MFC1
6810         else if(dops[i].opcode2>3)
6811           printf (" %x: %s r%d,cpr1[%d]\n",start+i*4,insn[i],dops[i].rs1,(source[i]>>11)&0x1f); // MTC1
6812         else printf (" %x: %s\n",start+i*4,insn[i]);
6813         break;
6814       case COP2:
6815         if(dops[i].opcode2<3)
6816           printf (" %x: %s r%d,cpr2[%d]\n",start+i*4,insn[i],dops[i].rt1,(source[i]>>11)&0x1f); // MFC2
6817         else if(dops[i].opcode2>3)
6818           printf (" %x: %s r%d,cpr2[%d]\n",start+i*4,insn[i],dops[i].rs1,(source[i]>>11)&0x1f); // MTC2
6819         else printf (" %x: %s\n",start+i*4,insn[i]);
6820         break;
6821       case C1LS:
6822         printf (" %x: %s cpr1[%d],r%d+%x\n",start+i*4,insn[i],(source[i]>>16)&0x1f,dops[i].rs1,imm[i]);
6823         break;
6824       case C2LS:
6825         printf (" %x: %s cpr2[%d],r%d+%x\n",start+i*4,insn[i],(source[i]>>16)&0x1f,dops[i].rs1,imm[i]);
6826         break;
6827       case INTCALL:
6828         printf (" %x: %s (INTCALL)\n",start+i*4,insn[i]);
6829         break;
6830       default:
6831         //printf (" %s %8x\n",insn[i],source[i]);
6832         printf (" %x: %s\n",start+i*4,insn[i]);
6833     }
6834     return;
6835     printf("D: %"PRIu64"  WD: %"PRIu64"  U: %"PRIu64"\n",
6836       regs[i].dirty, regs[i].wasdirty, unneeded_reg[i]);
6837     print_regmap("pre:   ", regmap_pre[i]);
6838     print_regmap("entry: ", regs[i].regmap_entry);
6839     print_regmap("map:   ", regs[i].regmap);
6840     if (dops[i].is_jump) {
6841       print_regmap("bentry:", branch_regs[i].regmap_entry);
6842       print_regmap("bmap:  ", branch_regs[i].regmap);
6843     }
6844 }
6845 #else
6846 static void disassemble_inst(int i) {}
6847 #endif // DISASM
6848
6849 #define DRC_TEST_VAL 0x74657374
6850
6851 static void new_dynarec_test(void)
6852 {
6853   int (*testfunc)(void);
6854   void *beginning;
6855   int ret[2];
6856   size_t i;
6857
6858   // check structure linkage
6859   if ((u_char *)rcnts - (u_char *)&psxRegs != sizeof(psxRegs))
6860   {
6861     SysPrintf("linkage_arm* miscompilation/breakage detected.\n");
6862   }
6863
6864   SysPrintf("testing if we can run recompiled code @%p...\n", out);
6865   ((volatile u_int *)out)[0]++; // make cache dirty
6866
6867   for (i = 0; i < ARRAY_SIZE(ret); i++) {
6868     out = ndrc->translation_cache;
6869     beginning = start_block();
6870     emit_movimm(DRC_TEST_VAL + i, 0); // test
6871     emit_ret();
6872     literal_pool(0);
6873     end_block(beginning);
6874     testfunc = beginning;
6875     ret[i] = testfunc();
6876   }
6877
6878   if (ret[0] == DRC_TEST_VAL && ret[1] == DRC_TEST_VAL + 1)
6879     SysPrintf("test passed.\n");
6880   else
6881     SysPrintf("test failed, will likely crash soon (r=%08x %08x)\n", ret[0], ret[1]);
6882   out = ndrc->translation_cache;
6883 }
6884
6885 // clear the state completely, instead of just marking
6886 // things invalid like invalidate_all_pages() does
6887 void new_dynarec_clear_full(void)
6888 {
6889   int n;
6890   out = ndrc->translation_cache;
6891   memset(invalid_code,1,sizeof(invalid_code));
6892   memset(hash_table,0xff,sizeof(hash_table));
6893   memset(mini_ht,-1,sizeof(mini_ht));
6894   memset(restore_candidate,0,sizeof(restore_candidate));
6895   memset(shadow,0,sizeof(shadow));
6896   copy=shadow;
6897   expirep=16384; // Expiry pointer, +2 blocks
6898   pending_exception=0;
6899   literalcount=0;
6900   stop_after_jal=0;
6901   inv_code_start=inv_code_end=~0;
6902   hack_addr=0;
6903   f1_hack=0;
6904   // TLB
6905   for(n=0;n<4096;n++) ll_clear(jump_in+n);
6906   for(n=0;n<4096;n++) ll_clear(jump_out+n);
6907   for(n=0;n<4096;n++) ll_clear(jump_dirty+n);
6908
6909   cycle_multiplier_old = cycle_multiplier;
6910   new_dynarec_hacks_old = new_dynarec_hacks;
6911 }
6912
6913 void new_dynarec_init(void)
6914 {
6915   SysPrintf("Init new dynarec, ndrc size %x\n", (int)sizeof(*ndrc));
6916
6917 #ifdef _3DS
6918   check_rosalina();
6919 #endif
6920 #ifdef BASE_ADDR_DYNAMIC
6921   #ifdef VITA
6922   sceBlock = getVMBlock(); //sceKernelAllocMemBlockForVM("code", sizeof(*ndrc));
6923   if (sceBlock <= 0)
6924     SysPrintf("sceKernelAllocMemBlockForVM failed: %x\n", sceBlock);
6925   int ret = sceKernelGetMemBlockBase(sceBlock, (void **)&ndrc);
6926   if (ret < 0)
6927     SysPrintf("sceKernelGetMemBlockBase failed: %x\n", ret);
6928   sceKernelOpenVMDomain();
6929   sceClibPrintf("translation_cache = 0x%08lx\n ", (long)ndrc->translation_cache);
6930   #elif defined(_MSC_VER)
6931   ndrc = VirtualAlloc(NULL, sizeof(*ndrc), MEM_COMMIT | MEM_RESERVE,
6932     PAGE_EXECUTE_READWRITE);
6933   #else
6934   uintptr_t desired_addr = 0;
6935   #ifdef __ELF__
6936   extern char _end;
6937   desired_addr = ((uintptr_t)&_end + 0xffffff) & ~0xffffffl;
6938   #endif
6939   ndrc = mmap((void *)desired_addr, sizeof(*ndrc),
6940             PROT_READ | PROT_WRITE | PROT_EXEC,
6941             MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
6942   if (ndrc == MAP_FAILED) {
6943     SysPrintf("mmap() failed: %s\n", strerror(errno));
6944     abort();
6945   }
6946   #endif
6947 #else
6948   #ifndef NO_WRITE_EXEC
6949   // not all systems allow execute in data segment by default
6950   // size must be 4K aligned for 3DS?
6951   if (mprotect(ndrc, sizeof(*ndrc),
6952                PROT_READ | PROT_WRITE | PROT_EXEC) != 0)
6953     SysPrintf("mprotect() failed: %s\n", strerror(errno));
6954   #endif
6955 #endif
6956   out = ndrc->translation_cache;
6957   cycle_multiplier=200;
6958   new_dynarec_clear_full();
6959 #ifdef HOST_IMM8
6960   // Copy this into local area so we don't have to put it in every literal pool
6961   invc_ptr=invalid_code;
6962 #endif
6963   arch_init();
6964   new_dynarec_test();
6965   ram_offset=(uintptr_t)rdram-0x80000000;
6966   if (ram_offset!=0)
6967     SysPrintf("warning: RAM is not directly mapped, performance will suffer\n");
6968 }
6969
6970 void new_dynarec_cleanup(void)
6971 {
6972   int n;
6973 #ifdef BASE_ADDR_DYNAMIC
6974   #ifdef VITA
6975   // sceBlock is managed by retroarch's bootstrap code
6976   //sceKernelFreeMemBlock(sceBlock);
6977   //sceBlock = -1;
6978   #else
6979   if (munmap(ndrc, sizeof(*ndrc)) < 0)
6980     SysPrintf("munmap() failed\n");
6981   #endif
6982 #endif
6983   for(n=0;n<4096;n++) ll_clear(jump_in+n);
6984   for(n=0;n<4096;n++) ll_clear(jump_out+n);
6985   for(n=0;n<4096;n++) ll_clear(jump_dirty+n);
6986   #ifdef ROM_COPY
6987   if (munmap (ROM_COPY, 67108864) < 0) {SysPrintf("munmap() failed\n");}
6988   #endif
6989 }
6990
6991 static u_int *get_source_start(u_int addr, u_int *limit)
6992 {
6993   if (addr < 0x00200000 ||
6994     (0xa0000000 <= addr && addr < 0xa0200000))
6995   {
6996     // used for BIOS calls mostly?
6997     *limit = (addr&0xa0000000)|0x00200000;
6998     return (u_int *)(rdram + (addr&0x1fffff));
6999   }
7000   else if (!Config.HLE && (
7001     /* (0x9fc00000 <= addr && addr < 0x9fc80000) ||*/
7002     (0xbfc00000 <= addr && addr < 0xbfc80000)))
7003   {
7004     // BIOS. The multiplier should be much higher as it's uncached 8bit mem,
7005     // but timings in PCSX are too tied to the interpreter's BIAS
7006     if (!HACK_ENABLED(NDHACK_OVERRIDE_CYCLE_M))
7007       cycle_multiplier_active = 200;
7008
7009     *limit = (addr & 0xfff00000) | 0x80000;
7010     return (u_int *)((u_char *)psxR + (addr&0x7ffff));
7011   }
7012   else if (addr >= 0x80000000 && addr < 0x80000000+RAM_SIZE) {
7013     *limit = (addr & 0x80600000) + 0x00200000;
7014     return (u_int *)(rdram + (addr&0x1fffff));
7015   }
7016   return NULL;
7017 }
7018
7019 static u_int scan_for_ret(u_int addr)
7020 {
7021   u_int limit = 0;
7022   u_int *mem;
7023
7024   mem = get_source_start(addr, &limit);
7025   if (mem == NULL)
7026     return addr;
7027
7028   if (limit > addr + 0x1000)
7029     limit = addr + 0x1000;
7030   for (; addr < limit; addr += 4, mem++) {
7031     if (*mem == 0x03e00008) // jr $ra
7032       return addr + 8;
7033   }
7034   return addr;
7035 }
7036
7037 struct savestate_block {
7038   uint32_t addr;
7039   uint32_t regflags;
7040 };
7041
7042 static int addr_cmp(const void *p1_, const void *p2_)
7043 {
7044   const struct savestate_block *p1 = p1_, *p2 = p2_;
7045   return p1->addr - p2->addr;
7046 }
7047
7048 int new_dynarec_save_blocks(void *save, int size)
7049 {
7050   struct savestate_block *blocks = save;
7051   int maxcount = size / sizeof(blocks[0]);
7052   struct savestate_block tmp_blocks[1024];
7053   struct ll_entry *head;
7054   int p, s, d, o, bcnt;
7055   u_int addr;
7056
7057   o = 0;
7058   for (p = 0; p < ARRAY_SIZE(jump_in); p++) {
7059     bcnt = 0;
7060     for (head = jump_in[p]; head != NULL; head = head->next) {
7061       tmp_blocks[bcnt].addr = head->vaddr;
7062       tmp_blocks[bcnt].regflags = head->reg_sv_flags;
7063       bcnt++;
7064     }
7065     if (bcnt < 1)
7066       continue;
7067     qsort(tmp_blocks, bcnt, sizeof(tmp_blocks[0]), addr_cmp);
7068
7069     addr = tmp_blocks[0].addr;
7070     for (s = d = 0; s < bcnt; s++) {
7071       if (tmp_blocks[s].addr < addr)
7072         continue;
7073       if (d == 0 || tmp_blocks[d-1].addr != tmp_blocks[s].addr)
7074         tmp_blocks[d++] = tmp_blocks[s];
7075       addr = scan_for_ret(tmp_blocks[s].addr);
7076     }
7077
7078     if (o + d > maxcount)
7079       d = maxcount - o;
7080     memcpy(&blocks[o], tmp_blocks, d * sizeof(blocks[0]));
7081     o += d;
7082   }
7083
7084   return o * sizeof(blocks[0]);
7085 }
7086
7087 void new_dynarec_load_blocks(const void *save, int size)
7088 {
7089   const struct savestate_block *blocks = save;
7090   int count = size / sizeof(blocks[0]);
7091   u_int regs_save[32];
7092   uint32_t f;
7093   int i, b;
7094
7095   get_addr(psxRegs.pc);
7096
7097   // change GPRs for speculation to at least partially work..
7098   memcpy(regs_save, &psxRegs.GPR, sizeof(regs_save));
7099   for (i = 1; i < 32; i++)
7100     psxRegs.GPR.r[i] = 0x80000000;
7101
7102   for (b = 0; b < count; b++) {
7103     for (f = blocks[b].regflags, i = 0; f; f >>= 1, i++) {
7104       if (f & 1)
7105         psxRegs.GPR.r[i] = 0x1f800000;
7106     }
7107
7108     get_addr(blocks[b].addr);
7109
7110     for (f = blocks[b].regflags, i = 0; f; f >>= 1, i++) {
7111       if (f & 1)
7112         psxRegs.GPR.r[i] = 0x80000000;
7113     }
7114   }
7115
7116   memcpy(&psxRegs.GPR, regs_save, sizeof(regs_save));
7117 }
7118
7119 static int apply_hacks(void)
7120 {
7121   int i;
7122   if (HACK_ENABLED(NDHACK_NO_COMPAT_HACKS))
7123     return 0;
7124   /* special hack(s) */
7125   for (i = 0; i < slen - 4; i++)
7126   {
7127     // lui a4, 0xf200; jal <rcnt_read>; addu a0, 2; slti v0, 28224
7128     if (source[i] == 0x3c04f200 && dops[i+1].itype == UJUMP
7129         && source[i+2] == 0x34840002 && dops[i+3].opcode == 0x0a
7130         && imm[i+3] == 0x6e40 && dops[i+3].rs1 == 2)
7131     {
7132       SysPrintf("PE2 hack @%08x\n", start + (i+3)*4);
7133       dops[i + 3].itype = NOP;
7134     }
7135   }
7136   i = slen;
7137   if (i > 10 && source[i-1] == 0 && source[i-2] == 0x03e00008
7138       && source[i-4] == 0x8fbf0018 && source[i-6] == 0x00c0f809
7139       && dops[i-7].itype == STORE)
7140   {
7141     i = i-8;
7142     if (dops[i].itype == IMM16)
7143       i--;
7144     // swl r2, 15(r6); swr r2, 12(r6); sw r6, *; jalr r6
7145     if (dops[i].itype == STORELR && dops[i].rs1 == 6
7146       && dops[i-1].itype == STORELR && dops[i-1].rs1 == 6)
7147     {
7148       SysPrintf("F1 hack from %08x, old dst %08x\n", start, hack_addr);
7149       f1_hack = 1;
7150       return 1;
7151     }
7152   }
7153   return 0;
7154 }
7155
7156 int new_recompile_block(u_int addr)
7157 {
7158   u_int pagelimit = 0;
7159   u_int state_rflags = 0;
7160   int i;
7161
7162   assem_debug("NOTCOMPILED: addr = %x -> %p\n", addr, out);
7163   //printf("TRACE: count=%d next=%d (compile %x)\n",Count,next_interupt,addr);
7164   //if(debug)
7165   //printf("fpu mapping=%x enabled=%x\n",(Status & 0x04000000)>>26,(Status & 0x20000000)>>29);
7166
7167   // this is just for speculation
7168   for (i = 1; i < 32; i++) {
7169     if ((psxRegs.GPR.r[i] & 0xffff0000) == 0x1f800000)
7170       state_rflags |= 1 << i;
7171   }
7172
7173   start = (u_int)addr&~3;
7174   //assert(((u_int)addr&1)==0); // start-in-delay-slot flag
7175   new_dynarec_did_compile=1;
7176   if (Config.HLE && start == 0x80001000) // hlecall
7177   {
7178     // XXX: is this enough? Maybe check hleSoftCall?
7179     void *beginning=start_block();
7180     u_int page=get_page(start);
7181
7182     invalid_code[start>>12]=0;
7183     emit_movimm(start,0);
7184     emit_writeword(0,&pcaddr);
7185     emit_far_jump(new_dyna_leave);
7186     literal_pool(0);
7187     end_block(beginning);
7188     ll_add_flags(jump_in+page,start,state_rflags,(void *)beginning);
7189     return 0;
7190   }
7191   else if (f1_hack && hack_addr == 0) {
7192     void *beginning = start_block();
7193     u_int page = get_page(start);
7194     emit_movimm(start, 0);
7195     emit_writeword(0, &hack_addr);
7196     emit_readword(&psxRegs.GPR.n.sp, 0);
7197     emit_readptr(&mem_rtab, 1);
7198     emit_shrimm(0, 12, 2);
7199     emit_readptr_dualindexedx_ptrlen(1, 2, 1);
7200     emit_addimm(0, 0x18, 0);
7201     emit_adds_ptr(1, 1, 1);
7202     emit_ldr_dualindexed(1, 0, 0);
7203     emit_writeword(0, &psxRegs.GPR.r[26]); // lw k0, 0x18(sp)
7204     emit_far_call(get_addr_ht);
7205     emit_jmpreg(0); // jr k0
7206     literal_pool(0);
7207     end_block(beginning);
7208
7209     ll_add_flags(jump_in + page, start, state_rflags, beginning);
7210     SysPrintf("F1 hack to   %08x\n", start);
7211     return 0;
7212   }
7213
7214   cycle_multiplier_active = cycle_multiplier_override && cycle_multiplier == CYCLE_MULT_DEFAULT
7215     ? cycle_multiplier_override : cycle_multiplier;
7216
7217   source = get_source_start(start, &pagelimit);
7218   if (source == NULL) {
7219     SysPrintf("Compile at bogus memory address: %08x\n", addr);
7220     abort();
7221   }
7222
7223   /* Pass 1: disassemble */
7224   /* Pass 2: register dependencies, branch targets */
7225   /* Pass 3: register allocation */
7226   /* Pass 4: branch dependencies */
7227   /* Pass 5: pre-alloc */
7228   /* Pass 6: optimize clean/dirty state */
7229   /* Pass 7: flag 32-bit registers */
7230   /* Pass 8: assembly */
7231   /* Pass 9: linker */
7232   /* Pass 10: garbage collection / free memory */
7233
7234   int j;
7235   int done=0;
7236   unsigned int type,op,op2;
7237
7238   //printf("addr = %x source = %x %x\n", addr,source,source[0]);
7239
7240   /* Pass 1 disassembly */
7241
7242   for (i = 0; !done; i++)
7243   {
7244     memset(&dops[i], 0, sizeof(dops[i]));
7245     op2=0;
7246     minimum_free_regs[i]=0;
7247     dops[i].opcode=op=source[i]>>26;
7248     switch(op)
7249     {
7250       case 0x00: strcpy(insn[i],"special"); type=NI;
7251         op2=source[i]&0x3f;
7252         switch(op2)
7253         {
7254           case 0x00: strcpy(insn[i],"SLL"); type=SHIFTIMM; break;
7255           case 0x02: strcpy(insn[i],"SRL"); type=SHIFTIMM; break;
7256           case 0x03: strcpy(insn[i],"SRA"); type=SHIFTIMM; break;
7257           case 0x04: strcpy(insn[i],"SLLV"); type=SHIFT; break;
7258           case 0x06: strcpy(insn[i],"SRLV"); type=SHIFT; break;
7259           case 0x07: strcpy(insn[i],"SRAV"); type=SHIFT; break;
7260           case 0x08: strcpy(insn[i],"JR"); type=RJUMP; break;
7261           case 0x09: strcpy(insn[i],"JALR"); type=RJUMP; break;
7262           case 0x0C: strcpy(insn[i],"SYSCALL"); type=SYSCALL; break;
7263           case 0x0D: strcpy(insn[i],"BREAK"); type=SYSCALL; break;
7264           case 0x0F: strcpy(insn[i],"SYNC"); type=OTHER; break;
7265           case 0x10: strcpy(insn[i],"MFHI"); type=MOV; break;
7266           case 0x11: strcpy(insn[i],"MTHI"); type=MOV; break;
7267           case 0x12: strcpy(insn[i],"MFLO"); type=MOV; break;
7268           case 0x13: strcpy(insn[i],"MTLO"); type=MOV; break;
7269           case 0x18: strcpy(insn[i],"MULT"); type=MULTDIV; break;
7270           case 0x19: strcpy(insn[i],"MULTU"); type=MULTDIV; break;
7271           case 0x1A: strcpy(insn[i],"DIV"); type=MULTDIV; break;
7272           case 0x1B: strcpy(insn[i],"DIVU"); type=MULTDIV; break;
7273           case 0x20: strcpy(insn[i],"ADD"); type=ALU; break;
7274           case 0x21: strcpy(insn[i],"ADDU"); type=ALU; break;
7275           case 0x22: strcpy(insn[i],"SUB"); type=ALU; break;
7276           case 0x23: strcpy(insn[i],"SUBU"); type=ALU; break;
7277           case 0x24: strcpy(insn[i],"AND"); type=ALU; break;
7278           case 0x25: strcpy(insn[i],"OR"); type=ALU; break;
7279           case 0x26: strcpy(insn[i],"XOR"); type=ALU; break;
7280           case 0x27: strcpy(insn[i],"NOR"); type=ALU; break;
7281           case 0x2A: strcpy(insn[i],"SLT"); type=ALU; break;
7282           case 0x2B: strcpy(insn[i],"SLTU"); type=ALU; break;
7283           case 0x30: strcpy(insn[i],"TGE"); type=NI; break;
7284           case 0x31: strcpy(insn[i],"TGEU"); type=NI; break;
7285           case 0x32: strcpy(insn[i],"TLT"); type=NI; break;
7286           case 0x33: strcpy(insn[i],"TLTU"); type=NI; break;
7287           case 0x34: strcpy(insn[i],"TEQ"); type=NI; break;
7288           case 0x36: strcpy(insn[i],"TNE"); type=NI; break;
7289 #if 0
7290           case 0x14: strcpy(insn[i],"DSLLV"); type=SHIFT; break;
7291           case 0x16: strcpy(insn[i],"DSRLV"); type=SHIFT; break;
7292           case 0x17: strcpy(insn[i],"DSRAV"); type=SHIFT; break;
7293           case 0x1C: strcpy(insn[i],"DMULT"); type=MULTDIV; break;
7294           case 0x1D: strcpy(insn[i],"DMULTU"); type=MULTDIV; break;
7295           case 0x1E: strcpy(insn[i],"DDIV"); type=MULTDIV; break;
7296           case 0x1F: strcpy(insn[i],"DDIVU"); type=MULTDIV; break;
7297           case 0x2C: strcpy(insn[i],"DADD"); type=ALU; break;
7298           case 0x2D: strcpy(insn[i],"DADDU"); type=ALU; break;
7299           case 0x2E: strcpy(insn[i],"DSUB"); type=ALU; break;
7300           case 0x2F: strcpy(insn[i],"DSUBU"); type=ALU; break;
7301           case 0x38: strcpy(insn[i],"DSLL"); type=SHIFTIMM; break;
7302           case 0x3A: strcpy(insn[i],"DSRL"); type=SHIFTIMM; break;
7303           case 0x3B: strcpy(insn[i],"DSRA"); type=SHIFTIMM; break;
7304           case 0x3C: strcpy(insn[i],"DSLL32"); type=SHIFTIMM; break;
7305           case 0x3E: strcpy(insn[i],"DSRL32"); type=SHIFTIMM; break;
7306           case 0x3F: strcpy(insn[i],"DSRA32"); type=SHIFTIMM; break;
7307 #endif
7308         }
7309         break;
7310       case 0x01: strcpy(insn[i],"regimm"); type=NI;
7311         op2=(source[i]>>16)&0x1f;
7312         switch(op2)
7313         {
7314           case 0x00: strcpy(insn[i],"BLTZ"); type=SJUMP; break;
7315           case 0x01: strcpy(insn[i],"BGEZ"); type=SJUMP; break;
7316           //case 0x02: strcpy(insn[i],"BLTZL"); type=SJUMP; break;
7317           //case 0x03: strcpy(insn[i],"BGEZL"); type=SJUMP; break;
7318           //case 0x08: strcpy(insn[i],"TGEI"); type=NI; break;
7319           //case 0x09: strcpy(insn[i],"TGEIU"); type=NI; break;
7320           //case 0x0A: strcpy(insn[i],"TLTI"); type=NI; break;
7321           //case 0x0B: strcpy(insn[i],"TLTIU"); type=NI; break;
7322           //case 0x0C: strcpy(insn[i],"TEQI"); type=NI; break;
7323           //case 0x0E: strcpy(insn[i],"TNEI"); type=NI; break;
7324           case 0x10: strcpy(insn[i],"BLTZAL"); type=SJUMP; break;
7325           case 0x11: strcpy(insn[i],"BGEZAL"); type=SJUMP; break;
7326           //case 0x12: strcpy(insn[i],"BLTZALL"); type=SJUMP; break;
7327           //case 0x13: strcpy(insn[i],"BGEZALL"); type=SJUMP; break;
7328         }
7329         break;
7330       case 0x02: strcpy(insn[i],"J"); type=UJUMP; break;
7331       case 0x03: strcpy(insn[i],"JAL"); type=UJUMP; break;
7332       case 0x04: strcpy(insn[i],"BEQ"); type=CJUMP; break;
7333       case 0x05: strcpy(insn[i],"BNE"); type=CJUMP; break;
7334       case 0x06: strcpy(insn[i],"BLEZ"); type=CJUMP; break;
7335       case 0x07: strcpy(insn[i],"BGTZ"); type=CJUMP; break;
7336       case 0x08: strcpy(insn[i],"ADDI"); type=IMM16; break;
7337       case 0x09: strcpy(insn[i],"ADDIU"); type=IMM16; break;
7338       case 0x0A: strcpy(insn[i],"SLTI"); type=IMM16; break;
7339       case 0x0B: strcpy(insn[i],"SLTIU"); type=IMM16; break;
7340       case 0x0C: strcpy(insn[i],"ANDI"); type=IMM16; break;
7341       case 0x0D: strcpy(insn[i],"ORI"); type=IMM16; break;
7342       case 0x0E: strcpy(insn[i],"XORI"); type=IMM16; break;
7343       case 0x0F: strcpy(insn[i],"LUI"); type=IMM16; break;
7344       case 0x10: strcpy(insn[i],"cop0"); type=NI;
7345         op2=(source[i]>>21)&0x1f;
7346         switch(op2)
7347         {
7348           case 0x00: strcpy(insn[i],"MFC0"); type=COP0; break;
7349           case 0x02: strcpy(insn[i],"CFC0"); type=COP0; break;
7350           case 0x04: strcpy(insn[i],"MTC0"); type=COP0; break;
7351           case 0x06: strcpy(insn[i],"CTC0"); type=COP0; break;
7352           case 0x10: strcpy(insn[i],"RFE"); type=COP0; break;
7353         }
7354         break;
7355       case 0x11: strcpy(insn[i],"cop1"); type=COP1;
7356         op2=(source[i]>>21)&0x1f;
7357         break;
7358 #if 0
7359       case 0x14: strcpy(insn[i],"BEQL"); type=CJUMP; break;
7360       case 0x15: strcpy(insn[i],"BNEL"); type=CJUMP; break;
7361       case 0x16: strcpy(insn[i],"BLEZL"); type=CJUMP; break;
7362       case 0x17: strcpy(insn[i],"BGTZL"); type=CJUMP; break;
7363       case 0x18: strcpy(insn[i],"DADDI"); type=IMM16; break;
7364       case 0x19: strcpy(insn[i],"DADDIU"); type=IMM16; break;
7365       case 0x1A: strcpy(insn[i],"LDL"); type=LOADLR; break;
7366       case 0x1B: strcpy(insn[i],"LDR"); type=LOADLR; break;
7367 #endif
7368       case 0x20: strcpy(insn[i],"LB"); type=LOAD; break;
7369       case 0x21: strcpy(insn[i],"LH"); type=LOAD; break;
7370       case 0x22: strcpy(insn[i],"LWL"); type=LOADLR; break;
7371       case 0x23: strcpy(insn[i],"LW"); type=LOAD; break;
7372       case 0x24: strcpy(insn[i],"LBU"); type=LOAD; break;
7373       case 0x25: strcpy(insn[i],"LHU"); type=LOAD; break;
7374       case 0x26: strcpy(insn[i],"LWR"); type=LOADLR; break;
7375 #if 0
7376       case 0x27: strcpy(insn[i],"LWU"); type=LOAD; break;
7377 #endif
7378       case 0x28: strcpy(insn[i],"SB"); type=STORE; break;
7379       case 0x29: strcpy(insn[i],"SH"); type=STORE; break;
7380       case 0x2A: strcpy(insn[i],"SWL"); type=STORELR; break;
7381       case 0x2B: strcpy(insn[i],"SW"); type=STORE; break;
7382 #if 0
7383       case 0x2C: strcpy(insn[i],"SDL"); type=STORELR; break;
7384       case 0x2D: strcpy(insn[i],"SDR"); type=STORELR; break;
7385 #endif
7386       case 0x2E: strcpy(insn[i],"SWR"); type=STORELR; break;
7387       case 0x2F: strcpy(insn[i],"CACHE"); type=NOP; break;
7388       case 0x30: strcpy(insn[i],"LL"); type=NI; break;
7389       case 0x31: strcpy(insn[i],"LWC1"); type=C1LS; break;
7390 #if 0
7391       case 0x34: strcpy(insn[i],"LLD"); type=NI; break;
7392       case 0x35: strcpy(insn[i],"LDC1"); type=C1LS; break;
7393       case 0x37: strcpy(insn[i],"LD"); type=LOAD; break;
7394 #endif
7395       case 0x38: strcpy(insn[i],"SC"); type=NI; break;
7396       case 0x39: strcpy(insn[i],"SWC1"); type=C1LS; break;
7397 #if 0
7398       case 0x3C: strcpy(insn[i],"SCD"); type=NI; break;
7399       case 0x3D: strcpy(insn[i],"SDC1"); type=C1LS; break;
7400       case 0x3F: strcpy(insn[i],"SD"); type=STORE; break;
7401 #endif
7402       case 0x12: strcpy(insn[i],"COP2"); type=NI;
7403         op2=(source[i]>>21)&0x1f;
7404         //if (op2 & 0x10)
7405         if (source[i]&0x3f) { // use this hack to support old savestates with patched gte insns
7406           if (gte_handlers[source[i]&0x3f]!=NULL) {
7407             if (gte_regnames[source[i]&0x3f]!=NULL)
7408               strcpy(insn[i],gte_regnames[source[i]&0x3f]);
7409             else
7410               snprintf(insn[i], sizeof(insn[i]), "COP2 %x", source[i]&0x3f);
7411             type=C2OP;
7412           }
7413         }
7414         else switch(op2)
7415         {
7416           case 0x00: strcpy(insn[i],"MFC2"); type=COP2; break;
7417           case 0x02: strcpy(insn[i],"CFC2"); type=COP2; break;
7418           case 0x04: strcpy(insn[i],"MTC2"); type=COP2; break;
7419           case 0x06: strcpy(insn[i],"CTC2"); type=COP2; break;
7420         }
7421         break;
7422       case 0x32: strcpy(insn[i],"LWC2"); type=C2LS; break;
7423       case 0x3A: strcpy(insn[i],"SWC2"); type=C2LS; break;
7424       case 0x3B: strcpy(insn[i],"HLECALL"); type=HLECALL; break;
7425       default: strcpy(insn[i],"???"); type=NI;
7426         SysPrintf("NI %08x @%08x (%08x)\n", source[i], addr + i*4, addr);
7427         break;
7428     }
7429     dops[i].itype=type;
7430     dops[i].opcode2=op2;
7431     /* Get registers/immediates */
7432     dops[i].lt1=0;
7433     gte_rs[i]=gte_rt[i]=0;
7434     switch(type) {
7435       case LOAD:
7436         dops[i].rs1=(source[i]>>21)&0x1f;
7437         dops[i].rs2=0;
7438         dops[i].rt1=(source[i]>>16)&0x1f;
7439         dops[i].rt2=0;
7440         imm[i]=(short)source[i];
7441         break;
7442       case STORE:
7443       case STORELR:
7444         dops[i].rs1=(source[i]>>21)&0x1f;
7445         dops[i].rs2=(source[i]>>16)&0x1f;
7446         dops[i].rt1=0;
7447         dops[i].rt2=0;
7448         imm[i]=(short)source[i];
7449         break;
7450       case LOADLR:
7451         // LWL/LWR only load part of the register,
7452         // therefore the target register must be treated as a source too
7453         dops[i].rs1=(source[i]>>21)&0x1f;
7454         dops[i].rs2=(source[i]>>16)&0x1f;
7455         dops[i].rt1=(source[i]>>16)&0x1f;
7456         dops[i].rt2=0;
7457         imm[i]=(short)source[i];
7458         break;
7459       case IMM16:
7460         if (op==0x0f) dops[i].rs1=0; // LUI instruction has no source register
7461         else dops[i].rs1=(source[i]>>21)&0x1f;
7462         dops[i].rs2=0;
7463         dops[i].rt1=(source[i]>>16)&0x1f;
7464         dops[i].rt2=0;
7465         if(op>=0x0c&&op<=0x0e) { // ANDI/ORI/XORI
7466           imm[i]=(unsigned short)source[i];
7467         }else{
7468           imm[i]=(short)source[i];
7469         }
7470         break;
7471       case UJUMP:
7472         dops[i].rs1=0;
7473         dops[i].rs2=0;
7474         dops[i].rt1=0;
7475         dops[i].rt2=0;
7476         // The JAL instruction writes to r31.
7477         if (op&1) {
7478           dops[i].rt1=31;
7479         }
7480         dops[i].rs2=CCREG;
7481         break;
7482       case RJUMP:
7483         dops[i].rs1=(source[i]>>21)&0x1f;
7484         dops[i].rs2=0;
7485         dops[i].rt1=0;
7486         dops[i].rt2=0;
7487         // The JALR instruction writes to rd.
7488         if (op2&1) {
7489           dops[i].rt1=(source[i]>>11)&0x1f;
7490         }
7491         dops[i].rs2=CCREG;
7492         break;
7493       case CJUMP:
7494         dops[i].rs1=(source[i]>>21)&0x1f;
7495         dops[i].rs2=(source[i]>>16)&0x1f;
7496         dops[i].rt1=0;
7497         dops[i].rt2=0;
7498         if(op&2) { // BGTZ/BLEZ
7499           dops[i].rs2=0;
7500         }
7501         break;
7502       case SJUMP:
7503         dops[i].rs1=(source[i]>>21)&0x1f;
7504         dops[i].rs2=CCREG;
7505         dops[i].rt1=0;
7506         dops[i].rt2=0;
7507         if(op2&0x10) { // BxxAL
7508           dops[i].rt1=31;
7509           // NOTE: If the branch is not taken, r31 is still overwritten
7510         }
7511         break;
7512       case ALU:
7513         dops[i].rs1=(source[i]>>21)&0x1f; // source
7514         dops[i].rs2=(source[i]>>16)&0x1f; // subtract amount
7515         dops[i].rt1=(source[i]>>11)&0x1f; // destination
7516         dops[i].rt2=0;
7517         break;
7518       case MULTDIV:
7519         dops[i].rs1=(source[i]>>21)&0x1f; // source
7520         dops[i].rs2=(source[i]>>16)&0x1f; // divisor
7521         dops[i].rt1=HIREG;
7522         dops[i].rt2=LOREG;
7523         break;
7524       case MOV:
7525         dops[i].rs1=0;
7526         dops[i].rs2=0;
7527         dops[i].rt1=0;
7528         dops[i].rt2=0;
7529         if(op2==0x10) dops[i].rs1=HIREG; // MFHI
7530         if(op2==0x11) dops[i].rt1=HIREG; // MTHI
7531         if(op2==0x12) dops[i].rs1=LOREG; // MFLO
7532         if(op2==0x13) dops[i].rt1=LOREG; // MTLO
7533         if((op2&0x1d)==0x10) dops[i].rt1=(source[i]>>11)&0x1f; // MFxx
7534         if((op2&0x1d)==0x11) dops[i].rs1=(source[i]>>21)&0x1f; // MTxx
7535         break;
7536       case SHIFT:
7537         dops[i].rs1=(source[i]>>16)&0x1f; // target of shift
7538         dops[i].rs2=(source[i]>>21)&0x1f; // shift amount
7539         dops[i].rt1=(source[i]>>11)&0x1f; // destination
7540         dops[i].rt2=0;
7541         break;
7542       case SHIFTIMM:
7543         dops[i].rs1=(source[i]>>16)&0x1f;
7544         dops[i].rs2=0;
7545         dops[i].rt1=(source[i]>>11)&0x1f;
7546         dops[i].rt2=0;
7547         imm[i]=(source[i]>>6)&0x1f;
7548         // DSxx32 instructions
7549         if(op2>=0x3c) imm[i]|=0x20;
7550         break;
7551       case COP0:
7552         dops[i].rs1=0;
7553         dops[i].rs2=0;
7554         dops[i].rt1=0;
7555         dops[i].rt2=0;
7556         if(op2==0||op2==2) dops[i].rt1=(source[i]>>16)&0x1F; // MFC0/CFC0
7557         if(op2==4||op2==6) dops[i].rs1=(source[i]>>16)&0x1F; // MTC0/CTC0
7558         if(op2==4&&((source[i]>>11)&0x1f)==12) dops[i].rt2=CSREG; // Status
7559         if(op2==16) if((source[i]&0x3f)==0x18) dops[i].rs2=CCREG; // ERET
7560         break;
7561       case COP1:
7562         dops[i].rs1=0;
7563         dops[i].rs2=0;
7564         dops[i].rt1=0;
7565         dops[i].rt2=0;
7566         if(op2<3) dops[i].rt1=(source[i]>>16)&0x1F; // MFC1/DMFC1/CFC1
7567         if(op2>3) dops[i].rs1=(source[i]>>16)&0x1F; // MTC1/DMTC1/CTC1
7568         dops[i].rs2=CSREG;
7569         break;
7570       case COP2:
7571         dops[i].rs1=0;
7572         dops[i].rs2=0;
7573         dops[i].rt1=0;
7574         dops[i].rt2=0;
7575         if(op2<3) dops[i].rt1=(source[i]>>16)&0x1F; // MFC2/CFC2
7576         if(op2>3) dops[i].rs1=(source[i]>>16)&0x1F; // MTC2/CTC2
7577         dops[i].rs2=CSREG;
7578         int gr=(source[i]>>11)&0x1F;
7579         switch(op2)
7580         {
7581           case 0x00: gte_rs[i]=1ll<<gr; break; // MFC2
7582           case 0x04: gte_rt[i]=1ll<<gr; break; // MTC2
7583           case 0x02: gte_rs[i]=1ll<<(gr+32); break; // CFC2
7584           case 0x06: gte_rt[i]=1ll<<(gr+32); break; // CTC2
7585         }
7586         break;
7587       case C1LS:
7588         dops[i].rs1=(source[i]>>21)&0x1F;
7589         dops[i].rs2=CSREG;
7590         dops[i].rt1=0;
7591         dops[i].rt2=0;
7592         imm[i]=(short)source[i];
7593         break;
7594       case C2LS:
7595         dops[i].rs1=(source[i]>>21)&0x1F;
7596         dops[i].rs2=0;
7597         dops[i].rt1=0;
7598         dops[i].rt2=0;
7599         imm[i]=(short)source[i];
7600         if(op==0x32) gte_rt[i]=1ll<<((source[i]>>16)&0x1F); // LWC2
7601         else gte_rs[i]=1ll<<((source[i]>>16)&0x1F); // SWC2
7602         break;
7603       case C2OP:
7604         dops[i].rs1=0;
7605         dops[i].rs2=0;
7606         dops[i].rt1=0;
7607         dops[i].rt2=0;
7608         gte_rs[i]=gte_reg_reads[source[i]&0x3f];
7609         gte_rt[i]=gte_reg_writes[source[i]&0x3f];
7610         gte_rt[i]|=1ll<<63; // every op changes flags
7611         if((source[i]&0x3f)==GTE_MVMVA) {
7612           int v = (source[i] >> 15) & 3;
7613           gte_rs[i]&=~0xe3fll;
7614           if(v==3) gte_rs[i]|=0xe00ll;
7615           else gte_rs[i]|=3ll<<(v*2);
7616         }
7617         break;
7618       case SYSCALL:
7619       case HLECALL:
7620       case INTCALL:
7621         dops[i].rs1=CCREG;
7622         dops[i].rs2=0;
7623         dops[i].rt1=0;
7624         dops[i].rt2=0;
7625         break;
7626       default:
7627         dops[i].rs1=0;
7628         dops[i].rs2=0;
7629         dops[i].rt1=0;
7630         dops[i].rt2=0;
7631     }
7632     /* Calculate branch target addresses */
7633     if(type==UJUMP)
7634       ba[i]=((start+i*4+4)&0xF0000000)|(((unsigned int)source[i]<<6)>>4);
7635     else if(type==CJUMP&&dops[i].rs1==dops[i].rs2&&(op&1))
7636       ba[i]=start+i*4+8; // Ignore never taken branch
7637     else if(type==SJUMP&&dops[i].rs1==0&&!(op2&1))
7638       ba[i]=start+i*4+8; // Ignore never taken branch
7639     else if(type==CJUMP||type==SJUMP)
7640       ba[i]=start+i*4+4+((signed int)((unsigned int)source[i]<<16)>>14);
7641     else ba[i]=-1;
7642
7643     /* simplify always (not)taken branches */
7644     if (type == CJUMP && dops[i].rs1 == dops[i].rs2) {
7645       dops[i].rs1 = dops[i].rs2 = 0;
7646       if (!(op & 1)) {
7647         dops[i].itype = type = UJUMP;
7648         dops[i].rs2 = CCREG;
7649       }
7650     }
7651     else if (type == SJUMP && dops[i].rs1 == 0 && (op2 & 1))
7652       dops[i].itype = type = UJUMP;
7653
7654     dops[i].is_jump = (dops[i].itype == RJUMP || dops[i].itype == UJUMP || dops[i].itype == CJUMP || dops[i].itype == SJUMP);
7655     dops[i].is_ujump = (dops[i].itype == RJUMP || dops[i].itype == UJUMP); // || (source[i] >> 16) == 0x1000 // beq r0,r0
7656     dops[i].is_load = (dops[i].itype == LOAD || dops[i].itype == LOADLR || op == 0x32); // LWC2
7657     dops[i].is_store = (dops[i].itype == STORE || dops[i].itype == STORELR || op == 0x3a); // SWC2
7658
7659     /* messy cases to just pass over to the interpreter */
7660     if (i > 0 && dops[i-1].is_jump) {
7661       int do_in_intrp=0;
7662       // branch in delay slot?
7663       if (dops[i].is_jump) {
7664         // don't handle first branch and call interpreter if it's hit
7665         SysPrintf("branch in delay slot @%08x (%08x)\n", addr + i*4, addr);
7666         do_in_intrp=1;
7667       }
7668       // basic load delay detection
7669       else if((type==LOAD||type==LOADLR||type==COP0||type==COP2||type==C2LS)&&dops[i].rt1!=0) {
7670         int t=(ba[i-1]-start)/4;
7671         if(0 <= t && t < i &&(dops[i].rt1==dops[t].rs1||dops[i].rt1==dops[t].rs2)&&dops[t].itype!=CJUMP&&dops[t].itype!=SJUMP) {
7672           // jump target wants DS result - potential load delay effect
7673           SysPrintf("load delay @%08x (%08x)\n", addr + i*4, addr);
7674           do_in_intrp=1;
7675           dops[t+1].bt=1; // expected return from interpreter
7676         }
7677         else if(i>=2&&dops[i-2].rt1==2&&dops[i].rt1==2&&dops[i].rs1!=2&&dops[i].rs2!=2&&dops[i-1].rs1!=2&&dops[i-1].rs2!=2&&
7678               !(i>=3&&dops[i-3].is_jump)) {
7679           // v0 overwrite like this is a sign of trouble, bail out
7680           SysPrintf("v0 overwrite @%08x (%08x)\n", addr + i*4, addr);
7681           do_in_intrp=1;
7682         }
7683       }
7684       if (do_in_intrp) {
7685         memset(&dops[i-1], 0, sizeof(dops[i-1]));
7686         dops[i-1].itype = INTCALL;
7687         dops[i-1].rs1 = CCREG;
7688         ba[i-1] = -1;
7689         done = 2;
7690         i--; // don't compile the DS
7691       }
7692     }
7693
7694     /* Is this the end of the block? */
7695     if (i > 0 && dops[i-1].is_ujump) {
7696       if(dops[i-1].rt1==0) { // Continue past subroutine call (JAL)
7697         done=2;
7698       }
7699       else {
7700         if(stop_after_jal) done=1;
7701         // Stop on BREAK
7702         if((source[i+1]&0xfc00003f)==0x0d) done=1;
7703       }
7704       // Don't recompile stuff that's already compiled
7705       if(check_addr(start+i*4+4)) done=1;
7706       // Don't get too close to the limit
7707       if(i>MAXBLOCK/2) done=1;
7708     }
7709     if (dops[i].itype == SYSCALL || dops[i].itype == HLECALL || dops[i].itype == INTCALL)
7710       done = stop_after_jal ? 1 : 2;
7711     if (done == 2) {
7712       // Does the block continue due to a branch?
7713       for(j=i-1;j>=0;j--)
7714       {
7715         if(ba[j]==start+i*4) done=j=0; // Branch into delay slot
7716         if(ba[j]==start+i*4+4) done=j=0;
7717         if(ba[j]==start+i*4+8) done=j=0;
7718       }
7719     }
7720     //assert(i<MAXBLOCK-1);
7721     if(start+i*4==pagelimit-4) done=1;
7722     assert(start+i*4<pagelimit);
7723     if (i==MAXBLOCK-1) done=1;
7724     // Stop if we're compiling junk
7725     if(dops[i].itype==NI&&dops[i].opcode==0x11) {
7726       done=stop_after_jal=1;
7727       SysPrintf("Disabled speculative precompilation\n");
7728     }
7729   }
7730   slen=i;
7731   if (dops[i-1].is_jump) {
7732     if(start+i*4==pagelimit) {
7733       dops[i-1].itype=SPAN;
7734     }
7735   }
7736   assert(slen>0);
7737
7738   int clear_hack_addr = apply_hacks();
7739
7740   /* Pass 2 - Register dependencies and branch targets */
7741
7742   unneeded_registers(0,slen-1,0);
7743
7744   /* Pass 3 - Register allocation */
7745
7746   struct regstat current; // Current register allocations/status
7747   clear_all_regs(current.regmap_entry);
7748   clear_all_regs(current.regmap);
7749   current.wasdirty = current.dirty = 0;
7750   current.u = unneeded_reg[0];
7751   alloc_reg(&current, 0, CCREG);
7752   dirty_reg(&current, CCREG);
7753   current.wasconst = 0;
7754   current.isconst = 0;
7755   current.loadedconst = 0;
7756   current.waswritten = 0;
7757   int ds=0;
7758   int cc=0;
7759   int hr=-1;
7760
7761   if((u_int)addr&1) {
7762     // First instruction is delay slot
7763     cc=-1;
7764     dops[1].bt=1;
7765     ds=1;
7766     unneeded_reg[0]=1;
7767     current.regmap[HOST_BTREG]=BTREG;
7768   }
7769
7770   for(i=0;i<slen;i++)
7771   {
7772     if(dops[i].bt)
7773     {
7774       int hr;
7775       for(hr=0;hr<HOST_REGS;hr++)
7776       {
7777         // Is this really necessary?
7778         if(current.regmap[hr]==0) current.regmap[hr]=-1;
7779       }
7780       current.isconst=0;
7781       current.waswritten=0;
7782     }
7783
7784     memcpy(regmap_pre[i],current.regmap,sizeof(current.regmap));
7785     regs[i].wasconst=current.isconst;
7786     regs[i].wasdirty=current.dirty;
7787     regs[i].dirty=0;
7788     regs[i].u=0;
7789     regs[i].isconst=0;
7790     regs[i].loadedconst=0;
7791     if (!dops[i].is_jump) {
7792       if(i+1<slen) {
7793         current.u=unneeded_reg[i+1]&~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
7794         current.u|=1;
7795       } else {
7796         current.u=1;
7797       }
7798     } else {
7799       if(i+1<slen) {
7800         current.u=branch_unneeded_reg[i]&~((1LL<<dops[i+1].rs1)|(1LL<<dops[i+1].rs2));
7801         current.u&=~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
7802         current.u|=1;
7803       } else {
7804         SysPrintf("oops, branch at end of block with no delay slot @%08x\n", start + i*4);
7805         abort();
7806       }
7807     }
7808     dops[i].is_ds=ds;
7809     if(ds) {
7810       ds=0; // Skip delay slot, already allocated as part of branch
7811       // ...but we need to alloc it in case something jumps here
7812       if(i+1<slen) {
7813         current.u=branch_unneeded_reg[i-1]&unneeded_reg[i+1];
7814       }else{
7815         current.u=branch_unneeded_reg[i-1];
7816       }
7817       current.u&=~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
7818       current.u|=1;
7819       struct regstat temp;
7820       memcpy(&temp,&current,sizeof(current));
7821       temp.wasdirty=temp.dirty;
7822       // TODO: Take into account unconditional branches, as below
7823       delayslot_alloc(&temp,i);
7824       memcpy(regs[i].regmap,temp.regmap,sizeof(temp.regmap));
7825       regs[i].wasdirty=temp.wasdirty;
7826       regs[i].dirty=temp.dirty;
7827       regs[i].isconst=0;
7828       regs[i].wasconst=0;
7829       current.isconst=0;
7830       // Create entry (branch target) regmap
7831       for(hr=0;hr<HOST_REGS;hr++)
7832       {
7833         int r=temp.regmap[hr];
7834         if(r>=0) {
7835           if(r!=regmap_pre[i][hr]) {
7836             regs[i].regmap_entry[hr]=-1;
7837           }
7838           else
7839           {
7840               assert(r < 64);
7841               if((current.u>>r)&1) {
7842                 regs[i].regmap_entry[hr]=-1;
7843                 regs[i].regmap[hr]=-1;
7844                 //Don't clear regs in the delay slot as the branch might need them
7845                 //current.regmap[hr]=-1;
7846               }else
7847                 regs[i].regmap_entry[hr]=r;
7848           }
7849         } else {
7850           // First instruction expects CCREG to be allocated
7851           if(i==0&&hr==HOST_CCREG)
7852             regs[i].regmap_entry[hr]=CCREG;
7853           else
7854             regs[i].regmap_entry[hr]=-1;
7855         }
7856       }
7857     }
7858     else { // Not delay slot
7859       switch(dops[i].itype) {
7860         case UJUMP:
7861           //current.isconst=0; // DEBUG
7862           //current.wasconst=0; // DEBUG
7863           //regs[i].wasconst=0; // DEBUG
7864           clear_const(&current,dops[i].rt1);
7865           alloc_cc(&current,i);
7866           dirty_reg(&current,CCREG);
7867           if (dops[i].rt1==31) {
7868             alloc_reg(&current,i,31);
7869             dirty_reg(&current,31);
7870             //assert(dops[i+1].rs1!=31&&dops[i+1].rs2!=31);
7871             //assert(dops[i+1].rt1!=dops[i].rt1);
7872             #ifdef REG_PREFETCH
7873             alloc_reg(&current,i,PTEMP);
7874             #endif
7875           }
7876           dops[i].ooo=1;
7877           delayslot_alloc(&current,i+1);
7878           //current.isconst=0; // DEBUG
7879           ds=1;
7880           //printf("i=%d, isconst=%x\n",i,current.isconst);
7881           break;
7882         case RJUMP:
7883           //current.isconst=0;
7884           //current.wasconst=0;
7885           //regs[i].wasconst=0;
7886           clear_const(&current,dops[i].rs1);
7887           clear_const(&current,dops[i].rt1);
7888           alloc_cc(&current,i);
7889           dirty_reg(&current,CCREG);
7890           if (!ds_writes_rjump_rs(i)) {
7891             alloc_reg(&current,i,dops[i].rs1);
7892             if (dops[i].rt1!=0) {
7893               alloc_reg(&current,i,dops[i].rt1);
7894               dirty_reg(&current,dops[i].rt1);
7895               assert(dops[i+1].rs1!=dops[i].rt1&&dops[i+1].rs2!=dops[i].rt1);
7896               assert(dops[i+1].rt1!=dops[i].rt1);
7897               #ifdef REG_PREFETCH
7898               alloc_reg(&current,i,PTEMP);
7899               #endif
7900             }
7901             #ifdef USE_MINI_HT
7902             if(dops[i].rs1==31) { // JALR
7903               alloc_reg(&current,i,RHASH);
7904               alloc_reg(&current,i,RHTBL);
7905             }
7906             #endif
7907             delayslot_alloc(&current,i+1);
7908           } else {
7909             // The delay slot overwrites our source register,
7910             // allocate a temporary register to hold the old value.
7911             current.isconst=0;
7912             current.wasconst=0;
7913             regs[i].wasconst=0;
7914             delayslot_alloc(&current,i+1);
7915             current.isconst=0;
7916             alloc_reg(&current,i,RTEMP);
7917           }
7918           //current.isconst=0; // DEBUG
7919           dops[i].ooo=1;
7920           ds=1;
7921           break;
7922         case CJUMP:
7923           //current.isconst=0;
7924           //current.wasconst=0;
7925           //regs[i].wasconst=0;
7926           clear_const(&current,dops[i].rs1);
7927           clear_const(&current,dops[i].rs2);
7928           if((dops[i].opcode&0x3E)==4) // BEQ/BNE
7929           {
7930             alloc_cc(&current,i);
7931             dirty_reg(&current,CCREG);
7932             if(dops[i].rs1) alloc_reg(&current,i,dops[i].rs1);
7933             if(dops[i].rs2) alloc_reg(&current,i,dops[i].rs2);
7934             if((dops[i].rs1&&(dops[i].rs1==dops[i+1].rt1||dops[i].rs1==dops[i+1].rt2))||
7935                (dops[i].rs2&&(dops[i].rs2==dops[i+1].rt1||dops[i].rs2==dops[i+1].rt2))) {
7936               // The delay slot overwrites one of our conditions.
7937               // Allocate the branch condition registers instead.
7938               current.isconst=0;
7939               current.wasconst=0;
7940               regs[i].wasconst=0;
7941               if(dops[i].rs1) alloc_reg(&current,i,dops[i].rs1);
7942               if(dops[i].rs2) alloc_reg(&current,i,dops[i].rs2);
7943             }
7944             else
7945             {
7946               dops[i].ooo=1;
7947               delayslot_alloc(&current,i+1);
7948             }
7949           }
7950           else
7951           if((dops[i].opcode&0x3E)==6) // BLEZ/BGTZ
7952           {
7953             alloc_cc(&current,i);
7954             dirty_reg(&current,CCREG);
7955             alloc_reg(&current,i,dops[i].rs1);
7956             if(dops[i].rs1&&(dops[i].rs1==dops[i+1].rt1||dops[i].rs1==dops[i+1].rt2)) {
7957               // The delay slot overwrites one of our conditions.
7958               // Allocate the branch condition registers instead.
7959               current.isconst=0;
7960               current.wasconst=0;
7961               regs[i].wasconst=0;
7962               if(dops[i].rs1) alloc_reg(&current,i,dops[i].rs1);
7963             }
7964             else
7965             {
7966               dops[i].ooo=1;
7967               delayslot_alloc(&current,i+1);
7968             }
7969           }
7970           else
7971           // Don't alloc the delay slot yet because we might not execute it
7972           if((dops[i].opcode&0x3E)==0x14) // BEQL/BNEL
7973           {
7974             current.isconst=0;
7975             current.wasconst=0;
7976             regs[i].wasconst=0;
7977             alloc_cc(&current,i);
7978             dirty_reg(&current,CCREG);
7979             alloc_reg(&current,i,dops[i].rs1);
7980             alloc_reg(&current,i,dops[i].rs2);
7981           }
7982           else
7983           if((dops[i].opcode&0x3E)==0x16) // BLEZL/BGTZL
7984           {
7985             current.isconst=0;
7986             current.wasconst=0;
7987             regs[i].wasconst=0;
7988             alloc_cc(&current,i);
7989             dirty_reg(&current,CCREG);
7990             alloc_reg(&current,i,dops[i].rs1);
7991           }
7992           ds=1;
7993           //current.isconst=0;
7994           break;
7995         case SJUMP:
7996           //current.isconst=0;
7997           //current.wasconst=0;
7998           //regs[i].wasconst=0;
7999           clear_const(&current,dops[i].rs1);
8000           clear_const(&current,dops[i].rt1);
8001           //if((dops[i].opcode2&0x1E)==0x0) // BLTZ/BGEZ
8002           if((dops[i].opcode2&0x0E)==0x0) // BLTZ/BGEZ
8003           {
8004             alloc_cc(&current,i);
8005             dirty_reg(&current,CCREG);
8006             alloc_reg(&current,i,dops[i].rs1);
8007             if (dops[i].rt1==31) { // BLTZAL/BGEZAL
8008               alloc_reg(&current,i,31);
8009               dirty_reg(&current,31);
8010               //#ifdef REG_PREFETCH
8011               //alloc_reg(&current,i,PTEMP);
8012               //#endif
8013             }
8014             if((dops[i].rs1&&(dops[i].rs1==dops[i+1].rt1||dops[i].rs1==dops[i+1].rt2)) // The delay slot overwrites the branch condition.
8015                ||(dops[i].rt1==31&&(dops[i+1].rs1==31||dops[i+1].rs2==31||dops[i+1].rt1==31||dops[i+1].rt2==31))) { // DS touches $ra
8016               // Allocate the branch condition registers instead.
8017               current.isconst=0;
8018               current.wasconst=0;
8019               regs[i].wasconst=0;
8020               if(dops[i].rs1) alloc_reg(&current,i,dops[i].rs1);
8021             }
8022             else
8023             {
8024               dops[i].ooo=1;
8025               delayslot_alloc(&current,i+1);
8026             }
8027           }
8028           else
8029           // Don't alloc the delay slot yet because we might not execute it
8030           if((dops[i].opcode2&0x1E)==0x2) // BLTZL/BGEZL
8031           {
8032             current.isconst=0;
8033             current.wasconst=0;
8034             regs[i].wasconst=0;
8035             alloc_cc(&current,i);
8036             dirty_reg(&current,CCREG);
8037             alloc_reg(&current,i,dops[i].rs1);
8038           }
8039           ds=1;
8040           //current.isconst=0;
8041           break;
8042         case IMM16:
8043           imm16_alloc(&current,i);
8044           break;
8045         case LOAD:
8046         case LOADLR:
8047           load_alloc(&current,i);
8048           break;
8049         case STORE:
8050         case STORELR:
8051           store_alloc(&current,i);
8052           break;
8053         case ALU:
8054           alu_alloc(&current,i);
8055           break;
8056         case SHIFT:
8057           shift_alloc(&current,i);
8058           break;
8059         case MULTDIV:
8060           multdiv_alloc(&current,i);
8061           break;
8062         case SHIFTIMM:
8063           shiftimm_alloc(&current,i);
8064           break;
8065         case MOV:
8066           mov_alloc(&current,i);
8067           break;
8068         case COP0:
8069           cop0_alloc(&current,i);
8070           break;
8071         case COP1:
8072           break;
8073         case COP2:
8074           cop2_alloc(&current,i);
8075           break;
8076         case C1LS:
8077           c1ls_alloc(&current,i);
8078           break;
8079         case C2LS:
8080           c2ls_alloc(&current,i);
8081           break;
8082         case C2OP:
8083           c2op_alloc(&current,i);
8084           break;
8085         case SYSCALL:
8086         case HLECALL:
8087         case INTCALL:
8088           syscall_alloc(&current,i);
8089           break;
8090         case SPAN:
8091           pagespan_alloc(&current,i);
8092           break;
8093       }
8094
8095       // Create entry (branch target) regmap
8096       for(hr=0;hr<HOST_REGS;hr++)
8097       {
8098         int r,or;
8099         r=current.regmap[hr];
8100         if(r>=0) {
8101           if(r!=regmap_pre[i][hr]) {
8102             // TODO: delay slot (?)
8103             or=get_reg(regmap_pre[i],r); // Get old mapping for this register
8104             if(or<0||(r&63)>=TEMPREG){
8105               regs[i].regmap_entry[hr]=-1;
8106             }
8107             else
8108             {
8109               // Just move it to a different register
8110               regs[i].regmap_entry[hr]=r;
8111               // If it was dirty before, it's still dirty
8112               if((regs[i].wasdirty>>or)&1) dirty_reg(&current,r&63);
8113             }
8114           }
8115           else
8116           {
8117             // Unneeded
8118             if(r==0){
8119               regs[i].regmap_entry[hr]=0;
8120             }
8121             else
8122             {
8123               assert(r<64);
8124               if((current.u>>r)&1) {
8125                 regs[i].regmap_entry[hr]=-1;
8126                 //regs[i].regmap[hr]=-1;
8127                 current.regmap[hr]=-1;
8128               }else
8129                 regs[i].regmap_entry[hr]=r;
8130             }
8131           }
8132         } else {
8133           // Branches expect CCREG to be allocated at the target
8134           if(regmap_pre[i][hr]==CCREG)
8135             regs[i].regmap_entry[hr]=CCREG;
8136           else
8137             regs[i].regmap_entry[hr]=-1;
8138         }
8139       }
8140       memcpy(regs[i].regmap,current.regmap,sizeof(current.regmap));
8141     }
8142
8143     if(i>0&&(dops[i-1].itype==STORE||dops[i-1].itype==STORELR||(dops[i-1].itype==C2LS&&dops[i-1].opcode==0x3a))&&(u_int)imm[i-1]<0x800)
8144       current.waswritten|=1<<dops[i-1].rs1;
8145     current.waswritten&=~(1<<dops[i].rt1);
8146     current.waswritten&=~(1<<dops[i].rt2);
8147     if((dops[i].itype==STORE||dops[i].itype==STORELR||(dops[i].itype==C2LS&&dops[i].opcode==0x3a))&&(u_int)imm[i]>=0x800)
8148       current.waswritten&=~(1<<dops[i].rs1);
8149
8150     /* Branch post-alloc */
8151     if(i>0)
8152     {
8153       current.wasdirty=current.dirty;
8154       switch(dops[i-1].itype) {
8155         case UJUMP:
8156           memcpy(&branch_regs[i-1],&current,sizeof(current));
8157           branch_regs[i-1].isconst=0;
8158           branch_regs[i-1].wasconst=0;
8159           branch_regs[i-1].u=branch_unneeded_reg[i-1]&~((1LL<<dops[i-1].rs1)|(1LL<<dops[i-1].rs2));
8160           alloc_cc(&branch_regs[i-1],i-1);
8161           dirty_reg(&branch_regs[i-1],CCREG);
8162           if(dops[i-1].rt1==31) { // JAL
8163             alloc_reg(&branch_regs[i-1],i-1,31);
8164             dirty_reg(&branch_regs[i-1],31);
8165           }
8166           memcpy(&branch_regs[i-1].regmap_entry,&branch_regs[i-1].regmap,sizeof(current.regmap));
8167           memcpy(constmap[i],constmap[i-1],sizeof(constmap[i]));
8168           break;
8169         case RJUMP:
8170           memcpy(&branch_regs[i-1],&current,sizeof(current));
8171           branch_regs[i-1].isconst=0;
8172           branch_regs[i-1].wasconst=0;
8173           branch_regs[i-1].u=branch_unneeded_reg[i-1]&~((1LL<<dops[i-1].rs1)|(1LL<<dops[i-1].rs2));
8174           alloc_cc(&branch_regs[i-1],i-1);
8175           dirty_reg(&branch_regs[i-1],CCREG);
8176           alloc_reg(&branch_regs[i-1],i-1,dops[i-1].rs1);
8177           if(dops[i-1].rt1!=0) { // JALR
8178             alloc_reg(&branch_regs[i-1],i-1,dops[i-1].rt1);
8179             dirty_reg(&branch_regs[i-1],dops[i-1].rt1);
8180           }
8181           #ifdef USE_MINI_HT
8182           if(dops[i-1].rs1==31) { // JALR
8183             alloc_reg(&branch_regs[i-1],i-1,RHASH);
8184             alloc_reg(&branch_regs[i-1],i-1,RHTBL);
8185           }
8186           #endif
8187           memcpy(&branch_regs[i-1].regmap_entry,&branch_regs[i-1].regmap,sizeof(current.regmap));
8188           memcpy(constmap[i],constmap[i-1],sizeof(constmap[i]));
8189           break;
8190         case CJUMP:
8191           if((dops[i-1].opcode&0x3E)==4) // BEQ/BNE
8192           {
8193             alloc_cc(&current,i-1);
8194             dirty_reg(&current,CCREG);
8195             if((dops[i-1].rs1&&(dops[i-1].rs1==dops[i].rt1||dops[i-1].rs1==dops[i].rt2))||
8196                (dops[i-1].rs2&&(dops[i-1].rs2==dops[i].rt1||dops[i-1].rs2==dops[i].rt2))) {
8197               // The delay slot overwrote one of our conditions
8198               // Delay slot goes after the test (in order)
8199               current.u=branch_unneeded_reg[i-1]&~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
8200               current.u|=1;
8201               delayslot_alloc(&current,i);
8202               current.isconst=0;
8203             }
8204             else
8205             {
8206               current.u=branch_unneeded_reg[i-1]&~((1LL<<dops[i-1].rs1)|(1LL<<dops[i-1].rs2));
8207               // Alloc the branch condition registers
8208               if(dops[i-1].rs1) alloc_reg(&current,i-1,dops[i-1].rs1);
8209               if(dops[i-1].rs2) alloc_reg(&current,i-1,dops[i-1].rs2);
8210             }
8211             memcpy(&branch_regs[i-1],&current,sizeof(current));
8212             branch_regs[i-1].isconst=0;
8213             branch_regs[i-1].wasconst=0;
8214             memcpy(&branch_regs[i-1].regmap_entry,&current.regmap,sizeof(current.regmap));
8215             memcpy(constmap[i],constmap[i-1],sizeof(constmap[i]));
8216           }
8217           else
8218           if((dops[i-1].opcode&0x3E)==6) // BLEZ/BGTZ
8219           {
8220             alloc_cc(&current,i-1);
8221             dirty_reg(&current,CCREG);
8222             if(dops[i-1].rs1==dops[i].rt1||dops[i-1].rs1==dops[i].rt2) {
8223               // The delay slot overwrote the branch condition
8224               // Delay slot goes after the test (in order)
8225               current.u=branch_unneeded_reg[i-1]&~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
8226               current.u|=1;
8227               delayslot_alloc(&current,i);
8228               current.isconst=0;
8229             }
8230             else
8231             {
8232               current.u=branch_unneeded_reg[i-1]&~(1LL<<dops[i-1].rs1);
8233               // Alloc the branch condition register
8234               alloc_reg(&current,i-1,dops[i-1].rs1);
8235             }
8236             memcpy(&branch_regs[i-1],&current,sizeof(current));
8237             branch_regs[i-1].isconst=0;
8238             branch_regs[i-1].wasconst=0;
8239             memcpy(&branch_regs[i-1].regmap_entry,&current.regmap,sizeof(current.regmap));
8240             memcpy(constmap[i],constmap[i-1],sizeof(constmap[i]));
8241           }
8242           else
8243           // Alloc the delay slot in case the branch is taken
8244           if((dops[i-1].opcode&0x3E)==0x14) // BEQL/BNEL
8245           {
8246             memcpy(&branch_regs[i-1],&current,sizeof(current));
8247             branch_regs[i-1].u=(branch_unneeded_reg[i-1]&~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2)|(1LL<<dops[i].rt1)|(1LL<<dops[i].rt2)))|1;
8248             alloc_cc(&branch_regs[i-1],i);
8249             dirty_reg(&branch_regs[i-1],CCREG);
8250             delayslot_alloc(&branch_regs[i-1],i);
8251             branch_regs[i-1].isconst=0;
8252             alloc_reg(&current,i,CCREG); // Not taken path
8253             dirty_reg(&current,CCREG);
8254             memcpy(&branch_regs[i-1].regmap_entry,&branch_regs[i-1].regmap,sizeof(current.regmap));
8255           }
8256           else
8257           if((dops[i-1].opcode&0x3E)==0x16) // BLEZL/BGTZL
8258           {
8259             memcpy(&branch_regs[i-1],&current,sizeof(current));
8260             branch_regs[i-1].u=(branch_unneeded_reg[i-1]&~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2)|(1LL<<dops[i].rt1)|(1LL<<dops[i].rt2)))|1;
8261             alloc_cc(&branch_regs[i-1],i);
8262             dirty_reg(&branch_regs[i-1],CCREG);
8263             delayslot_alloc(&branch_regs[i-1],i);
8264             branch_regs[i-1].isconst=0;
8265             alloc_reg(&current,i,CCREG); // Not taken path
8266             dirty_reg(&current,CCREG);
8267             memcpy(&branch_regs[i-1].regmap_entry,&branch_regs[i-1].regmap,sizeof(current.regmap));
8268           }
8269           break;
8270         case SJUMP:
8271           //if((dops[i-1].opcode2&0x1E)==0) // BLTZ/BGEZ
8272           if((dops[i-1].opcode2&0x0E)==0) // BLTZ/BGEZ
8273           {
8274             alloc_cc(&current,i-1);
8275             dirty_reg(&current,CCREG);
8276             if(dops[i-1].rs1==dops[i].rt1||dops[i-1].rs1==dops[i].rt2) {
8277               // The delay slot overwrote the branch condition
8278               // Delay slot goes after the test (in order)
8279               current.u=branch_unneeded_reg[i-1]&~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2));
8280               current.u|=1;
8281               delayslot_alloc(&current,i);
8282               current.isconst=0;
8283             }
8284             else
8285             {
8286               current.u=branch_unneeded_reg[i-1]&~(1LL<<dops[i-1].rs1);
8287               // Alloc the branch condition register
8288               alloc_reg(&current,i-1,dops[i-1].rs1);
8289             }
8290             memcpy(&branch_regs[i-1],&current,sizeof(current));
8291             branch_regs[i-1].isconst=0;
8292             branch_regs[i-1].wasconst=0;
8293             memcpy(&branch_regs[i-1].regmap_entry,&current.regmap,sizeof(current.regmap));
8294             memcpy(constmap[i],constmap[i-1],sizeof(constmap[i]));
8295           }
8296           else
8297           // Alloc the delay slot in case the branch is taken
8298           if((dops[i-1].opcode2&0x1E)==2) // BLTZL/BGEZL
8299           {
8300             memcpy(&branch_regs[i-1],&current,sizeof(current));
8301             branch_regs[i-1].u=(branch_unneeded_reg[i-1]&~((1LL<<dops[i].rs1)|(1LL<<dops[i].rs2)|(1LL<<dops[i].rt1)|(1LL<<dops[i].rt2)))|1;
8302             alloc_cc(&branch_regs[i-1],i);
8303             dirty_reg(&branch_regs[i-1],CCREG);
8304             delayslot_alloc(&branch_regs[i-1],i);
8305             branch_regs[i-1].isconst=0;
8306             alloc_reg(&current,i,CCREG); // Not taken path
8307             dirty_reg(&current,CCREG);
8308             memcpy(&branch_regs[i-1].regmap_entry,&branch_regs[i-1].regmap,sizeof(current.regmap));
8309           }
8310           // FIXME: BLTZAL/BGEZAL
8311           if(dops[i-1].opcode2&0x10) { // BxxZAL
8312             alloc_reg(&branch_regs[i-1],i-1,31);
8313             dirty_reg(&branch_regs[i-1],31);
8314           }
8315           break;
8316       }
8317
8318       if (dops[i-1].is_ujump)
8319       {
8320         if(dops[i-1].rt1==31) // JAL/JALR
8321         {
8322           // Subroutine call will return here, don't alloc any registers
8323           current.dirty=0;
8324           clear_all_regs(current.regmap);
8325           alloc_reg(&current,i,CCREG);
8326           dirty_reg(&current,CCREG);
8327         }
8328         else if(i+1<slen)
8329         {
8330           // Internal branch will jump here, match registers to caller
8331           current.dirty=0;
8332           clear_all_regs(current.regmap);
8333           alloc_reg(&current,i,CCREG);
8334           dirty_reg(&current,CCREG);
8335           for(j=i-1;j>=0;j--)
8336           {
8337             if(ba[j]==start+i*4+4) {
8338               memcpy(current.regmap,branch_regs[j].regmap,sizeof(current.regmap));
8339               current.dirty=branch_regs[j].dirty;
8340               break;
8341             }
8342           }
8343           while(j>=0) {
8344             if(ba[j]==start+i*4+4) {
8345               for(hr=0;hr<HOST_REGS;hr++) {
8346                 if(current.regmap[hr]!=branch_regs[j].regmap[hr]) {
8347                   current.regmap[hr]=-1;
8348                 }
8349                 current.dirty&=branch_regs[j].dirty;
8350               }
8351             }
8352             j--;
8353           }
8354         }
8355       }
8356     }
8357
8358     // Count cycles in between branches
8359     ccadj[i] = CLOCK_ADJUST(cc);
8360     if (i > 0 && (dops[i-1].is_jump || dops[i].itype == SYSCALL || dops[i].itype == HLECALL))
8361     {
8362       cc=0;
8363     }
8364 #if !defined(DRC_DBG)
8365     else if(dops[i].itype==C2OP&&gte_cycletab[source[i]&0x3f]>2)
8366     {
8367       // this should really be removed since the real stalls have been implemented,
8368       // but doing so causes sizeable perf regression against the older version
8369       u_int gtec = gte_cycletab[source[i] & 0x3f];
8370       cc += HACK_ENABLED(NDHACK_NO_STALLS) ? gtec/2 : 2;
8371     }
8372     else if(i>1&&dops[i].itype==STORE&&dops[i-1].itype==STORE&&dops[i-2].itype==STORE&&!dops[i].bt)
8373     {
8374       cc+=4;
8375     }
8376     else if(dops[i].itype==C2LS)
8377     {
8378       // same as with C2OP
8379       cc += HACK_ENABLED(NDHACK_NO_STALLS) ? 4 : 2;
8380     }
8381 #endif
8382     else
8383     {
8384       cc++;
8385     }
8386
8387     if(!dops[i].is_ds) {
8388       regs[i].dirty=current.dirty;
8389       regs[i].isconst=current.isconst;
8390       memcpy(constmap[i],current_constmap,sizeof(constmap[i]));
8391     }
8392     for(hr=0;hr<HOST_REGS;hr++) {
8393       if(hr!=EXCLUDE_REG&&regs[i].regmap[hr]>=0) {
8394         if(regmap_pre[i][hr]!=regs[i].regmap[hr]) {
8395           regs[i].wasconst&=~(1<<hr);
8396         }
8397       }
8398     }
8399     if(current.regmap[HOST_BTREG]==BTREG) current.regmap[HOST_BTREG]=-1;
8400     regs[i].waswritten=current.waswritten;
8401   }
8402
8403   /* Pass 4 - Cull unused host registers */
8404
8405   uint64_t nr=0;
8406
8407   for (i=slen-1;i>=0;i--)
8408   {
8409     int hr;
8410     if(dops[i].is_jump)
8411     {
8412       if(ba[i]<start || ba[i]>=(start+slen*4))
8413       {
8414         // Branch out of this block, don't need anything
8415         nr=0;
8416       }
8417       else
8418       {
8419         // Internal branch
8420         // Need whatever matches the target
8421         nr=0;
8422         int t=(ba[i]-start)>>2;
8423         for(hr=0;hr<HOST_REGS;hr++)
8424         {
8425           if(regs[i].regmap_entry[hr]>=0) {
8426             if(regs[i].regmap_entry[hr]==regs[t].regmap_entry[hr]) nr|=1<<hr;
8427           }
8428         }
8429       }
8430       // Conditional branch may need registers for following instructions
8431       if (!dops[i].is_ujump)
8432       {
8433         if(i<slen-2) {
8434           nr|=needed_reg[i+2];
8435           for(hr=0;hr<HOST_REGS;hr++)
8436           {
8437             if(regmap_pre[i+2][hr]>=0&&get_reg(regs[i+2].regmap_entry,regmap_pre[i+2][hr])<0) nr&=~(1<<hr);
8438             //if((regmap_entry[i+2][hr])>=0) if(!((nr>>hr)&1)) printf("%x-bogus(%d=%d)\n",start+i*4,hr,regmap_entry[i+2][hr]);
8439           }
8440         }
8441       }
8442       // Don't need stuff which is overwritten
8443       //if(regs[i].regmap[hr]!=regmap_pre[i][hr]) nr&=~(1<<hr);
8444       //if(regs[i].regmap[hr]<0) nr&=~(1<<hr);
8445       // Merge in delay slot
8446       for(hr=0;hr<HOST_REGS;hr++)
8447       {
8448         if(dops[i+1].rt1&&dops[i+1].rt1==(regs[i].regmap[hr]&63)) nr&=~(1<<hr);
8449         if(dops[i+1].rt2&&dops[i+1].rt2==(regs[i].regmap[hr]&63)) nr&=~(1<<hr);
8450         if(dops[i+1].rs1==regmap_pre[i][hr]) nr|=1<<hr;
8451         if(dops[i+1].rs2==regmap_pre[i][hr]) nr|=1<<hr;
8452         if(dops[i+1].rs1==regs[i].regmap_entry[hr]) nr|=1<<hr;
8453         if(dops[i+1].rs2==regs[i].regmap_entry[hr]) nr|=1<<hr;
8454         if(ram_offset && (dops[i+1].is_load || dops[i+1].is_store)) {
8455           if(regmap_pre[i][hr]==ROREG) nr|=1<<hr;
8456           if(regs[i].regmap_entry[hr]==ROREG) nr|=1<<hr;
8457         }
8458         if(dops[i+1].is_store) {
8459           if(regmap_pre[i][hr]==INVCP) nr|=1<<hr;
8460           if(regs[i].regmap_entry[hr]==INVCP) nr|=1<<hr;
8461         }
8462       }
8463     }
8464     else if(dops[i].itype==SYSCALL||dops[i].itype==HLECALL||dops[i].itype==INTCALL)
8465     {
8466       // SYSCALL instruction (software interrupt)
8467       nr=0;
8468     }
8469     else if(dops[i].itype==COP0 && (source[i]&0x3f)==0x18)
8470     {
8471       // ERET instruction (return from interrupt)
8472       nr=0;
8473     }
8474     else // Non-branch
8475     {
8476       if(i<slen-1) {
8477         for(hr=0;hr<HOST_REGS;hr++) {
8478           if(regmap_pre[i+1][hr]>=0&&get_reg(regs[i+1].regmap_entry,regmap_pre[i+1][hr])<0) nr&=~(1<<hr);
8479           if(regs[i].regmap[hr]!=regmap_pre[i+1][hr]) nr&=~(1<<hr);
8480           if(regs[i].regmap[hr]!=regmap_pre[i][hr]) nr&=~(1<<hr);
8481           if(regs[i].regmap[hr]<0) nr&=~(1<<hr);
8482         }
8483       }
8484     }
8485     for(hr=0;hr<HOST_REGS;hr++)
8486     {
8487       // Overwritten registers are not needed
8488       if(dops[i].rt1&&dops[i].rt1==(regs[i].regmap[hr]&63)) nr&=~(1<<hr);
8489       if(dops[i].rt2&&dops[i].rt2==(regs[i].regmap[hr]&63)) nr&=~(1<<hr);
8490       if(FTEMP==(regs[i].regmap[hr]&63)) nr&=~(1<<hr);
8491       // Source registers are needed
8492       if(dops[i].rs1==regmap_pre[i][hr]) nr|=1<<hr;
8493       if(dops[i].rs2==regmap_pre[i][hr]) nr|=1<<hr;
8494       if(dops[i].rs1==regs[i].regmap_entry[hr]) nr|=1<<hr;
8495       if(dops[i].rs2==regs[i].regmap_entry[hr]) nr|=1<<hr;
8496       if(ram_offset && (dops[i].is_load || dops[i].is_store)) {
8497         if(regmap_pre[i][hr]==ROREG) nr|=1<<hr;
8498         if(regs[i].regmap_entry[hr]==ROREG) nr|=1<<hr;
8499       }
8500       if(dops[i].is_store) {
8501         if(regmap_pre[i][hr]==INVCP) nr|=1<<hr;
8502         if(regs[i].regmap_entry[hr]==INVCP) nr|=1<<hr;
8503       }
8504       // Don't store a register immediately after writing it,
8505       // may prevent dual-issue.
8506       // But do so if this is a branch target, otherwise we
8507       // might have to load the register before the branch.
8508       if(i>0&&!dops[i].bt&&((regs[i].wasdirty>>hr)&1)) {
8509         if((regmap_pre[i][hr]>0&&!((unneeded_reg[i]>>regmap_pre[i][hr])&1))) {
8510           if(dops[i-1].rt1==(regmap_pre[i][hr]&63)) nr|=1<<hr;
8511           if(dops[i-1].rt2==(regmap_pre[i][hr]&63)) nr|=1<<hr;
8512         }
8513         if((regs[i].regmap_entry[hr]>0&&!((unneeded_reg[i]>>regs[i].regmap_entry[hr])&1))) {
8514           if(dops[i-1].rt1==(regs[i].regmap_entry[hr]&63)) nr|=1<<hr;
8515           if(dops[i-1].rt2==(regs[i].regmap_entry[hr]&63)) nr|=1<<hr;
8516         }
8517       }
8518     }
8519     // Cycle count is needed at branches.  Assume it is needed at the target too.
8520     if(i==0||dops[i].bt||dops[i].itype==CJUMP||dops[i].itype==SPAN) {
8521       if(regmap_pre[i][HOST_CCREG]==CCREG) nr|=1<<HOST_CCREG;
8522       if(regs[i].regmap_entry[HOST_CCREG]==CCREG) nr|=1<<HOST_CCREG;
8523     }
8524     // Save it
8525     needed_reg[i]=nr;
8526
8527     // Deallocate unneeded registers
8528     for(hr=0;hr<HOST_REGS;hr++)
8529     {
8530       if(!((nr>>hr)&1)) {
8531         if(regs[i].regmap_entry[hr]!=CCREG) regs[i].regmap_entry[hr]=-1;
8532         if(dops[i].is_jump)
8533         {
8534           int map1 = 0, map2 = 0, temp = 0; // or -1 ??
8535           if (dops[i+1].is_load || dops[i+1].is_store)
8536             map1 = ROREG;
8537           if (dops[i+1].is_store)
8538             map2 = INVCP;
8539           if(dops[i+1].itype==LOADLR || dops[i+1].itype==STORELR || dops[i+1].itype==C2LS)
8540             temp = FTEMP;
8541           if((regs[i].regmap[hr]&63)!=dops[i].rs1 && (regs[i].regmap[hr]&63)!=dops[i].rs2 &&
8542              (regs[i].regmap[hr]&63)!=dops[i].rt1 && (regs[i].regmap[hr]&63)!=dops[i].rt2 &&
8543              (regs[i].regmap[hr]&63)!=dops[i+1].rt1 && (regs[i].regmap[hr]&63)!=dops[i+1].rt2 &&
8544              regs[i].regmap[hr]!=dops[i+1].rs1 && regs[i].regmap[hr]!=dops[i+1].rs2 &&
8545              (regs[i].regmap[hr]&63)!=temp && regs[i].regmap[hr]!=PTEMP &&
8546              regs[i].regmap[hr]!=RHASH && regs[i].regmap[hr]!=RHTBL &&
8547              regs[i].regmap[hr]!=RTEMP && regs[i].regmap[hr]!=CCREG &&
8548              regs[i].regmap[hr]!=map1 && regs[i].regmap[hr]!=map2)
8549           {
8550             regs[i].regmap[hr]=-1;
8551             regs[i].isconst&=~(1<<hr);
8552             regs[i].dirty&=~(1<<hr);
8553             regs[i+1].wasdirty&=~(1<<hr);
8554             if((branch_regs[i].regmap[hr]&63)!=dops[i].rs1 && (branch_regs[i].regmap[hr]&63)!=dops[i].rs2 &&
8555                (branch_regs[i].regmap[hr]&63)!=dops[i].rt1 && (branch_regs[i].regmap[hr]&63)!=dops[i].rt2 &&
8556                (branch_regs[i].regmap[hr]&63)!=dops[i+1].rt1 && (branch_regs[i].regmap[hr]&63)!=dops[i+1].rt2 &&
8557                branch_regs[i].regmap[hr]!=dops[i+1].rs1 && branch_regs[i].regmap[hr]!=dops[i+1].rs2 &&
8558                (branch_regs[i].regmap[hr]&63)!=temp && branch_regs[i].regmap[hr]!=PTEMP &&
8559                branch_regs[i].regmap[hr]!=RHASH && branch_regs[i].regmap[hr]!=RHTBL &&
8560                branch_regs[i].regmap[hr]!=RTEMP && branch_regs[i].regmap[hr]!=CCREG &&
8561                branch_regs[i].regmap[hr]!=map1 && branch_regs[i].regmap[hr]!=map2)
8562             {
8563               branch_regs[i].regmap[hr]=-1;
8564               branch_regs[i].regmap_entry[hr]=-1;
8565               if (!dops[i].is_ujump)
8566               {
8567                 if (i < slen-2) {
8568                   regmap_pre[i+2][hr]=-1;
8569                   regs[i+2].wasconst&=~(1<<hr);
8570                 }
8571               }
8572             }
8573           }
8574         }
8575         else
8576         {
8577           // Non-branch
8578           if(i>0)
8579           {
8580             int map1 = -1, map2 = -1, temp=-1;
8581             if (dops[i].is_load || dops[i].is_store)
8582               map1 = ROREG;
8583             if (dops[i].is_store)
8584               map2 = INVCP;
8585             if (dops[i].itype==LOADLR || dops[i].itype==STORELR || dops[i].itype==C2LS)
8586               temp = FTEMP;
8587             if((regs[i].regmap[hr]&63)!=dops[i].rt1 && (regs[i].regmap[hr]&63)!=dops[i].rt2 &&
8588                regs[i].regmap[hr]!=dops[i].rs1 && regs[i].regmap[hr]!=dops[i].rs2 &&
8589                (regs[i].regmap[hr]&63)!=temp && regs[i].regmap[hr]!=map1 && regs[i].regmap[hr]!=map2 &&
8590                //(dops[i].itype!=SPAN||regs[i].regmap[hr]!=CCREG)
8591                regs[i].regmap[hr] != CCREG)
8592             {
8593               if(i<slen-1&&!dops[i].is_ds) {
8594                 assert(regs[i].regmap[hr]<64);
8595                 if(regmap_pre[i+1][hr]!=-1 || regs[i].regmap[hr]>0)
8596                 if(regmap_pre[i+1][hr]!=regs[i].regmap[hr])
8597                 {
8598                   SysPrintf("fail: %x (%d %d!=%d)\n",start+i*4,hr,regmap_pre[i+1][hr],regs[i].regmap[hr]);
8599                   assert(regmap_pre[i+1][hr]==regs[i].regmap[hr]);
8600                 }
8601                 regmap_pre[i+1][hr]=-1;
8602                 if(regs[i+1].regmap_entry[hr]==CCREG) regs[i+1].regmap_entry[hr]=-1;
8603                 regs[i+1].wasconst&=~(1<<hr);
8604               }
8605               regs[i].regmap[hr]=-1;
8606               regs[i].isconst&=~(1<<hr);
8607               regs[i].dirty&=~(1<<hr);
8608               regs[i+1].wasdirty&=~(1<<hr);
8609             }
8610           }
8611         }
8612       } // if needed
8613     } // for hr
8614   }
8615
8616   /* Pass 5 - Pre-allocate registers */
8617
8618   // If a register is allocated during a loop, try to allocate it for the
8619   // entire loop, if possible.  This avoids loading/storing registers
8620   // inside of the loop.
8621
8622   signed char f_regmap[HOST_REGS];
8623   clear_all_regs(f_regmap);
8624   for(i=0;i<slen-1;i++)
8625   {
8626     if(dops[i].itype==UJUMP||dops[i].itype==CJUMP||dops[i].itype==SJUMP)
8627     {
8628       if(ba[i]>=start && ba[i]<(start+i*4))
8629       if(dops[i+1].itype==NOP||dops[i+1].itype==MOV||dops[i+1].itype==ALU
8630       ||dops[i+1].itype==SHIFTIMM||dops[i+1].itype==IMM16||dops[i+1].itype==LOAD
8631       ||dops[i+1].itype==STORE||dops[i+1].itype==STORELR||dops[i+1].itype==C1LS
8632       ||dops[i+1].itype==SHIFT||dops[i+1].itype==COP1
8633       ||dops[i+1].itype==COP2||dops[i+1].itype==C2LS||dops[i+1].itype==C2OP)
8634       {
8635         int t=(ba[i]-start)>>2;
8636         if(t > 0 && !dops[t-1].is_jump) // loop_preload can't handle jumps into delay slots
8637         if(t<2||(dops[t-2].itype!=UJUMP&&dops[t-2].itype!=RJUMP)||dops[t-2].rt1!=31) // call/ret assumes no registers allocated
8638         for(hr=0;hr<HOST_REGS;hr++)
8639         {
8640           if(regs[i].regmap[hr]>=0) {
8641             if(f_regmap[hr]!=regs[i].regmap[hr]) {
8642               // dealloc old register
8643               int n;
8644               for(n=0;n<HOST_REGS;n++)
8645               {
8646                 if(f_regmap[n]==regs[i].regmap[hr]) {f_regmap[n]=-1;}
8647               }
8648               // and alloc new one
8649               f_regmap[hr]=regs[i].regmap[hr];
8650             }
8651           }
8652           if(branch_regs[i].regmap[hr]>=0) {
8653             if(f_regmap[hr]!=branch_regs[i].regmap[hr]) {
8654               // dealloc old register
8655               int n;
8656               for(n=0;n<HOST_REGS;n++)
8657               {
8658                 if(f_regmap[n]==branch_regs[i].regmap[hr]) {f_regmap[n]=-1;}
8659               }
8660               // and alloc new one
8661               f_regmap[hr]=branch_regs[i].regmap[hr];
8662             }
8663           }
8664           if(dops[i].ooo) {
8665             if(count_free_regs(regs[i].regmap)<=minimum_free_regs[i+1])
8666               f_regmap[hr]=branch_regs[i].regmap[hr];
8667           }else{
8668             if(count_free_regs(branch_regs[i].regmap)<=minimum_free_regs[i+1])
8669               f_regmap[hr]=branch_regs[i].regmap[hr];
8670           }
8671           // Avoid dirty->clean transition
8672           #ifdef DESTRUCTIVE_WRITEBACK
8673           if(t>0) if(get_reg(regmap_pre[t],f_regmap[hr])>=0) if((regs[t].wasdirty>>get_reg(regmap_pre[t],f_regmap[hr]))&1) f_regmap[hr]=-1;
8674           #endif
8675           // This check is only strictly required in the DESTRUCTIVE_WRITEBACK
8676           // case above, however it's always a good idea.  We can't hoist the
8677           // load if the register was already allocated, so there's no point
8678           // wasting time analyzing most of these cases.  It only "succeeds"
8679           // when the mapping was different and the load can be replaced with
8680           // a mov, which is of negligible benefit.  So such cases are
8681           // skipped below.
8682           if(f_regmap[hr]>0) {
8683             if(regs[t].regmap[hr]==f_regmap[hr]||(regs[t].regmap_entry[hr]<0&&get_reg(regmap_pre[t],f_regmap[hr])<0)) {
8684               int r=f_regmap[hr];
8685               for(j=t;j<=i;j++)
8686               {
8687                 //printf("Test %x -> %x, %x %d/%d\n",start+i*4,ba[i],start+j*4,hr,r);
8688                 if(r<34&&((unneeded_reg[j]>>r)&1)) break;
8689                 assert(r < 64);
8690                 if(regs[j].regmap[hr]==f_regmap[hr]&&(f_regmap[hr]&63)<TEMPREG) {
8691                   //printf("Hit %x -> %x, %x %d/%d\n",start+i*4,ba[i],start+j*4,hr,r);
8692                   int k;
8693                   if(regs[i].regmap[hr]==-1&&branch_regs[i].regmap[hr]==-1) {
8694                     if(get_reg(regs[i].regmap,f_regmap[hr])>=0) break;
8695                     if(get_reg(regs[i+2].regmap,f_regmap[hr])>=0) break;
8696                     k=i;
8697                     while(k>1&&regs[k-1].regmap[hr]==-1) {
8698                       if(count_free_regs(regs[k-1].regmap)<=minimum_free_regs[k-1]) {
8699                         //printf("no free regs for store %x\n",start+(k-1)*4);
8700                         break;
8701                       }
8702                       if(get_reg(regs[k-1].regmap,f_regmap[hr])>=0) {
8703                         //printf("no-match due to different register\n");
8704                         break;
8705                       }
8706                       if (dops[k-2].is_jump) {
8707                         //printf("no-match due to branch\n");
8708                         break;
8709                       }
8710                       // call/ret fast path assumes no registers allocated
8711                       if(k>2&&(dops[k-3].itype==UJUMP||dops[k-3].itype==RJUMP)&&dops[k-3].rt1==31) {
8712                         break;
8713                       }
8714                       k--;
8715                     }
8716                     if(regs[k-1].regmap[hr]==f_regmap[hr]&&regmap_pre[k][hr]==f_regmap[hr]) {
8717                       //printf("Extend r%d, %x ->\n",hr,start+k*4);
8718                       while(k<i) {
8719                         regs[k].regmap_entry[hr]=f_regmap[hr];
8720                         regs[k].regmap[hr]=f_regmap[hr];
8721                         regmap_pre[k+1][hr]=f_regmap[hr];
8722                         regs[k].wasdirty&=~(1<<hr);
8723                         regs[k].dirty&=~(1<<hr);
8724                         regs[k].wasdirty|=(1<<hr)&regs[k-1].dirty;
8725                         regs[k].dirty|=(1<<hr)&regs[k].wasdirty;
8726                         regs[k].wasconst&=~(1<<hr);
8727                         regs[k].isconst&=~(1<<hr);
8728                         k++;
8729                       }
8730                     }
8731                     else {
8732                       //printf("Fail Extend r%d, %x ->\n",hr,start+k*4);
8733                       break;
8734                     }
8735                     assert(regs[i-1].regmap[hr]==f_regmap[hr]);
8736                     if(regs[i-1].regmap[hr]==f_regmap[hr]&&regmap_pre[i][hr]==f_regmap[hr]) {
8737                       //printf("OK fill %x (r%d)\n",start+i*4,hr);
8738                       regs[i].regmap_entry[hr]=f_regmap[hr];
8739                       regs[i].regmap[hr]=f_regmap[hr];
8740                       regs[i].wasdirty&=~(1<<hr);
8741                       regs[i].dirty&=~(1<<hr);
8742                       regs[i].wasdirty|=(1<<hr)&regs[i-1].dirty;
8743                       regs[i].dirty|=(1<<hr)&regs[i-1].dirty;
8744                       regs[i].wasconst&=~(1<<hr);
8745                       regs[i].isconst&=~(1<<hr);
8746                       branch_regs[i].regmap_entry[hr]=f_regmap[hr];
8747                       branch_regs[i].wasdirty&=~(1<<hr);
8748                       branch_regs[i].wasdirty|=(1<<hr)&regs[i].dirty;
8749                       branch_regs[i].regmap[hr]=f_regmap[hr];
8750                       branch_regs[i].dirty&=~(1<<hr);
8751                       branch_regs[i].dirty|=(1<<hr)&regs[i].dirty;
8752                       branch_regs[i].wasconst&=~(1<<hr);
8753                       branch_regs[i].isconst&=~(1<<hr);
8754                       if (!dops[i].is_ujump) {
8755                         regmap_pre[i+2][hr]=f_regmap[hr];
8756                         regs[i+2].wasdirty&=~(1<<hr);
8757                         regs[i+2].wasdirty|=(1<<hr)&regs[i].dirty;
8758                       }
8759                     }
8760                   }
8761                   for(k=t;k<j;k++) {
8762                     // Alloc register clean at beginning of loop,
8763                     // but may dirty it in pass 6
8764                     regs[k].regmap_entry[hr]=f_regmap[hr];
8765                     regs[k].regmap[hr]=f_regmap[hr];
8766                     regs[k].dirty&=~(1<<hr);
8767                     regs[k].wasconst&=~(1<<hr);
8768                     regs[k].isconst&=~(1<<hr);
8769                     if (dops[k].is_jump) {
8770                       branch_regs[k].regmap_entry[hr]=f_regmap[hr];
8771                       branch_regs[k].regmap[hr]=f_regmap[hr];
8772                       branch_regs[k].dirty&=~(1<<hr);
8773                       branch_regs[k].wasconst&=~(1<<hr);
8774                       branch_regs[k].isconst&=~(1<<hr);
8775                       if (!dops[k].is_ujump) {
8776                         regmap_pre[k+2][hr]=f_regmap[hr];
8777                         regs[k+2].wasdirty&=~(1<<hr);
8778                       }
8779                     }
8780                     else
8781                     {
8782                       regmap_pre[k+1][hr]=f_regmap[hr];
8783                       regs[k+1].wasdirty&=~(1<<hr);
8784                     }
8785                   }
8786                   if(regs[j].regmap[hr]==f_regmap[hr])
8787                     regs[j].regmap_entry[hr]=f_regmap[hr];
8788                   break;
8789                 }
8790                 if(j==i) break;
8791                 if(regs[j].regmap[hr]>=0)
8792                   break;
8793                 if(get_reg(regs[j].regmap,f_regmap[hr])>=0) {
8794                   //printf("no-match due to different register\n");
8795                   break;
8796                 }
8797                 if (dops[j].is_ujump)
8798                 {
8799                   // Stop on unconditional branch
8800                   break;
8801                 }
8802                 if(dops[j].itype==CJUMP||dops[j].itype==SJUMP)
8803                 {
8804                   if(dops[j].ooo) {
8805                     if(count_free_regs(regs[j].regmap)<=minimum_free_regs[j+1])
8806                       break;
8807                   }else{
8808                     if(count_free_regs(branch_regs[j].regmap)<=minimum_free_regs[j+1])
8809                       break;
8810                   }
8811                   if(get_reg(branch_regs[j].regmap,f_regmap[hr])>=0) {
8812                     //printf("no-match due to different register (branch)\n");
8813                     break;
8814                   }
8815                 }
8816                 if(count_free_regs(regs[j].regmap)<=minimum_free_regs[j]) {
8817                   //printf("No free regs for store %x\n",start+j*4);
8818                   break;
8819                 }
8820                 assert(f_regmap[hr]<64);
8821               }
8822             }
8823           }
8824         }
8825       }
8826     }else{
8827       // Non branch or undetermined branch target
8828       for(hr=0;hr<HOST_REGS;hr++)
8829       {
8830         if(hr!=EXCLUDE_REG) {
8831           if(regs[i].regmap[hr]>=0) {
8832             if(f_regmap[hr]!=regs[i].regmap[hr]) {
8833               // dealloc old register
8834               int n;
8835               for(n=0;n<HOST_REGS;n++)
8836               {
8837                 if(f_regmap[n]==regs[i].regmap[hr]) {f_regmap[n]=-1;}
8838               }
8839               // and alloc new one
8840               f_regmap[hr]=regs[i].regmap[hr];
8841             }
8842           }
8843         }
8844       }
8845       // Try to restore cycle count at branch targets
8846       if(dops[i].bt) {
8847         for(j=i;j<slen-1;j++) {
8848           if(regs[j].regmap[HOST_CCREG]!=-1) break;
8849           if(count_free_regs(regs[j].regmap)<=minimum_free_regs[j]) {
8850             //printf("no free regs for store %x\n",start+j*4);
8851             break;
8852           }
8853         }
8854         if(regs[j].regmap[HOST_CCREG]==CCREG) {
8855           int k=i;
8856           //printf("Extend CC, %x -> %x\n",start+k*4,start+j*4);
8857           while(k<j) {
8858             regs[k].regmap_entry[HOST_CCREG]=CCREG;
8859             regs[k].regmap[HOST_CCREG]=CCREG;
8860             regmap_pre[k+1][HOST_CCREG]=CCREG;
8861             regs[k+1].wasdirty|=1<<HOST_CCREG;
8862             regs[k].dirty|=1<<HOST_CCREG;
8863             regs[k].wasconst&=~(1<<HOST_CCREG);
8864             regs[k].isconst&=~(1<<HOST_CCREG);
8865             k++;
8866           }
8867           regs[j].regmap_entry[HOST_CCREG]=CCREG;
8868         }
8869         // Work backwards from the branch target
8870         if(j>i&&f_regmap[HOST_CCREG]==CCREG)
8871         {
8872           //printf("Extend backwards\n");
8873           int k;
8874           k=i;
8875           while(regs[k-1].regmap[HOST_CCREG]==-1) {
8876             if(count_free_regs(regs[k-1].regmap)<=minimum_free_regs[k-1]) {
8877               //printf("no free regs for store %x\n",start+(k-1)*4);
8878               break;
8879             }
8880             k--;
8881           }
8882           if(regs[k-1].regmap[HOST_CCREG]==CCREG) {
8883             //printf("Extend CC, %x ->\n",start+k*4);
8884             while(k<=i) {
8885               regs[k].regmap_entry[HOST_CCREG]=CCREG;
8886               regs[k].regmap[HOST_CCREG]=CCREG;
8887               regmap_pre[k+1][HOST_CCREG]=CCREG;
8888               regs[k+1].wasdirty|=1<<HOST_CCREG;
8889               regs[k].dirty|=1<<HOST_CCREG;
8890               regs[k].wasconst&=~(1<<HOST_CCREG);
8891               regs[k].isconst&=~(1<<HOST_CCREG);
8892               k++;
8893             }
8894           }
8895           else {
8896             //printf("Fail Extend CC, %x ->\n",start+k*4);
8897           }
8898         }
8899       }
8900       if(dops[i].itype!=STORE&&dops[i].itype!=STORELR&&dops[i].itype!=C1LS&&dops[i].itype!=SHIFT&&
8901          dops[i].itype!=NOP&&dops[i].itype!=MOV&&dops[i].itype!=ALU&&dops[i].itype!=SHIFTIMM&&
8902          dops[i].itype!=IMM16&&dops[i].itype!=LOAD&&dops[i].itype!=COP1)
8903       {
8904         memcpy(f_regmap,regs[i].regmap,sizeof(f_regmap));
8905       }
8906     }
8907   }
8908
8909   // This allocates registers (if possible) one instruction prior
8910   // to use, which can avoid a load-use penalty on certain CPUs.
8911   for(i=0;i<slen-1;i++)
8912   {
8913     if (!i || !dops[i-1].is_jump)
8914     {
8915       if(!dops[i+1].bt)
8916       {
8917         if(dops[i].itype==ALU||dops[i].itype==MOV||dops[i].itype==LOAD||dops[i].itype==SHIFTIMM||dops[i].itype==IMM16
8918            ||((dops[i].itype==COP1||dops[i].itype==COP2)&&dops[i].opcode2<3))
8919         {
8920           if(dops[i+1].rs1) {
8921             if((hr=get_reg(regs[i+1].regmap,dops[i+1].rs1))>=0)
8922             {
8923               if(regs[i].regmap[hr]<0&&regs[i+1].regmap_entry[hr]<0)
8924               {
8925                 regs[i].regmap[hr]=regs[i+1].regmap[hr];
8926                 regmap_pre[i+1][hr]=regs[i+1].regmap[hr];
8927                 regs[i+1].regmap_entry[hr]=regs[i+1].regmap[hr];
8928                 regs[i].isconst&=~(1<<hr);
8929                 regs[i].isconst|=regs[i+1].isconst&(1<<hr);
8930                 constmap[i][hr]=constmap[i+1][hr];
8931                 regs[i+1].wasdirty&=~(1<<hr);
8932                 regs[i].dirty&=~(1<<hr);
8933               }
8934             }
8935           }
8936           if(dops[i+1].rs2) {
8937             if((hr=get_reg(regs[i+1].regmap,dops[i+1].rs2))>=0)
8938             {
8939               if(regs[i].regmap[hr]<0&&regs[i+1].regmap_entry[hr]<0)
8940               {
8941                 regs[i].regmap[hr]=regs[i+1].regmap[hr];
8942                 regmap_pre[i+1][hr]=regs[i+1].regmap[hr];
8943                 regs[i+1].regmap_entry[hr]=regs[i+1].regmap[hr];
8944                 regs[i].isconst&=~(1<<hr);
8945                 regs[i].isconst|=regs[i+1].isconst&(1<<hr);
8946                 constmap[i][hr]=constmap[i+1][hr];
8947                 regs[i+1].wasdirty&=~(1<<hr);
8948                 regs[i].dirty&=~(1<<hr);
8949               }
8950             }
8951           }
8952           // Preload target address for load instruction (non-constant)
8953           if(dops[i+1].itype==LOAD&&dops[i+1].rs1&&get_reg(regs[i+1].regmap,dops[i+1].rs1)<0) {
8954             if((hr=get_reg(regs[i+1].regmap,dops[i+1].rt1))>=0)
8955             {
8956               if(regs[i].regmap[hr]<0&&regs[i+1].regmap_entry[hr]<0)
8957               {
8958                 regs[i].regmap[hr]=dops[i+1].rs1;
8959                 regmap_pre[i+1][hr]=dops[i+1].rs1;
8960                 regs[i+1].regmap_entry[hr]=dops[i+1].rs1;
8961                 regs[i].isconst&=~(1<<hr);
8962                 regs[i].isconst|=regs[i+1].isconst&(1<<hr);
8963                 constmap[i][hr]=constmap[i+1][hr];
8964                 regs[i+1].wasdirty&=~(1<<hr);
8965                 regs[i].dirty&=~(1<<hr);
8966               }
8967             }
8968           }
8969           // Load source into target register
8970           if(dops[i+1].lt1&&get_reg(regs[i+1].regmap,dops[i+1].rs1)<0) {
8971             if((hr=get_reg(regs[i+1].regmap,dops[i+1].rt1))>=0)
8972             {
8973               if(regs[i].regmap[hr]<0&&regs[i+1].regmap_entry[hr]<0)
8974               {
8975                 regs[i].regmap[hr]=dops[i+1].rs1;
8976                 regmap_pre[i+1][hr]=dops[i+1].rs1;
8977                 regs[i+1].regmap_entry[hr]=dops[i+1].rs1;
8978                 regs[i].isconst&=~(1<<hr);
8979                 regs[i].isconst|=regs[i+1].isconst&(1<<hr);
8980                 constmap[i][hr]=constmap[i+1][hr];
8981                 regs[i+1].wasdirty&=~(1<<hr);
8982                 regs[i].dirty&=~(1<<hr);
8983               }
8984             }
8985           }
8986           // Address for store instruction (non-constant)
8987           if(dops[i+1].itype==STORE||dops[i+1].itype==STORELR
8988              ||(dops[i+1].opcode&0x3b)==0x39||(dops[i+1].opcode&0x3b)==0x3a) { // SB/SH/SW/SD/SWC1/SDC1/SWC2/SDC2
8989             if(get_reg(regs[i+1].regmap,dops[i+1].rs1)<0) {
8990               hr=get_reg2(regs[i].regmap,regs[i+1].regmap,-1);
8991               if(hr<0) hr=get_reg(regs[i+1].regmap,-1);
8992               else {
8993                 regs[i+1].regmap[hr]=AGEN1+((i+1)&1);
8994                 regs[i+1].isconst&=~(1<<hr);
8995               }
8996               assert(hr>=0);
8997               if(regs[i].regmap[hr]<0&&regs[i+1].regmap_entry[hr]<0)
8998               {
8999                 regs[i].regmap[hr]=dops[i+1].rs1;
9000                 regmap_pre[i+1][hr]=dops[i+1].rs1;
9001                 regs[i+1].regmap_entry[hr]=dops[i+1].rs1;
9002                 regs[i].isconst&=~(1<<hr);
9003                 regs[i].isconst|=regs[i+1].isconst&(1<<hr);
9004                 constmap[i][hr]=constmap[i+1][hr];
9005                 regs[i+1].wasdirty&=~(1<<hr);
9006                 regs[i].dirty&=~(1<<hr);
9007               }
9008             }
9009           }
9010           if(dops[i+1].itype==LOADLR||(dops[i+1].opcode&0x3b)==0x31||(dops[i+1].opcode&0x3b)==0x32) { // LWC1/LDC1, LWC2/LDC2
9011             if(get_reg(regs[i+1].regmap,dops[i+1].rs1)<0) {
9012               int nr;
9013               hr=get_reg(regs[i+1].regmap,FTEMP);
9014               assert(hr>=0);
9015               if(regs[i].regmap[hr]<0&&regs[i+1].regmap_entry[hr]<0)
9016               {
9017                 regs[i].regmap[hr]=dops[i+1].rs1;
9018                 regmap_pre[i+1][hr]=dops[i+1].rs1;
9019                 regs[i+1].regmap_entry[hr]=dops[i+1].rs1;
9020                 regs[i].isconst&=~(1<<hr);
9021                 regs[i].isconst|=regs[i+1].isconst&(1<<hr);
9022                 constmap[i][hr]=constmap[i+1][hr];
9023                 regs[i+1].wasdirty&=~(1<<hr);
9024                 regs[i].dirty&=~(1<<hr);
9025               }
9026               else if((nr=get_reg2(regs[i].regmap,regs[i+1].regmap,-1))>=0)
9027               {
9028                 // move it to another register
9029                 regs[i+1].regmap[hr]=-1;
9030                 regmap_pre[i+2][hr]=-1;
9031                 regs[i+1].regmap[nr]=FTEMP;
9032                 regmap_pre[i+2][nr]=FTEMP;
9033                 regs[i].regmap[nr]=dops[i+1].rs1;
9034                 regmap_pre[i+1][nr]=dops[i+1].rs1;
9035                 regs[i+1].regmap_entry[nr]=dops[i+1].rs1;
9036                 regs[i].isconst&=~(1<<nr);
9037                 regs[i+1].isconst&=~(1<<nr);
9038                 regs[i].dirty&=~(1<<nr);
9039                 regs[i+1].wasdirty&=~(1<<nr);
9040                 regs[i+1].dirty&=~(1<<nr);
9041                 regs[i+2].wasdirty&=~(1<<nr);
9042               }
9043             }
9044           }
9045           if(dops[i+1].itype==LOAD||dops[i+1].itype==LOADLR||dops[i+1].itype==STORE||dops[i+1].itype==STORELR/*||dops[i+1].itype==C1LS||||dops[i+1].itype==C2LS*/) {
9046             if(dops[i+1].itype==LOAD)
9047               hr=get_reg(regs[i+1].regmap,dops[i+1].rt1);
9048             if(dops[i+1].itype==LOADLR||(dops[i+1].opcode&0x3b)==0x31||(dops[i+1].opcode&0x3b)==0x32) // LWC1/LDC1, LWC2/LDC2
9049               hr=get_reg(regs[i+1].regmap,FTEMP);
9050             if(dops[i+1].itype==STORE||dops[i+1].itype==STORELR||(dops[i+1].opcode&0x3b)==0x39||(dops[i+1].opcode&0x3b)==0x3a) { // SWC1/SDC1/SWC2/SDC2
9051               hr=get_reg(regs[i+1].regmap,AGEN1+((i+1)&1));
9052               if(hr<0) hr=get_reg(regs[i+1].regmap,-1);
9053             }
9054             if(hr>=0&&regs[i].regmap[hr]<0) {
9055               int rs=get_reg(regs[i+1].regmap,dops[i+1].rs1);
9056               if(rs>=0&&((regs[i+1].wasconst>>rs)&1)) {
9057                 regs[i].regmap[hr]=AGEN1+((i+1)&1);
9058                 regmap_pre[i+1][hr]=AGEN1+((i+1)&1);
9059                 regs[i+1].regmap_entry[hr]=AGEN1+((i+1)&1);
9060                 regs[i].isconst&=~(1<<hr);
9061                 regs[i+1].wasdirty&=~(1<<hr);
9062                 regs[i].dirty&=~(1<<hr);
9063               }
9064             }
9065           }
9066         }
9067       }
9068     }
9069   }
9070
9071   /* Pass 6 - Optimize clean/dirty state */
9072   clean_registers(0,slen-1,1);
9073
9074   /* Pass 7 - Identify 32-bit registers */
9075   for (i=slen-1;i>=0;i--)
9076   {
9077     if(dops[i].itype==CJUMP||dops[i].itype==SJUMP)
9078     {
9079       // Conditional branch
9080       if((source[i]>>16)!=0x1000&&i<slen-2) {
9081         // Mark this address as a branch target since it may be called
9082         // upon return from interrupt
9083         dops[i+2].bt=1;
9084       }
9085     }
9086   }
9087
9088   if(dops[slen-1].itype==SPAN) {
9089     dops[slen-1].bt=1; // Mark as a branch target so instruction can restart after exception
9090   }
9091
9092 #ifdef REG_ALLOC_PRINT
9093   /* Debug/disassembly */
9094   for(i=0;i<slen;i++)
9095   {
9096     printf("U:");
9097     int r;
9098     for(r=1;r<=CCREG;r++) {
9099       if((unneeded_reg[i]>>r)&1) {
9100         if(r==HIREG) printf(" HI");
9101         else if(r==LOREG) printf(" LO");
9102         else printf(" r%d",r);
9103       }
9104     }
9105     printf("\n");
9106     #if defined(__i386__) || defined(__x86_64__)
9107     printf("pre: eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",regmap_pre[i][0],regmap_pre[i][1],regmap_pre[i][2],regmap_pre[i][3],regmap_pre[i][5],regmap_pre[i][6],regmap_pre[i][7]);
9108     #endif
9109     #ifdef __arm__
9110     printf("pre: r0=%d r1=%d r2=%d r3=%d r4=%d r5=%d r6=%d r7=%d r8=%d r9=%d r10=%d r12=%d\n",regmap_pre[i][0],regmap_pre[i][1],regmap_pre[i][2],regmap_pre[i][3],regmap_pre[i][4],regmap_pre[i][5],regmap_pre[i][6],regmap_pre[i][7],regmap_pre[i][8],regmap_pre[i][9],regmap_pre[i][10],regmap_pre[i][12]);
9111     #endif
9112     #if defined(__i386__) || defined(__x86_64__)
9113     printf("needs: ");
9114     if(needed_reg[i]&1) printf("eax ");
9115     if((needed_reg[i]>>1)&1) printf("ecx ");
9116     if((needed_reg[i]>>2)&1) printf("edx ");
9117     if((needed_reg[i]>>3)&1) printf("ebx ");
9118     if((needed_reg[i]>>5)&1) printf("ebp ");
9119     if((needed_reg[i]>>6)&1) printf("esi ");
9120     if((needed_reg[i]>>7)&1) printf("edi ");
9121     printf("\n");
9122     printf("entry: eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d\n",regs[i].regmap_entry[0],regs[i].regmap_entry[1],regs[i].regmap_entry[2],regs[i].regmap_entry[3],regs[i].regmap_entry[5],regs[i].regmap_entry[6],regs[i].regmap_entry[7]);
9123     printf("dirty: ");
9124     if(regs[i].wasdirty&1) printf("eax ");
9125     if((regs[i].wasdirty>>1)&1) printf("ecx ");
9126     if((regs[i].wasdirty>>2)&1) printf("edx ");
9127     if((regs[i].wasdirty>>3)&1) printf("ebx ");
9128     if((regs[i].wasdirty>>5)&1) printf("ebp ");
9129     if((regs[i].wasdirty>>6)&1) printf("esi ");
9130     if((regs[i].wasdirty>>7)&1) printf("edi ");
9131     #endif
9132     #ifdef __arm__
9133     printf("entry: r0=%d r1=%d r2=%d r3=%d r4=%d r5=%d r6=%d r7=%d r8=%d r9=%d r10=%d r12=%d\n",regs[i].regmap_entry[0],regs[i].regmap_entry[1],regs[i].regmap_entry[2],regs[i].regmap_entry[3],regs[i].regmap_entry[4],regs[i].regmap_entry[5],regs[i].regmap_entry[6],regs[i].regmap_entry[7],regs[i].regmap_entry[8],regs[i].regmap_entry[9],regs[i].regmap_entry[10],regs[i].regmap_entry[12]);
9134     printf("dirty: ");
9135     if(regs[i].wasdirty&1) printf("r0 ");
9136     if((regs[i].wasdirty>>1)&1) printf("r1 ");
9137     if((regs[i].wasdirty>>2)&1) printf("r2 ");
9138     if((regs[i].wasdirty>>3)&1) printf("r3 ");
9139     if((regs[i].wasdirty>>4)&1) printf("r4 ");
9140     if((regs[i].wasdirty>>5)&1) printf("r5 ");
9141     if((regs[i].wasdirty>>6)&1) printf("r6 ");
9142     if((regs[i].wasdirty>>7)&1) printf("r7 ");
9143     if((regs[i].wasdirty>>8)&1) printf("r8 ");
9144     if((regs[i].wasdirty>>9)&1) printf("r9 ");
9145     if((regs[i].wasdirty>>10)&1) printf("r10 ");
9146     if((regs[i].wasdirty>>12)&1) printf("r12 ");
9147     #endif
9148     printf("\n");
9149     disassemble_inst(i);
9150     //printf ("ccadj[%d] = %d\n",i,ccadj[i]);
9151     #if defined(__i386__) || defined(__x86_64__)
9152     printf("eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d dirty: ",regs[i].regmap[0],regs[i].regmap[1],regs[i].regmap[2],regs[i].regmap[3],regs[i].regmap[5],regs[i].regmap[6],regs[i].regmap[7]);
9153     if(regs[i].dirty&1) printf("eax ");
9154     if((regs[i].dirty>>1)&1) printf("ecx ");
9155     if((regs[i].dirty>>2)&1) printf("edx ");
9156     if((regs[i].dirty>>3)&1) printf("ebx ");
9157     if((regs[i].dirty>>5)&1) printf("ebp ");
9158     if((regs[i].dirty>>6)&1) printf("esi ");
9159     if((regs[i].dirty>>7)&1) printf("edi ");
9160     #endif
9161     #ifdef __arm__
9162     printf("r0=%d r1=%d r2=%d r3=%d r4=%d r5=%d r6=%d r7=%d r8=%d r9=%d r10=%d r12=%d dirty: ",regs[i].regmap[0],regs[i].regmap[1],regs[i].regmap[2],regs[i].regmap[3],regs[i].regmap[4],regs[i].regmap[5],regs[i].regmap[6],regs[i].regmap[7],regs[i].regmap[8],regs[i].regmap[9],regs[i].regmap[10],regs[i].regmap[12]);
9163     if(regs[i].dirty&1) printf("r0 ");
9164     if((regs[i].dirty>>1)&1) printf("r1 ");
9165     if((regs[i].dirty>>2)&1) printf("r2 ");
9166     if((regs[i].dirty>>3)&1) printf("r3 ");
9167     if((regs[i].dirty>>4)&1) printf("r4 ");
9168     if((regs[i].dirty>>5)&1) printf("r5 ");
9169     if((regs[i].dirty>>6)&1) printf("r6 ");
9170     if((regs[i].dirty>>7)&1) printf("r7 ");
9171     if((regs[i].dirty>>8)&1) printf("r8 ");
9172     if((regs[i].dirty>>9)&1) printf("r9 ");
9173     if((regs[i].dirty>>10)&1) printf("r10 ");
9174     if((regs[i].dirty>>12)&1) printf("r12 ");
9175     #endif
9176     printf("\n");
9177     if(regs[i].isconst) {
9178       printf("constants: ");
9179       #if defined(__i386__) || defined(__x86_64__)
9180       if(regs[i].isconst&1) printf("eax=%x ",(u_int)constmap[i][0]);
9181       if((regs[i].isconst>>1)&1) printf("ecx=%x ",(u_int)constmap[i][1]);
9182       if((regs[i].isconst>>2)&1) printf("edx=%x ",(u_int)constmap[i][2]);
9183       if((regs[i].isconst>>3)&1) printf("ebx=%x ",(u_int)constmap[i][3]);
9184       if((regs[i].isconst>>5)&1) printf("ebp=%x ",(u_int)constmap[i][5]);
9185       if((regs[i].isconst>>6)&1) printf("esi=%x ",(u_int)constmap[i][6]);
9186       if((regs[i].isconst>>7)&1) printf("edi=%x ",(u_int)constmap[i][7]);
9187       #endif
9188       #if defined(__arm__) || defined(__aarch64__)
9189       int r;
9190       for (r = 0; r < ARRAY_SIZE(constmap[i]); r++)
9191         if ((regs[i].isconst >> r) & 1)
9192           printf(" r%d=%x", r, (u_int)constmap[i][r]);
9193       #endif
9194       printf("\n");
9195     }
9196     if(dops[i].is_jump) {
9197       #if defined(__i386__) || defined(__x86_64__)
9198       printf("branch(%d): eax=%d ecx=%d edx=%d ebx=%d ebp=%d esi=%d edi=%d dirty: ",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7]);
9199       if(branch_regs[i].dirty&1) printf("eax ");
9200       if((branch_regs[i].dirty>>1)&1) printf("ecx ");
9201       if((branch_regs[i].dirty>>2)&1) printf("edx ");
9202       if((branch_regs[i].dirty>>3)&1) printf("ebx ");
9203       if((branch_regs[i].dirty>>5)&1) printf("ebp ");
9204       if((branch_regs[i].dirty>>6)&1) printf("esi ");
9205       if((branch_regs[i].dirty>>7)&1) printf("edi ");
9206       #endif
9207       #ifdef __arm__
9208       printf("branch(%d): r0=%d r1=%d r2=%d r3=%d r4=%d r5=%d r6=%d r7=%d r8=%d r9=%d r10=%d r12=%d dirty: ",i,branch_regs[i].regmap[0],branch_regs[i].regmap[1],branch_regs[i].regmap[2],branch_regs[i].regmap[3],branch_regs[i].regmap[4],branch_regs[i].regmap[5],branch_regs[i].regmap[6],branch_regs[i].regmap[7],branch_regs[i].regmap[8],branch_regs[i].regmap[9],branch_regs[i].regmap[10],branch_regs[i].regmap[12]);
9209       if(branch_regs[i].dirty&1) printf("r0 ");
9210       if((branch_regs[i].dirty>>1)&1) printf("r1 ");
9211       if((branch_regs[i].dirty>>2)&1) printf("r2 ");
9212       if((branch_regs[i].dirty>>3)&1) printf("r3 ");
9213       if((branch_regs[i].dirty>>4)&1) printf("r4 ");
9214       if((branch_regs[i].dirty>>5)&1) printf("r5 ");
9215       if((branch_regs[i].dirty>>6)&1) printf("r6 ");
9216       if((branch_regs[i].dirty>>7)&1) printf("r7 ");
9217       if((branch_regs[i].dirty>>8)&1) printf("r8 ");
9218       if((branch_regs[i].dirty>>9)&1) printf("r9 ");
9219       if((branch_regs[i].dirty>>10)&1) printf("r10 ");
9220       if((branch_regs[i].dirty>>12)&1) printf("r12 ");
9221       #endif
9222     }
9223   }
9224 #endif // REG_ALLOC_PRINT
9225
9226   /* Pass 8 - Assembly */
9227   linkcount=0;stubcount=0;
9228   ds=0;is_delayslot=0;
9229   u_int dirty_pre=0;
9230   void *beginning=start_block();
9231   if((u_int)addr&1) {
9232     ds=1;
9233     pagespan_ds();
9234   }
9235   void *instr_addr0_override = NULL;
9236
9237   if (start == 0x80030000) {
9238     // nasty hack for the fastbios thing
9239     // override block entry to this code
9240     instr_addr0_override = out;
9241     emit_movimm(start,0);
9242     // abuse io address var as a flag that we
9243     // have already returned here once
9244     emit_readword(&address,1);
9245     emit_writeword(0,&pcaddr);
9246     emit_writeword(0,&address);
9247     emit_cmp(0,1);
9248     #ifdef __aarch64__
9249     emit_jeq(out + 4*2);
9250     emit_far_jump(new_dyna_leave);
9251     #else
9252     emit_jne(new_dyna_leave);
9253     #endif
9254   }
9255   for(i=0;i<slen;i++)
9256   {
9257     check_regmap(regmap_pre[i]);
9258     check_regmap(regs[i].regmap_entry);
9259     check_regmap(regs[i].regmap);
9260     //if(ds) printf("ds: ");
9261     disassemble_inst(i);
9262     if(ds) {
9263       ds=0; // Skip delay slot
9264       if(dops[i].bt) assem_debug("OOPS - branch into delay slot\n");
9265       instr_addr[i] = NULL;
9266     } else {
9267       speculate_register_values(i);
9268       #ifndef DESTRUCTIVE_WRITEBACK
9269       if (i < 2 || !dops[i-2].is_ujump)
9270       {
9271         wb_valid(regmap_pre[i],regs[i].regmap_entry,dirty_pre,regs[i].wasdirty,unneeded_reg[i]);
9272       }
9273       if((dops[i].itype==CJUMP||dops[i].itype==SJUMP)) {
9274         dirty_pre=branch_regs[i].dirty;
9275       }else{
9276         dirty_pre=regs[i].dirty;
9277       }
9278       #endif
9279       // write back
9280       if (i < 2 || !dops[i-2].is_ujump)
9281       {
9282         wb_invalidate(regmap_pre[i],regs[i].regmap_entry,regs[i].wasdirty,unneeded_reg[i]);
9283         loop_preload(regmap_pre[i],regs[i].regmap_entry);
9284       }
9285       // branch target entry point
9286       instr_addr[i] = out;
9287       assem_debug("<->\n");
9288       drc_dbg_emit_do_cmp(i, ccadj[i]);
9289       if (clear_hack_addr) {
9290         emit_movimm(0, 0);
9291         emit_writeword(0, &hack_addr);
9292         clear_hack_addr = 0;
9293       }
9294
9295       // load regs
9296       if(regs[i].regmap_entry[HOST_CCREG]==CCREG&&regs[i].regmap[HOST_CCREG]!=CCREG)
9297         wb_register(CCREG,regs[i].regmap_entry,regs[i].wasdirty);
9298       load_regs(regs[i].regmap_entry,regs[i].regmap,dops[i].rs1,dops[i].rs2);
9299       address_generation(i,&regs[i],regs[i].regmap_entry);
9300       load_consts(regmap_pre[i],regs[i].regmap,i);
9301       if(dops[i].is_jump)
9302       {
9303         // Load the delay slot registers if necessary
9304         if(dops[i+1].rs1!=dops[i].rs1&&dops[i+1].rs1!=dops[i].rs2&&(dops[i+1].rs1!=dops[i].rt1||dops[i].rt1==0))
9305           load_regs(regs[i].regmap_entry,regs[i].regmap,dops[i+1].rs1,dops[i+1].rs1);
9306         if(dops[i+1].rs2!=dops[i+1].rs1&&dops[i+1].rs2!=dops[i].rs1&&dops[i+1].rs2!=dops[i].rs2&&(dops[i+1].rs2!=dops[i].rt1||dops[i].rt1==0))
9307           load_regs(regs[i].regmap_entry,regs[i].regmap,dops[i+1].rs2,dops[i+1].rs2);
9308         if (ram_offset && (dops[i+1].is_load || dops[i+1].is_store))
9309           load_regs(regs[i].regmap_entry,regs[i].regmap,ROREG,ROREG);
9310         if (dops[i+1].is_store)
9311           load_regs(regs[i].regmap_entry,regs[i].regmap,INVCP,INVCP);
9312       }
9313       else if(i+1<slen)
9314       {
9315         // Preload registers for following instruction
9316         if(dops[i+1].rs1!=dops[i].rs1&&dops[i+1].rs1!=dops[i].rs2)
9317           if(dops[i+1].rs1!=dops[i].rt1&&dops[i+1].rs1!=dops[i].rt2)
9318             load_regs(regs[i].regmap_entry,regs[i].regmap,dops[i+1].rs1,dops[i+1].rs1);
9319         if(dops[i+1].rs2!=dops[i+1].rs1&&dops[i+1].rs2!=dops[i].rs1&&dops[i+1].rs2!=dops[i].rs2)
9320           if(dops[i+1].rs2!=dops[i].rt1&&dops[i+1].rs2!=dops[i].rt2)
9321             load_regs(regs[i].regmap_entry,regs[i].regmap,dops[i+1].rs2,dops[i+1].rs2);
9322       }
9323       // TODO: if(is_ooo(i)) address_generation(i+1);
9324       if (!dops[i].is_jump || dops[i].itype == CJUMP)
9325         load_regs(regs[i].regmap_entry,regs[i].regmap,CCREG,CCREG);
9326       if (ram_offset && (dops[i].is_load || dops[i].is_store))
9327         load_regs(regs[i].regmap_entry,regs[i].regmap,ROREG,ROREG);
9328       if (dops[i].is_store)
9329         load_regs(regs[i].regmap_entry,regs[i].regmap,INVCP,INVCP);
9330
9331       ds = assemble(i, &regs[i], ccadj[i]);
9332
9333       if (dops[i].is_ujump)
9334         literal_pool(1024);
9335       else
9336         literal_pool_jumpover(256);
9337     }
9338   }
9339
9340   assert(slen > 0);
9341   if (slen > 0 && dops[slen-1].itype == INTCALL) {
9342     // no ending needed for this block since INTCALL never returns
9343   }
9344   // If the block did not end with an unconditional branch,
9345   // add a jump to the next instruction.
9346   else if (i > 1) {
9347     if (!dops[i-2].is_ujump && dops[i-1].itype != SPAN) {
9348       assert(!dops[i-1].is_jump);
9349       assert(i==slen);
9350       if(dops[i-2].itype!=CJUMP&&dops[i-2].itype!=SJUMP) {
9351         store_regs_bt(regs[i-1].regmap,regs[i-1].dirty,start+i*4);
9352         if(regs[i-1].regmap[HOST_CCREG]!=CCREG)
9353           emit_loadreg(CCREG,HOST_CCREG);
9354         emit_addimm(HOST_CCREG, ccadj[i-1] + CLOCK_ADJUST(1), HOST_CCREG);
9355       }
9356       else
9357       {
9358         store_regs_bt(branch_regs[i-2].regmap,branch_regs[i-2].dirty,start+i*4);
9359         assert(branch_regs[i-2].regmap[HOST_CCREG]==CCREG);
9360       }
9361       add_to_linker(out,start+i*4,0);
9362       emit_jmp(0);
9363     }
9364   }
9365   else
9366   {
9367     assert(i>0);
9368     assert(!dops[i-1].is_jump);
9369     store_regs_bt(regs[i-1].regmap,regs[i-1].dirty,start+i*4);
9370     if(regs[i-1].regmap[HOST_CCREG]!=CCREG)
9371       emit_loadreg(CCREG,HOST_CCREG);
9372     emit_addimm(HOST_CCREG, ccadj[i-1] + CLOCK_ADJUST(1), HOST_CCREG);
9373     add_to_linker(out,start+i*4,0);
9374     emit_jmp(0);
9375   }
9376
9377   // TODO: delay slot stubs?
9378   // Stubs
9379   for(i=0;i<stubcount;i++)
9380   {
9381     switch(stubs[i].type)
9382     {
9383       case LOADB_STUB:
9384       case LOADH_STUB:
9385       case LOADW_STUB:
9386       case LOADD_STUB:
9387       case LOADBU_STUB:
9388       case LOADHU_STUB:
9389         do_readstub(i);break;
9390       case STOREB_STUB:
9391       case STOREH_STUB:
9392       case STOREW_STUB:
9393       case STORED_STUB:
9394         do_writestub(i);break;
9395       case CC_STUB:
9396         do_ccstub(i);break;
9397       case INVCODE_STUB:
9398         do_invstub(i);break;
9399       case FP_STUB:
9400         do_cop1stub(i);break;
9401       case STORELR_STUB:
9402         do_unalignedwritestub(i);break;
9403     }
9404   }
9405
9406   if (instr_addr0_override)
9407     instr_addr[0] = instr_addr0_override;
9408
9409   /* Pass 9 - Linker */
9410   for(i=0;i<linkcount;i++)
9411   {
9412     assem_debug("%p -> %8x\n",link_addr[i].addr,link_addr[i].target);
9413     literal_pool(64);
9414     if (!link_addr[i].ext)
9415     {
9416       void *stub = out;
9417       void *addr = check_addr(link_addr[i].target);
9418       emit_extjump(link_addr[i].addr, link_addr[i].target);
9419       if (addr) {
9420         set_jump_target(link_addr[i].addr, addr);
9421         add_jump_out(link_addr[i].target,stub);
9422       }
9423       else
9424         set_jump_target(link_addr[i].addr, stub);
9425     }
9426     else
9427     {
9428       // Internal branch
9429       int target=(link_addr[i].target-start)>>2;
9430       assert(target>=0&&target<slen);
9431       assert(instr_addr[target]);
9432       //#ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
9433       //set_jump_target_fillslot(link_addr[i].addr,instr_addr[target],link_addr[i].ext>>1);
9434       //#else
9435       set_jump_target(link_addr[i].addr, instr_addr[target]);
9436       //#endif
9437     }
9438   }
9439
9440   u_int source_len = slen*4;
9441   if (dops[slen-1].itype == INTCALL && source_len > 4)
9442     // no need to treat the last instruction as compiled
9443     // as interpreter fully handles it
9444     source_len -= 4;
9445
9446   if ((u_char *)copy + source_len > (u_char *)shadow + sizeof(shadow))
9447     copy = shadow;
9448
9449   // External Branch Targets (jump_in)
9450   for(i=0;i<slen;i++)
9451   {
9452     if(dops[i].bt||i==0)
9453     {
9454       if(instr_addr[i]) // TODO - delay slots (=null)
9455       {
9456         u_int vaddr=start+i*4;
9457         u_int page=get_page(vaddr);
9458         u_int vpage=get_vpage(vaddr);
9459         literal_pool(256);
9460         {
9461           assem_debug("%p (%d) <- %8x\n",instr_addr[i],i,start+i*4);
9462           assem_debug("jump_in: %x\n",start+i*4);
9463           ll_add(jump_dirty+vpage,vaddr,out);
9464           void *entry_point = do_dirty_stub(i, source_len);
9465           ll_add_flags(jump_in+page,vaddr,state_rflags,entry_point);
9466           // If there was an existing entry in the hash table,
9467           // replace it with the new address.
9468           // Don't add new entries.  We'll insert the
9469           // ones that actually get used in check_addr().
9470           struct ht_entry *ht_bin = hash_table_get(vaddr);
9471           if (ht_bin->vaddr[0] == vaddr)
9472             ht_bin->tcaddr[0] = entry_point;
9473           if (ht_bin->vaddr[1] == vaddr)
9474             ht_bin->tcaddr[1] = entry_point;
9475         }
9476       }
9477     }
9478   }
9479   // Write out the literal pool if necessary
9480   literal_pool(0);
9481   #ifdef CORTEX_A8_BRANCH_PREDICTION_HACK
9482   // Align code
9483   if(((u_int)out)&7) emit_addnop(13);
9484   #endif
9485   assert(out - (u_char *)beginning < MAX_OUTPUT_BLOCK_SIZE);
9486   //printf("shadow buffer: %p-%p\n",copy,(u_char *)copy+slen*4);
9487   memcpy(copy, source, source_len);
9488   copy += source_len;
9489
9490   end_block(beginning);
9491
9492   // If we're within 256K of the end of the buffer,
9493   // start over from the beginning. (Is 256K enough?)
9494   if (out > ndrc->translation_cache + sizeof(ndrc->translation_cache) - MAX_OUTPUT_BLOCK_SIZE)
9495     out = ndrc->translation_cache;
9496
9497   // Trap writes to any of the pages we compiled
9498   for(i=start>>12;i<=(start+slen*4)>>12;i++) {
9499     invalid_code[i]=0;
9500   }
9501   inv_code_start=inv_code_end=~0;
9502
9503   // for PCSX we need to mark all mirrors too
9504   if(get_page(start)<(RAM_SIZE>>12))
9505     for(i=start>>12;i<=(start+slen*4)>>12;i++)
9506       invalid_code[((u_int)0x00000000>>12)|(i&0x1ff)]=
9507       invalid_code[((u_int)0x80000000>>12)|(i&0x1ff)]=
9508       invalid_code[((u_int)0xa0000000>>12)|(i&0x1ff)]=0;
9509
9510   /* Pass 10 - Free memory by expiring oldest blocks */
9511
9512   int end=(((out-ndrc->translation_cache)>>(TARGET_SIZE_2-16))+16384)&65535;
9513   while(expirep!=end)
9514   {
9515     int shift=TARGET_SIZE_2-3; // Divide into 8 blocks
9516     uintptr_t base_offs = ((uintptr_t)(expirep >> 13) << shift); // Base offset of this block
9517     uintptr_t base_offs_s = base_offs >> shift;
9518     inv_debug("EXP: Phase %d\n",expirep);
9519     switch((expirep>>11)&3)
9520     {
9521       case 0:
9522         // Clear jump_in and jump_dirty
9523         ll_remove_matching_addrs(jump_in+(expirep&2047),base_offs_s,shift);
9524         ll_remove_matching_addrs(jump_dirty+(expirep&2047),base_offs_s,shift);
9525         ll_remove_matching_addrs(jump_in+2048+(expirep&2047),base_offs_s,shift);
9526         ll_remove_matching_addrs(jump_dirty+2048+(expirep&2047),base_offs_s,shift);
9527         break;
9528       case 1:
9529         // Clear pointers
9530         ll_kill_pointers(jump_out[expirep&2047],base_offs_s,shift);
9531         ll_kill_pointers(jump_out[(expirep&2047)+2048],base_offs_s,shift);
9532         break;
9533       case 2:
9534         // Clear hash table
9535         for(i=0;i<32;i++) {
9536           struct ht_entry *ht_bin = &hash_table[((expirep&2047)<<5)+i];
9537           uintptr_t o1 = (u_char *)ht_bin->tcaddr[1] - ndrc->translation_cache;
9538           uintptr_t o2 = o1 - MAX_OUTPUT_BLOCK_SIZE;
9539           if ((o1 >> shift) == base_offs_s || (o2 >> shift) == base_offs_s) {
9540             inv_debug("EXP: Remove hash %x -> %p\n",ht_bin->vaddr[1],ht_bin->tcaddr[1]);
9541             ht_bin->vaddr[1] = -1;
9542             ht_bin->tcaddr[1] = NULL;
9543           }
9544           o1 = (u_char *)ht_bin->tcaddr[0] - ndrc->translation_cache;
9545           o2 = o1 - MAX_OUTPUT_BLOCK_SIZE;
9546           if ((o1 >> shift) == base_offs_s || (o2 >> shift) == base_offs_s) {
9547             inv_debug("EXP: Remove hash %x -> %p\n",ht_bin->vaddr[0],ht_bin->tcaddr[0]);
9548             ht_bin->vaddr[0] = ht_bin->vaddr[1];
9549             ht_bin->tcaddr[0] = ht_bin->tcaddr[1];
9550             ht_bin->vaddr[1] = -1;
9551             ht_bin->tcaddr[1] = NULL;
9552           }
9553         }
9554         break;
9555       case 3:
9556         // Clear jump_out
9557         if((expirep&2047)==0)
9558           do_clear_cache();
9559         ll_remove_matching_addrs(jump_out+(expirep&2047),base_offs_s,shift);
9560         ll_remove_matching_addrs(jump_out+2048+(expirep&2047),base_offs_s,shift);
9561         break;
9562     }
9563     expirep=(expirep+1)&65535;
9564   }
9565 #ifdef ASSEM_PRINT
9566   fflush(stdout);
9567 #endif
9568   return 0;
9569 }
9570
9571 // vim:shiftwidth=2:expandtab