1. 31 Aug, 2003 4 commits
    • re PR middle-end/11823 (Optimizing large jump tables for switch statements) · 9e4b13a7
      
      	PR middle-end/11823
      	* stmt.c (expand_end_case_type): Only use jump tables for dense
      	switch statements when optimizing for size.
      
      Co-Authored-By: Roger Sayle <roger@eyesopen.com>
      
      From-SVN: r70959
      Steven Bosscher committed
    • builtins.c (expand_builtin_setjmp): Use emit_jump to jump around the != 0 case... · 7c66d5f5
              * builtins.c (expand_builtin_setjmp): Use emit_jump to jump around
              the != 0 case, which ensures pending stack adjustments are flushed.
      
      From-SVN: r70958
      Olivier Hainque committed
    • configure.frag: Delete file. · 2ed26f6b
      	* configure.frag: Delete file.
      	* configure.in: Rename the substitution variables
      	dep_host_xmake_file and dep_tmake_file to xmake_file and
      	tmake_file respectively.  Do not expand $srcdir in the
      	value of these; leave that for Make.  Introduce a new
      	substitution varaible, all_lang_makefrags, which lists
      	subdirectory Make-lang.in files; exclude these from
      	all_lang_makefiles, which is now only for subdirectory
      	outputs.  Do not invoke configure.frag.  Do not set nor
      	AC_SUBST_FILE target_overrides, host_overrides, or
      	language_fragments. Create build subdirectories in
      	config.status extra commands.
      	* configure: Regenerate.
      	* Makefile.in: Update substitutions to match changes to
      	configure.  Use include directives instead of @-insertions
      	to read in host, target, and language fragments.
      	(Makefile rule): Do not invoke configure.frag.  Do not copy
      	config.status to config.run before executing it.  Set
      	CONFIG_HEADERS and CONFIG_FILES so that only Makefile gets
      	regenerated.
      	(cstamp-h rule): Set CONFIG_FILES as well as CONFIG_HEADERS.
      ada:
      	* Makefile.in: Update substitutions to match changes to
      	configure.  Use include directives instead of @-insertions
      	to read in host and target fragments.  Add a rule to
      	regenerate ada/Makefile.
      
      From-SVN: r70957
      Zack Weinberg committed
    • Daily bump. · ec9b6eba
      From-SVN: r70955
      GCC Administrator committed
  2. 30 Aug, 2003 9 commits
    • c-tree.h: Delete COMPARE_DIFFERENT_TU from enumeration. · 766beae1
      	* c-tree.h: Delete COMPARE_DIFFERENT_TU from enumeration.
      	* c-typeck.c (same_translation_unit_p): New function.
      	(comptypes): Use it instead of flags parameter to identify
      	structure types from different translation units.
      	* c-decl.c (duplicate_decls): Always call comptypes with
      	COMPTYPE_STRICT flags argument.
      	(c_reset_state): Set BLOCK_SUPERCONTEXT of the block formed
      	to file_scope_decl.
      
      From-SVN: r70953
      Zack Weinberg committed
    • c-tree.h (C_TYPE_INCOMPLETE_VARS): New macro. · bf7a697f
      	* c-tree.h (C_TYPE_INCOMPLETE_VARS): New macro.
      	* c-decl.c (struct c_scope): Remove "incomplete" field.
      	(pushdecl): Attach variables with incomplete types to
      	the TYPE_MAIN_VARIANT of the incomplete type in question.
      	(finish_struct): Look at C_TYPE_INCOMPLETE_VARS for variables
      	to complete, not at current_scope->incomplete.  All such
      	variables do need completion.
      
      From-SVN: r70952
      Zack Weinberg committed
    • lib1funcs.asm (RETCOND): Delete. · 496b84c8
      2003-08-30  Richard Earnshaw  <rearnsha@arm.com>
      	Nicolas Pitre <nico@cam.org>
      
      * arm/lib1funcs.asm (RETCOND): Delete.
      (RETLDM): New assembler macro.  Use it for returning with ldm/ldr.
      (ARM_LDIV0, THUMB_LDIV0): Collapse multiple definitions.
      (__ARM_ARCH__): Move here from ieee754-?f.S.
      (RET, RETc): Clean up definitions.
      (DIV_FUNC_END): Renamed from FUNC_END.  All uses changed.
      (FUNC_END): New macro that marks the end of any function.
      (ARM_FUNC_START): New macro that allows an assembler routine to be
      implemented in ARM code even if a Thumb-only build.
      Unconditionally include ieee754-?f.S.
      * arm/ieee754-df.S: Delete macros moved to lib1funcs.asm.
      Mark ends of functions.
      Split into separate conditionally-compiled units.
      Use RETLDM to return from routines.
      * arm/ieee754-sf.S: Similarly.
      * t-arm-elf (LIB1ASMFUNCS): Remove _ieee754_dp and _ieee754_sp.
      Add _negdf2 _addsubdf3 _muldivdf3 _cmpdf2 _unorddf2 _fixdfsi
      _truncdfsf2 _negsf2 _addsubsf3 _muldivsf3 _cmpsf2 _unordsf2
      _fixsfsi and _fixunssfsi.
      
      * arm/ieee754-df.S (__muldf3): Fix bug when result of a
      multiplication underflows to zero.
      (__adddf3): Fix bug when using VFP ordering on little-endian
      processors.
      (__fixdfsi): Use rrx to extract the carry into a register instead of
      MRS instruction.  Optimize later use of result.
      * arm/ieee754-sf.S (__fixsfsi): Likewise.
      (__fixunssfsi): Use a better sequence for handling negative-or-zero.
      
      Co-Authored-By: Nicolas Pitre <nico@cam.org>
      
      From-SVN: r70949
      Richard Earnshaw committed
    • * MAINTAINERS: Update my e-mail address. · 88d032eb
      From-SVN: r70946
      Gerald Pfeifer committed
    • re PR c++/12093 (inconstitent error with templates/non-templates) · 9872452e
      	PR c++/12093
      	* g++.dg/template/non-dependent4.C: New test.
      
      From-SVN: r70943
      Mark Mitchell committed
    • Remove inadvertent commit · 5be4b5c9
      From-SVN: r70942
      Mark Mitchell committed
    • re PR c++/12093 (inconstitent error with templates/non-templates) · 7433e6d4
      2003-08-29  Mark Mitchell  <mark@codesourcery.com>
      
      	PR c++/12093
      	* pt.c (build_non_dependent_expr): Do not build a
      	NON_DEPENDENT_EXPR for a STRING_CST.
      
      2003-08-29  Mark Mitchell  <mark@codesourcery.com>
      
      	PR c++/12093
      	* g++.dg/template/non-dependent4.C: New test.
      
      From-SVN: r70941
      Mark Mitchell committed
    • Daily bump. · c2096ef8
      From-SVN: r70939
      GCC Administrator committed
    • Add missing ChangeLog entry · de400e0c
      From-SVN: r70937
      Mark Mitchell committed
  3. 29 Aug, 2003 27 commits
    • re PR c++/11928 (c++ typedef handling) · 20d65560
      	PR c++/11928
      	* search.c (add_conversions): Avoid adding two conversion
      	operators for the same type.
      
      	PR c++/11928
      	* g++.dg/inherit/conv1.C: New test.
      
      From-SVN: r70934
      Mark Mitchell committed
    • tree-optimize.c: New file. · 4985cde3
      gcc/
              * tree-optimize.c: New file.
              * Makefile.in (OBJS-archive): Add tree-optimize.o.
              (tree-optimize.o): New.
              * c-decl.c (store_parm_decls): Use allocate_struct_function.
              (finish_function): Don't free_after_parsing or free_after_compilation.
              (set_save_expr_context): Move to tree-optimize.c.
              (c_expand_body_1): Use tree_rest_of_compilation.
              * c-lang.c (LANG_HOOKS_RTL_EXPAND_STMT): New.
              * objc/objc-lang.c (LANG_HOOKS_RTL_EXPAND_STMT): New.
              * c-objc-common.c (expand_deferred_fns): Don't emit unused inlines;
              iterate until closure.
              * langhooks-def.h (LANG_HOOKS_RTL_EXPAND_START,
              LANG_HOOKS_RTL_EXPAND_STMT, LANG_HOOKS_RTL_EXPAND_END): New.
              (LANG_HOOKS_RTL_EXPAND_INITIALIZER): New.
              * langhooks.h (struct lang_hooks_for_rtl_expansion): New.
              * toplev.h (tree_rest_of_compilation): Declare it.
      
      gcc/cp/
              * cp-lang.c (LANG_HOOKS_RTL_EXPAND_START): New.
              (LANG_HOOKS_RTL_EXPAND_STMT): New.
              * cp-tree.h (cxx_expand_function_start): Declare.
              * decl.c (start_function): Use allocate_struct_function.
              Move stmts_are_full_exprs_p assertion from expand_body.
              Do not free_after_parsing or free_after_compilation.
              (cxx_push_function_context): Move code to set struct function
              data from genrtl_start_function.
              * optimize.c (optimize_function): Don't inc/dec function_depth.
              * semantics.c (expand_body): Use tree_rest_of_compilation.
              (cxx_expand_function_start): Rename from genrtl_start_function,
              omit bits done by tree_rest_of_compilation.
              (genrtl_finish_function): Remove.
              (clear_decl_rtl): Move to ../tree-optimize.c.
      
      Co-Authored-By: Jason Merrill <jason@redhat.com>
      
      From-SVN: r70933
      Richard Henderson committed
    • re PR middle-end/6196 (ICE in copy_to_mode_reg, at explow.c:711) · fc2b8477
      	PR c++/6196
      	* pt.c (tsubst_copy_and_build): Correct handling of
      	address-of-label extension.
      	* semantics.c (finish_goto_stmt): The address of a label must go
      	through the lvalue-to-rvalue conversion.
      
      	PR c++/6196
      	* g++.dg/ext/label1.C: New test.
      	* g++.dg/ext/label2.C: Likewise.
      
      From-SVN: r70932
      Mark Mitchell committed
    • function.h (struct function): Add rtl_inline_init, saved_for_inline. · d560a41c
              * function.h (struct function): Add rtl_inline_init, saved_for_inline.
              * integrate.c (save_for_inline): Set saved_for_inline.
              * c-semantics.c (genrtl_scope_stmt): Check it.
              * toplev.c (wrapup_global_declarations): Check it.
              (rest_of_handle_inlining): Set and check rtl_inline_init.
              (rest_of_compilation): Remove out of date comment.
      
      From-SVN: r70931
      Richard Henderson committed
    • function.c (allocate_struct_function): New, split out of ... · 3a70d621
              * function.c (allocate_struct_function): New, split out of ...
              (prepare_function_start, init_function_start): ... here.
              * expr.c (init_expr): Use ggc_alloc_cleared.
              * stmt.c (init_stmt_for_function): Likewise.
              * tree.h (allocate_struct_function): Declare.
      
      From-SVN: r70929
      Richard Henderson committed
    • function.h (struct function): Move function_frequency and max_jumptable_ents… · 23b6da10
      function.h (struct function): Move function_frequency and max_jumptable_ents before start of bit field members.
      
              * function.h (struct function): Move function_frequency and
              max_jumptable_ents before start of bit field members.
      
      From-SVN: r70928
      Richard Henderson committed
    • config.gcc: Don't use negated character class in shell case clause. · 2d3359eb
              * config.gcc: Don't use negated character class in shell case
              clause.
      
      From-SVN: r70927
      Nathanael Nerode committed
    • builtins.c (expand_builtin_constant_p): Check cse_not_expected here, (fold_builtin_constant_p) ... · 0dcd3840
              * builtins.c (expand_builtin_constant_p): Check cse_not_expected here,
              (fold_builtin_constant_p) ... not here.
      
      From-SVN: r70926
      Richard Henderson committed
    • c-tree.h (C_DECL_FILE_SCOPE): Move ... · 4b1e44be
              * c-tree.h (C_DECL_FILE_SCOPE): Move ...
              * tree.h (DECL_FILE_SCOPE_P): ... here, and rename.
              * c-decl.c, c-objc-common.c, c-typeck.c: Update to match.
      
      From-SVN: r70925
      Richard Henderson committed
    • builtins.def: Fix typos. · 05a5fba9
      	* builtins.def: Fix typos.
      	(ATTR_MATHFN_FPROUNDING_STORE): New macro.
      	(BUILT_IN_FREXP, BUILT_IN_FREXPF, BUILT_IN_FREXPL, BUILT_IN_MODF,
      	BUILT_IN_MODFF, BUILT_IN_MODFL, BUILT_IN_REMQUO, BUILT_IN_REMQUOF,
      	BUILT_IN_REMQUOL, BUILT_IN_SINCOS, BUILT_IN_SINCOSF,
      	BUILT_IN_SINCOSL): Use ATTR_MATHFN_FPROUNDING_STORE.
      
      From-SVN: r70924
      Kaveh R. Ghazi committed
    • builtins.def (BUILT_IN_ERFC, [...]): Use ATTR_MATHFN_FPROUNDING_ERRNO. · fe3d04dc
      	* builtins.def (BUILT_IN_ERFC, BUILT_IN_ERFCF, BUILT_IN_ERFCL):
      	Use ATTR_MATHFN_FPROUNDING_ERRNO.
      
      From-SVN: r70923
      Kaveh R. Ghazi committed
    • * config.gcc (i386-*-vsta): Fix obvious bogosity. · c5e54ac8
      From-SVN: r70922
      Nathanael Nerode committed
    • inclhack.def: Remove special cases for unsupported PTX 1 and PTX 2 (including... · 5650fd39
      	* fixinc/inclhack.def:  Remove special cases for unsupported
      	PTX 1 and PTX 2 (including i[34567]86-sequent-sysv3).
      	* fixinc/fixincl.x: Regenerate.
      
      From-SVN: r70918
      Nathanael Nerode committed
    • Makefile.in (cpp.info): Just state dependencies. · 6280c439
      	* Makefile.in (cpp.info): Just state dependencies.
      	(gcc.info): Likewise.
      	(gccint.info): Likewise.
      	(gccinstall.info): Likewise.
      	(cppinternals.info): Likewise.
      	(cpp.dvi): Likewise.
      	(gcc.dvi): Likewise.
      	(gccint.dvi): Likewise.
      	(gccinstall.dvi): Likewise.
      	(cppinternals.dvi): Likewise.
      	(gcov.1): Likewise.
      	(cpp.1): Likewise.
      	(gcc.1): Likewise.
      	(gfdl.7): Likewise.
      	(gpl.7): Likewise.
      	(fsf-funding.7): Likewise.
      	($(objdir)/%.info): New pattern rule.
      	(%.dvi): Likewise.
      
      From-SVN: r70917
      Mark Mitchell committed
    • Makefile.in (restage1): Pass BOOT_CFLAGS to recursive make. · e46f77a4
      2003-08-29  Kelley Cook  <kelleycook@wideopenwest.com>
      
      	* Makefile.in (restage1): Pass BOOT_CFLAGS to recursive make.
      	(restage2): Likewise.
      	(restage3): Likewise.
      	(restage4): Likewise.
      	(restageprofile): Likewise.
      	(restagefeedback): Likewise.
      	(bubblestrap): Likewise.
      
      From-SVN: r70916
      Kelley Cook committed
    • re PR libstdc++/11990 ("operand of conditional has no effect" warnings in libstdc++) · a3aff86a
      2003-08-29  Nathan Myers  <ncm@cantrip.org>
      
      	PR libstdc++/11990
      	* include/bits/locale_facets.tcc (__pad): delete dead code.
      
      From-SVN: r70915
      Nathan Myers committed
    • config.gcc: Narrow unsupported target match to avoid clobbering i?86-sequent-sysv4*. · 8e3a7070
      	* config.gcc: Narrow unsupported target match to avoid clobbering
      	i?86-sequent-sysv4*.
      
      From-SVN: r70914
      Nathanael Nerode committed
    • * builtins.c (mathfn_built_in): Handle new math builtins. · d119e83e
      From-SVN: r70913
      Kaveh R. Ghazi committed
    • re PR c++/11811 (Weird message with default template arguments) · b2517173
      	PR c++/11811
      	* cxx-pretty-print.c (pp_cxx_canonical_template_parameter): New
      	function.
      	* cxx-pretty-print.h: Declare.
      	* error.c (dump_template_parameter): Use it.
      	(dump_type): Likewise.
      
      From-SVN: r70905
      Gabriel Dos Reis committed
    • win32.cc: fixed tab... · 5c144158
      	* win32.cc: fixed tab, indentation and whitespace
      	inconsistencies
      	removed jvm.h include
      	added includes java/lang/UnsupportedOperationException.h,
      	java/io/IOException.h, java/net/SocketException.h
      	(WSAEventWrapper): class implementation
      	(_Jv_WinStrError): implemented both overloads
      	(_Jv_ThrowIOException): implemented both overloads
      	(_Jv_ThrowSocketException): implemented both overloads
      	(_Jv_select): implemented
      	* include/win32.h: fixed tab, indentation and whitespace
      	inconsistencies
      	wrapped <windows.h> include with  #define WIN32_LEAN_AND_MEAN
      	added jvm.h include
      	(WSAEventWrapper): added class declaration
      	(_Jv_WinStrError): added both overload declarations
      	(_Jv_ThrowIOException): added both overload declarations
      	(_Jv_ThrowSocketException): added both overload declarations
      	removed ENOTCONN, ECONNRESET and ENOPROTOOPT defines
      	(_Jv_select): added declaration
      	(_Jv_socket): removed
      	(_Jv_connect): removed
      	(_Jv_close): removed
      	(_Jv_bind): removed
      	(_Jv_accept): removed
      	(_Jv_listen): removed
      	(_Jv_write): removed
      	(_Jv_read): removed
      	* java/io/natFileDescriptorWin32.cc: fixed tab, indentation and
      	whitespace inconsistencies
      	replaced <windows.h> #include with <platform.h>
      	removed jvm.h include
      	(testCanUseGetHandleInfo): new function which tests whether Win32
      	GetHandleInformation() call can be used with console buffer handles
      	(only supported on >=WinNT 5.0)
      	(winerr): removed (superseded by _Jv_WinStrError in include/win32.h)
      	(valid): rewrote implementation using GetHandleInformation()
      	(sync): 	changed exception throwing to use error string and exception
      	helper methods declared in include/win32.h
      	(open): likewise
      	(write): likewise
      	(setLength): likewise
      	(close): likewise
      	(seek): likewise
      	(getFilePointer): likewise
      	(read): likewise
      	* java/io/natFileWin32.cc: fixed tab, indentation and
      	whitespace inconsistencies
      	replaced <windows.h> #include with <platform.h>
      	removed jvm.h include
      	(_access): use JV_TEMP_UTF_STRING
      	(_stat): likewise
      	(performMkDir): use JV_TEMP_UTF_STRING
      	(performRenameTo): likewise
      	(performDelete): likewise
      	(performCreate): likewise
      	(performSetReadOnly): likewise
      	(performSetLastModified): likewise
      	* java/lang/natWin32Process.cc: fixed tab, indentation and
      	whitespace inconsistencies
      	replaced <windows.h> #include with <platform.h>
      	removed includes gcj/cni.h, jvm.h
      	(new_string): removed
      	(startProcess): use JV_TEMP_UTF_STRING,
      	changed exception throwing to use error string and exception
      	helper methods declared in include/win32.h
      	* java/net/natInetAddressWin32.cc: fixed tab, indentation and
      	whitespace inconsistencies
      	replaced <windows.h> #include with <platform.h>
      	removed jvm.h include
      	removed DISABLE_JAVA_NET conditional code
      	removed POSIX conditional code not relevant to Win32
      	(aton): use JV_TEMP_UTF_STRING
      	removed POSIX conditional code not relevant to Win32
      	(lookup): likewise
      	(getLocalHostName): likewise
      	* java/net/natNetworkInterfaceWin32.cc: fixed tab, indentation and
      	whitespace inconsistencies
      	removed unnecessary windows.h, winsock.h and gcj/cni.h includes
      	removed DISABLE_JAVA_NET conditional code
      	removed POSIX conditional code not relevant to Win32
      	(winsock2GetRealNetworkInterfaces): new function to compute network
      	interfaces via Winsock2 API
      	(determineGetRealNetworkInterfacesFN): new function for returning
      	a function pointer to the function used to compute network interfaces.
      	(getRealNetworkInterfaces): implemented
      	* java/net/natPlainDatagramSocketImplWin32.cc: fixed tab, indentation and
      	whitespace inconsistencies
      	removed gcj/cni.h include
      	removed DISABLE_JAVA_NET conditional code
      	removed POSIX conditional code not relevant to Win32
      	changed net POSIXisms to Win32isms
      	replaced _Jv socket-related calls with their real Win32 equivalents
      	changed exception throwing to use error string and exception
      	helper methods declared in include/win32.h
      	(peekData): implemented timeout support
      	(receive): likewise
      	* java/net/natPlainSocketImplWin32.cc: fixed tab, indentation and
      	whitespace inconsistencies
      	removed gcj/cni.h and gcj/javaprims.h includes
      	removed DISABLE_JAVA_NET conditional code
      	removed POSIX conditional code not relevant to Win32
      	changed net POSIXisms to Win32isms
      	replaced _Jv socket-related calls with their real Win32
      	equivalents
      	changed exception throwing to use error string and exception
      	helper methods declared in include/win32.h
      	(throwConnectException): helper function for connect()
      	(connect): implemented timeout support
      	(accept): likewise
      	(doRead): new helper function common to both read() method overloads,
      	includes timeout support
      	(read): implemented both overloads in terms of doRead()
      	(available): implemented using ioctlsocket()
      
      From-SVN: r70904
      Mohan Embar committed
    • natInetAddressWin32.cc, [...]: Readded code enclosed in DISABLE_JAVA_NET defines… · a1d6cdc2
      natInetAddressWin32.cc, [...]: Readded code enclosed in DISABLE_JAVA_NET defines in preparation for MinGW...
      
      	* java/net/natInetAddressWin32.cc,
      	java/net/natNetworkInterfaceWin32.cc,
      	java/net/natPlainDatagramSocketImplWin32.cc,
      	java/net/natPlainSocketImplWin32.cc:
      	Readded code enclosed in DISABLE_JAVA_NET defines
      	in preparation for MinGW cleanup / networking
      	patch
      
      From-SVN: r70902
      Mohan Embar committed
    • * MAINTAINERS (Write After Approval): Add myself. · 0b3f3d22
      From-SVN: r70901
      Mohan Embar committed
    • Makefile.am: Fixed problems with parallel makes. · 165d9b9c
      	* Makefile.am: Fixed problems with parallel makes.
      	(all_java_class_files): Readded definition.
      	(all_java_class_files): New target which depends on
      	libgcj-@gcc_version@.jar
      	* Makefile.in: Rebuilt
      
      From-SVN: r70900
      Mohan Embar committed
    • init.c (decl_constant_value): Deal with COND_EXPR specially. · a1652802
      	* init.c (decl_constant_value): Deal with COND_EXPR specially.
      	* call.c (build_conditional_expr): Revert previous patch.
      
      	* g++.dg/expr/cond3.C: New test.
      
      From-SVN: r70899
      Mark Mitchell committed
    • Fix (hopefully temporary) for breakage caused by my 08-21 patch. · 2be570f9
      	* cpplex.c (_cpp_get_fresh_line):  Check for null buffer.
      	(_cpp_lex_buffer):  Likewise.
      	* cpptrad.c (_cpp_read_logical_line_trad):  Likewise.
      
      From-SVN: r70898
      Per Bothner committed
    • s390.md ("*mulsi3_sign"): New insn. · f1e77d83
      	* config/s390/s390.md ("*mulsi3_sign"): New insn.
      	("mulsidi3" expander, "mulsi_6432" insn): Remove, replace by ...
      	("mulsidi3"): ... this new insn.
      	("umulsidi3"): New insn.
      	("divmoddi3", "divmodtidi3", "divmodtisi3"): Simplify by using
      	mixed-mode matching constraints.
      	("udivmodsi4", "udivmoddisi3"): New insns.
      	("udivsi3", "umodsi3"): Use only in ESA/390 mode.
      
      From-SVN: r70897
      Ulrich Weigand committed
    • Daily bump. · 7ae963b4
      From-SVN: r70895
      GCC Administrator committed