2 * arch/alpha/lib/clear_user.S
3 * Contributed by Richard Henderson <rth@tamu.edu>
5 * Zero user space, handling exceptions as we go.
7 * We have to make sure that $0 is always up-to-date and contains the
8 * right "bytes left to zero" value (and that it is updated only _after_
9 * a successful copy). There is also some rather minor exception setup
12 * NOTE! This is not directly C-callable, because the calling semantics
17 * destination address in $6
18 * exception pointer in $7
19 * return address in $28 (exceptions expect it there)
22 * bytes left to copy in $0
28 /* Allow an exception for an insn; exit if we get one. */
31 .section __ex_table,"a"; \
33 lda $31, $exception-99b($31); \
40 .globl __do_clear_user
49 0: EX( stq_u $31, 0($6) ) # e0 : zero one word
50 subq $0, 8, $0 # .. e1 :
52 addq $6, 8, $6 # .. e1 :
56 1: bic $1, 3, $1 # e0 :
57 beq $1, $tail # .. e1 :
59 2: EX( stq_u $31, 0($6) ) # e0 : zero four words
60 subq $0, 8, $0 # .. e1 :
61 EX( stq_u $31, 8($6) ) # e0 :
62 subq $0, 8, $0 # .. e1 :
63 EX( stq_u $31, 16($6) ) # e0 :
64 subq $0, 8, $0 # .. e1 :
65 EX( stq_u $31, 24($6) ) # e0 :
66 subq $0, 8, $0 # .. e1 :
68 addq $6, 32, $6 # .. e1 :
72 bne $2, 1f # e1 : is there a tail to do?
73 ret $31, ($28), 1 # .. e1 :
75 1: EX( ldq_u $5, 0($6) ) # e0 :
78 mskqh $5, $0, $5 # e0 :
79 EX( stq_u $5, 0($6) ) # e0 :
80 ret $31, ($28), 1 # .. e1 :
83 and $6, 7, $4 # e0 : find dest misalignment
84 beq $0, $zerolength # .. e1 :
85 addq $0, $4, $1 # e0 : bias counter
86 and $1, 7, $2 # e1 : number of bytes in tail
88 beq $4, $loop # .. e1 :
90 EX( ldq_u $5, 0($6) ) # e0 : load dst word to mask back in
91 beq $1, $oneword # .. e1 : sub-word store?
93 mskql $5, $6, $5 # e0 : take care of misaligned head
94 addq $6, 8, $6 # .. e1 :
95 EX( stq_u $5, -8($6) ) # e0 :
96 addq $0, $4, $0 # .. e1 : bytes left -= 8 - misalignment
98 subq $0, 8, $0 # .. e1 :
103 mskql $5, $6, $4 # e0 :
104 mskqh $5, $2, $5 # e0 :
106 EX( stq_u $5, 0($6) ) # e0 :
111 ret $31, ($28), 1 # .. e1 :