mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
ARM: bitops: ensure set/clear/change bitops take a word-aligned pointer
Add additional instructions to our assembly bitops functions to ensure that they only operate on word-aligned pointers. This will be necessary when we switch these operations to use the word-based exclusive operations. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
e5310f611d
commit
a16ede35a2
@ -1,6 +1,8 @@
|
|||||||
|
|
||||||
#if __LINUX_ARM_ARCH__ >= 6 && defined(CONFIG_CPU_32v6K)
|
#if __LINUX_ARM_ARCH__ >= 6 && defined(CONFIG_CPU_32v6K)
|
||||||
.macro bitop, instr
|
.macro bitop, instr
|
||||||
|
ands ip, r1, #3
|
||||||
|
strneb r1, [ip] @ assert word-aligned
|
||||||
mov r2, #1
|
mov r2, #1
|
||||||
and r3, r0, #7 @ Get bit offset
|
and r3, r0, #7 @ Get bit offset
|
||||||
add r1, r1, r0, lsr #3 @ Get byte offset
|
add r1, r1, r0, lsr #3 @ Get byte offset
|
||||||
@ -14,6 +16,8 @@
|
|||||||
.endm
|
.endm
|
||||||
|
|
||||||
.macro testop, instr, store
|
.macro testop, instr, store
|
||||||
|
ands ip, r1, #3
|
||||||
|
strneb r1, [ip] @ assert word-aligned
|
||||||
and r3, r0, #7 @ Get bit offset
|
and r3, r0, #7 @ Get bit offset
|
||||||
mov r2, #1
|
mov r2, #1
|
||||||
add r1, r1, r0, lsr #3 @ Get byte offset
|
add r1, r1, r0, lsr #3 @ Get byte offset
|
||||||
@ -32,6 +36,8 @@
|
|||||||
.endm
|
.endm
|
||||||
#else
|
#else
|
||||||
.macro bitop, instr
|
.macro bitop, instr
|
||||||
|
ands ip, r1, #3
|
||||||
|
strneb r1, [ip] @ assert word-aligned
|
||||||
and r2, r0, #7
|
and r2, r0, #7
|
||||||
mov r3, #1
|
mov r3, #1
|
||||||
mov r3, r3, lsl r2
|
mov r3, r3, lsl r2
|
||||||
@ -52,6 +58,8 @@
|
|||||||
* to avoid dirtying the data cache.
|
* to avoid dirtying the data cache.
|
||||||
*/
|
*/
|
||||||
.macro testop, instr, store
|
.macro testop, instr, store
|
||||||
|
ands ip, r1, #3
|
||||||
|
strneb r1, [ip] @ assert word-aligned
|
||||||
add r1, r1, r0, lsr #3
|
add r1, r1, r0, lsr #3
|
||||||
and r3, r0, #7
|
and r3, r0, #7
|
||||||
mov r0, #1
|
mov r0, #1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user