1. 27 Jun, 2005 9 commits
    • builtin-attrs.def (DEF_ATTR_FOR_INT): Add for 5 and 6. · 10a0d495
      	* builtin-attrs.def (DEF_ATTR_FOR_INT): Add for 5 and 6.
      	(DEF_LIST_INT_INT): Add for 4,0, 4,5, 5,0, 5,6.
      	(ATTR_NOTHROW_NONNULL_4, ATTR_NOTHROW_NONNULL_5): Define.
      	(ATTR_FORMAT_PRINTF_4_0, ATTR_FORMAT_PRINTF_4_5,
      	ATTR_FORMAT_PRINTF_5_0, ATTR_FORMAT_PRINTF_5_6): Define.
      	* builtins.c: Include tree-flow.h.
      	(expand_builtin_mempcpy, expand_builtin_memmove): Comment fixes.
      	(expand_builtin_object_size, expand_builtin_memory_chk,
      	maybe_emit_chk_warning, maybe_emit_sprintf_chk_warning,
      	compute_object_offset, compute_builtin_object_size,
      	fold_builtin_object_size): New functions.
      	(expand_builtin): Handle BUILT_IN_OBJECT_SIZE and BUILT_IN_*_CHK.
      	(fold_builtin_1): Likewise.  Handle BUILT_IN_{,V}{,F}PRINTF
      	and BUILT_IN_{,F}PRINTF_UNLOCKED.
      	(fold_builtin_memory_chk, fold_builtin_stxcpy_chk,
      	fold_builtin_strncpy_chk, fold_builtin_strcat_chk,
      	fold_builtin_strncat_chk, fold_builtin_sprintf_chk,
      	fold_builtin_snprintf_chk, fold_builtin_printf, fold_builtin_fprintf):
      	New functions.
      	* builtins.def (BUILT_IN_OBJECT_SIZE, BUILT_IN_MEMCPY_CHK,
      	BUILT_IN_MEMMOVE_CHK, BUILT_IN_MEMPCPY_CHK, BUILT_IN_MEMSET_CHK,
      	BUILT_IN_STPCPY_CHK, BUILT_IN_STRCAT_CHK, BUILT_IN_STRCPY_CHK,
      	BUILT_IN_STRNCAT_CHK, BUILT_IN_STRNCPY_CHK, BUILT_IN_SNPRINTF_CHK,
      	BUILT_IN_SPRINTF_CHK, BUILT_IN_VSNPRINTF_CHK, BUILT_IN_VSPRINTF_CHK,
      	BUILT_IN_FPRINTF_CHK, BUILT_IN_PRINTF_CHK, BUILT_IN_VFPRINTF_CHK,
      	BUILT_IN_VPRINTF_CHK): New builtins.
      	* builtin-types.def (DEF_FUNCTION_TYPE_5, DEF_FUNCTION_TYPE_VAR_4):
      	Document.
      	(BT_FN_SIZE_CONST_PTR_INT, BT_FN_INT_INT_CONST_STRING_VALIST_ARG,
      	BT_FN_PTR_PTR_CONST_PTR_SIZE_SIZE, BT_FN_PTR_PTR_INT_SIZE_SIZE,
      	BT_FN_STRING_STRING_CONST_STRING_SIZE_SIZE,
      	BT_FN_INT_FILEPTR_INT_CONST_STRING_VALIST_ARG,
      	BT_FN_INT_STRING_INT_SIZE_CONST_STRING_VALIST_ARG,
      	BT_FN_INT_STRING_SIZE_INT_SIZE_CONST_STRING_VALIST_ARG,
      	BT_FN_INT_INT_CONST_STRING_VAR, BT_FN_INT_FILEPTR_INT_CONST_STRING_VAR,
      	BT_FN_INT_STRING_INT_SIZE_CONST_STRING_VAR,
      	BT_FN_INT_STRING_SIZE_INT_SIZE_CONST_STRING_VAR): New types.
      	* c-common.c (DEF_FUNCTION_TYPE_5, DEF_FUNCTION_TYPE_6,
      	DEF_FUNCTION_TYPE_VAR_4, DEF_FUNCTION_TYPE_VAR_5): Define.
      	* Makefile.in (OBJS-common): Add tree-object-size.o.
      	(tree-object-size.o): Add dependencies.
      	* tree-pass.h (pass_object_sizes): Add.
      	* tree-optimize.c (init_tree_optimization_passes): Add
      	pass_object_sizes.
      	* tree-object-size.c: New file.
      	* tree.h (fold_builtin_memory_chk, fold_builtin_stxcpy_chk,
      	fold_builtin_strncpy_chk, fold_builtin_snprintf_chk,
      	compute_builtin_object_size, init_object_sizes, fini_object_sizes):
      	New prototypes.
      	* tree-ssa-ccp.c (get_strlen): Rename to ...
      	(get_maxval_strlen): ...this function.  Handle also computing of maximum
      	string length and maximum integral value.
      	(ccp_fold_builtin): Handle BUILT_IN_*_CHK.  Use get_maxval_strlen
      	instead of get_strlen.  Pass CALLEE and ARGLIST variables to the
      	folding functions instead of computing them again.
      	(execute_fold_all_builtins): Retry ccp_fold_builtin if a builtin changed
      	into some other builtin.
      	* doc/extend.texi (Object Size Checking): Document.
      
      	* gcc.c-torture/execute/builtins/lib/main.c (abort): Add prototype.
      	* gcc.c-torture/execute/builtins/lib/strncat.c (strncat): Avoid
      	testing uninitialized var.
      
      	* gcc.c-torture/execute/builtins/chk.h: New.
      	* gcc.c-torture/execute/builtins/lib/chk.c: New.
      	* gcc.c-torture/execute/builtins/memcpy-chk.c: New test.
      	* gcc.c-torture/execute/builtins/memcpy-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/memmove-chk.c: New test.
      	* gcc.c-torture/execute/builtins/memmove-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/mempcpy-chk.c: New test.
      	* gcc.c-torture/execute/builtins/mempcpy-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/memset-chk.c: New test.
      	* gcc.c-torture/execute/builtins/memset-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/snprintf-chk.c: New test.
      	* gcc.c-torture/execute/builtins/snprintf-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/sprintf-chk.c: New test.
      	* gcc.c-torture/execute/builtins/sprintf-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/stpcpy-chk.c: New test.
      	* gcc.c-torture/execute/builtins/stpcpy-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/strcat-chk.c: New test.
      	* gcc.c-torture/execute/builtins/strcat-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/strcpy-chk.c: New test.
      	* gcc.c-torture/execute/builtins/strcpy-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/strncat-chk.c: New test.
      	* gcc.c-torture/execute/builtins/strncat-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/strncpy-chk.c: New test.
      	* gcc.c-torture/execute/builtins/strncpy-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/vsnprintf-chk.c: New test.
      	* gcc.c-torture/execute/builtins/vsnprintf-chk-lib.c: New.
      	* gcc.c-torture/execute/builtins/vsprintf-chk.c: New test.
      	* gcc.c-torture/execute/builtins/vsprintf-chk-lib.c: New.
      	* gcc.dg/builtin-object-size-1.c: New test.
      	* gcc.dg/builtin-object-size-2.c: New test.
      	* gcc.dg/builtin-object-size-3.c: New test.
      	* gcc.dg/builtin-object-size-4.c: New test.
      	* gcc.dg/builtin-object-size-5.c: New test.
      	* gcc.dg/builtin-stringop-chk-1.c: New test.
      	* gcc.dg/builtin-stringop-chk-2.c: New test.
      	* gcc.dg/tree-ssa/builtin-fprintf-1.c: New test.
      	* gcc.dg/tree-ssa/builtin-fprintf-chk-1.c: New test.
      	* gcc.dg/tree-ssa/builtin-printf-1.c: New test.
      	* gcc.dg/tree-ssa/builtin-printf-chk-1.c: New test.
      	* gcc.dg/tree-ssa/builtin-vfprintf-1.c: New test.
      	* gcc.dg/tree-ssa/builtin-vfprintf-chk-1.c: New test.
      	* gcc.dg/tree-ssa/builtin-vprintf-1.c: New test.
      	* gcc.dg/tree-ssa/builtin-vprintf-chk-1.c: New test.
      	* gcc.c-torture/execute/printf-1.c: New test.
      	* gcc.c-torture/execute/fprintf-1.c: New test.
      	* gcc.c-torture/execute/vprintf-1.c: New test.
      	* gcc.c-torture/execute/vfprintf-1.c: New test.
      	* gcc.c-torture/execute/printf-chk-1.c: New test.
      	* gcc.c-torture/execute/fprintf-chk-1.c: New test.
      	* gcc.c-torture/execute/vprintf-chk-1.c: New test.
      	* gcc.c-torture/execute/vfprintf-chk-1.c: New test.
      
      From-SVN: r101352
      Jakub Jelinek committed
    • * regrename.c (copy_value): Fix comment. · de16a5b6
      From-SVN: r101351
      Jakub Jelinek committed
    • toplev.c (process_options): Use if (FRAME_GROWS_DOWNWARD) instead of preprocessor conditionals. · fd5431bc
      	* toplev.c (process_options): Use if (FRAME_GROWS_DOWNWARD)
      	instead of preprocessor conditionals.
      
      From-SVN: r101350
      Jakub Jelinek committed
    • targhooks.c (default_hidden_stack_protect_fail): Fall back to… · 7ce918c5
      targhooks.c (default_hidden_stack_protect_fail): Fall back to default_external_stack_protect_fail if...
      
      	* targhooks.c (default_hidden_stack_protect_fail): Fall back to
      	default_external_stack_protect_fail if visibility is not supported
      	or not flag_pic.
      	* config/i386/i386.c (ix86_stack_protect_fail): New function.
      	(TARGET_STACK_PROTECT_FAIL): Define.
      	* config/i386/i386.md (stack_protect_si): Change CLOBBER into
      	SET to zero.
      	(stack_protect_di): Likewise.  Use %k2 instead of %2 to avoid
      	invalid instruction xorl %rax, %rax.
      
      From-SVN: r101349
      Jakub Jelinek committed
    • c-cppbuiltin.c (c_cpp_builtins): Add __SSP_ALL__ and __SSP__. · 7d69de61
      	* c-cppbuiltin.c (c_cpp_builtins): Add __SSP_ALL__ and __SSP__.
      	* cfgexpand.c: Include params.h.
      	(has_protected_decls, has_short_buffer): New.
      	(expand_stack_vars): Take a predicate to determine what to expand.
      	(defer_stack_allocation): True when flag_stack_protect on.
      	(SPCT_HAS_LARGE_CHAR_ARRAY, SPCT_HAS_SMALL_CHAR_ARRAY): New.
      	(SPCT_HAS_ARRAY, SPCT_HAS_AGGREGATE): New.
      	(stack_protect_classify_type, stack_protect_decl_phase): New.
      	(stack_protect_decl_phase_1, stack_protect_decl_phase_2): New.
      	(add_stack_protection_conflicts, create_stack_guard): New.
      	(expand_used_vars): Add stack protection logic.
      	(tree_expand_cfg): Likewise.
      	* common.opt (Wstack-protector): New.
      	(fstack-protector, fstack-protector-all): New.
      	* function.c: Include predict.h.
      	(assign_parm_adjust_stack_rtl): Zap stack_parm when stack protect
      	wants to copy the parameter into the stack frame.
      	(stack_protect_prologue, stack_protect_epilogue): New.
      	(expand_function_end): Call stack_protect_epilogue.  Do
      	sjlj_emit_function_exit_after after naked_return_label.
      	* function.h (struct function): Add stack_protect_guard.
      	* params.def (PARAM_SSP_BUFFER_SIZE): New.
      	* toplev.c (process_options): Disable flag_stack_protect and/or
      	warn_stack_protect based on FRAME_GROWS_DOWNWARD.
      	* tree.h (stack_protect_prologue): Declare.
      
      	* target-def.h (TARGET_STACK_PROTECT_GUARD): New.
      	(TARGET_STACK_PROTECT_FAIL): New.
      	(TARGET_INITIALIZER): Add them.
      	* target.h (struct gcc_target): Add stack_protect_guard and
      	stack_protect_fail.
      	* targhooks.c: Include ggc.h, gty header.
      	(stack_chk_guard_decl, default_stack_protect_guard): New.
      	(stack_chk_fail_decl, default_external_stack_protect_fail): New.
      	(default_hidden_stack_protect_fail): New.
      	* targhooks.h (default_stack_protect_guard): Declare.
      	(default_external_stack_protect_fail): Declare.
      	(default_hidden_stack_protect_fail): Declare.
      	* config/i386/i386.c (TARGET_STACK_PROTECT_FAIL): New.
      	* config/i386/i386.md (UNSPEC_SP_SET, UNSPEC_SP_TEST): New.
      	(trap): Use ud2.
      	(conditional_trap, conditional_trap_1): Remove.
      	(stack_protect_set, stack_protect_set_si, stack_protect_set_di): New.
      	(stack_protect_test, stack_protect_test_si, stack_protect_test_di): New.
      	* doc/md.texi (stack_protect_set, stack_protect_test): New.
      	* doc/tm.texi (TARGET_STACK_PROTECT_GUARD): New.
      	(TARGET_STACK_PROTECT_FAIL): New.
      
      	* 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: r101348
      Richard Henderson committed
    • test_struct_returning.c: Adjust as return slot is not merged if address escapes. · 2bcf2e2b
              * gcc.target/x86_64/abi/test_struct_returning.c: Adjust as return
              slot is not merged if address escapes.
      
      From-SVN: r101347
      Michael Matz committed
    • 2005-06-24 Jerry DeLisle <jvdelisle@verizon.net> · dc9207b3
          libgfortran/ChangeLog: Clean up format for entry of 2005-06-24.
      
      From-SVN: r101346
      Jerry DeLisle committed
    • ChangeLog: Cleaned up changelog from 2005-06-24. · ce5d6962
      2005-06-26  Jerry DeLisle <jvdelisle@verizon.net>
      
          * fortran/ChangeLog: Cleaned up changelog from 2005-06-24.
      
      From-SVN: r101345
      Jerry DeLisle committed
    • Daily bump. · 0f122dad
      [[Split portion of a mixed commit.]]
      
      From-SVN: r101343.2
      GCC Administrator committed
  2. 26 Jun, 2005 16 commits
  3. 25 Jun, 2005 15 commits