diff options
| author | zhichang.yuan <zhichang.yuan@linaro.org> | 2014-04-28 01:11:31 -0400 |
|---|---|---|
| committer | Catalin Marinas <catalin.marinas@arm.com> | 2014-05-23 10:07:48 -0400 |
| commit | b29a51fe0e0be63157d8661666be8bbfd8f0c5d7 (patch) | |
| tree | 52fe220fdbab3501d732912e1d828e8cae6dbdd8 /arch/arm64/lib | |
| parent | 280adc1951c0c9fc8f2d85571ff563a1c412b1cd (diff) | |
arm64: lib: Implement optimized memset routine
This patch, based on Linaro's Cortex Strings library, improves
the performance of the assembly optimized memset() function.
Signed-off-by: Zhichang Yuan <zhichang.yuan@linaro.org>
Signed-off-by: Deepak Saxena <dsaxena@linaro.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/lib')
| -rw-r--r-- | arch/arm64/lib/memset.S | 207 |
1 files changed, 185 insertions, 22 deletions
diff --git a/arch/arm64/lib/memset.S b/arch/arm64/lib/memset.S index 87e4a68fbbbc..7c72dfd36b63 100644 --- a/arch/arm64/lib/memset.S +++ b/arch/arm64/lib/memset.S | |||
| @@ -1,5 +1,13 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright (C) 2013 ARM Ltd. | 2 | * Copyright (C) 2013 ARM Ltd. |
| 3 | * Copyright (C) 2013 Linaro. | ||
| 4 | * | ||
| 5 | * This code is based on glibc cortex strings work originally authored by Linaro | ||
| 6 | * and re-licensed under GPLv2 for the Linux kernel. The original code can | ||
| 7 | * be found @ | ||
| 8 | * | ||
| 9 | * http://bazaar.launchpad.net/~linaro-toolchain-dev/cortex-strings/trunk/ | ||
| 10 | * files/head:/src/aarch64/ | ||
| 3 | * | 11 | * |
| 4 | * This program is free software; you can redistribute it and/or modify | 12 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as | 13 | * it under the terms of the GNU General Public License version 2 as |
| @@ -16,6 +24,7 @@ | |||
| 16 | 24 | ||
| 17 | #include <linux/linkage.h> | 25 | #include <linux/linkage.h> |
| 18 | #include <asm/assembler.h> | 26 | #include <asm/assembler.h> |
| 27 | #include <asm/cache.h> | ||
| 19 | 28 | ||
| 20 | /* | 29 | /* |
| 21 | * Fill in the buffer with character c (alignment handled by the hardware) | 30 | * Fill in the buffer with character c (alignment handled by the hardware) |
| @@ -27,27 +36,181 @@ | |||
| 27 | * Returns: | 36 | * Returns: |
| 28 | * x0 - buf | 37 | * x0 - buf |
| 29 | */ | 38 | */ |
| 39 | |||
| 40 | dstin .req x0 | ||
| 41 | val .req w1 | ||
| 42 | count .req x2 | ||
| 43 | tmp1 .req x3 | ||
| 44 | tmp1w .req w3 | ||
| 45 | tmp2 .req x4 | ||
| 46 | tmp2w .req w4 | ||
| 47 | zva_len_x .req x5 | ||
| 48 | zva_len .req w5 | ||
| 49 | zva_bits_x .req x6 | ||
| 50 | |||
| 51 | A_l .req x7 | ||
| 52 | A_lw .req w7 | ||
| 53 | dst .req x8 | ||
| 54 | tmp3w .req w9 | ||
| 55 | tmp3 .req x9 | ||
| 56 | |||
| 30 | ENTRY(memset) | 57 | ENTRY(memset) |
| 31 | mov x4, x0 | 58 | mov dst, dstin /* Preserve return value. */ |
| 32 | and w1, w1, #0xff | 59 | and A_lw, val, #255 |
| 33 | orr w1, w1, w1, lsl #8 | 60 | orr A_lw, A_lw, A_lw, lsl #8 |
| 34 | orr w1, w1, w1, lsl #16 | 61 | orr A_lw, A_lw, A_lw, lsl #16 |
| 35 | orr x1, x1, x1, lsl #32 | 62 | orr A_l, A_l, A_l, lsl #32 |
| 36 | subs x2, x2, #8 | 63 | |
| 37 | b.mi 2f | 64 | cmp count, #15 |
| 38 | 1: str x1, [x4], #8 | 65 | b.hi .Lover16_proc |
| 39 | subs x2, x2, #8 | 66 | /*All store maybe are non-aligned..*/ |
| 40 | b.pl 1b | 67 | tbz count, #3, 1f |
| 41 | 2: adds x2, x2, #4 | 68 | str A_l, [dst], #8 |
| 42 | b.mi 3f | 69 | 1: |
| 43 | sub x2, x2, #4 | 70 | tbz count, #2, 2f |
| 44 | str w1, [x4], #4 | 71 | str A_lw, [dst], #4 |
| 45 | 3: adds x2, x2, #2 | 72 | 2: |
| 46 | b.mi 4f | 73 | tbz count, #1, 3f |
| 47 | sub x2, x2, #2 | 74 | strh A_lw, [dst], #2 |
| 48 | strh w1, [x4], #2 | 75 | 3: |
| 49 | 4: adds x2, x2, #1 | 76 | tbz count, #0, 4f |
| 50 | b.mi 5f | 77 | strb A_lw, [dst] |
| 51 | strb w1, [x4] | 78 | 4: |
| 52 | 5: ret | 79 | ret |
| 80 | |||
| 81 | .Lover16_proc: | ||
| 82 | /*Whether the start address is aligned with 16.*/ | ||
| 83 | neg tmp2, dst | ||
| 84 | ands tmp2, tmp2, #15 | ||
| 85 | b.eq .Laligned | ||
| 86 | /* | ||
| 87 | * The count is not less than 16, we can use stp to store the start 16 bytes, | ||
| 88 | * then adjust the dst aligned with 16.This process will make the current | ||
| 89 | * memory address at alignment boundary. | ||
| 90 | */ | ||
| 91 | stp A_l, A_l, [dst] /*non-aligned store..*/ | ||
| 92 | /*make the dst aligned..*/ | ||
| 93 | sub count, count, tmp2 | ||
| 94 | add dst, dst, tmp2 | ||
| 95 | |||
| 96 | .Laligned: | ||
| 97 | cbz A_l, .Lzero_mem | ||
| 98 | |||
| 99 | .Ltail_maybe_long: | ||
| 100 | cmp count, #64 | ||
| 101 | b.ge .Lnot_short | ||
| 102 | .Ltail63: | ||
| 103 | ands tmp1, count, #0x30 | ||
| 104 | b.eq 3f | ||
| 105 | cmp tmp1w, #0x20 | ||
| 106 | b.eq 1f | ||
| 107 | b.lt 2f | ||
| 108 | stp A_l, A_l, [dst], #16 | ||
| 109 | 1: | ||
| 110 | stp A_l, A_l, [dst], #16 | ||
| 111 | 2: | ||
| 112 | stp A_l, A_l, [dst], #16 | ||
| 113 | /* | ||
| 114 | * The last store length is less than 16,use stp to write last 16 bytes. | ||
| 115 | * It will lead some bytes written twice and the access is non-aligned. | ||
| 116 | */ | ||
| 117 | 3: | ||
| 118 | ands count, count, #15 | ||
| 119 | cbz count, 4f | ||
| 120 | add dst, dst, count | ||
| 121 | stp A_l, A_l, [dst, #-16] /* Repeat some/all of last store. */ | ||
| 122 | 4: | ||
| 123 | ret | ||
| 124 | |||
| 125 | /* | ||
| 126 | * Critical loop. Start at a new cache line boundary. Assuming | ||
| 127 | * 64 bytes per line, this ensures the entire loop is in one line. | ||
| 128 | */ | ||
| 129 | .p2align L1_CACHE_SHIFT | ||
| 130 | .Lnot_short: | ||
| 131 | sub dst, dst, #16/* Pre-bias. */ | ||
| 132 | sub count, count, #64 | ||
| 133 | 1: | ||
| 134 | stp A_l, A_l, [dst, #16] | ||
| 135 | stp A_l, A_l, [dst, #32] | ||
| 136 | stp A_l, A_l, [dst, #48] | ||
| 137 | stp A_l, A_l, [dst, #64]! | ||
| 138 | subs count, count, #64 | ||
| 139 | b.ge 1b | ||
| 140 | tst count, #0x3f | ||
| 141 | add dst, dst, #16 | ||
| 142 | b.ne .Ltail63 | ||
| 143 | .Lexitfunc: | ||
| 144 | ret | ||
| 145 | |||
| 146 | /* | ||
| 147 | * For zeroing memory, check to see if we can use the ZVA feature to | ||
| 148 | * zero entire 'cache' lines. | ||
| 149 | */ | ||
| 150 | .Lzero_mem: | ||
| 151 | cmp count, #63 | ||
| 152 | b.le .Ltail63 | ||
| 153 | /* | ||
| 154 | * For zeroing small amounts of memory, it's not worth setting up | ||
| 155 | * the line-clear code. | ||
| 156 | */ | ||
| 157 | cmp count, #128 | ||
| 158 | b.lt .Lnot_short /*count is at least 128 bytes*/ | ||
| 159 | |||
| 160 | mrs tmp1, dczid_el0 | ||
| 161 | tbnz tmp1, #4, .Lnot_short | ||
| 162 | mov tmp3w, #4 | ||
| 163 | and zva_len, tmp1w, #15 /* Safety: other bits reserved. */ | ||
| 164 | lsl zva_len, tmp3w, zva_len | ||
| 165 | |||
| 166 | ands tmp3w, zva_len, #63 | ||
| 167 | /* | ||
| 168 | * ensure the zva_len is not less than 64. | ||
| 169 | * It is not meaningful to use ZVA if the block size is less than 64. | ||
| 170 | */ | ||
| 171 | b.ne .Lnot_short | ||
| 172 | .Lzero_by_line: | ||
| 173 | /* | ||
| 174 | * Compute how far we need to go to become suitably aligned. We're | ||
| 175 | * already at quad-word alignment. | ||
| 176 | */ | ||
| 177 | cmp count, zva_len_x | ||
| 178 | b.lt .Lnot_short /* Not enough to reach alignment. */ | ||
| 179 | sub zva_bits_x, zva_len_x, #1 | ||
| 180 | neg tmp2, dst | ||
| 181 | ands tmp2, tmp2, zva_bits_x | ||
| 182 | b.eq 2f /* Already aligned. */ | ||
| 183 | /* Not aligned, check that there's enough to copy after alignment.*/ | ||
| 184 | sub tmp1, count, tmp2 | ||
| 185 | /* | ||
| 186 | * grantee the remain length to be ZVA is bigger than 64, | ||
| 187 | * avoid to make the 2f's process over mem range.*/ | ||
| 188 | cmp tmp1, #64 | ||
| 189 | ccmp tmp1, zva_len_x, #8, ge /* NZCV=0b1000 */ | ||
| 190 | b.lt .Lnot_short | ||
| 191 | /* | ||
| 192 | * We know that there's at least 64 bytes to zero and that it's safe | ||
| 193 | * to overrun by 64 bytes. | ||
| 194 | */ | ||
| 195 | mov count, tmp1 | ||
| 196 | 1: | ||
| 197 | stp A_l, A_l, [dst] | ||
| 198 | stp A_l, A_l, [dst, #16] | ||
| 199 | stp A_l, A_l, [dst, #32] | ||
| 200 | subs tmp2, tmp2, #64 | ||
| 201 | stp A_l, A_l, [dst, #48] | ||
| 202 | add dst, dst, #64 | ||
| 203 | b.ge 1b | ||
| 204 | /* We've overrun a bit, so adjust dst downwards.*/ | ||
| 205 | add dst, dst, tmp2 | ||
| 206 | 2: | ||
| 207 | sub count, count, zva_len_x | ||
| 208 | 3: | ||
| 209 | dc zva, dst | ||
| 210 | add dst, dst, zva_len_x | ||
| 211 | subs count, count, zva_len_x | ||
| 212 | b.ge 3b | ||
| 213 | ands count, count, zva_bits_x | ||
| 214 | b.ne .Ltail_maybe_long | ||
| 215 | ret | ||
| 53 | ENDPROC(memset) | 216 | ENDPROC(memset) |
