2005-11-01 20:52:22 +01:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/lib/clear_user.S
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995, 1996,1997,1998 Russell King
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/assembler.h>
|
|
|
|
|
|
|
|
.text
|
|
|
|
|
2006-06-21 15:44:52 +02:00
|
|
|
/* Prototype: int __clear_user(void *addr, size_t sz)
|
2005-11-01 20:52:22 +01:00
|
|
|
* Purpose : clear some user memory
|
|
|
|
* Params : addr - user memory address to clear
|
|
|
|
* : sz - number of bytes to clear
|
|
|
|
* Returns : number of bytes NOT cleared
|
|
|
|
*/
|
2009-03-09 03:34:45 +01:00
|
|
|
ENTRY(__clear_user_std)
|
|
|
|
WEAK(__clear_user)
|
2005-11-01 20:52:22 +01:00
|
|
|
stmfd sp!, {r1, lr}
|
|
|
|
mov r2, #0
|
|
|
|
cmp r1, #4
|
|
|
|
blt 2f
|
|
|
|
ands ip, r0, #3
|
|
|
|
beq 1f
|
|
|
|
cmp ip, #2
|
2009-07-24 13:32:57 +02:00
|
|
|
strusr r2, r0, 1
|
|
|
|
strusr r2, r0, 1, le
|
|
|
|
strusr r2, r0, 1, lt
|
2005-11-01 20:52:22 +01:00
|
|
|
rsb ip, ip, #4
|
|
|
|
sub r1, r1, ip @ 7 6 5 4 3 2 1
|
|
|
|
1: subs r1, r1, #8 @ -1 -2 -3 -4 -5 -6 -7
|
2009-07-24 13:32:57 +02:00
|
|
|
strusr r2, r0, 4, pl, rept=2
|
2005-11-01 20:52:22 +01:00
|
|
|
bpl 1b
|
|
|
|
adds r1, r1, #4 @ 3 2 1 0 -1 -2 -3
|
2009-07-24 13:32:57 +02:00
|
|
|
strusr r2, r0, 4, pl
|
2005-11-01 20:52:22 +01:00
|
|
|
2: tst r1, #2 @ 1x 1x 0x 0x 1x 1x 0x
|
2009-07-24 13:32:57 +02:00
|
|
|
strusr r2, r0, 1, ne, rept=2
|
2005-11-01 20:52:22 +01:00
|
|
|
tst r1, #1 @ x1 x0 x1 x0 x1 x0 x1
|
2009-07-24 13:32:57 +02:00
|
|
|
it ne @ explicit IT needed for the label
|
2008-08-29 19:31:21 +02:00
|
|
|
USER( strnebt r2, [r0])
|
2005-11-01 20:52:22 +01:00
|
|
|
mov r0, #0
|
2006-06-25 12:23:45 +02:00
|
|
|
ldmfd sp!, {r1, pc}
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(__clear_user)
|
2010-05-07 11:52:32 +02:00
|
|
|
ENDPROC(__clear_user_std)
|
2005-11-01 20:52:22 +01:00
|
|
|
|
2010-04-19 11:15:03 +02:00
|
|
|
.pushsection .fixup,"ax"
|
2005-11-01 20:52:22 +01:00
|
|
|
.align 0
|
2006-06-25 12:23:45 +02:00
|
|
|
9001: ldmfd sp!, {r0, pc}
|
2010-04-19 11:15:03 +02:00
|
|
|
.popsection
|
2005-11-01 20:52:22 +01:00
|
|
|
|