OSDN Git Service

pf3gnuchains/pf3gnuchains3x.git
20 years agoRestore 2002 ChangeLog history.
ford [Fri, 16 Apr 2004 23:56:29 +0000 (23:56 +0000)]
Restore 2002 ChangeLog history.

20 years ago * autoload.cc (NtCreateFile): Add.
corinna [Fri, 16 Apr 2004 21:22:13 +0000 (21:22 +0000)]
* autoload.cc (NtCreateFile): Add.
* dir.cc (mkdir): Change set_file_attribute call to indicate that
NT security isn't used.
* fhandler.cc (fhandler_base::open_9x): New method, created from
fhandler_base::open.
(fhandler_base::open): Rearrange to use NtCreateFile instead of
CreateFile.
* fhandler.h (enum query_state): Redefine query_null_access to
query_stat_control.  query_null_access isn't allowed in NtCreateFile.
(fhandler_base::open_9x): Declare.
* fhandler_disk_file.cc (fhandler_base::fstat_fs): Use
query_stat_control first, query_read_control if that fails.
(fhandler_disk_file::fchmod): Call enable_restore_privilege before
trying to open for query_write_control.  Don't fall back to
opening for query_read_control.
(fhandler_disk_file::fchown): Ditto.
(fhandler_disk_file::facl):  Only request restore privilege and query
access necessary for given cmd.
* fhandler_raw.cc (fhandler_dev_raw::open): Call fhandler_base::open
instead of opening device here.
* ntdll.h (NtCreateFile): Declare.
* path.cc (symlink_worker): Change set_file_attribute call to indicate
that NT security isn't used.
* sec_acl.cc (getacl): Fix bracketing.
* sec_helper.cc (enable_restore_privilege): New function.
* security.cc (str2buf2uni_cat): New function.
(write_sd): Don't request restore permission here.
* security.h (set_process_privileges): Drop stale declaration.
(str2buf2uni): Declare.
(str2buf2uni_cat): Declare.
(enable_restore_privilege): Declare.
* syscalls.cc (fchown32): Return immediate success on 9x.

20 years ago * gdb.gdb/observer.exp (test_normal_stop_notifications): Update
brobecke [Fri, 16 Apr 2004 17:29:42 +0000 (17:29 +0000)]
    * gdb.gdb/observer.exp (test_normal_stop_notifications): Update
        call to observer_notify_normal_stop.

20 years ago * observer.c (observer_test_first_notification_function): Update
brobecke [Fri, 16 Apr 2004 17:26:40 +0000 (17:26 +0000)]
    * observer.c (observer_test_first_notification_function): Update
        function profile.
        (observer_test_second_notification_function): Likewise.
        (observer_test_third_notification_function): Likewise.

20 years agoFrom Brian Ford <ford@vss.fsi.com>:
kettenis [Fri, 16 Apr 2004 16:49:53 +0000 (16:49 +0000)]
From Brian Ford <ford@vss.fsi.com>:
* i386-tdep.c (i386_coff_init_abi): New function.
* i386-tdep.h (i386_coff_init_abi): New prototype.
* i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it.  Use correct
register number translation functions for DWARF and DWARF 2.

20 years ago * dwarf2read.c: Back out my previous change, it was incorrect.
brobecke [Fri, 16 Apr 2004 16:12:52 +0000 (16:12 +0000)]
    * dwarf2read.c: Back out my previous change, it was incorrect.

20 years ago * dwarf2read.c: Include "hashtab.h".
drow [Fri, 16 Apr 2004 15:18:22 +0000 (15:18 +0000)]
* dwarf2read.c: Include "hashtab.h".
(struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
has_namespace_info.
(struct partial_die_info): Add comments.  Use bitfields to reduce
memory footprint.  Add scope, scope_set, has_specification,
spec_offset, die_parent, die_child, and die_sibling.
(peek_die_abbrev): Add prototype.
(partial_read_comp_unit_head): New function, broken out from
dwarf2_build_psymtabs_hard.
(dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
Use partial_read_comp_unit_head.  Initialize the CU and
comp_unit_obstack.  Update calls to read_partial_die and
scan_partial_symbols.  Use free_stack_comp_unit and
load_partial_dies.
(scan_partial_symbols): Change PDI to a pointer.  Use the child and
sibling pointers to walk partial DIEs.  Call fixup_partial_die.
Update calls to helper functions.  Remove NAMESPACE argument.
Update comments.
(partial_die_parent_scope, partial_die_full_name): New functions.
(add_partial_symbol): Remove namespace argument.  Update call to
pdi_needs_namespace.  Use partial_die_full_name.  Handle
DW_TAG_namespace.  Check has_namespace_info flag.
(pdi_needs_namespace): Remove NAMESPACE argument.  Just check the
tag.  Handle namespaces.
(add_partial_namespace, add_partial_enumeration): Simplify.
(guess_structure_name): New function, derived from
add_partial_structure.
(add_partial_structure): Remove.
(determine_class_name): Update comment.
(dwarf2_read_abbrevs): Set has_namespace_info flag.
(is_type_tag_for_partial, load_partial_dies): New functions.
(read_partial_die): Pass abbrev and abbrev_len as arguments.
Record specifications instead of following them immediately.
(find_partial_die_in_comp_unit, find_partial_die)
(fixup_partial_die, free_stack_comp_unit)
(hashtab_obstack_allocate, dummy_obstack_deallocate)
(partial_die_hash, partial_die_eq): New functions.
* Makefile.in (hashtab_h): Define.
(dwarf2read.o): Update dependencies.
(observer_inc, observer_h): Move to the correct section.

20 years agoFix LDFLAGS related configure errors.
wilson [Fri, 16 Apr 2004 07:17:43 +0000 (07:17 +0000)]
Fix LDFLAGS related configure errors.
* Makefile.tpl (configure-[+module+], configure-gcc,
configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
Set and export LDFLAGS.
* Makefile.in: Regenerate.

20 years ago * dwarf2read.c (dwarf2_attribute_true_p): New function.
brobecke [Fri, 16 Apr 2004 04:31:25 +0000 (04:31 +0000)]
    * dwarf2read.c (dwarf2_attribute_true_p): New function.
        (die_is_declaration): Use the function above.

20 years ago * simple.c (bfd_simple_get_relocated_section_contents): Don't
amodra [Fri, 16 Apr 2004 03:29:13 +0000 (03:29 +0000)]
* simple.c (bfd_simple_get_relocated_section_contents): Don't
change reloc_done.  Set and restore _cooked_size.
(RETURN): Delete.

20 years ago * dwarf2read.c (read_structure_scope): Identify stub types
brobecke [Fri, 16 Apr 2004 03:17:25 +0000 (03:17 +0000)]
    * dwarf2read.c (read_structure_scope): Identify stub types
        using die_is_declaration() only.

20 years ago * expr.c (operand): Correct checks for ++ and --.
amodra [Fri, 16 Apr 2004 01:55:27 +0000 (01:55 +0000)]
* expr.c (operand): Correct checks for ++ and --.

20 years ago.
cgf [Fri, 16 Apr 2004 01:48:37 +0000 (01:48 +0000)]
.

20 years ago*** empty log message ***
gdbadmin [Fri, 16 Apr 2004 00:00:03 +0000 (00:00 +0000)]
*** empty log message ***

20 years ago.
roland [Thu, 15 Apr 2004 21:40:20 +0000 (21:40 +0000)]
.

20 years ago2004-04-08 Roland McGrath <roland@redhat.com>
roland [Thu, 15 Apr 2004 21:39:35 +0000 (21:39 +0000)]
2004-04-08  Roland McGrath  <roland@redhat.com>

* generic/gdbtk-hooks.c (gdbtk_pre_add_symbol): Add const to arg type.
(pre_add_symbol): Likewise in extern decl.

20 years ago2004-04-08 Roland McGrath <roland@redhat.com>
roland [Thu, 15 Apr 2004 21:39:27 +0000 (21:39 +0000)]
2004-04-08  Roland McGrath  <roland@redhat.com>

* symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
argument instead of NAME.
(symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
in call to symbol_file_add_with_addrs_or_offsets.
(build_addr_info): New function, helper for ...
(symbol_file_add_from_memory): New function.
(add_symbol_file_from_memory_command): New function using that.
(_initialize_symfile): Register it for add-symbol-file-from-memory.
(pre_add_symbol_hook): Add const to argument type.
* symfile.h (symbol_file_add_from_memory): Declare it.

20 years ago2004-04-15 Andrew Cagney <cagney@redhat.com>
cagney [Thu, 15 Apr 2004 21:14:00 +0000 (21:14 +0000)]
2004-04-15  Andrew Cagney  <cagney@redhat.com>

* gdb.base/siginfo.c: New file.
* gdb.base/siginfo.exp: New file.

20 years agoCheck in missed file.
cgf [Thu, 15 Apr 2004 17:38:23 +0000 (17:38 +0000)]
Check in missed file.

20 years ago* autoload.cc (dll_chain1): Rename to dll_chain. Remove old dll_chain code.
cgf [Thu, 15 Apr 2004 17:38:01 +0000 (17:38 +0000)]
* autoload.cc (dll_chain1): Rename to dll_chain.  Remove old dll_chain code.
(wsock_init): Avoid unneeded winsock_active tests.
* winsup.h (winsock_active): Delete.

20 years ago* netbsd-core.c (netbsd_core_file_p): Set architecture for VAX
kettenis [Thu, 15 Apr 2004 16:04:37 +0000 (16:04 +0000)]
* netbsd-core.c (netbsd_core_file_p): Set architecture for VAX
core files.

20 years ago * fhandler_disk_file.cc (fhandler_disk_file::fchmo): Try opening
corinna [Thu, 15 Apr 2004 15:56:51 +0000 (15:56 +0000)]
* fhandler_disk_file.cc (fhandler_disk_file::fchmo): Try opening
in query_read mode if query_write fails.
* fhandler_disk_file.cc (fhandler_disk_file::fchown): Ditto.
* fhandler_disk_file.cc (fhandler_disk_file::facl): Ditto.

20 years ago* NEWS (New native configurations): Mention OpenBSD/vax.
kettenis [Thu, 15 Apr 2004 15:10:01 +0000 (15:10 +0000)]
* NEWS (New native configurations): Mention OpenBSD/vax.
* configure.host: Add vax-*-openbsd*.
* config/vax/obsd.mh: New file.
* config/vax/nm-obsd.h: New file.

20 years ago* vax-tdep.c: Include "regset.h".
kettenis [Thu, 15 Apr 2004 15:03:29 +0000 (15:03 +0000)]
* vax-tdep.c: Include "regset.h".
(vax_supply_gregset): New function.
(vax_gregset): New variable.
(vax_regset_from_core_section): New function.
(vax_gdbarch_init): Set regset_from_core_section.
* Makefile.in (vax-tdep.o): Update dependencies.

20 years ago2004-04-15 Andrew Cagney <cagney@redhat.com>
cagney [Thu, 15 Apr 2004 14:29:18 +0000 (14:29 +0000)]
2004-04-15  Andrew Cagney  <cagney@redhat.com>

* observer.c (normal_stop_subject, observer_notify_normal_stop)
(observer_normal_stop_notification_stub)
(observer_attach_normal_stop, observer_detach_normal_stop):
Delete, replaced by #include "observer.inc".
* infrun.c (normal_stop): Pass "stop_bpstat" to
observer_notify_normal_stop.
* Makefile.in (observer_inc): Define.
(observer.o): Update dependencies.
(observer.h, observer.inc): New rules.
* observer.h: Delete file.
* observer.sh: New file.

Index: doc/ChangeLog
2004-04-08  Andrew Cagney  <cagney@redhat.com>

* observer.texi (GDB Observers): Rework, provide generic observer
definitions and then a list of observable events.

20 years ago* vax-tdep.c (vax_frame_cache): Fix typo.
kettenis [Thu, 15 Apr 2004 12:40:26 +0000 (12:40 +0000)]
* vax-tdep.c (vax_frame_cache): Fix typo.

20 years ago2004-04-15 Danny Smith <dannysmith@users.sourceforge.net>
infidel [Thu, 15 Apr 2004 11:51:00 +0000 (11:51 +0000)]
2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>

* include/wingdi.h (RGB): Correct macro.

20 years agoTreat adds and subs as a special case
nickc [Thu, 15 Apr 2004 08:55:27 +0000 (08:55 +0000)]
Treat adds and subs as a special case

20 years agoCatch NULL bfd pointers passed to bfd_archive_filename
nickc [Thu, 15 Apr 2004 08:48:55 +0000 (08:48 +0000)]
Catch NULL bfd pointers passed to bfd_archive_filename

20 years ago * elf64-sparc.c (sparc64_elf_check_relocs): Fix thinko last change.
amodra [Thu, 15 Apr 2004 06:03:59 +0000 (06:03 +0000)]
* elf64-sparc.c (sparc64_elf_check_relocs): Fix thinko last change.

20 years ago * elflink.c (_bfd_elf_merge_symbol): Treat weak as strong only
amodra [Thu, 15 Apr 2004 02:55:20 +0000 (02:55 +0000)]
* elflink.c (_bfd_elf_merge_symbol): Treat weak as strong only
when it is a definition.

20 years agogas/
hjl [Thu, 15 Apr 2004 01:49:21 +0000 (01:49 +0000)]
gas/

2004-04-14  H.J. Lu  <hongjiu.lu@intel.com>

* config/tc-generic.c: Add some comments.

ld/testsuite/

2004-04-14  H.J. Lu  <hongjiu.lu@intel.com>

* ld-scripts/assert.s: Add a newline.
* ld-scripts/data.s: Likewise.

20 years ago*** empty log message ***
gdbadmin [Thu, 15 Apr 2004 00:00:33 +0000 (00:00 +0000)]
*** empty log message ***

20 years agodaily update
amodra [Thu, 15 Apr 2004 00:00:06 +0000 (00:00 +0000)]
daily update

20 years ago * cpu/iq2000.opc (parse_jtargq10): Add ATTRIBUTE_UNUSED on unused args.
scox [Wed, 14 Apr 2004 21:29:33 +0000 (21:29 +0000)]
* cpu/iq2000.opc (parse_jtargq10): Add ATTRIBUTE_UNUSED on unused args.
(parse_jtargq10, iq2000_cgen_isa_register, parse_mlo16): Declare.

20 years ago Fix case.
corinna [Wed, 14 Apr 2004 21:16:31 +0000 (21:16 +0000)]
Fix case.

20 years ago * ntdll.h: Fix copyright date.
corinna [Wed, 14 Apr 2004 21:11:43 +0000 (21:11 +0000)]
* ntdll.h: Fix copyright date.
* sec_acl.cc (acl_worker): delete allocated fhandler.
* syscalls.cc (chown_worker): Ditto.
(chmod): Ditto.
(stat_worker): Use get_namehash instead of hash_path_name.

20 years ago * sec_acl.cc (getacl): Avoid compiler warning.
corinna [Wed, 14 Apr 2004 20:16:27 +0000 (20:16 +0000)]
* sec_acl.cc (getacl): Avoid compiler warning.
* security.cc (write_sd): Ditto.  Fix error handling.

20 years ago* NEWS (New native configurations): Mention NetBSD/vax.
kettenis [Wed, 14 Apr 2004 19:19:07 +0000 (19:19 +0000)]
* NEWS (New native configurations): Mention NetBSD/vax.
* configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
* config/vax/nbsdelf.mh: New file.
* config/vax/nbsdaout.mh: New file.
* config/vax/nm-nbsd.h: New file.
* config/vax/nm-nbsdaout.h: New file.

20 years ago* vaxnbsd-tdep.c: New file.
kettenis [Wed, 14 Apr 2004 18:02:41 +0000 (18:02 +0000)]
* vaxnbsd-tdep.c: New file.
* Makefile.in (vaxnbsd-tdep.o): New dependency.
* configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
* config/vax/nbsd.mt: New file.
* config/vax/tm-nbsd.h: New file.

20 years ago* Makefile.in (vaxbsd-nat.o): New dependency.
kettenis [Wed, 14 Apr 2004 17:52:01 +0000 (17:52 +0000)]
* Makefile.in (vaxbsd-nat.o): New dependency.

20 years ago* vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
kettenis [Wed, 14 Apr 2004 17:48:36 +0000 (17:48 +0000)]
* vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
* vax-tdep.c (vax_store_arguments): Remove struct_return and
struct_addr arguments.  Don't push return value address.
(vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
arguments to vax_store_arguments.  Store return value address in
R1.
(vax_store_struct_return, vax_extract_return_value)
(vax_store_return_value): Remove functions.
(vax_return_value): New function.
(vax_gdbarch_init): Set return value.  Don't set
deprecated_store_struct_return, deprecated_extract_struct_return
and deprecated_store_return_value.

20 years ago * syscalls.cc (fstat64): Use get_namehash instead of hash_path_name.
corinna [Wed, 14 Apr 2004 16:51:27 +0000 (16:51 +0000)]
* syscalls.cc (fstat64): Use get_namehash instead of hash_path_name.

20 years ago * fhandler.cc (fhandler_base::open): Simplify access evaluation
corinna [Wed, 14 Apr 2004 16:36:25 +0000 (16:36 +0000)]
* fhandler.cc (fhandler_base::open): Simplify access evaluation
expression.
(fhandler_base::facl): New method.
* fhandler.h: Declare facl method in fhandler_base,
fhandler_disk_file and fhandler_virtual.
* fhandler_disk_file.cc (fhandler_disk_file::facl): New method.
* fhandler_virtual.cc (fhandler_virtual::facl): New method.
* sec_acl.cc: Remove forward declaration for aclsort32 and acl32.
(setacl): Remove static.  Add and use handle parameter.
(getacl): Ditto.
(acl_worker): Reorganize to call fhandler's facl method eventually.
(facl32): Ditto.
* security.cc (get_nt_object_security): Remove static.
* security.h: Add extern declarations for get_nt_object_security,
aclsort32, acl32, getacl and setacl.

Apply missing syscalls.cc patch and ChangeLog of previous check in.
* syscalls.cc (chown_worker): Reorganize to call fhandler's fchown
method eventually.
(fchown): Ditto.

20 years ago * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
schwab [Wed, 14 Apr 2004 15:18:05 +0000 (15:18 +0000)]
* ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
value buffer.
* libunwind-frame.c (libunwind_frame_prev_register): Likewise.

20 years ago * fhandler.cc (fhandler_base::open): Accomodate query_write_control
corinna [Wed, 14 Apr 2004 13:40:06 +0000 (13:40 +0000)]
* fhandler.cc (fhandler_base::open): Accomodate query_write_control
query_state.
(fhandler_base::fchown): New method.
* fhandler.h: Declare fchown method in fhandler_base,
fhandler_disk_file and fhandler_virtual.
(enum query_state): Add query_write_control.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Set query_state
to query_write_control.  Only remove FILE_ATTRIBUTE_READONLY if not
setting security descriptor.
(fhandler_disk_file::fchown): New method.
* fhandler_virtual.cc (fhandler_virtual::fchown): New method.
* sec_acl.cc (setacl): Call write_sd with additional handle attribute.
* security.cc (write_sd): Take handle argument.  Only request owner
if getting SE_RESTORE_NAME privilege failed.  Only open file if
NtSetSecurityObject failed or handle is NULL.
(set_nt_attribute): Call write_sd with additional handle attribute.
* security.h (write_sd): Declare with additional handle argument.

20 years ago* vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
kettenis [Wed, 14 Apr 2004 10:58:39 +0000 (10:58 +0000)]
* vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
(vax_unwind_dummy_id): New functions.
(vax_push_dummy_frame, vax_pop_frame): Remove functions.
(vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
variables.
(vax_fix_call_dummy): Remove function.
(vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
call_dummy_location, deprecated_call_dummy_words,
deprecated_sizeof_call_dummy_words,
deprecated_call_dummy_breakpoint_offset,
deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
and deprecated_dummy_write_sp.

20 years ago2004-04-14 Robert Wruck <rwruck@users.sourceforge.net>
dannysmith [Wed, 14 Apr 2004 10:53:16 +0000 (10:53 +0000)]
2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>

* include/ddk/winddk.h (RtlEqualLuid): Correct macro.

20 years ago * autoload.cc (NtSetSecurityObject): Add.
corinna [Wed, 14 Apr 2004 10:20:25 +0000 (10:20 +0000)]
* autoload.cc (NtSetSecurityObject): Add.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Only request
READ_CONTROL rights when opening the file.
* ntdll.h (NtSetSecurityObject): Add declaration.
* security.cc (write_sd): Call NtSetSecurityObject instead of
BackupWrite.
(get_nt_object_security): Don't free security descriptor here.

* syscalls.cc (ttyname): Use buffer of length TTY_NAME_MAX + 1.
* sysconf.cc (sysconf): Handle _SC_TTY_NAME_MAX request.
* include/limits.h: Define TTY_NAME_MAX and _POSIX_TTY_NAME_MAX.

20 years ago * elf32-sparc.c (elf32_sparc_relocate_section): Don't abort
amodra [Wed, 14 Apr 2004 09:50:07 +0000 (09:50 +0000)]
* elf32-sparc.c (elf32_sparc_relocate_section): Don't abort
when statically linking PIC code.
* elf64-sparc.c (sparc64_elf_relocate_section): Likewise.

20 years ago * cygwin.din: Export rand_r and ttyname_r.
corinna [Wed, 14 Apr 2004 09:12:03 +0000 (09:12 +0000)]
* cygwin.din: Export rand_r and ttyname_r.
* syscalls.cc (ttyname_r): New function.
(ttyname): Move functionality to ttyname_r.  Call it from here.
* include/cygwin/version.h: Bump API minor number.

20 years ago * doc/c-mips.texi (-m{no-,}fix-vr4120): Renamed from
rsandifo [Wed, 14 Apr 2004 07:48:48 +0000 (07:48 +0000)]
* doc/c-mips.texi (-m{no-,}fix-vr4120): Renamed from
-{no-}mfix-vr4122-bugs.
* config/tc-mips.c (mips_fix_vr4120): Renamed from mips_fix_4122_bugs.
(append_insn, mips_emit_delays): Update accordingly.
(OPTION_FIX_VR4120, OPTION_NO_FIX_VR4120): Renamed from *VR4122.
(md_longopts): Change -{no-,}mfix-vr4122-bugs to -m{no-,}fix-vr4120.
(md_parse_option): Update after above changes.
(md_show_usage): Add -mfix-vr4120.

20 years ago * binutils-all/readelf.ss-mips: Allow named section symbols.
rsandifo [Wed, 14 Apr 2004 07:38:12 +0000 (07:38 +0000)]
* binutils-all/readelf.ss-mips: Allow named section symbols.

20 years ago * gas/elf/section2.e-mips: Allow named section symbols.
rsandifo [Wed, 14 Apr 2004 07:37:18 +0000 (07:37 +0000)]
* gas/elf/section2.e-mips: Allow named section symbols.
* gas/mips/{,el}empic.d, gas/mips/mips{,el}16-[ef].d: Likewise.

20 years ago * strings.c (print_strings): Cast file_off to unsigned long in
amodra [Wed, 14 Apr 2004 05:49:59 +0000 (05:49 +0000)]
* strings.c (print_strings): Cast file_off to unsigned long in
printf arg list.

20 years agomerge from gcc
dj [Wed, 14 Apr 2004 03:12:51 +0000 (03:12 +0000)]
merge from gcc

20 years ago2004-04-14 Pierre Humblet <pierre.humblet@ieee.org>
phumblet [Wed, 14 Apr 2004 03:07:59 +0000 (03:07 +0000)]
2004-04-14  Pierre Humblet <pierre.humblet@ieee.org>

        * path.h (path_conv::set_symlink): Add argument.
        (path_conv::get_symlink_length): New method.
        (path_conv::symlink_length): New member.
        * path.cc (path_conv::check): Pass symlen to set_symlink.
        * fhandler_disk_file.cc (fhandler_base::fstat_helper): For symlinks
        set st_size from get_symlink_length.

20 years agoTypo fix: s/otheriwse/otherwise/
bje [Wed, 14 Apr 2004 01:26:14 +0000 (01:26 +0000)]
Typo fix: s/otheriwse/otherwise/

20 years ago*** empty log message ***
gdbadmin [Wed, 14 Apr 2004 00:00:32 +0000 (00:00 +0000)]
*** empty log message ***

20 years agodaily update
amodra [Wed, 14 Apr 2004 00:00:05 +0000 (00:00 +0000)]
daily update

20 years ago * security.cc (set_nt_attribute): Only call get_nt_object_security
corinna [Tue, 13 Apr 2004 20:45:13 +0000 (20:45 +0000)]
* security.cc (set_nt_attribute): Only call get_nt_object_security
if handle is NULL.

20 years ago * dir.cc (mkdir): Call set_file_attribute with additional handle
corinna [Tue, 13 Apr 2004 20:36:58 +0000 (20:36 +0000)]
* dir.cc (mkdir): Call set_file_attribute with additional handle
argument.
* fhandler.cc (fhandler_base::fchmod): New method.
* fhandler.h: Declare fchmod method in fhandler_base,
fhandler_disk_file and fhandler_virtual.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): New method.
(fhandler_base::open_fs): Call set_file_attribute with additional
handle argument.
* fhandler_virtual.cc (fhandler_virtual::fchmod): New method.
* path.cc (symlink_worker): Call set_file_attribute with additional
handle argument.
* security.cc (get_nt_object_security): New function.
(get_nt_object_attribute): Call get_nt_object_security.
(set_nt_attribute): Add handle argument.  Call get_nt_object_security
first, read_sd only if that fails.
(set_file_attribute): Add handle argument.
* security.h (set_file_attribute): Declare with additional handle
argument.
* syscalls.cc (stat_suffixes): Move to beginning of file.
(chown_worker): Call set_file_attribute with additional handle argument.
(chmod): Reorganize to call fhandler's fchmod method eventually.
(fchmod): Ditto.

20 years ago * doc/as.texinfo (Sub-Sections): Conditionalize COFF-specific use
bwilson [Tue, 13 Apr 2004 17:56:12 +0000 (17:56 +0000)]
* doc/as.texinfo (Sub-Sections): Conditionalize COFF-specific use
of .section directive; add a reference to the ELF .subsection
directive.

20 years agoAdd test of M32R seth instruction
nickc [Tue, 13 Apr 2004 16:57:50 +0000 (16:57 +0000)]
Add test of M32R seth instruction

20 years agoFix inifnite loop problem with M32R port
nickc [Tue, 13 Apr 2004 16:47:57 +0000 (16:47 +0000)]
Fix inifnite loop problem with M32R port

20 years ago2004-04-13 David Carlton <carlton@kealia.com>
carlton [Tue, 13 Apr 2004 16:13:32 +0000 (16:13 +0000)]
2004-04-13  David Carlton  <carlton@kealia.com>

* MAINTAINERS: Move myself to "paper trail" section.

20 years agomerge from gcc
dj [Tue, 13 Apr 2004 15:23:19 +0000 (15:23 +0000)]
merge from gcc

20 years agomerge from gcc
dj [Tue, 13 Apr 2004 15:23:08 +0000 (15:23 +0000)]
merge from gcc

20 years ago * autoload.cc (NtQuerySecurityObject): Add.
corinna [Tue, 13 Apr 2004 12:14:58 +0000 (12:14 +0000)]
* autoload.cc (NtQuerySecurityObject): Add.
* ntdll.h (STATUS_BUFFER_TOO_SMALL): Add definition.
(NtQuerySecurityObject): Add declaration.
* security.cc (get_nt_object_attribute): Always use
NtQuerySecurityObject to retrieve security descriptor.

20 years ago * winsup.api/devdsp.c (forkrectest): Move synchronization with child
corinna [Tue, 13 Apr 2004 09:40:02 +0000 (09:40 +0000)]
* winsup.api/devdsp.c (forkrectest): Move synchronization with child
so that test passes also under high CPU load.
(forkplaytest): Ditto.
(abortplaytest): New function to test ioctl code SNDCTL_DSP_RESET.

20 years ago * fhandler_dsp.cc (fhandler_dev_dsp::Audio_out::stop): Add optional
corinna [Tue, 13 Apr 2004 09:38:32 +0000 (09:38 +0000)]
* fhandler_dsp.cc (fhandler_dev_dsp::Audio_out::stop): Add optional
boolean argument so that playing can be stopped without playing
pending buffers.
(fhandler_dev_dsp::ioctl): Stop playback immediately for
SNDCTL_DSP_RESET.  Do not reset audio parameters in this case.
Add support for ioctl SNDCTL_DSP_GETISPACE.
(fhandler_dev_dsp::Audio_out::emptyblocks): Now returns the number of
completely empty blocks.
(fhandler_dev_dsp::Audio_out::buf_info): p->fragments is now the number
of completely empty blocks. This conforms with the OSS specification.
(fhandler_dev_dsp::Audio_out::parsewav): Ignore wave headers that are
not aligned on four byte boundary.
(fhandler_dev_dsp::Audio_in::buf_info): New, needed for
SNDCTL_DSP_GETISPACE.

20 years ago * winsup.h (IMPLEMENT_STATUS_FLAG): New macro to define status flag
corinna [Tue, 13 Apr 2004 09:04:21 +0000 (09:04 +0000)]
* winsup.h (IMPLEMENT_STATUS_FLAG): New macro to define status flag
accessor methods unambiguously.
* fhandler.h: Use IMPLEMENT_STATUS_FLAG throughout where possible.
* fhandler_termios.cc (fhandler_termios::tcinit): Call corrected
accessor for initialized status flag.
* mtinfo.h (class mtinfo_drive): Use IMPLEMENT_STATUS_FLAG throughout.
* path.cc (fs_info::update): Remove duplicate call to flags().
* path.h (struct fs_info): Use IMPLEMENT_STATUS_FLAG where possible.
(path_conv::is_auto_device): Fix spacing.
* tty.h (class tty_min): Use IMPLEMENT_STATUS_FLAG throughout.

20 years agoUpdate libtool entry.
bje [Tue, 13 Apr 2004 03:49:20 +0000 (03:49 +0000)]
Update libtool entry.

20 years ago* thread.cc (pthread::thread_init_wrapper): Wait later to get more parallel
cgf [Tue, 13 Apr 2004 03:25:49 +0000 (03:25 +0000)]
* thread.cc (pthread::thread_init_wrapper): Wait later to get more parallel
behavior.

20 years ago* thread.cc (pthread::create): Use thread mutex to control synchronization
cgf [Tue, 13 Apr 2004 02:59:19 +0000 (02:59 +0000)]
* thread.cc (pthread::create): Use thread mutex to control synchronization
rather than creating a suspended thread.  Wait for "cancellation event" to
indicate that started thread has been properly initialized.
(pthread::thread_init_wrapper): Use set_tls_self_pointer() to set tid and
cygtls.  Signal with cancel_event when done.

20 years agodaily update
amodra [Tue, 13 Apr 2004 00:00:08 +0000 (00:00 +0000)]
daily update

20 years ago*** empty log message ***
gdbadmin [Tue, 13 Apr 2004 00:00:03 +0000 (00:00 +0000)]
*** empty log message ***

20 years ago2004-04-12 Pierre Humblet <pierre.humblet@ieee.org>
phumblet [Mon, 12 Apr 2004 23:59:23 +0000 (23:59 +0000)]
2004-04-12  Pierre Humblet <pierre.humblet@ieee.org>

        * path.cc (path_conv::check): Fix "tail filling" logic.

20 years ago * gdb.base/sep.exp: Fix typo in comment.
brobecke [Mon, 12 Apr 2004 20:22:54 +0000 (20:22 +0000)]
    * gdb.base/sep.exp: Fix typo in comment.

20 years ago * gdb.base/sep.c: New file.
brobecke [Mon, 12 Apr 2004 20:17:17 +0000 (20:17 +0000)]
    * gdb.base/sep.c: New file.
        * gdb.base/sep-proc.c: New file.
        * gdb.base/sep.exp: New testcase.

20 years ago* vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
kettenis [Mon, 12 Apr 2004 19:49:47 +0000 (19:49 +0000)]
* vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
"trad-frame.h".
(vax_frame_init_saved_regs): Remove function.
(vax_sigtramp_saved_pc): Remove function.
(vax_frame_saved_pc): Remove function.
(vax_frame_args_address): Remove function.
(vax_frame_num_args): Rewrite.
(vax_frame_chain): Remove function.
(vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
VAX_FP_REGNUM.
(vax_pop_frame): Likewise.
(vax_saved_pc_after_call): Remove function.
(struct vax_frame_cache): New structure.
(vax_frame_cache): New function.
(vax_frame_this_id): New function.
(vax_frame_prev_register): New function.
(vax_frame_unwind): New variable.
(vax_frame_sniffer): New function.
(vax_frame_base_address): New function.
(vax_frame_args_address): New function.
(vax_frame_base): New variable.
(vax_unwind_pc): New function.
(vax_gdbarch_init): Don't set deprecated_init_frame_pc,
deprecated_fp_regnum, deprecated_saved_pc_after_call,
deprecated_frame_chain, deprecated_frame_saved_pc,
deprecated_frame_args_address and
deprecated_frame_init_saved_regs.
* Makefile.in (vax-tdep.o): Update dependencies.

20 years ago* vaxbsd-nat.c: New file.
kettenis [Mon, 12 Apr 2004 16:54:02 +0000 (16:54 +0000)]
* vaxbsd-nat.c: New file.

20 years ago* vax-tdep.h: Update copyright year. Adjust comments.
kettenis [Mon, 12 Apr 2004 16:49:34 +0000 (16:49 +0000)]
* vax-tdep.h: Update copyright year.  Adjust comments.
(VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
(vax_regnum): New enum.  Replacing...
(VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
(VAX_PS_REGNUM): ... these removed macros.
* vax-tdep.c (vax_register_name): Remove prototype.
(vax_register_name): Reorganize somewhat.  Use ARRAY_SIZE.
(vax_register_byte, vax_register_raw_size,
vax_register_virtual_size, vax_register_virtual_type): Remove
functions.
(vax_register_type): New function.
(vax_breakpoint_from_pc): Reorganize.
(vax_gdbarch_init): Set register_type.  Don't set
deprecated_register_size, deprecated_register_bytes,
deprecated_register_byte, deprecated_register_raw_size,
deprecated_max_register_raw_size,
deprecated_register_virtual_size,
deprecated_max_register_virtual_size and
deprecated_register_virtual_type.  Add comment on stack direction.

20 years agoFix botched commit:
kettenis [Mon, 12 Apr 2004 16:17:17 +0000 (16:17 +0000)]
Fix botched commit:

* amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
AMD64_FS_REGNUM and AMD64_GS_REGNUM.

20 years ago*** empty log message ***
gdbadmin [Mon, 12 Apr 2004 00:00:05 +0000 (00:00 +0000)]
*** empty log message ***

20 years agodaily update
amodra [Mon, 12 Apr 2004 00:00:05 +0000 (00:00 +0000)]
daily update

20 years ago* cygheap.h: Replace inexplicably removed closing brace.
cgf [Sun, 11 Apr 2004 17:36:05 +0000 (17:36 +0000)]
* cygheap.h: Replace inexplicably removed closing brace.

20 years ago* amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
kettenis [Sun, 11 Apr 2004 17:13:23 +0000 (17:13 +0000)]
* amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
AMD64_FS_REGNUM, AMD64_GS_REGNUM.

20 years ago2004-04-11 Chris Demetriou <cgd@broadcom.com>
cgd [Sun, 11 Apr 2004 07:12:13 +0000 (07:12 +0000)]
2004-04-11  Chris Demetriou  <cgd@broadcom.com>

        * utils-fpu.inc (enable_fpu, ckm_fp_cc): New macros.
        (clrset_fp_cc): Fix mask used for upper 7 condition codes.
        * utils-mdmx.inc: Include utils-fpu.inc.
        (enable_mdmx): Use enable_fpu.

20 years ago2004-04-10 Chris Demetriou <cgd@broadcom.com>
cgd [Sun, 11 Apr 2004 06:28:08 +0000 (06:28 +0000)]
2004-04-10  Chris Demetriou  <cgd@broadcom.com>

        * utils-fpu.inc: New file.
        * utils-mdmx.inc: New file.
        * mdmx-ob.s: New file.
        * mdmx-ob-sb1.s: New file.
        * basic.exp: Run new mdmx-ob and mdmx-ob-sb1 tests.

20 years ago2004-04-10 Randolph Chung <tausq@debian.org>
tausq [Sun, 11 Apr 2004 04:25:26 +0000 (04:25 +0000)]
2004-04-10  Randolph Chung  <tausq@debian.org>

* MAINTAINERS (write after approval): Add myself.

20 years ago2004-04-07 Randolph Chung <tausq@debian.org>
tausq [Sun, 11 Apr 2004 04:20:49 +0000 (04:20 +0000)]
2004-04-07  Randolph Chung  <tausq@debian.org>

* hppa-tdep.c (hppa_inner_than): Remove.
(is_pa_2): Remove unused static variable.
(hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.

20 years ago /bfd/ChangeLog
ths [Sun, 11 Apr 2004 04:07:42 +0000 (04:07 +0000)]
/bfd/ChangeLog
* config.bfd: Remove mips*-*-mach3* and mips*-dec-mach3* targets.
* configure.in: Remove mips-dec-bsd*, mips-dec-mach3*, mips-*-mach3*
targets amd aout_mips_big_vec, aout_mips_little_vec target vectors.
* configure: Regenerate.

/gas/ChangeLog
* Makefile.am: Remove mips from aout targets.
* Makefile.in: Regenerate.
* configure.in: Remove mips-dec-bsd* target.
* configure: Regenerate.

/ld/ChangeLog
* configure.host: Remove mips*-dec-bsd* target.
* configure.tgt: Likewise.

20 years ago* cygheap.h (CYGHEAP_SLOP): Reduce drastically to avoid collisions.
cgf [Sun, 11 Apr 2004 04:07:17 +0000 (04:07 +0000)]
* cygheap.h (CYGHEAP_SLOP): Reduce drastically to avoid collisions.

20 years ago* dtable.cc (dtable::extend): Change order of memcpy and cfree.
cgf [Sun, 11 Apr 2004 04:00:01 +0000 (04:00 +0000)]
* dtable.cc (dtable::extend): Change order of memcpy and cfree.

20 years ago*** empty log message ***
gdbadmin [Sun, 11 Apr 2004 00:00:05 +0000 (00:00 +0000)]
*** empty log message ***

20 years agodaily update
amodra [Sun, 11 Apr 2004 00:00:05 +0000 (00:00 +0000)]
daily update

20 years ago* language.h (language_defn): Add new la_post_parser field.
hilfingr [Sat, 10 Apr 2004 22:09:59 +0000 (22:09 +0000)]
* language.h (language_defn): Add new la_post_parser field.
* parser-defs.h (null_post_parser): New declaration (default for
la_post_parser).

* parse.c (parse_exp_1): Move code to parse_exp_in_context and
insert call to that function.
(parse_exp_in_context): New function, including code formerly in
parse_exp_1.  Calls language-dependent post-parser after
prefixification.
(parse_expression_in_context): New exported function.
(null_post_parser): New definition.
* expression.h (parse_expression_in_context): Add declaration.

* p-lang.c (pascal_language_defn): Add trivial post-parser.
* c-lang.c (c_language_defn): Ditto.
(cplus_language_defn): Ditto.
(asm_language_defn): Ditto.
(minimal_language_defn): Ditto.
* f-lang.c (f_language_defn): Ditto.
* jv-lang.c (java_language_defn): Ditto.
* language.c (unknown_language_defn): Ditto.
(auto_language_defn): Ditto.
(local_language_defn): Ditto.
* m2-lang.c (m2_language_defn): Ditto.
* scm-lang.c (scm_language_defn): Ditto.
* obj-lang.c (objc_language_defn): Ditto.

20 years ago * syscalls.cc (sync): Define void according to SUSv3.
corinna [Sat, 10 Apr 2004 20:40:40 +0000 (20:40 +0000)]
* syscalls.cc (sync): Define void according to SUSv3.

20 years ago * libc/include/sys/unistd.h (sync): Define void on Cygwin according
corinna [Sat, 10 Apr 2004 20:39:47 +0000 (20:39 +0000)]
* libc/include/sys/unistd.h (sync): Define void on Cygwin according
to SUSv3.