- 28 Sep, 2009 18 commits
-
-
2009-09-28 Kai Tietz <kai.tietz@onevision.com> * src/x86/win64.S (_ffi_call_win64 stack): Remove for gnu assembly version use of ___chkstk. From-SVN: r152256
Kai Tietz committed -
From-SVN: r152254
Olivier Hainque committed -
./: * ifcvt.c (noce_try_abs): Recognize pattern and call expand_one_cmpl_abs_nojump. * optabs.c (expand_one_cmpl_abs_nojump): New function. * optabs.h (expand_one_cmpl_abs_nojump): Declare. testsuite/: * gcc.target/i386/ifcvt-onecmpl-abs-1.c: New file. * gcc.c-torture/execute/ifcvt-onecmpl-abs-1.c: New file. From-SVN: r152253
Easwaran Raman committed -
PR middle-end/40500 * c-opts.c (c_common_handle_option): Don't set warn_jump_misses_init for -Wall. * doc/invoke.texi (Warning Options): Update documentation. From-SVN: r152252
Ian Lance Taylor committed -
gcc/: * Makefile.in ($(out_object_file)): Depend on gt-$(basename $(notdir $(out_file))).h. From-SVN: r152249
Ralf Wildenhues committed -
* g++.dg/dfp/dfp.exp: Run tests from c-c++-common/dfp. * c-c++-common/dfp/func-vararg-alternate-d32.c: XFAIL for C++. * c-c++-common/dfp/func-vararg-dfp.c: Ditto. * c-c++-common/dfp/func-vararg-mixed.c: Ditto. * c-c++-common/dfp/func-vararg-mixed-2.c: Ditto. From-SVN: r152247
Janis Johnson committed -
From-SVN: r152246
Janis Johnson committed -
* lib/target-supports.exp (check-effective-target-dfp-nocache): Fix typo that breaks the check. From-SVN: r152245
Janis Johnson committed -
* gcc-interface/targtyps.c * (get_target_default_allocator_alignment): Account for observable alignments out of default allocators. testsuite/ * gnat.dg (tagged_alloc_free.adb): New testcase. From-SVN: r152243
Olivier Hainque committed -
* mangle.c (write_builtin_type): Support decimal float types. * g++.dg/dfp: New directory. * g++.dg/dg.exp: Prune tests in dfp directory. * g++.dg/dfp/dfp/exp: New. * g++.dg/dfp/mangle-mode.C: New test. From-SVN: r152242
Janis Johnson committed -
* except.h (struct eh_region_d): Add use_cxa_end_cleanup. * except.c (gen_eh_region): Set it. (duplicate_eh_regions_1): Copy it. * tree-eh.c (lower_resx): Use it to determine which function to call to resume. * langhooks.h (struct lang_hooks): Add eh_use_cxa_end_cleanup. * langhooks-def.h (LANG_HOOKS_EH_USE_CXA_END_CLEANUP): New. * builtins.def (BUILT_IN_CXA_END_CLEANUP): New. * tree.c (build_common_builtin_nodes): Remove parameter. Build BUILT_IN_CXA_END_CLEANUP if necessary. * tree.h (build_common_builtin_nodes): Update decl. * c-common.c (c_define_builtins): Update call to build_common_builtin_nodes. gcc/ada/ * gcc-interface/utils.c (gnat_install_builtins): Update call to build_common_builtin_nodes. gcc/cp/ * cp-objcp-common.h (LANG_HOOKS_EH_USE_CXA_END_CLEANUP): New. gcc/fortran/ * f95-lang.c (gfc_init_builtin_functions): Update call to build_common_builtin_nodes. gcc/java/ * builtins.c (initialize_builtins): Update call to build_common_builtin_nodes. * lang.c (LANG_HOOKS_EH_USE_CXA_END_CLEANUP): New. From-SVN: r152241
Richard Henderson committed -
2009-09-28 Andrew Pinski <andrew_pinski@playstation.sony.com> * spu.c (get_branch_target): Return NULL for ASM_OPERANDS patterns. From-SVN: r152239
Andrew Pinski committed -
* builtins.c (interclass_mathfn_icode): New helper. (expand_builtin_interclass_mathfn): Use it here, and split folding into ... (fold_builtin_interclass_mathfn): ... this new folder. (build_call_nofold_loc): New static helper. (build_call_nofold): New wrapper macro for above. (expand_builtin_int_roundingfn): Use it instead of build_call_expr. (expand_builtin_pow): Ditto. (expand_builtin_memset_args): Ditto. (expand_builtin_printf): Ditto. (expand_builtin_fprintf): Ditto. (expand_builtin_sprintf): Ditto. (expand_builtin_memory_chk): Ditto. (expand_builtin_mempcpy_args): Ditto and don't call folders. (expand_builtin_stpcpy): Ditto. (expand_builtin_strcmp): Ditto. (expand_builtin_strncmp): Ditto. (expand_builtin_strcpy): Remove FNDECL and MODE arguments. (expand_builtin_strcpy_args): Don't call folders. (expand_builtin_memcmp): Ditto. (expand_builtin_strncpy): Ditto, and use target. (expand_builtin_memcpy): Ditto. (expand_builtin_strstr, expand_builtin_strchr, expand_builtin_strrchr, expand_builtin_strpbrk, expand_builtin_memmove, expand_builtin_memmove_args, expand_builtin_bcopy, expand_builtin_memchr, expand_builtin_strcat, expand_builtin_strncat, expand_builtin_strspn, expand_builtin_strcspn, expand_builtin_fputs): Remove these. (expand_builtin): Don't call the above, change calls to other expanders that changed prototype. (fold_builtin_stpcpy): New folder split out from expand_builtin_stpcpy. (fold_builtin_1 <ISFINITE, ISINF, ISNORMAL>): Call fold_builtin_interclass_mathfn. (fold_builtin_2 <STPCPY>): Call fold_builtin_stpcpy. (fold_builtin_strcat): Add folding split from expand_builtin_strcat. * fold-const.c (fold_binary_loc <NE_EXPR>): Add !exp != 0 -> !exp. * passes.c (init_optimization_passes): Move pass_fold_builtins after last phiopt pass. * tree-inline.c (fold_marked_statements): When folding builtins iterate over all instruction potentially generated. * tree-ssa-ccp.c (gimplify_and_update_call_from_tree): Declare earlier. (fold_gimple_call): Use it to always fold calls (into potentially multiple instructions). * tree-ssa-dom.c (optimize_stmt): Resolve __builtin_constant_p calls into zero at this time. * tree-ssa-propagate.c (substitute_and_fold): Ignore multiple statements generated by builtin folding. testsuite/ * gcc.dg/builtins-44.c: Use __builtin_isinf_sign when checking for sign of -Inf. From-SVN: r152236
Michael Matz committed -
* config/m32r/m32r.c (m32r_is_insn): Return false for debugging insns. From-SVN: r152235
Nick Clifton committed -
2009-09-28 Johannes Singler <singler@ira.uka.de> * include/parallel/for_each_selectors.h: Remove obsolete comment. From-SVN: r152234
Johannes Singler committed -
From-SVN: r152233
Duncan Sands committed -
Approved by Ian Lance Taylor. From-SVN: r152232
Duncan Sands committed -
From-SVN: r152230
GCC Administrator committed
-
- 27 Sep, 2009 14 commits
-
-
tree-ssa-ccp.c (optimize_stack_restore): Relax the conditions under which we remove __builtin_stack_restore. * tree-ssa-ccp.c (optimize_stack_restore): Relax the conditions under which we remove __builtin_stack_restore. From-SVN: r152227
Richard Henderson committed -
* loop-iv.c (iv_analyze_op): Use function_invariant_p, not CONSTANT_P, to test for GRD_INVARIANT. (simple_rhs_p): Anything that's function_invariant_p is fine. From-SVN: r152226
Bernd Schmidt committed -
From-SVN: r152225
Rafael Espindola committed -
2009-09-27 Rafael Avila de Espindola <espindola@google.com> * gengtype.c (main): Use plunge_files instead of plugin_output. From-SVN: r152224
Rafael Espindola committed -
2009-09-27 Basile Starynkevitch <basile@starynkevitch.net> Rafael Avila de Espindola <espindola@google.com> * gengtype.c (write_root, write_roots): Add a emit_pch argument. Don't print pch related info if it is false. (main): Don't print pch info in plugin mode. Co-Authored-By: Rafael Avila de Espindola <espindola@google.com> From-SVN: r152223
Basile Starynkevitch committed -
* dwarf2out.c (enum dw_val_class): Replace dw_val_class_long_long with dw_val_class_const_double. (struct dw_val_struct): Replace val_long_long with val_double and adjust for above change. (output_loc_operands): Likewise. (add_AT_long_long): Rename into... (add_AT_double): ...this. (print_die): Replace dw_val_class_long_long with dw_val_class_const_double and adjust. (attr_checksum): Likewise. (same_dw_val_p): Likewise. (size_of_die): Likewise. (value_format): Likewise. (output_die): Likewise. (loc_descriptor) <CONST_DOUBLE>: Likewise. (add_const_value_attribute) <CONST_DOUBLE>: Call add_AT_double instead of add_AT_long_long. (add_bound_info) <INTEGER_CST>: Generate the bound as an unsigned value with the precision of its type. From-SVN: r152222
Eric Botcazou committed -
PR c/41476 * c-typeck.c (build_conditional_expr): Use the readonly and volatile flags of the operand types, not of the operands itself. testsuite/: * gcc.dg/cond-constqual-1.c: New test. From-SVN: r152220
Andreas Schwab committed -
From-SVN: r152219
Peter O'Gorman committed -
* config.gcc: Update OpenBSD targets. * config/openbsd-stdint.h: New file. * config/openbsd-libpthread.h: New file. * config/openbsd.h: Update and break out LIB_SPEC definition. * config/alpha/openbsd.h: Overhaul to reflect ELF migration. * config/i386/openbsdelf.h: Correct types. * config/m68k/openbsd.h: Likewise. * config/mips/openbsd.h: Likewise. * config/vax/openbsd.h: Likewise. From-SVN: r152218
Jonathan Gray committed -
* fold-const.c (maybe_lvalue_p): Return false for M(IN|AX)_EXPR. (extract_muldiv_1) <MINUS_EXPR>: Swap operands if necessary. * stor-layout.c (layout_type) <ARRAY_TYPE>: Do not take the maximum of the length and zero. From-SVN: r152217
Eric Botcazou committed -
gcc/: * Makefile.in (TOPLEV_H): Use $(INPUT_H) not input.h. (FLAGS_H): Add options.h $(REAL_H). (SEL_SCHED_IR_H): Add $(BITMAP_H) vecprim.h $(CFGLOOP_H). (TREE_VECTORIZER_H): New. (EBITMAP_H): Renamed from EBIMAP_H. (c-decl.o, c-objc-common.o, c-pretty-print.o, attribs.o, c-omp.o) (gtype-desc.o, ggc-common.o, ggc-page.o, ggc-zone.o, langhooks.o) (tree.o, tree-ssa-structalias.o, tree-ssa-ter.o, tree-ssanames.o) (tree-phinodes.o, tree-ssa-loop.o, tree-ssa-math-opts.o) (gimple-low.o, omp-low.o, sese.o, graphite-blocking.o) (graphite-clast-to-gimple.o, graphite-dependences.o) (graphite-interchange.o, graphite-poly.o, graphite-scop-detection.o) (graphite-sese-to-poly.o, tree-vect-loop.o, tree-vect-loop-manip.o) (tree-vect-patterns.o, tree-vect-slp.o, tree-vect-stmts.o) (tree-vect-data-refs.o, tree-vectorizer.o, gimple.o, tree-mudflap.o) (targhooks.o, stmt.o, emit-rtl.o, ipa.o, matrix-reorg.o, ipa-inline.o) (gcse.o, tree-ssa-ccp.o, df-byte-scan.o, vec.o, caller-save.o) (ira-build.o, ira-costs.o, ira-color.o, ira-emit.o, ira.o) (haifa-sched.o, sched-rgn.o, sel-sched.o, sel-sched-dump.o) (sel-sched-ir.o, final.o, $(out_object_file)): Dependencies updated and fixed as per above changes and per check_makefile_deps.sh output. From-SVN: r152216
Ralf Wildenhues committed -
gcc/: PR bootstrap/40928 * configure.ac: Use $LIBS for '-ldl', not $LDFLAGS. * configure: Regenerate. libjava/: PR libgcj/38298 * Makefile.am (libgcj_tools_la_LIBADD): Add '-lm'. * Makefile.in: Regenerate. From-SVN: r152215
Ralf Wildenhues committed -
2009-09-26 Gary Funck <gary@intrepid.com> * MAINTAINERS (Write After Approval): Add myself. From-SVN: r152214
Gary Funck committed -
From-SVN: r152211
GCC Administrator committed
-
- 26 Sep, 2009 7 commits
-
-
2009-09-26 Paolo Carlini <paolo.carlini@oracle.com> * doc/html/ext/lwg-active.html: Update to Revision R66. * doc/html/ext/lwg-closed.html: Likewise. * doc/html/ext/lwg-defects: Likewise. * doc/xml/manual/intro.xml: Update entry for DR 853. From-SVN: r152208
Paolo Carlini committed -
* configure.ac: Update minimum MPC version to 0.7. * configure: Regenerate. gcc: * doc/install.texi: Update minimum MPC version to 0.7. From-SVN: r152207
Kaveh R. Ghazi committed -
* doc/html/ext/lwg-closed.html: Adjust four instances of two URLs according to upstream redirects. From-SVN: r152206
Gerald Pfeifer committed -
* doc/install.texi (Binaries): Remove reference to the binary distribution CD-ROM from the FSF. From-SVN: r152205
Gerald Pfeifer committed -
PR lto/40758 PR middle-end/41470 * tree-ssa-coalesce.c (coalesce_ssa_name): Add only SSA names that are mentioned in the body. testsuite/ * gcc.dg/pr41470.c: New test. From-SVN: r152203
Michael Matz committed -
decl.c (gnat_to_gnu_entity): Filter out negative size for the array dimensions like in the constrained case. * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Array_Type>: Filter out negative size for the array dimensions like in the constrained case. <E_Array_Subtype>: Do not create an artificially non-constant high bound if the low bound is non-constant. Minor tweaks. * gcc-interface/trans.c (lvalue_required_p): Add CONSTANT parameter and turn ALIASED into a boolean parameter. Adjust calls to self. <N_Attribute_Reference>: Return 1 for more attributes. <N_Object_Renaming_Declaration>: Return 1 for non-constant objects. <N_Assignment_Statement>: Return 1 for the LHS. (Identifier_to_gnu): Adjust calls to lvalue_required_p. (call_to_gnu): Be prepared for wrapped boolean rvalues. From-SVN: r152201
Eric Botcazou committed -
From-SVN: r152192
GCC Administrator committed
-
- 25 Sep, 2009 1 commit
-
-
re PR tree-optimization/41454 (DOM miscompiles gcc.c-torture/execute/990513-1.c at -O2 -fno-tree-vrp) PR tree-optimization/41454 * tree-ssa-dom (stmts_to_rescan): Remove variable. (tree_ssa_dominator_optimize): Don't allocate and free it. (dom_opt_leave_block): Don't iterate over it. (eliminate_redundant_computations): Don't return a value. (cprop_operand, cprop_into_stmt): Ditto. (optimize_stmt): Don't defer updating stmts. testsuite/ * gcc.dg/pr41454.c: New test. From-SVN: r152189
Michael Matz committed
-