glibc/wcsmbs
Siddhesh Poyarekar a643f60c53 Make sure that the fortified function conditionals are constant
In _FORTIFY_SOURCE=3, the size expression may be non-constant,
resulting in branches in the inline functions remaining intact and
causing a tiny overhead.  Clang (and in future, gcc) make sure that
the -1 case is always safe, i.e. any comparison of the generated
expression with (size_t)-1 is always false so that bit is taken care
of.  The rest is avoidable since we want the _chk variant whenever we
have a size expression and it's not -1.

Rework the conditionals in a uniform way to clearly indicate two
conditions at compile time:

- Either the size is unknown (-1) or we know at compile time that the
  operation length is less than the object size.  We can call the
  original function in this case.  It could be that either the length,
  object size or both are non-constant, but the compiler, through
  range analysis, is able to fold the *comparison* to a constant.

- The size and length are known and the compiler can see at compile
  time that operation length > object size.  This is valid grounds for
  a warning at compile time, followed by emitting the _chk variant.

For everything else, emit the _chk variant.

This simplifies most of the fortified function implementations and at
the same time, ensures that only one call from _chk or the regular
function is emitted.

Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
2021-10-20 18:12:41 +05:30
..
bits Make sure that the fortified function conditionals are constant 2021-10-20 18:12:41 +05:30
btowc.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
c16rtomb.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
c32rtomb.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
Depend
isoc99_fwscanf.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
isoc99_swscanf.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
isoc99_vfwscanf.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
isoc99_vswscanf.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
isoc99_vwscanf.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
isoc99_wscanf.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
Makefile Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
mbrlen.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
mbrtoc16.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
mbrtoc32.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
mbrtowc.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
mbsinit.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
mbsnrtowcs.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
mbsrtowcs_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
mbsrtowcs.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
test-char-types.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcpcpy.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcpncpy.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcscat.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcschr.c
test-wcschrnul.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcscmp.c
test-wcscpy.c
test-wcscspn.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcslen.c
test-wcsncat.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcsncmp.c Use correct signedness in wcsncmp 2015-04-13 21:25:04 +02:00
test-wcsncpy.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcsnlen.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcspbrk.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wcsrchr.c
test-wcsspn.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wmemchr.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
test-wmemcmp.c
test-wmemset.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
tst-btowc.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
tst-c16-surrogate.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
tst-c16c32-1.c
tst-c32-state.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
tst-fgetwc-after-eof.c [BZ 1190] Make EOF sticky in stdio. 2018-03-13 08:31:56 -04:00
tst-mbrtowc2.c Prefer https for Sourceware links 2017-11-16 11:49:26 +05:30
tst-mbrtowc.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
tst-mbsrtowcs.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
tst-mbstowcs.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
tst-wchar-h.c Update wcsmbs tests to use the support test driver 2017-04-04 18:05:20 -03:00
tst-wcpncpy.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
tst-wcrtomb.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
tst-wcsnlen.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
tst-wcstod-nan-locale.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
tst-wcstod-nan-sign.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
tst-wcstod-round.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
tst-wcstof.c Update wcsmbs tests to use the support test driver 2017-04-04 18:05:20 -03:00
tst-wcstol-locale.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
uchar.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
Versions Add _Float32 function aliases. 2017-12-07 00:48:31 +00:00
wchar.h Enable support for GCC 11 -Wmismatched-dealloc. 2021-05-16 15:21:18 -06:00
wcpcpy.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcpncpy.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcrtomb.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsatcliff.c
wcscasecmp_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcscasecmp.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcscat.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcschr.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcschrnul.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcscmp.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcscoll_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcscoll.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcscpy.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcscspn.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsdup.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcslen.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsmbs-tst1.c Add dependencies on needed locales in each subdir tests (bug 18969) 2015-10-12 15:18:08 +02:00
wcsmbsload.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsmbsload.h Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsncase_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsncase.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcsncat.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsncmp.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsncpy.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsnlen.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsnrtombs.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcspbrk.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsrchr.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsrtombs.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsspn.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsstr.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcstod_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstod_nan.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcstod.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstof_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstof_nan.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcstof.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstok.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstol_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstol.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstold_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstold_nan.c Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wcstold.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstoll_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstoll.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstoul_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstoul.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstoull_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcstoull.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcswidth.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsxfrm_l.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcsxfrm.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wctob.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcwidth.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wcwidth.h Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wmemchr.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wmemcmp.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wmemcpy.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wmemmove.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wmempcpy.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wmemset.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30