1. 12 Oct, 2001 19 commits
  2. 11 Oct, 2001 21 commits
    • exp_ch7.adb (Find_Final_List): for a type appearing in a with_type clause... · 44d8d2bb
      	* exp_ch7.adb (Find_Final_List): for a type appearing in a with_type
      	clause, return the gobal finalization list, for lack of anthing else.
      
      From-SVN: r46210
      Ed Schonberg committed
    • parse.y (patch_synchronized_statement): Use a TRY_FINALLY_EXPR rather than a… · 89b894e1
      parse.y (patch_synchronized_statement): Use a TRY_FINALLY_EXPR rather than a CLEANUP_POINT_EXPR/WITH_CLEANUP_EXPR pair.
      
      
      	* parse.y (patch_synchronized_statement):  Use a TRY_FINALLY_EXPR
      	rather than a CLEANUP_POINT_EXPR/WITH_CLEANUP_EXPR pair.
      	The former is simpler, and jcf-write.c handles it better.
      	(java_complete_lhs):  No longer need to handle CLEANUP_POINT_EXPR
      	or WITH_CLEANUP_EXPR.
      	* jcf-write.c:  Revert Alex's change from 2000-10-18.  It is no
      	longer needed, as we already handle empty TRY_FINALLY_EXPR bodies fine.
      
      From-SVN: r46209
      Per Bothner committed
    • exp_ch7.adb (Make_Transient_Block): if statement is within exception handler... · 9e2b9627
      	* exp_ch7.adb (Make_Transient_Block): if statement is within
      	exception handler, always use new transient scope to place Clean
      	procedure.
      
      From-SVN: r46208
      Ed Schonberg committed
    • parse.y (patch_if_else_statement): If the condition is constant, optimize away the test. · be98560f
      
      	* parse.y (patch_if_else_statement):  If the condition is constant,
      	optimize away the test.
      
      From-SVN: r46207
      Per Bothner committed
    • * Makefile.in: · cfac6e9f
      	(GNAT_ADA_OBJS): add g-crc32.o, a-tags.o, a-stream.o
      	(GNATBIND_OBJS): add g-crc32.o, a-tags.o, a-stream.o
      	(GNATLS_RTL_OBJS): add g-crc32.o
      	(GNATMAKE_RTL_OBJS): add g-crc32.o
      
      	* ali-util.adb:
      	(CRC_Match): new function.
      	(Get_File_Checksum): renamed Get_File_CRC. Use the GNAT.CRC32 unit
      	instead of the previous simple checksum algorithm.
      	(Time_Stamp_Mismatch): use CRC_Match for comparison.
      	(Set_Source_Table): idem.
      
      	* ali-util.ads:
      	(Get_File_Checksum): renamed Get_File_CRC as now we compute CRC
      	instead of simple checksum.
      	(CRC_Match): new function.
      	(CRC_Error): new constant.
      
      	* ali.adb (Scan_ALI): rename variable Chk to CRC as we are handling
      	a CRC now and not a simple checksum. A CRC uses lower-case hex
      	letters, fixes ambiguity in parsing.
      
      	* ali.ads (Sdep_Record.Checksum): renamed Sdep_Record.CRC as this
      	is what this variable will store.
      
      	* bcheck.adb: Change reference to chechsum in comments by CRC.
      	(Check_Consistency): Rename Get_File_Checksum to Get_File_CRC.
      	rename All_Checksum_Match to All_CRC_Match. Change due to API
      	renaming since now GNAT does not use a simple checksum but a
      	CRC using GNAT.CRC32.
      
      	* gnatls.adb: Rename Checksum to CRC in many places, we use a CRC
      	now and not anymore a simple checksum.
      
      	* lib-load.adb: Use Source_CRC instead of Source_Checksum in many
      	places.
      
      	* lib-writ.adb (Write_ALI): Use Source_CRC instead of Source_Checksum.
      
      	* scans.adb:
      	(Restore_Scan_State): rename Checksum to CRC.
      	(Save_Scan_State): idem.
      
      	* scans.ads:
      	With GNAT.CRC32.
      	(Checksum): rename to CRC.
      	(Saved_Scan_State): Save_Checksum field renamed to Save_CRC
      
      	* scn-nlit.adb: Rename many Accumulate_Checksum to Update (from
      	GNAT.CRC32).  Update copyright notice.
      
      	* scn-slit.adb: Rename many Accumulate_Checksum to Update (from
      	GNAT.CRC32).  Update copyright notice.
      
      	* scn.adb:
      	(Accumulate_Checksum): removed.
      	(Update): new procedure. Add a wide-character into the CRC.
      
      	* sinput-l.adb:
      	(Complete_Source_File_Entry): use CRC32 instead of simple checksum.
      	(Load_File): fix initialization of S (change Source_Checksum to
      	Source_CRC)
      
      	* sinput-p.adb (Load_Project_File): rename Source_Checksum to
      	Source_CRC in S initialization.
      
      	* sinput.adb (Source_Checksum): renamed to Source_CRC.
      
      	* sinput.ads (Source_Checksum): renamed to Source_CRC.
      	Update comments for the CRC.
      
      	* types.adb (Hex): Use lowercase for the letter part.
      
      	* types.ads (Get_Hex_String): Returns the hexadecimal representation
      	for a word. This is currently used only for CRC. In previous version,
      	the checksum was using a representation with all letter being
      	upper-case. With the new implementation (using CRC) we do not remove
      	the 32th bit of the CRC, so we can have an upper-case starting letter
      	in the CRC. This is not possible to parse in Scan_ALI (ali.adb).
      	It is ambigous since the CRC was optional and could be followed by
      	options like EB, EE. So now this routines uses lower-case letter for
      	the hexadecimal representation. Strange enough only lower case letters
      	where checked in Scan_ALI (even if this was not a possible case).
      
      	* gnatvsn.ads (Library_Version): changed to 3.15a.
      
      	* s-crc32.ads: Initial version from GNAT.CRC32. This is the version
      	for the compiler.
      
      	* s-crc32.adb: Initial version from GNAT.CRC32. This is the version
      	for the compiler.
      
      	* ali-util.adb: Redo previous change to avoid using word CRC everywhere
      	Add 2001 to copyright notice
      	(Accumulate_Checksum): Modify to use System.CRC32.
      
      	* ali-util.ads: Redo changes of previous revision to continue to use
      	the word Checksum. Add 2001 to copyright notice.
      
      	* ali.adb: Undo some of previous changes, not needed.
      	Keep the change for lower case letters in the checksum.
      
      	* ali.ads: Undo previous change not needed.
      
      	* bcheck.adb: Undo most of previous change, not needed.
      	But do use Checksums_Match for checksum comparison.
      
      	* gnatls.adb: Undo most of previous change, not needed.
      	But do use Checksums_Match for comparing checksums.
      
      	* lib-load.adb: Undo previous change, not needed.
      
      	* lib-writ.adb: Undo previous change, not needed.
      
      	* lib-writ.ads: Document that checksums use lower case,
      	not upper case letters.
      
      	* scans.adb: Undo previous change, not needed
      
      	* scans.ads: Undo previous change, not needed.
      
      	* scn-nlit.adb: Undo previous changes, not needed.
      
      	* scn-slit.adb: Undo previous change, not needed.  Fix header format.
      
      	* scn.adb:
      	(Accumulate_Checksum): Use System.CRC32.
      	(Initialize_Checksum): New procedure.
      	Remove other changes of previous revision.
      
      	* sinput-p.adb: Undo previous change, not needed.
      
      	* sinput.adb: Undo previous change, not needed.
      
      	* sinput-l.adb: Undo previous change, not needed.
      
      	* sinput.ads: Undo previous change, not needed.  Keep only comment
      	on new checksum algorithm
      
      	* Makefile.in: Add s-crc32 as needed, remove g-crc32.
      	Also remove a-tags and a-stream from GNAT sources.
      
      	* ali.adb (Scan_ALI): fix typo introduce in latest check-in.
      
      	* Makefile.in (GNATRTL_NONTASKING_OBJS): Add g-crc32.o.
      
      From-SVN: r46206
      Pascal Obry committed
    • Tidy last change. · 3d7a191f
      From-SVN: r46205
      Richard Henderson committed
    • dwarf2out.c (add_const_value_attribute): If long < HOST_WIDE_INT, fall back to… · 5929a2f0
      dwarf2out.c (add_const_value_attribute): If long < HOST_WIDE_INT, fall back to add_AT_long_long for large CONST_INT.
      
              * dwarf2out.c (add_const_value_attribute): If long < HOST_WIDE_INT,
              fall back to add_AT_long_long for large CONST_INT.
      
      From-SVN: r46204
      Richard Henderson committed
    • i386.md (setcc splitters): Add four splitters to simplify compound compares that… · 10978207
      i386.md (setcc splitters): Add four splitters to simplify compound compares that simplify_comparison can't...
      
              * config/i386/i386.md (setcc splitters): Add four splitters to
              simplify compound compares that simplify_comparison can't handle.
      
      From-SVN: r46203
      Richard Henderson committed
    • typeck2.c (store_init_value): Don't re-digest a bracketed initializer. · 6f32162a
              * typeck2.c (store_init_value): Don't re-digest a bracketed
              initializer.
      
              * class.c (finish_struct_anon): Use TYPE_ANONYMOUS_P instead of
              ANON_AGGR_TYPE_P.
      
      From-SVN: r46202
      Jason Merrill committed
    • einfo.h: Regenerate. · 4d6d06a5
      	* einfo.h: Regenerate.
      
      	* nmake.ads: Regenerate.
      
      	* nmake.adb: Regenerate.
      
      	* sinfo.h: Regenerate.
      
      	* treeprs.adb: Regenerate.
      
      From-SVN: r46200
      Geert Bosch committed
    • * MAINTAINERS: Update my email address. · 2f30eda4
      From-SVN: r46199
      J"orn Rennecke committed
    • unroll.c (loop_iterations): Fixup last patch. · a185c302
      	2001-10-11  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
      
      	* unroll.c (loop_iterations): Fixup last patch.
      
      From-SVN: r46197
      Franz Sirl committed
    • rtl.h (REG_VTABLE_REF): New. · 4a8d0c9c
              * rtl.h (REG_VTABLE_REF): New.
              * rtl.c (reg_note_name): Add it.
              * combine.c (distribute_notes): Handle it.
              * final.c (final_scan_insn): Handle it.
              * tree.def (VTABLE_REF): New.
              * expr.c (expand_expr): Handle it.
              * varasm.c (assemble_vtable_entry, assemble_vtable_inherit): New.
              * output.h: Declare them.
      cp/
              * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead
              of an asm statement.
              (build_vtbl_ref_1): Split out from build_vtbl_ref.
              (build_vfn_ref): Use it to handle vtable descriptors before
              calling build_vtable_entry_ref.
              * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit.
      testsuite/
              * g++.old-deja/g++.other/crash18.C: Add -S to options.
      
      From-SVN: r46195
      Richard Henderson committed
    • configopts.html: Quote StyleSheet attribute values. · 94e091c8
      	* docs/html/configopts.html: Quote StyleSheet attribute values.
      	* docs/html/documentation.html: Likewise.
      	* docs/html/explanations.html: Likewise.
      	* docs/html/install.html: Likewise.
      	* docs/html/17_intro/howto.html: Likewise.
      	* docs/html/17_intro/license.html: Likewise.
      	* docs/html/18_support/howto.html: Likewise.
      	* docs/html/19_diagnostics/howto.html: Likewise.
      	* docs/html/20_util/howto.html: Likewise.
      	* docs/html/21_strings/howto.html: Likewise.
      	* docs/html/22_locale/howto.html: Likewise.
      	* docs/html/23_containers/howto.html: Likewise.
      	* docs/html/24_iterators/howto.html: Likewise.
      	* docs/html/25_algorithms/howto.html: Likewise.
      	* docs/html/26_numerics/howto.html: Likewise.
      	* docs/html/27_io/howto.html: Likewise.
      	* docs/html/ext/howto.html: Likewise.
      	* docs/html/ext/sgiexts.html: Likewise.
      	* docs/html/faq/index.html: Likewise.
      
      From-SVN: r46194
      Matt Kraai committed
    • dwarf2out.c (rtl_for_decl_location): If no DECL_RTL, look for a DECL_INITIAL. · 8063ddcf
              * dwarf2out.c (rtl_for_decl_location): If no DECL_RTL, look
              for a DECL_INITIAL.
      
      From-SVN: r46193
      Richard Henderson committed
    • xcoff.h (UNALIGNED_DOUBLE_INT_ASM_OP): Only available in 64-bit mode. · 0faae2f5
              * config/rs6000/xcoff.h (UNALIGNED_DOUBLE_INT_ASM_OP): Only
              available in 64-bit mode.
      
      From-SVN: r46192
      David Edelsohn committed
    • config.gcc: Add cris-*-aout, cris-*-elf, cris-*-none, cris-*-linux* cases. · 0b85d816
      	* config.gcc: Add cris-*-aout, cris-*-elf, cris-*-none,
      	cris-*-linux* cases.
      	* config/cris/cris-protos.h: New file.
      	* config/cris/cris.c: New file.
      	* config/cris/cris.h: New file.
      	* config/cris/cris.md: New file.
      	* config/cris/linux.h: New file.
      	* config/cris/aout.h: New file.
      	* config/cris/arit.c: New file.
      	* config/cris/cris_abi_symbol.c: New file.
      	* config/cris/mulsi3.asm: New file.
      	* config/cris/t-aout: New file.
      	* config/cris/t-cris: New file.
      	* config/cris/t-elfmulti: New file.
      	* config/cris/t-linux: New file.
      	* doc/invoke.texi: Add CRIS options.
      	* doc/install.texi (Specific): Add blurb for CRIS.
      
      From-SVN: r46191
      Hans-Peter Nilsson committed
    • Correct last entry · 1567080c
      From-SVN: r46190
      Hans-Peter Nilsson committed