]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
JIT: remove USE_ALIAS define
authorFrode Solheim <frode@fs-uae.net>
Sun, 6 Sep 2015 20:52:06 +0000 (22:52 +0200)
committerFrode Solheim <frode@fs-uae.net>
Sun, 6 Sep 2015 20:52:06 +0000 (22:52 +0200)
jit/compemu.h
jit/compemu_midfunc_x86.cpp

index 7eb78070d24d2b34e0d0016680f612f68a02f237..43d143cdcffb59a92cb156005ad56021fc8b7e12 100644 (file)
@@ -79,7 +79,6 @@ union cacheline {
 #error implementation in progress
 #endif
 
-#define USE_ALIAS 1
 #define USE_F_ALIAS 1
 #define USE_SOFT_FLUSH 1
 #define USE_OFFSET 1
index 094c11b36f813c43229d1174a7fdc6ac950afa65..d4fd2a7aed03bd9f773ee0741d530e916db867e0 100644 (file)
@@ -1655,7 +1655,6 @@ MIDFUNC(2,mov_l_rr,(W4 d, RR4 s))
                COMPCALL(mov_l_ri)(d,live.state[s].val);
                return;
        }
-#if USE_ALIAS
        olds=s;
        disassociate(d);
        s=readreg_offset(s,4);
@@ -1671,15 +1670,6 @@ MIDFUNC(2,mov_l_rr,(W4 d, RR4 s))
        log_clobberreg(d);
        jit_log2("Added %d to nreg %d(%d), now holds %d regs", d,s,live.state[d].realind,live.nat[s].nholds);
        unlock2(s);
-#else
-       CLOBBER_MOV;
-       s=readreg(s,4);
-       d=writereg(d,4);
-
-       raw_mov_l_rr(d,s);
-       unlock2(d);
-       unlock2(s);
-#endif
 }
 MENDFUNC(2,mov_l_rr,(W4 d, RR4 s))