public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fat: Refactor fat_tolower with branchless implementation
@ 2025-03-18  3:43 I Hsin Cheng
  2025-03-18  3:53 ` OGAWA Hirofumi
  2025-03-18  4:03 ` Al Viro
  0 siblings, 2 replies; 4+ messages in thread
From: I Hsin Cheng @ 2025-03-18  3:43 UTC (permalink / raw)
  To: hirofumi; +Cc: linux-kernel, skhan, linux-kernel-mentees, jserv, I Hsin Cheng

Elimate the need of if-else branch within fat_tolower, replace it with a
branchless bitwise operation. This can reduce the number of branch ~130
regarding to the test script[1].

Test size can also be reduced:
$ ./scripts/bloat-o-meter vmlinux_old vmlinux_new
add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-68 (-68)
Function                                     old     new   delta
fat_parse_short                             1901    1833     -68
Total: Before=22471023, After=22470955, chg -0.00%

Signed-off-by: I Hsin Cheng <richard120310@gmail.com>
---
[1]:
static inline unsigned char old_tolower(unsigned char c)
{
    return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
}

static inline unsigned char new_tolower(unsigned char c)
{
    return c | 0x20;
}

int main(void) {
    for (unsigned char i = 0; i < 26; i++) {
        if (old_tolower('a' + i) != old_tolower('A' + i))
            return 1;
    }

    return 0;
}

Utilize perf to profile the difference when using old_tolower() and
new_tolower().

$ perf stat -e branches,branch-misses --repeat 100 ./old

 Performance counter stats for './old':

            2,6302      branches:u
              2334      branch-misses:u

       0.000754710 seconds time elapsed

       0.000000000 seconds user
       0.000804000 seconds sys

$ perf stat -e branches,branch-misses --repeat 100 ./new

 Performance counter stats for './main':

            2,6172      branches:u
              2338      branch-misses:u

       0.000782670 seconds time elapsed

       0.000853000 seconds user
       0.000000000 seconds sys

Best regards,
I Hsin Cheng
---
 fs/fat/dir.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/fat/dir.c b/fs/fat/dir.c
index acbec5bdd521..77d212b4d4db 100644
--- a/fs/fat/dir.c
+++ b/fs/fat/dir.c
@@ -35,7 +35,7 @@
 
 static inline unsigned char fat_tolower(unsigned char c)
 {
-	return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
+	return c | 0x20;
 }
 
 static inline loff_t fat_make_i_pos(struct super_block *sb,
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] fat: Refactor fat_tolower with branchless implementation
  2025-03-18  3:43 [PATCH] fat: Refactor fat_tolower with branchless implementation I Hsin Cheng
@ 2025-03-18  3:53 ` OGAWA Hirofumi
  2025-03-18  4:03 ` Al Viro
  1 sibling, 0 replies; 4+ messages in thread
From: OGAWA Hirofumi @ 2025-03-18  3:53 UTC (permalink / raw)
  To: I Hsin Cheng; +Cc: linux-kernel, skhan, linux-kernel-mentees, jserv

I Hsin Cheng <richard120310@gmail.com> writes:

> Elimate the need of if-else branch within fat_tolower, replace it with a
> branchless bitwise operation. This can reduce the number of branch ~130
> regarding to the test script[1].
>
> Test size can also be reduced:
> $ ./scripts/bloat-o-meter vmlinux_old vmlinux_new
> add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-68 (-68)
> Function                                     old     new   delta
> fat_parse_short                             1901    1833     -68
> Total: Before=22471023, After=22470955, chg -0.00%
>
> Signed-off-by: I Hsin Cheng <richard120310@gmail.com>
> ---
> [1]:
> static inline unsigned char old_tolower(unsigned char c)
> {
>     return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
> }
>
> static inline unsigned char new_tolower(unsigned char c)
> {
>     return c | 0x20;
> }

Looks like doesn't work correctly. For example, new one changes TAB to ')'.

Thanks.

> int main(void) {
>     for (unsigned char i = 0; i < 26; i++) {
>         if (old_tolower('a' + i) != old_tolower('A' + i))
>             return 1;
>     }
>
>     return 0;
> }
>
> Utilize perf to profile the difference when using old_tolower() and
> new_tolower().
>
> $ perf stat -e branches,branch-misses --repeat 100 ./old
>
>  Performance counter stats for './old':
>
>             2,6302      branches:u
>               2334      branch-misses:u
>
>        0.000754710 seconds time elapsed
>
>        0.000000000 seconds user
>        0.000804000 seconds sys
>
> $ perf stat -e branches,branch-misses --repeat 100 ./new
>
>  Performance counter stats for './main':
>
>             2,6172      branches:u
>               2338      branch-misses:u
>
>        0.000782670 seconds time elapsed
>
>        0.000853000 seconds user
>        0.000000000 seconds sys
>
> Best regards,
> I Hsin Cheng
> ---
>  fs/fat/dir.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/fat/dir.c b/fs/fat/dir.c
> index acbec5bdd521..77d212b4d4db 100644
> --- a/fs/fat/dir.c
> +++ b/fs/fat/dir.c
> @@ -35,7 +35,7 @@
>  
>  static inline unsigned char fat_tolower(unsigned char c)
>  {
> -	return ((c >= 'A') && (c <= 'Z')) ? c+32 : c;
> +	return c | 0x20;
>  }
>  
>  static inline loff_t fat_make_i_pos(struct super_block *sb,

-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fat: Refactor fat_tolower with branchless implementation
  2025-03-18  3:43 [PATCH] fat: Refactor fat_tolower with branchless implementation I Hsin Cheng
  2025-03-18  3:53 ` OGAWA Hirofumi
@ 2025-03-18  4:03 ` Al Viro
  2025-03-19  2:49   ` I Hsin Cheng
  1 sibling, 1 reply; 4+ messages in thread
From: Al Viro @ 2025-03-18  4:03 UTC (permalink / raw)
  To: I Hsin Cheng; +Cc: hirofumi, linux-kernel, skhan, linux-kernel-mentees, jserv

On Tue, Mar 18, 2025 at 11:43:09AM +0800, I Hsin Cheng wrote:
> Elimate the need of if-else branch within fat_tolower, replace it with a
> branchless bitwise operation. This can reduce the number of branch ~130
> regarding to the test script[1].

... and for values outside of 32..126 it would give wrong results.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fat: Refactor fat_tolower with branchless implementation
  2025-03-18  4:03 ` Al Viro
@ 2025-03-19  2:49   ` I Hsin Cheng
  0 siblings, 0 replies; 4+ messages in thread
From: I Hsin Cheng @ 2025-03-19  2:49 UTC (permalink / raw)
  To: Al Viro; +Cc: hirofumi, linux-kernel, skhan, linux-kernel-mentees, jserv

On Tue, Mar 18, 2025 at 04:03:23AM +0000, Al Viro wrote:
> On Tue, Mar 18, 2025 at 11:43:09AM +0800, I Hsin Cheng wrote:
> > Elimate the need of if-else branch within fat_tolower, replace it with a
> > branchless bitwise operation. This can reduce the number of branch ~130
> > regarding to the test script[1].
> 
> ... and for values outside of 32..126 it would give wrong results.

Ahh, sorry I didn't take these into consideration, I guess branch is
necessary here then. Thanks for your review!

Best regards,
I Hsin Cheng

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-03-19  2:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-18  3:43 [PATCH] fat: Refactor fat_tolower with branchless implementation I Hsin Cheng
2025-03-18  3:53 ` OGAWA Hirofumi
2025-03-18  4:03 ` Al Viro
2025-03-19  2:49   ` I Hsin Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox