From 5ea1a82defd37feaa6be1faf44854364c901cdaf Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 6 Jun 2000 06:49:00 +0000 Subject: Update. * iconvdata/big5hkscs.c: Add __builtin_expect in many places. * iconvdata/big5.c: Likewise. * iconvdata/ansi_x3.110.c: Likewise. * iconvdata/8bit-generic.c: Likewise. * iconvdata/8bit-gap.c: Likewise. * iconv/loop.c: Likewise. * iconv/gconv_db.c: Likewise. * iconv/gconv_dl.c: Likewise. * iconv/gconv_simple.c: Likewise. * iconv/skeleton.c: Likewise. --- iconvdata/big5hkscs.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'iconvdata/big5hkscs.c') diff --git a/iconvdata/big5hkscs.c b/iconvdata/big5hkscs.c index 09974d5523..083b077c94 100644 --- a/iconvdata/big5hkscs.c +++ b/iconvdata/big5hkscs.c @@ -12604,7 +12604,8 @@ static const char from_ucs4_tab14[][2] = /* See whether the second byte is in the correct range. */ \ if (ch2 >= 0x40 && ch2 <= 0x7e) \ idx += ch2 - 0x40; \ - else if (ch2 >= 0xa1 && ch2 <= 0xfe) \ + else if (__builtin_expect (ch2, 0xa1) >= 0xa1 \ + && __builtin_expect (ch2, 0xa1) <= 0xfe) \ idx += 0x3f + (ch2 - 0xa1); \ else \ { \ @@ -12624,7 +12625,7 @@ static const char from_ucs4_tab14[][2] = ch = big5_to_ucs[idx]; \ \ /* Is this character defined? */ \ - if (ch == 0 && *inptr != '\0') \ + if (__builtin_expect (ch, 1) == 0 && *inptr != '\0') \ { \ /* This is an illegal character. */ \ if (! ignore_errors_p ()) \ @@ -12660,7 +12661,8 @@ static const char from_ucs4_tab14[][2] = char buf[2]; \ const char *cp; \ \ - if (ch >= sizeof (from_ucs4_tab1) / sizeof (from_ucs4_tab1[0])) \ + if (__builtin_expect (ch, 0) \ + >= sizeof (from_ucs4_tab1) / sizeof (from_ucs4_tab1[0])) \ switch (ch) \ { \ case 0x2c7 ... 0x2d9: \ @@ -12735,7 +12737,7 @@ static const char from_ucs4_tab14[][2] = else \ cp = from_ucs4_tab1[ch]; \ \ - if (cp[0] == '\0' && ch != 0) \ + if (__builtin_expect (cp[0], '\1') == '\0' && ch != 0) \ { \ /* Illegal character. */ \ if (! ignore_errors_p ()) \ @@ -12749,7 +12751,8 @@ static const char from_ucs4_tab14[][2] = else \ { \ /* See whether there is enough room for the second byte we write. */ \ - if (NEED_LENGTH_TEST && cp[1] != '\0' && outptr + 1 >= outend) \ + if (NEED_LENGTH_TEST && __builtin_expect (cp[1], '\1') != '\0' \ + && __builtin_expect (outptr + 1 >= outend, 0)) \ { \ /* We have not enough room. */ \ result = __GCONV_FULL_OUTPUT; \ -- cgit v1.2.3