mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 04:53:36 +01:00
cbf164cd44
The original _bin2bcd() function used / 10 and % 10 operations for conversion. Although GCC optimizes these operations and does not generate division or modulus instructions, the new implementation reduces the number of mov instructions in the generated code for both x86-64 and ARM architectures. This optimization calculates the tens digit using (val * 103) >> 10, which is accurate for values of 'val' in the range [0, 178]. Given that the valid input range is [0, 99], this method ensures correctness while simplifying the generated code. Link: https://lkml.kernel.org/r/20240812170229.229380-1-visitorckw@gmail.com Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com> Cc: Ching-Chun (Jim) Huang <jserv@ccns.ncku.edu.tw> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
17 lines
338 B
C
17 lines
338 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/bcd.h>
|
|
#include <linux/export.h>
|
|
|
|
unsigned _bcd2bin(unsigned char val)
|
|
{
|
|
return (val & 0x0f) + (val >> 4) * 10;
|
|
}
|
|
EXPORT_SYMBOL(_bcd2bin);
|
|
|
|
unsigned char _bin2bcd(unsigned val)
|
|
{
|
|
const unsigned int t = (val * 103) >> 10;
|
|
|
|
return (t << 4) | (val - t * 10);
|
|
}
|
|
EXPORT_SYMBOL(_bin2bcd);
|