summaryrefslogtreecommitdiff
path: root/libssp/ssp.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright years.Jakub Jelinek2022-01-031-1/+1
|
* Update copyright years.Jakub Jelinek2021-01-041-1/+1
|
* Update copyright years.Jakub Jelinek2020-01-011-1/+1
| | | | From-SVN: r279813
* Update copyright years.Jakub Jelinek2019-01-011-1/+1
| | | | From-SVN: r267494
* Update copyright years.Jakub Jelinek2018-01-031-1/+1
| | | | From-SVN: r256169
* ssp.c (__guard_setup): Suppress unused variable warning.Jonathan Yong2017-04-021-2/+1
| | | | | | | | 2017-04-01 Jonathan Yong <10walls@gmail.com> * ssp.c (__guard_setup): Suppress unused variable warning. From-SVN: r246636
* Update copyright years.Jakub Jelinek2017-01-041-1/+1
| | | | From-SVN: r244052
* re PR target/65867 (bootstrap fails for mingw32 due to missing header in ssp.c)Daniel Starke2016-02-091-0/+1
| | | | | | | | | 2015-04-25 Daniel Starke <daniel.f.starke@freenet.de> PR target/65867 * ssp.c: Added wincrypt.h include for Windows targets. From-SVN: r233253
* ssp.c (__guard_setup): For Windows...Georg Koppen2015-02-091-0/+16
| | | | | | | | * ssp.c (__guard_setup): For Windows, use approved methods to get a suitable random number for the stack check guard rather than reading /dev/random. From-SVN: r220559
* * ssp.c (fail): Avoid -Wformat-security warning.Jakub Jelinek2013-12-071-2/+2
| | | | From-SVN: r205775
* Revert libquadmath and libssp copyright patches.Richard Sandiford2013-02-061-1/+1
| | | | From-SVN: r195820
* Update copyright in libssp.Richard Sandiford2013-02-031-1/+1
| | | | From-SVN: r195700
* re PR other/39062 (libssp/ssp.c needs malloc.h for mingw)Ozkan Sezer2009-04-131-0/+3
| | | | | | | | | | | | 2009-04-13 Ozkan Sezer <sezeroz@gmail.com> PR target/39062 * ssp.c: Also include malloc.h for alloca(). MinGW needs it. * configure.ac: Also check for malloc.h. * configure: Regenerated. * config.h.in: Regenerated. From-SVN: r146000
* Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.Jakub Jelinek2009-04-091-11/+10
| | | | From-SVN: r145841
* * ssp.c (_PATH_TTY): Define as "CONOUT$" for _WIN32.Danny Smith2009-02-021-0/+6
| | | | From-SVN: r143862
* ALL: Update FSF address.Kelley Cook2005-08-171-2/+2
| | | | | | | | 2005-08-17 Kelley Cook <kcook@gcc.gnu.org> * ALL: Update FSF address. From-SVN: r103198
* Makefile.def (target_modules): Add libssp.Jakub Jelinek2005-07-021-0/+178
* Makefile.def (target_modules): Add libssp. * configure.in (target_libraries): Add target-libssp. * configure: Rebuilt. * Makefile.in: Rebuilt. gcc/ * gcc.c (LINK_SSP_SPEC): Define. (link_ssp_spec): New variable. (LINK_COMMAND_SPEC): Add %(link_ssp). (static_specs): Add link_ssp_spec. * configure.ac (TARGET_LIBC_PROVIDES_SSP): New test. * configure: Rebuilt. * config.in: Rebuilt. * config/rs6000/linux.h (TARGET_THREAD_SSP_OFFSET): Define. * config/rs6000/linux64.h (TARGET_THREAD_SSP_OFFSET): Likewise. * config/i386/linux.h (TARGET_THREAD_SSP_OFFSET): Likewise. * config/i386/linux64.h (TARGET_THREAD_SSP_OFFSET): Likewise. * config/rs6000/rs6000.md (stack_protect_set, stack_protect_test): If TARGET_THREAD_SSP_OFFSET is defined, use -0x7010(13) resp. -0x7008(2) instead of reading __stack_chk_guard variable. * config/i386/i386.md (UNSPEC_SP_SET, UNSPEC_SP_TEST): Change number. (UNSPEC_SP_TLS_SET, UNSPEC_SP_TLS_TEST): New constants. (stack_protect_set, stack_protect_test): Use *_tls* patterns if TARGET_THREAD_SSP_OFFSET is defined. (stack_tls_protect_set_si, stack_tls_protect_set_di, stack_tls_protect_test_si, stack_tls_protect_test_di): New insns. Revert: 2005-06-27 Richard Henderson <rth@redhat.com> * libgcc-std.ver (GCC_4.1.0): New. * libgcc.h (__stack_chk_guard): Declare. (__stack_chk_fail, __stack_chk_fail_local): Declare. * libgcc2.c (L_stack_chk, L_stack_chk_local): New. * mklibgcc.in (lib2funcs): Add them. From-SVN: r101531