gdb/ChangeLog:
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2006-01-20 Jim Blandy <jimb@redhat.com>
2
3 * configure.ac: Add -Wno-pointer-sign to list of build warnings.
4 * configure: Regenerated.
5
6 2006-01-20 Daniel Jacobowitz <dan@codesourcery.com>
7
8 * MAINTAINERS: Overhaul.
9
10 2006-01-18 Mark Kettenis <kettenis@gnu.org>
11
12 Based on a previous patch form Michal Ludvig:
13 * amd64-tdep.c (amd64_sse_type): Remove.
14 (amd64_register_info): Use i386_eflags_type and i386_sse_type
15 where appropriate.
16 (AMD64_NUM_REGS): Use ARRAY_SIZE.
17 (amd64_register_type): Remove code to build amd_sse_type.
18 * i386-tdep.c (i386_eflag_type): New variable.
19 (i386_mmx_type, i386_sse_type): Make global.
20 (i386_init_types): New function.
21 (i386_build_mmx_type, i386_build_sse_type): Remove functions.
22 (i386_register_type): Return i386_eflag_type, i386_sse_type and
23 i386_mmx_type when appropriate.
24 (_initialize_i386_tdep): Call i386_init_types.
25 * i386-tdep.h (i386_eflags_type, i386_mmx_type, i386_sse_type):
26 Declare extern.
27
28 Based on a previous patch form Michal Ludvig:
29 * gdbtypes.c (append_flags_type_flag, init_flags_type): New
30 functions.
31 (is_integral_type, rank_one_type, recursive_dump_type): Add
32 support for TYPE_CODE_FLAGS.
33 * gdbtypes.h (enum type_code): Add TYPE_CODE_FLAGS.
34 (append_flags_type_field, init_flags_type): New prototypes.
35 * ada-valprint.c (ada_val_print_1): Add support for
36 TYPE_CODE_FLAGS.
37 * c-valprint.c (c_val_print): Likewise.
38 * f-valprint.c (f_val_print): Likewise.
39 * p-valprint.c (pascal_val_print): Likewise.
40 * valprint.c (val_print_type_code_flags): New function.
41 * valprint.h (val_print_type_code_flags): New prototype.
42 * value.c (unpack_long, value_from_longest): Add support for
43 TYPE_CODE_FLAGS.
44
45 2006-01-17 Christopher Faylor <cgf@timesys.com>
46
47 * MAINTAINERS: Very belatedly remove myself from from the list of
48 people caught up in the paper trail.
49
50 2006-01-17 Jim Blandy <jimb@redhat.com>
51
52 * symtab.h (struct general_symbol_info): Use gdb_byte for
53 value.bytes.
54 * stabsread.c (define_symbol): Use gdb_byte for the buffer holding
55 a floating-point constant's value.
56 * dwarf2read.c (dwarf2_const_value): Remove casts of value buffer
57 to char *.
58 * findvar.c (read_var_value): Eliminate needless temporary.
59
60 * dwarf2-frame.c (dwarf2_read_section): Update forward declaration
61 to match prior change to dwarf2_read_section's type.
62
63 2006-01-16 Paul Gilliam <pgilliam@us.ibm.com>
64
65 * ppc-tdep.h (PPC_MAX_EPILOGUE_INSTRUCTIONS): New define.
66 * rs6000-tdep.c (insn_changes_sp_or_jumps)
67 (rs6000_in_function_epilogue_p): New functions.
68 (rs6000_gdbarch_init): Set in_function_epilogue_p.
69
70 2006-01-17 Jim Blandy <jimb@redhat.com>
71
72 * dwarf2read.c (struct dwarf2_per_objfile, struct comp_unit_head)
73 (struct line_header, struct partial_die_info, struct dwarf_block):
74 Use gdb_byte for members that refer to Dwarf section contents.
75 (dwarf2_read_abbrevs, dwarf2_read_section, dwarf_decode_lines,
76 dwarf_decode_macros, load_comp_unit, load_partial_dies,
77 locate_pdi_sibling, partial_read_comp_unit_head, peek_die_abbrev,
78 read_1_byte, read_1_signed_byte, read_2_bytes, read_4_bytes,
79 read_8_bytes, read_address, read_attribute, read_attribute_value,
80 read_comp_unit, read_comp_unit_head, read_die_and_children,
81 read_die_and_siblings, read_full_die, read_indirect_string,
82 read_initial_length, read_n_bytes, read_offset, read_partial_die,
83 read_signed_leb128, read_string, read_unsigned_leb128,
84 skip_children, skip_leb128, skip_one_die): Same.
85
86 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
87
88 * complaints.c (stop_whining): Make signed.
89 * linux-thread-db.c (thread_db_store_registers): Use gdb_byte.
90
91 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
92
93 * dwarf2read.c, remote-fileio.c, remote.h: Update copyright
94 notices.
95
96 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
97
98 * dwarf2read.c (peek_die_abbrev, read_address, read_initial_length)
99 (read_offset): Change BYTES_READ argument to unsigned int.
100 (dwarf2_build_psymtabs_easy, read_comp_unit_head)
101 (create_all_comp_units, dwarf2_get_pc_bounds)
102 (dwarf_decode_line_header, var_decode_location)
103 (dwarf_decode_macros): Change local BYTES_READ variables to
104 unsigned int.
105 (read_indirect_string): Remove obsolete cast.
106
107 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
108
109 * remote-fileio.c (remote_fileio_return_success): Take a gdb_byte
110 argument.
111 (remote_fileio_func_open, remote_fileio_func_rename)
112 (remote_fileio_func_unlink, remote_fileio_func_stat)
113 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
114 (remote_fileio_func_system): Cast the arguments to
115 remote_read_bytes and remote_write_bytes.
116 (remote_fileio_func_read, remote_fileio_func_write): Use a
117 gdb_byte buffer.
118 * remote.h (remote_read_bytes, remote_write_bytes): Update
119 prototypes.
120 * remote.c (hex2bin, bin2hex): Use gdb_byte for the BIN argument.
121 (threadref_to_int): Replace bogus char * cast.
122 (remote_unpack_thread_info_response): Use int for tag.
123 (remote_threads_extra_info, remote_check_symbols): Cast string
124 arguments to hex2bin.
125 (remote_wait): Use a char buffer for packets and a gdb_byte
126 buffer for registers.
127 (remote_async_wait): Likewise.
128 (remote_prepare_to_store, store_register_using_P)
129 (remote_store_registers): Use gdb_byte buffers.
130 (remote_write_bytes, remote_read_bytes): Use a gdb_byte pointer
131 for MYADDR and char buffers for strings.
132 (remote_xfer_partial): Add casts for string operations on READBUF.
133 (remote_rcmd): Cast strings passed to bin2hex.
134
135 2006-01-16 Mark Mitchell <mark@codesourcery.com>
136
137 * aclocal.m4: Regenerate.
138
139 2006-01-16 Nathan Sidwell <nathan@codesourcery.com>
140
141 * mt-tdep.c (enum mt_gdb_regnums): Add MT_COPRO_PSEUDOREG_ARRAY,
142 MT_COPRO_PSEUDOREG_DIM_1, MT_COPRO_PSEUDOREG_DIM_2,
143 MT_COPRO_PSEUDOREG_REGS members. Adjust MT_NUM_PSEUDO_REGS.
144 (mt_register_name): Lazily synthesize name for coprocessor pseudo
145 array registers.
146 (mt_copro_register_type): New. Broken out of ...
147 (mt_register_type): ... here. Use it. Deal with coprocessor
148 pseudo array.
149 (mt_select_coprocessor): New.
150 (mt_pseudo_register_read, mt_pseudo_register_write): Deal with
151 coprocessor pseudo array.
152
153 2006-01-16 Andrew Stubbs <andrew.stubbs@st.com>
154
155 * breakpoint.c (insert_breakpoints): Check that a thread exists
156 before inserting thread specific breakpoints.
157
158 2006-01-15 Mark Kettenis <kettenis@gnu.org>
159
160 * osabi.c (generic_elf_osabi_sniffer): Fix typo in previous
161 commit.
162
163 * alpha-tdep.c (alpha_gdbarch_init): Set cannot_step_breakpoint.
164 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Remove.
165 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Remove.
166 * config/alpha/nm-nbsd.h: Remove file.
167 * config/alpha/nm-fbsd.h: Remove file
168 * config/alpha/nbsd.mh (NAT_FILE): Remove.
169 * config/alpha/fbsd.mh (NAT_FILE): Remove.
170
171 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
172
173 * macroexp.c (expand): Initialize argc.
174 * stabsread.c (read_type): Handle errors from read_args.
175 (read_args): Return NULL for errors.
176
177 2006-01-15 Mark Kettenis <kettenis@gnu.org>
178
179 * osabi.c (generic_elf_osabi_sniffer): Use memcmp instead of
180 strcmp to compare string to a byte buffer.
181
182 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
183
184 * printcmd.c (output_command): Always initialize fmt.size.
185 (printf_command): Use gdb_byte.
186 * symfile.c (separate_debug_file_exists): Use gdb_byte.
187 (load_section_callback, read_target_long_array): Likewise.
188 (simple_read_overlay_table, simple_read_overlay_region_table)
189 (simple_overlay_update_1): Correct calls to read_target_long_array.
190 * valprint.c (partial_memory_read): Change MYADDR to a gdb_byte *.
191 Also change local pointers.
192 (val_print_string): Use gdb_byte.
193
194 2006-01-15 Mark Kettenis <kettenis@gnu.org>
195
196 * alphafbsd-tdep.c: Include "solib-svr4.h".
197 (alphafbsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
198 svr4_lp64_fetch_link_map_offsets.
199 * Makefile.in (alphafbsd-tdep.o): Update dependencies.
200 * config/alpha/fbsd.mt (TDEPFILES): Add corelow.o, solib.o and
201 solib-svr4.o.
202 * config/alpha/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
203 and solib-legacy.o.
204 * config/alpha/nm-fbsd.h: Don't include "solib.h".
205
206 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
207
208 * source.c (_initialize_source): Use add_setshow_integer_cmd.
209
210 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
211
212 * linux-fork.c (delete_fork_command, detach_fork_command): Use
213 PIDGET.
214
215 2006-01-15 Mark Kettenis <kettenis@gnu.org>
216
217 * arm-linux-tdep.c (arm_linux_svr4_fetch_link_map_offsets):
218 Remove.
219 (arm_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
220 svr4_ilp32_fetch_link_map_offsets.
221 * cris-tdep.c (cris_linux_svr4_fetch_link_map_offsets): Remove
222 function.
223 (cris_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
224 svr4_ilp32_fetch_link_map_offsets.
225 * mips-linux-tdep.c (mips_linux_svr4_fetch_link_map_offsets)
226 (mips64_linux_svr4_fetch_link_map_offsets): Remove functions.
227 (mips_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
228 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
229 where appropriate.
230 * nbsd-tdep.c (nbsd_ilp32_solib_svr4_fetch_link_map_offsets):
231 Simply call svr4_ilp32_fetch_link_map_offsets.
232 (nbsd_lp64_solib_svr4_fetch_link_map_offsets): Simply call
233 svr4_lp64_fetch_link_map_offsets.
234 * ppc-linux-tdep.c (ppc_linux_svr4_fetch_link_map_offsets): Remove
235 function.
236 (ppc_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
237 svr4_ilp32_fetch_link_map_offsets.
238 * s390-tdep.c (s390_svr4_fetch_link_map_offsets)
239 (s390x_svr4_fetch_link_map_offsets): Remove functions.
240 (s390_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
241 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
242 where appropriate.
243
244 2006-01-15 Mark Kettenis <kettenis@gnu.org>
245
246 * arm-tdep.c (arm_return_value): Change type of readbuf and
247 writebuf arguments to `gdb_byte *'.
248
249 * s390-tdep.c: Do not include "tm.h" and "../bfd/bfd.h".
250 * Makefile.in (s390-tdep.o): Update dependencies.
251
252 2006-01-14 Mark Kettenis <kettenis@gnu.org>
253
254 * sol2-tdep.h. sol2-tdep.c: New files.
255 * amd64-sol2-tdep.c: Include "sol2-tdep.h".
256 (amd64_sol2_init_abi): Set skip_solib_resolver.
257 * i386-sol2-tdep.c: Include "sol2-tdep.h".
258 (i386_sol2_init_abi): Set skip_solib_resolver.
259 * sparc-sol2-tdep.c: Include "sol2-tdep.h".
260 (sparc32_sol2_init_abi): Set skip_solib_resolver.
261 * sparc64-sol2-tdep.c: Include "sol2-tdep.h".
262 (sparc64_sol2_init_abi): Set skip_solib_resolver.
263 * Makefile.in (sol2_tdep_h): New variable.
264 (ALLDEPFILES): Add sol2-tdep.c.
265 (sol2-tdep.o): New target.
266 (amd64-sol2-tdep.o, i386-sol2-tdep.o, sparc-sol2-tdep.o)
267 (sparc64-sol2-tdep.o): Update dependencies
268 * config/i386/i386sol2.mt (TDEPFILES): Add sol2-tdep.o.
269 * config/i386/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
270 * config/sparc/sol2.mt (TDEPFILES): Add sol2-tdep.o.
271 * config/sparc/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
272
273 * hppa-linux-tdep.c: Fix copyright indentation.
274
275 * hppa-tdep.h (enum hppa_regnum): Add HPPA_FP31R_REGNUM.
276 * hppabsd-nat.c (hppabsd_fpregset_supplies_p)
277 (hppabsd_supply_fpregset, hppabsd_collect_fpregset): New
278 functions.
279 (hppabsd_fetch_registers, hppabsd_store_registers): Handle
280 floating-point registers.
281
282 2006-01-13 Mark Mitchell <mark@codesourcery.com>
283
284 * event-loop.c (gdb_select): Detect file descriptors that have
285 been closed.
286
287 2006-01-13 Mark Kettenis <kettenis@gnu.org>
288
289 * hppabsd-tdep.c (hppabsd_init_abi): Set long_double_bit to 64,
290 and long_double_format accordingly.
291
292 2006-01-12 Paul N. Hilfinger <hilfinger@adacore.com>
293
294 * ada-exp.y (yyerror): Change message to ignore the argument, avoiding
295 translation problems.
296 * ada-lang.c (ada_value_struct_elt): Change interface and handling
297 of errors to avoid translation problem (and less than optimal error
298 messages).
299 (ada_value_tag, ada_tag_name_1, ada_tag_name_2, ada_evaluate_subexp):
300 Use new interface to ada_value_struct_elt.
301 * ada_lang.h (ada_value_struct_elt): Update declaration to new
302 interface.
303
304 * ChangeLog: remove reference to ada-tasks.c from entry of
305 2006-01-07.
306
307 2006-01-11 Mark Kettenis <kettenis@gnu.org>
308
309 * remote.c (get_memory_packet_size, set_thread)
310 (remote_unpack_thread_info_response, remote_get_threadinfo)
311 (parse_threadlist_response, remote_get_threadlist)
312 (remote_current_thread, remote_threads_info)
313 (remote_threads_extra_info, extended_remote_restart, get_offsets)
314 (remote_check_symbols, remote_open_1, remote_detach)
315 (remote_async_wait, remote_fetch_registers)
316 (remote_store_registers, check_binary_download, putpkt_binary)
317 (remote_insert_breakpoint, remote_insert_watchpoint)
318 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
319 (remote_remove_hw_breakpoint, remote_xfer_partial, remote_rcmd)
320 (packet_command): Remove redundant parenthesis.
321
322 2006-01-10 Mark Kettenis <kettenis@gnu.org>
323
324 * corefile.c (read_memory_integer, read_memory_unsigned_integer)
325 (read_memory_typed_address, write_memory)
326 (write_memory_unsigned_integer, write_memory_signed_integer): Use
327 gdb_byte where appropriate.
328
329 * mi/mi-main.c (mi_cmd_data_read_memory): Change type of mbus into
330 'gdb_byte *'.
331
332 * target.h (target_read_memory_partial, target_write_memory_partial):
333 Change second argument to 'gdb_byte *'.
334 * target.c (target_xfer_memory_partial): Change third argument to
335 'gdb_byte *'.
336 (target_read_memory_partial, target_write_memory_partial): Change
337 second argument to 'gdb_byte *'.
338
339 * linespec.c (decode_objc): Make i1 and i2 unsigned.
340 (find_method): Set values.sals to NULL.
341
342 2006-01-09 Mark Kettenis <kettenis@gnu.org>
343
344 * amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
345 of 'char *' in cast.
346
347 2006-01-07 Paul N. Hilfinger <hilfinger@adacore.com>
348
349 * ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup.
350 * ada-lang.c: I18n markup.
351 Editorial: change "can not" => "cannot" throughout.
352
353 2006-01-07 Mark Kettenis <kettenis@gnu.org>
354
355 * Makefile.in: Sort dependencies.
356
357 2006-01-07 Eli Zaretskii <eliz@gnu.org>
358
359 * top.c (control_level): Remove unused variable.
360
361 2006-01-06 Fred Fish <fnf@specifix.com>
362
363 * objfiles.c (source.h): Include.
364 (free_objfile): Update comment about clear_symtab_users().
365 (free_objfile): Check all symtabs of objfile being freed and if
366 one of them is the current source symtab, call
367 clear_current_source_symtab_and_line().
368
369 2006-01-04 Michael Snyder <msnyder@redhat.com>
370
371 Checkpoint/Restart for Linux.
372 * linux-nat.c: Add support for debugging multiple forks.
373 Add #include for linux-fork.h (interface spec).
374 (super_mourn_inferior): New function pointer.
375 (child_mourn_inferior): New function / target method.
376 (linux_target): Claim to_mourn_inferior method pointer.
377 (child_follow_fork): Call interface to linux-fork, conditionally
378 add new fork processes to list of debugged processes.
379 (kill_inferior): Use interface to linux-fork to kill
380 multiple processes.
381
382 * linux-fork.h: New file.
383 * linux-fork.c: New file. Support for debugging multiple forks
384 of the same program. Support for checkpoint and restart commands.
385
386 * infrun.c (nullify_last_target_wait_ptid): New function.
387
388 * Makefile.in: Add linux-fork.
389 * config/*/linux.mh: Add linux-fork.
390 * NEWS: Mention new functionality.
391
392 2006-01-02 Paul Hilfinger <hilfingr@nile.gnat.com>
393
394 * ada-exp.y (syntax definitions,write_var_or_type,write_name_assoc):
395 Change uses of "illegal" to "invalid".
396
397 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
398
399 * ada-exp.y: Considerable reorganization to move functionality
400 from ada-lex.l to here, where it is logically more appropriate.
401 The original reason, however, was to prevent premature name
402 lookups for selector names in record aggregates.
403 (BLOCKNAME, TYPENAME, OBJECT_RENAMING): Remove; lexer now returns
404 NAME for all of these.
405 (VAR): New artificial token to clarify precedence rules.
406 (OTHERS): New lexeme.
407 (empty_stoken): New symbol.
408 (%union): Remove ssym, voidval.
409 (%type): Remove <voidval> type declarations.
410 (syntax definitions): Add aggregates.
411 Remove distinction between NAME, TYPENAME, BLOCKNAME, OBJECT_RENAMING.
412 Rename some non-terminals to be closer to reference manual usage.
413 Tighten up expression syntax to disallow certain non-Ada
414 constructions such as X and then Y or else Z.
415 (ada_parse): Remove initialization of left_block_context.
416 (write_var_from_name): Remove.
417 (write_var_or_type): New function, containing previous code from
418 defunct write_var_from_name and name_lookup.
419 (block_lookup): New function, moved from ada-lex.l
420 (select_possible_type_sym): New function, factored out of
421 name_lookup, which used to be in ada-lex.l.
422 (find_primitive_type): Ditto.
423 (chop_selector): Ditto.
424 (write_ambiguous_var): New function, factored out of defunct
425 write_var_from_name.
426 (write_selectors): New function.
427 (write_name_assoc): New function.
428 (write_exp_op_with_string): New function.
429
430 * ada-lex.l (processId): Change interface to return stoken.
431 (tempbuf, resize_tempbuf, tempbuf_size, tempbuf_len): Remove.
432 (block_lookup, name_lookup): Remove. Functionality moved to
433 ada-exp.y.
434 (state IN_STRING): Remove.
435 (rules): Handle string escapes in processString.
436 Add 'others' token.
437 Return all NAMEs, BLOCKNAMEs, OBJECT_RENAMINGs, TYPENAMEs in
438 yylval.sval (as simple strings).
439 All name look-ups now handled in ada-exp.y.
440 Introduce "::" (COLONCOLON) token and return as separate token.
441 (processId): Change return convention. Comment.
442 Leave leading "'" in place.
443 (processString): New function.
444 (find_dot_all): Add note to comment.
445 Fix problem that allowed match only at the end.
446
447 * ada-lang.c: Introduce aggregates.
448 (find_struct_field): Add new parameter to count fields skipped, and
449 allow other output parameters to be NULL.
450 (value_tag_from_contents_and_address, ada_value_struct_elt): Use
451 new find_struct_field.
452 (ada_index_struct_field, assign_aggregate, ada_is_array_type)
453 (num_visible_fields, ada_index_struct_field_1, ada_index_struct_field)
454 (num_component_specs, assign_component, assign_aggregate):
455 (aggregate_assign_from_choices,aggregate_assign_positional)
456 (aggregate_assign_others,add_component_interval):
457 New functions.
458 (ada_evaluate_subexp): Declare.
459 Add aggregate-related operators.
460 (ada_forward_operator_length): Declare.
461 (resolve_subexp): Add cases for new aggregate operators and OP_NAME.
462 Consolidate Ada operators, using ada_forward_operator_length.
463 (ada_search_struct_field): Search in forward order.
464 (ADA_OPERATORS): Add new aggregate operators.
465 (ada_operator_length, ada_op_name, ada_forward_operator_length)
466 (ada_dump_subexp_body, ada_print_subexp): Handle new aggregate
467 operators and OP_NAME.
468 (ada_type_of_array): Use longest_to_int.
469 (value_assign_to_component): New function.
470 (ada_forward_operator_length, ada_op_name, ada_dump_subexp_body):
471 Add OP_NAME case.
472 (ada_forward_operator_length, ada_dump_subexp_body):
473 Add OP_STRING case.
474
475 * ada-lang.h (enum ada_operator): Add OP_AGGREGATE, OP_OTHERS,
476 OP_CHOICES, OP_DISCRETE_RANGE, OP_POSITIONAL.
477
478 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
479
480 * ada-lang.c (process_raise_exception_name): Remove extraneous
481 definition from unsubmitted code.
482
483 (is_lower_alphanum): New function.
484 (ada_decode): Add support for decoding protected object subprograms
485 and entries, and of entities declared inside protected object
486 subprograms.
487 Also add missing handling for__{DIGITS}+ suffixes.
488 Allow '$<digits>' as valid overloading suffix.
489 (is_name_suffix): Add handling for protected type entriy suffixes.
490 Also add support for protected type subprogram suffixes, but keep
491 it commented out for now, as there is an ambiguity between these
492 entities and other internally generated entities.
493 Allow '$<digits>' as valid overloading suffix.
494 (is_valid_name_for_wild_match): New function.
495 (wild_match): Add an exra level of verification of the entity name
496 before declaring it a match for the given pattern.
497
498 (ada_type_of_array, ada_evaluate_subexp): Use more proper
499 longest_to_int rather than cast.
500
501 (ada_evaluate_subexp): Use "invalid" rather than "illegal" in comment.
502
503 (ada_coerce_to_simple_array): Call check_size to make sure
504 that the object size is reasonable.
505
506 (ada_value_primitive_packed_val): Use correct location in target
507 buffer for extracting packed record fields that are themselves records.
508
509 (add_defn_to_vec): Do not try to replace a stub type by its full
510 type. Avoids a potential infinite loop.
511
512 (ada_lookup_symbol): Move return incorrectly placed return statement,
513 causing a loop that should be scanning all object files to only
514 scan the first one.
515
516 (ada_tag_name_2): New function.
517 (ada_tag_name_1): If no 'tsd' field found in the dispatching table,
518 use alternative representation.
519
520 (ada_find_renaming_symbol): Strip the function name suffix when
521 computing the XR type name.
522
523 (ada_to_fixed_type): Try determining the tag only if we have the
524 object's address.
525 (to_fixed_array_type): Add comments.
526
527 (ada_check_typedef): Replace expression checking whether the given
528 type is a stub or not by a "call" to TYPE_STUB. Clearer and more
529 consistent.
530
531 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Allow
532 '$' in addition to '.' for runtime auxiliary function name suffixes.
533 See changes to ada_decode above.
534
535 (struct task_control_block): Add field called_task. (This change is
536 to keep synchronized with our local sources; it does not affect the
537 public version yet.)
538
539 * ada-typeprint.c (ada_print_type): Use int_string for printing
540 modulus of modular type.
541
542 (print_range): Trivial editorial comment fix.
543
544 * ada-valprint.c (ada_emit_char): Use normal Ada syntax for
545 double quote in string.
546
547 2006-01-01 Joel Brobecker <brobecker@adacore.com>
548
549 * top.c: Add 2006 to list of copyright years in file header.
550
551 2006-01-01 Joel Brobecker <brobecker@adacore.com>
552
553 * top.c (print_gdb_version): Update copyright year to 2006.
554
555 2006-01-01 Roger Sayle <roger@eyesopen.com>
556 Elena Zannoni <ezannoni@redhat.com>
557
558 PR symtab/1651
559 * xcoffread.c (xcoff_next_symbol_text): Check this_symtab_psymtab
560 for NULL before assigning this_symtab_psymtab->objfile to objfile.
561 (scan_xcoff_symtab): Initialize next_symbol_text_func.
562 (Committed by Jim Blandy)
563
564 For older changes see ChangeLog-2005.
565 \f
566 Local Variables:
567 mode: change-log
568 left-margin: 8
569 fill-column: 74
570 version-control: never
571 End:
This page took 0.049433 seconds and 5 git commands to generate.