1 /* SPDX-License-Identifier: GPL-2.0 */
3 * arch/alpha/lib/clear_user.S
4 * Contributed by Richard Henderson <rth@tamu.edu>
6 * Zero user space, handling exceptions as we go.
8 * We have to make sure that $0 is always up-to-date and contains the
9 * right "bytes left to zero" value (and that it is updated only _after_
10 * a successful copy). There is also some rather minor exception setup
13 #include <asm/export.h>
15 /* Allow an exception for an insn; exit if we get one. */
18 .section __ex_table,"a"; \
20 lda $31, $exception-99b($31); \
36 0: EX( stq_u $31, 0($16) ) # e0 : zero one word
37 subq $0, 8, $0 # .. e1 :
39 addq $16, 8, $16 # .. e1 :
43 1: bic $1, 3, $1 # e0 :
44 beq $1, $tail # .. e1 :
46 2: EX( stq_u $31, 0($16) ) # e0 : zero four words
47 subq $0, 8, $0 # .. e1 :
48 EX( stq_u $31, 8($16) ) # e0 :
49 subq $0, 8, $0 # .. e1 :
50 EX( stq_u $31, 16($16) ) # e0 :
51 subq $0, 8, $0 # .. e1 :
52 EX( stq_u $31, 24($16) ) # e0 :
53 subq $0, 8, $0 # .. e1 :
55 addq $16, 32, $16 # .. e1 :
59 bne $2, 1f # e1 : is there a tail to do?
60 ret $31, ($26), 1 # .. e1 :
62 1: EX( ldq_u $5, 0($16) ) # e0 :
65 mskqh $5, $0, $5 # e0 :
66 EX( stq_u $5, 0($16) ) # e0 :
67 ret $31, ($26), 1 # .. e1 :
71 and $16, 7, $4 # e0 : find dest misalignment
72 beq $0, $zerolength # .. e1 :
73 addq $0, $4, $1 # e0 : bias counter
74 and $1, 7, $2 # e1 : number of bytes in tail
76 beq $4, $loop # .. e1 :
78 EX( ldq_u $5, 0($16) ) # e0 : load dst word to mask back in
79 beq $1, $oneword # .. e1 : sub-word store?
81 mskql $5, $16, $5 # e0 : take care of misaligned head
82 addq $16, 8, $16 # .. e1 :
83 EX( stq_u $5, -8($16) ) # e0 :
84 addq $0, $4, $0 # .. e1 : bytes left -= 8 - misalignment
86 subq $0, 8, $0 # .. e1 :
91 mskql $5, $16, $4 # e0 :
92 mskqh $5, $2, $5 # e0 :
94 EX( stq_u $5, 0($16) ) # e0 :
99 ret $31, ($26), 1 # .. e1 :
102 EXPORT_SYMBOL(__clear_user)