summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * configure.in: Convert to autoconf 2.57, gratuitous stylisticneroden2004-02-295-2526/+5948
| | | | | | | | | | | cleanup, rename to configure.ac. * configure.ac: Renamed from configure.in. * config.h.in: Rebuilt with autoheader 2.57. * configure: Rebuilt with autoconf 2.57 * README: Update to reflect rename of configure.in to configure.ac. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78668 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/h8300/h8300.md: Add comments about peephole2's.kazu2004-02-292-0/+78
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78667 138bc75d-0d04-0410-961f-82ee72b054a4
* ChangeLog: Previous java/io, java/nio, gnu/java/nio and related changes.bothner2004-02-295-297/+345
| | | | | | | * Makefile.am, configure.in: Updated accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78666 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/lang/natPosixProcess.cc (startProcess): Implement standardbothner2004-02-292-9/+18
| | | | | | | | streams using FileChannelImpl, not FileDescriptor. * java/lang/natWin32Process.cc (startProcess): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78664 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnu/java/nio/FileLockImpl.java (fd): Remove field, replacing it by:bothner2004-02-292-32/+6
| | | | | | | | | | (ch): New FileChannelImpl field. Update constructor to match. (releaseImpl): Remove native method. Instead ... (release): Call unlock on channel. * gnu/java/nio/natFileLockImpl.cc: Removed file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78663 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nio/MappedByteBuffer.java: (forceImpl, isLoadedImpl, loadImpl,bothner2004-02-292-47/+103
| | | | | | | | | | unmapImpl): New dummy methods, to be overridden by subclass. (finalize, isLoaded, load, force): New methods. * java/nio/MappedByteBufferImpl.java: More-or-less rewrite. Now works, at least for read mapping. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78662 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/io/FileDescriptor.java: Implement on top of FileChannel.bothner2004-02-297-1184/+106
| | | | | | | | | | | | | | | | | | | | Remove native methods. * java/io/natFileDescriptorEcos.cc: Remove file. * java/io/natFileDescriptorPosix.cc: Remove file. * java/io/natFileDescriptorWin32.cc: Remove file. * java/io/FileInputStream.java (ch): Change type to FileChannelImpl. (<init>(File)): Allocate a FileChannelImpl, not a FileDescriptor. (<init>(FileChannelImpl)): New package-private constructor. (<init>(FileDescriptor)): Extract FileChannelImpl from arg. (available, close, read, skip): Implement using FileChannelImpl. (getFD): Allocate FileDescriptor if needed. (getChannel): Is now trivial. * java/io/FileOutputStream.java: Corresponding changes. * java/io/RandomAccessFile.java: Corresponding changes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78661 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nio/channels/FileChannelImpl.java: Moved to packagebothner2004-02-292-551/+0
| | | | | | | | | | gnu/java/nio/channels, since we need to refer to it from java.io. * java/nio/channels/natFileChannelImpl.cc: Removed file. * Makefile.am, configure.in: Updated accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78660 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnu/java/nio/channels/FileChannelImpl.java: New class, renamedbothner2004-02-294-0/+1533
| | | | | | | | | | | | | | | | | from java/nio/channels. Don't depend on FileDescriptor. (in, out, err): New static fields. (mode): New field. (SET, CUR, READ, WRITE, APPEND, EXCL, SYNC, DSYNC): Moved constants from FileDescriptor. (by): Removed MappedByteBuffer field. (map): New working implementation. * gnu/java/nio/channels/natFileChannelPosix.cc: New file, though some code "ported" from natFileDescriptoPosix.cc. * gnu/java/nio/channels/natFileChannelEcos.cc: Likewise. * gnu/java/nio/channels/natFileChannelWin32.cc Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78659 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/h8300/h8300.md: Tweak operand numbers of somekazu2004-02-292-24/+29
| | | | | | | peephole2's. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78658 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/h8300/h8300.md: Tweak comments about peephole2's.kazu2004-02-292-11/+23
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78657 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix the date of the last entry.kazu2004-02-291-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78653 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/sibcall-3.c (recurser_void1): Make it an externkazu2004-02-293-8/+16
| | | | | | | | | | function with __attribute__((noinline)). (recurser_void2): Likewise. * gcc.dg/sibcall-4.c (recurser_void1): Likewise. (recurser_void2): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78652 138bc75d-0d04-0410-961f-82ee72b054a4
* * parse.c (ffe_parse_file): Handle the case that main_input_filenamesayle2004-02-292-2/+9
| | | | | | | is NULL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78650 138bc75d-0d04-0410-961f-82ee72b054a4
* * jcf-parse.c (java_parse_file): Handle the case that input_filenamesayle2004-02-292-3/+7
| | | | | | | is NULL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78649 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>sayle2004-02-294-2/+24
| | | | | | | | | | | | | | PR middle-end/14203 * function.c (uninitialized_vars_warning): Use DECL_RTL_SET_P instead of testing whether DECL_RTL is not NULL. 2004-02-29 Roger Sayle <roger@eyesopen.com> PR middle-end/14203 * g++.dg/warn/Wunused-6.C: New test case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78648 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-29 Phil Edwards <phil@codesourcery.com>pme2004-02-293-8/+18
| | | | | | | | | * testsuite/Makefile.am (check-abi, check-abi-verbose): Copy the summary file to the logfile. * testsuite/Makefile.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78647 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/sh/sh.c: Fix formatting.kazu2004-02-292-219/+227
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78646 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/sh/sh.c: Convert to ISO-C.kazu2004-02-292-58/+40
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78645 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2004-02-292-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78642 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Andrew Pinski <pinskia@physics.uc.edu>pinskia2004-02-282-1/+4
| | | | | | | | * c-typeck.c (tagged_types_tu_compatible_p): Fix pasto in my previous patch. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78635 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Andrew Pinski <pinskia@physics.uc.edu>pinskia2004-02-282-4/+5
| | | | | | | | * config/darwin.h (machopic_finish): Output stub even if the symbol is already defined. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78634 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/cpu/hppa/atomicity.h (__atomic_add): Make first argumentdanglin2004-02-283-3/+10
| | | | | | | | | volatile. * config/os/hpux/os_defines.h (_GLIBCXX_INST_ATOMICITY_LOCK): Use __GXX_WEAK__ instead of _GLIBCXX_SUPPORTS_WEAK. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78633 138bc75d-0d04-0410-961f-82ee72b054a4
* * pa64-hpux.h (LIB_SPEC): Fix linking under HP-UX 11.00 with -p and -pg.danglin2004-02-282-4/+14
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78632 138bc75d-0d04-0410-961f-82ee72b054a4
* PR bootstrap/7087neroden2004-02-283-40/+28
| | | | | | | | | | * Makefile.tpl: Guard XFOO sed statements better. * Makefile.tpl: Add dependency for configure-target-libada. * Makefile.in: Regenerate (incidentally fixes broken commit when libada-branch was merged). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78630 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Michael Koch <konqueror@gmx.de>mkoch2004-02-282-0/+6
| | | | | | | | * java/io/ObjectInputStream.java: Compile fix, damn I commited the wrong code. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78629 138bc75d-0d04-0410-961f-82ee72b054a4
* * genattr.c (main): Don't definekazu2004-02-284-25/+11
| | | | | | | | | | | TRADITIONAL_PIPELINE_INTERFACE or DFA_PIPELINE_INTERFACE. * system.h (TRADITIONAL_PIPELINE_INTERFACE): Poison. (DFA_PIPELINE_INTERFACE): Likewise. * doc/tm.texi (TRADITIONAL_PIPELINE_INTERFACE): Remove. (DFA_PIPELINE_INTERFACE): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78628 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Guilhem Lavaux <guilhem@kaffe.org>mkoch2004-02-284-173/+317
| | | | | | | | | | | | | | | | * java/io/ObjectInputStream.java (readClassDescriptor): Keep elements of the mapping non null. (checkTypeConsistency): New method. (readFields): Fixed main loop and base logic. Small reindentation. * java/io/ObjectStreamField.java (lookupField): New method to update the field reference. (checkFieldType): New method. * java/io/ObjectStreamClass.java (setClass, setFields): Call lookupField when building the field database. Check the real field type. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78627 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Michael Koch <konqueror@gmx.de>mkoch2004-02-282-1/+6
| | | | | | | | * java/nio/ByteOrder.java (nativeOrder): Use equals() to compare strings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78626 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Paolo Carlini <pcarlini@suse.de>paolo2004-02-284-9/+137
| | | | | | | | | | | | * include/bits/locale_facets.tcc (num_get<>::_M_extract_float): According to 22.2.3.1, p2, 'units' may be followed by 'e' with no 'decimal-point' in the middle: in this case too we must fix up __found_grouping; slightly tweak. * testsuite/22_locale/num_get/get/char/14.cc: New. * testsuite/22_locale/num_get/get/wchar_t/14.cc: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78625 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/mips.md (tstsi, tstdi): Delete.rsandifo2004-02-282-22/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78624 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/mips.c (override_options): Remove an obsoletersandifo2004-02-283-2/+7
| | | | | | | | duplicate definition of the "e" constraint. * config/mips/mips.h: Update a comment accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78623 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/mips.md: Complete the unfinished R4000rsandifo2004-02-283-40/+150
| | | | | | | | | | | | | | | | | | | | | | | | | multiply/shift errata workaround. Improve documentation. (hazard): Use TARGET_FIX_R4000 to decide whether an "imul" instruction has a hilo hazard. (mulsi3, mulsi3_internal, mulsi3_r4000): Use TARGET_FIX_R4000. (muldi3, muldi3_internal): Likewise. (muldi3_internal2): Remove, replacing with... (muldi3_mult3, muldi3_r4000): ...these new patterns. (mulsidi3): Take the errata into account. (mulsidi3_32bit): Remove, replacing with... (mulsidi3_32bit_internal, mulsidi3_32bit_r4000): ...these new patterns. (mulsidi3_64bit, mulsidi3_64bit_parts): Disable if TARGET_FIX_R4000. (umulsidi3): Take the errata into account. (umulsidi3_32bit): Remove, replacing with.. (umulsidi3_32bit_internal, umulsidi3_32bit_r4000): ...these patterns. (umulsi3_highpart, umulsi3_highpart_internal): Disable if TARGET_FIX_R4000. (smulsi3_highpart, smulsi3_highpart_internal): Likewise. (smuldi3_highpart, umuldi3_highpart): Likewise. * doc/invoke.texi: Document the errata workaround. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78622 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/mips-protos.h (mips_idiv_insns): Declare.rsandifo2004-02-286-13/+88
| | | | | | | | | | | | | | | | * config/mips/mips.h (MASK_FIX_SB1): Bump. (MASK_FIX_R4000, TARGET_FIX_R4000): New macros. (TARGET_SWITCHES): Add -mfix-r4000 and -mno-fix-r4000. * config/mips/mips.c (mips_idiv_insns): New function. (override_options): Make -march=r4000 imply -mfix-r4000 by default. (mips_output_division): Add a workaround for the R4000 divide/shift errata. * config/mips/mips.md (length): Use mips_idiv_insns() to calculate the length of an "idiv" instruction. * doc/invoke.texi: Document the new switches. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78621 138bc75d-0d04-0410-961f-82ee72b054a4
* * doc/tm.texi (IS_COSTLY_DEPENDENCE): Change tokazu2004-02-282-1/+6
| | | | | | | TARGET_SCHED_IS_COSTLY_DEPENDENCE. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78620 138bc75d-0d04-0410-961f-82ee72b054a4
* PR optimization/14229rakdver2004-02-282-5/+5
| | | | | | | * cfgrtl.c (rtl_tidy_fallthru_edge): Do not fail for !onlyjump jump. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78605 138bc75d-0d04-0410-961f-82ee72b054a4
* * lib/g++.exp (g++_link_flags): Don't crash if LD_LIBRARY_PATH isrearnsha2004-02-282-1/+7
| | | | | | | not defined. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78604 138bc75d-0d04-0410-961f-82ee72b054a4
* * fold-const.c (fold): Strip NOPs that change the signednessebotcazou2004-02-282-8/+19
| | | | | | | for RSHIFT too. Expand comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78603 138bc75d-0d04-0410-961f-82ee72b054a4
* PR optimization/7871ian2004-02-282-3/+25
| | | | | | | | | | * flow.c (mark_set_1): Don't add LOG_LINKS for global registers from or to call insns. (propagate_one_insn): Interpret calls as setting global registers, not merely clobbering them. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78601 138bc75d-0d04-0410-961f-82ee72b054a4
* Note that entry fixes PR java/13508, java/11714.bothner2004-02-281-0/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78598 138bc75d-0d04-0410-961f-82ee72b054a4
* * parse.y (build_assertion): Re-do 02-25 change following Jeff Sturmbothner2004-02-282-8/+6
| | | | | | | suggestion: Use build_incomplete_class_ref. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78597 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-27 Eric Christopher <echristo@redhat.com>echristo2004-02-284-6/+12
| | | | | | | | | * g++.dg/charset/charset.exp: Change CFLAGS to CHARSETCFLAGS. * g++.dg/charset/asm2.c: Run only x86. * gcc.dg/charset/asm3.c: Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78596 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2004-02-282-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78593 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-27 Dale Johannesen <dalej@apple.com>dalej2004-02-275-51/+12
| | | | | | | | | | | * config/darwin.c (machopic_output_possible_stub_label): Remove. config/darwin-protos.h: Ditto. config/darwin.h: Remove call to it. * combine.c (distribute_notes): Do not place a REG_DEAD note when value is both set and used. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78590 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/h8300/fixunssfsi.c (__fixunssfsi): Enable on H8/300kazu2004-02-274-34/+9
| | | | | | | | | as well. * config/h8300/lib1funcs.asm (___fixunssfsi): Remove. * config/h8300/t-h8300 (LIB1ASMFUNCS): Remove _fixunssfsi_asm. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78588 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-typeck.c (tagged_types_tu_compatible_p) <ENUMERAL_TYPE>:pinskia2004-02-272-0/+26
| | | | | | | Speedup common case of the type values being in the same order. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78585 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-27 Eric Christopher <echristo@redhat.com>pme2004-02-2711-0/+26
| | | | | | | | | | | | | | | | | | | Phil Edwards <phil@codesourcery.com> * testsuite/22_locale/collate/compare/wchar_t/2.cc, testsuite/22_locale/collate/compare/wchar_t/wrapped_env.cc, testsuite/22_locale/collate/compare/wchar_t/wrapped_locale.cc, testsuite/22_locale/collate/hash/wchar_t/2.cc, testsuite/22_locale/collate/hash/wchar_t/wrapped_env.cc, testsuite/22_locale/collate/hash/wchar_t/wrapped_locale.cc, testsuite/22_locale/collate/transform/wchar_t/2.cc, testsuite/22_locale/collate/transform/wchar_t/wrapped_env.cc, testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc: Use dg-require-iconv. * testsuite/lib/libstdc++.exp: Load target-supports.exp. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78582 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-27 Aldy Hernandez <aldyh@redhat.com>aldyh2004-02-272-0/+9
| | | | | | | | * lib/g++.exp (g++_link_flags): Append LD_LIBRARY_PATH to ld_library_path. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78581 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-27 Phil Edwards <phil@codesourcery.com>pme2004-02-275-49/+137
| | | | | | | | | | | | | | | * testsuite/config/default.exp: Update with comments. (${tool}_target_compile): New wrapper routine. * testsuite/lib/dg-options.exp: New file, with dg-require-iconv. * testsuite/lib/libstdc++.exp: Update with comments and cosmetic fixes. (load_gcc_lib, v3track): New routines. (v3-init): Rename to libstdc++_init. * testsuite/libstdc++-dg/normal.exp: No longer call v3-init. Move DEFAULT_CXXFLAGS handling into libstdc++_init. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78580 138bc75d-0d04-0410-961f-82ee72b054a4
* [gcc/cp/ChangeLog]zlaski2004-02-274-1/+140
| | | | | | | | | | | | | | 2004-02-27 Ziemowit Laski <zlaski@apple.com> * tree.c (pod_type_p): Treat VECTOR_TYPEs as PODs. [gcc/testsuite/ChangeLog] 2004-02-27 Ziemowit Laski <zlaski@apple.com> * g++.dg/ext/altivec-3.C: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78578 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud