First import
[xorg_rtime.git] / xorg-server-1.4 / hw / xfree86 / os-support / misc / BUSmemcpy.S
blob373723c7dd43465f64d9de1e675200000d37a00c
1 /* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/misc/BUSmemcpy.s,v 1.2 1998/07/25 16:56:49 dawes Exp $ */
2 /******************************************************************************
3                         Copyright 1993 by Glenn G. Lai
5                         All Rights Reserved
7 Permission to use, copy, modify, and distribute this software and its
8 documentation for any purpose and without fee is hereby granted,
9 provided that the above copyright notice appear in all copies and that
10 both that copyright notice and this permission notice appear in
11 supporting documentation, and that the name of Glenn G. Lai not be
12 used in advertising or publicity pertaining to distribution of the
13 software without specific, written prior permission.
15 Glenn G. Lai DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
16 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
17 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
18 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
19 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
20 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
21 SOFTWARE.
23 Glenn G. Lai
24 P.O. Box 4314
25 Austin, Tx 78765
26 (glenn@cs.utexas.edu)
27 8/9/93
28 ******************************************************************************/
29 /* $XConsortium: BUSmemcpy.s /main/4 1996/02/21 17:39:34 kaleb $ */
32  * Modified to use long-alignment of video memory rather than word-alignment
33  * to improve performance for LocalBus video cards.  Function names changed
34  * from ISAToMem and MemToISA to BusToMem and MemToBus.
35  *
36  * David Dawes <dawes@XFree86.org>, 25 August 1993.
37  */
40 #include "assyntax.h"
42         FILE("BUSmemcpy.s")
44         AS_BEGIN
46 /* BusToMem copies from video memory to main memory
47    MemToBus copies from main memory to video memory
49         void xf86BusToMem(unsigned char *dst, unsigned char *src, int len);
50         void xf86MemToBus(unsigned char *dst, unsigned char *src, int len);
53 #define dst     REGOFF(4,ESP)
54 #define src     REGOFF(8,ESP)
55 #define len     REGOFF(12,ESP)
57         GLOBL   GLNAME(xf86BusToMem)
58         GLOBL   GLNAME(xf86MemToBus)
60         SEG_DATA
61 copyright:
62         STRING("Copyright 8/9/1993 by Glenn G. Lai")
64         SEG_TEXT
65         ALIGNTEXT4
66 GLNAME(xf86BusToMem):
67         CLD
68         PUSH_L  (ESI)
69         MOV_L   (EDI, EDX)
70         
71         MOV_L   (src, ESI)
72         MOV_L   (dst, EDI)
73         MOV_L   (len, ECX)
74         
75         CMP_L   (CONST(7), ECX)
76         JC      (quickBM)
78         TEST_L  (CONST(1), ESI)
79         JZ      (BwM)
81         MOVS_B
82         DEC_L   (ECX)
84 BwM:    
85         TEST_L  (CONST(2), ESI)
86         JZ      (BlM)
88         MOVS_W
89         DEC_L   (ECX)
90         DEC_L   (ECX)
92 BlM:
93         MOV_L   (ECX, EAX)
94         AND_L   (CONST(3), EAX)
95         SHR_L   (CONST(2), ECX)
96         REP
97         MOVS_L
98         MOV_L   (EAX, ECX)
99 quickBM:
100         OR_L    (ECX, ECX)
101         JZ      (return)
102         REP
103         MOVS_B
104 return:
105         POP_L   (ESI)
106         MOV_L   (EDX, EDI)
107         RET
108 /************************/
110         ALIGNTEXT4
111 GLNAME(xf86MemToBus):
112         CLD
113         PUSH_L  (ESI)
114         MOV_L   (EDI, EDX)
115         
116         MOV_L   (src, ESI)
117         MOV_L   (dst, EDI)
118         MOV_L   (len, ECX)
119         
120         CMP_L   (CONST(7), ECX)
121         JC      (quickMB)
123         TEST_L  (CONST(1), EDI)
124         JZ      (MwB)
126         MOVS_B
127         DEC_L   (ECX)
129 MwB:    
130         TEST_L  (CONST(2), EDI)
131         JZ      (MlB)
133         MOVS_W
134         DEC_L   (ECX)
135         DEC_L   (ECX)
137 MlB:
138         MOV_L   (ECX, EAX)
139         AND_L   (CONST(3), EAX)
140         SHR_L   (CONST(2), ECX)
141         REP
142         MOVS_L
143         MOV_L   (EAX, ECX)
144 quickMB:
145         OR_L    (ECX, ECX)
146         JZ      (return)
147         REP
148         MOVS_B
150         POP_L   (ESI)
151         MOV_L   (EDX, EDI)
152         RET