=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/include/inline.h,v retrieving revision 1.6 retrieving revision 1.9 diff -u -p -r1.6 -r1.9 --- OpenXM_contrib2/asir2000/include/inline.h 2001/08/24 07:42:44 1.6 +++ OpenXM_contrib2/asir2000/include/inline.h 2001/12/21 08:23:12 1.9 @@ -45,12 +45,11 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/include/inline.h,v 1.5 2000/09/21 09:19:26 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/include/inline.h,v 1.8 2001/09/17 03:33:58 noro Exp $ */ #define DMB(base,a1,a2,u,l) (l)=dmb(base,a1,a2,&(u)); #define DMAB(base,a1,a2,a3,u,l) (l)=dmab(base,a1,a2,a3,&(u)); #define DMAR(a1,a2,a3,d,r) (r)=dmar(a1,a2,a3,d); - #define DM27(a1,a2,u,l) (l)=dm_27(a1,a2,&(u)); #define DMA27(a1,a2,a3,u,l) (l)=dma_27(a1,a2,a3,&(u)); #define DSAB27(base,a1,a2,u,l) (l)=dmab(base,a1,BASE27,a2,&(u)); @@ -288,7 +287,7 @@ asm volatile("udiv %1,%2,%0" :"=r"(_t): "r"(a2),"r" } #endif -#if !defined(VISUAL) && defined(i386) && (defined(linux) || defined(__FreeBSD__) || defined(__NetBSD__)) +#if !defined(VISUAL) && defined(i386) && (defined(linux) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__)) #if 0 #undef DMA @@ -302,6 +301,7 @@ asm volatile("movl %%eax,%0" : "=g" (l) : : "ax" ); #endif #undef DM +#undef DMA #undef DMB #undef DMAB #undef DMAR @@ -320,6 +320,9 @@ asm volatile(" movl %2,%%edx; movl %3,%%eax; divl %4; #define DM(a1,a2,u,l)\ asm volatile(" movl %2,%%eax; mull %3; movl %%edx,%0; movl %%eax,%1" :"=g"(u),"=g"(l) :"g"(a1),"g"(a2) :"ax","dx"); + +#define DMA(a1,a2,a3,u,l)\ +asm volatile("movl %2,%%eax; mull %3; addl %4,%%eax; adcl $0,%%edx; movl %%edx,%0; movl %%eax,%1" :"=g"(u), "=g"(l) :"g"(a1),"g"(a2),"g"(a3) :"ax","dx"); #define DMB(base,a1,a2,u,l)\ asm volatile(" movl %2,%%eax;" mull %3;" divl %4;" movl %%edx,%0;" movl %%eax,%0" :"=g"(l),"=g"(u) :"g"(a1),"g"(a2),"g"(base) :"ax","dx");