Skip to content

Commit

Permalink
vsprintf: reuse almost identical simple_strtoulX() functions
Browse files Browse the repository at this point in the history
The difference between simple_strtoul() and simple_strtoull() is just
the size of the variable used to keep track of the sum of characters
converted to numbers:

unsigned long simple_strtoul() {...}
unsigned long long simple_strtoull(){...}

Both are same size on my Core 2/gcc 4.4.1.
Overflow condition is not checked on both functions, so an extremely large
string can break these functions so that they don't even notice it.

As we do not care for overflowing on these functions, always keep the sum
using the larger variable around (unsigned long long) on simple_strtoull()
and cast it to (unsigned long) on simple_strtoul(), which then becomes
just a wrapper around simple_strtoull().

Code size decreases by 304 bytes:
   text    data     bss     dec     hex filename
  15534       0       8   15542    3cb6 vsprintf.o (ex lib/lib.a-BEFORE)
  15230       0       8   15238    3b86 vsprintf.o (ex lib/lib.a-AFTER)

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
André Goddard Rosa authored and Linus Torvalds committed Dec 15, 2009
1 parent c5484d7 commit 922ac25
Showing 1 changed file with 14 additions and 34 deletions.
48 changes: 14 additions & 34 deletions lib/vsprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ static unsigned int simple_guess_base(const char *cp)
}

/**
* simple_strtoul - convert a string to an unsigned long
* simple_strtoull - convert a string to an unsigned long long
* @cp: The start of the string
* @endp: A pointer to the end of the parsed string will be placed here
* @base: The number base to use
*/
unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
{
unsigned long result = 0;
unsigned long long result = 0;

if (!base)
base = simple_guess_base(cp);
Expand All @@ -76,54 +76,34 @@ unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)

return result;
}
EXPORT_SYMBOL(simple_strtoul);
EXPORT_SYMBOL(simple_strtoull);

/**
* simple_strtol - convert a string to a signed long
* simple_strtoul - convert a string to an unsigned long
* @cp: The start of the string
* @endp: A pointer to the end of the parsed string will be placed here
* @base: The number base to use
*/
long simple_strtol(const char *cp, char **endp, unsigned int base)
unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
{
if (*cp == '-')
return -simple_strtoul(cp + 1, endp, base);

return simple_strtoul(cp, endp, base);
return simple_strtoull(cp, endp, base);
}
EXPORT_SYMBOL(simple_strtol);
EXPORT_SYMBOL(simple_strtoul);

/**
* simple_strtoull - convert a string to an unsigned long long
* simple_strtol - convert a string to a signed long
* @cp: The start of the string
* @endp: A pointer to the end of the parsed string will be placed here
* @base: The number base to use
*/
unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
long simple_strtol(const char *cp, char **endp, unsigned int base)
{
unsigned long long result = 0;

if (!base)
base = simple_guess_base(cp);

if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
cp += 2;

while (isxdigit(*cp)) {
unsigned int value;

value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
if (value >= base)
break;
result = result * base + value;
cp++;
}
if (endp)
*endp = (char *)cp;
if (*cp == '-')
return -simple_strtoul(cp + 1, endp, base);

return result;
return simple_strtoul(cp, endp, base);
}
EXPORT_SYMBOL(simple_strtoull);
EXPORT_SYMBOL(simple_strtol);

/**
* simple_strtoll - convert a string to a signed long long
Expand Down

0 comments on commit 922ac25

Please sign in to comment.