Fix operator doubly nested namespace search.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
2
3 * cp-support.c (make_symbol_overload_list_namespace): Only search
4 static and global blocks.
5 (make_symbol_overload_list_block): New function.
6 (make_symbol_overload_list): Separate namespace search from block
7 search.
8 (make_symbol_overload_list_qualified): Use
9 make_symbol_overload_list_block.
10
11 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
12
13 * value.h: Created oload_search_type enum.
14 (find_overload_match): Use oload_search_type enum.
15 * valops.c (find_overload_match): Support combined member and
16 non-member search.
17 * eval.c (evaluate_subexp_standard): Calls to
18 find_overload_match now use oload_search_type enum.
19 (oload_method_static): Verify index is a proper value.
20 * valarith.c (value_user_defined_cpp_op): Search for and handle
21 both member and non-member operators.
22 (value_user_defined_cpp_op): New function.
23 (value_user_defined_op): New function.
24 (value_x_unop): Use value_user_defined_op.
25 (value_x_binop): Ditto.
26 * cp-support.c (make_symbol_overload_list_using): Added block
27 iteration.
28 Add check for namespace aliases and imported declarations.
29
30 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
31
32 * breakpoint.h (owner): Extend the comment.
33
34 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
35
36 Clear stale specific bp_location from former whole breakpoint.
37 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
38 code ...
39 (free_bp_location): ... here. Rename there the called function to
40 bpstat_remove_bp_location_callback.
41 (bpstat_remove_breakpoint_callback): Rename to ...
42 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
43 to struct bp_location. Change the called function to
44 bpstat_remove_bp_location. Create new declaration for the function.
45 (bpstat_remove_breakpoint): Rename to ...
46 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
47 code for the new parameter type.
48
49 2010-06-07 Nathan Sidwell <nathan@codesourcery.com>
50
51 * README: Make version-agnostic.
52
53 2010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
54
55 Fix duplicate types for single DIE.
56 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
57 set_die_type.
58 (read_array_type): Remove type initialization. Recheck get_die_type
59 after initial die_type. Move set_die_type before set_descriptive_type.
60 (read_set_type): New variable domain_type. Recheck get_die_type after
61 initial die_type. Move attr initialization later.
62 (read_tag_pointer_type, read_tag_reference_type): New variable
63 target_type. Recheck get_die_type after initial die_type.
64 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
65 die_type and die_containing_type.
66 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
67 Recheck get_die_type after initial die_type.
68 (read_subrange_type): Recheck get_die_type after initial die_type.
69 Move set_die_type before set_descriptive_type.
70 (set_die_type): Extend the function comment. Call complaint if DIE has
71 some type already set.
72
73 2010-06-05 Vladimir Prus <vladimir@codesourcery.com>
74
75 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
76 for current naming of thread groups (iN, not N).
77
78 2010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
79
80 * ada-lang.c (ada_operator_length): Constify `struct expression'.
81 * parse.c (operator_length): Likewise.
82 (operator_length_standard): Likewise.
83 * parser-defs.h (operator_length): Likewise.
84 (operator_length_standard): Likewise.
85 (struct exp_descriptor <operator_length>): Likewise.
86
87 2010-06-04 Doug Evans <dje@google.com>
88
89 Add support for enabling/disabling individual pretty-printers.
90 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
91 * python/python-internal.h (gdbpy_enabled_cst): Declare.
92 * python/python.c (gdbpy_enabled_cst): Define.
93 (_initialize_python): Initialize gdbpy_enabled_cst.
94 * NEWS: Add entry.
95
96 2010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
97
98 * breakpoint.c (update_global_location_list): Fix comment typo.
99
100 2010-06-04 Hui Zhu <teawater@gmail.com>
101
102 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
103
104 2010-06-03 Doug Evans <dje@google.com>
105
106 * configure.ac: Don't fail if python is unusable when
107 configured with --with-python=auto.
108 * configure: Regenerate.
109
110 2010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
111
112 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
113
114 2010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
115
116 * valprint.h (get_array_bounds): Change low and high parameter types
117 to LONGEST *.
118 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
119 compute bounds.
120 (val_print_array_elements): Adapt to change above.
121 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
122 * p-valprint.c (pascal_val_print): Likewise.
123
124 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
125
126 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
127 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
128 .F08.
129
130 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
131
132 Support DW_TAG_module as separate namespaces.
133 * dwarf2read.c (typename_concat): New parameter physname.
134 (read_module_type): New function and declaration.
135 (scan_partial_symbols): Scan also DW_TAG_module children.
136 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
137 to typename_concat backward compatible physname value 0.
138 (partial_die_full_name, read_namespace_type): Pass to typename_concat
139 backward compatible physname value 0.
140 (add_partial_module, read_module): Remove FIXME comment.
141 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
142 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
143 DIEs under DW_TAG_module.
144 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
145 DW_AT_MIPS_linkage_name first, extend it for language_fortran
146 && physname and return there instead of just setting NAME. Extend
147 the main block for language_fortran. Pass physname parameter to the
148 typename_concat call.
149 (read_import_statement, read_func_scope, get_scope_pc_bounds)
150 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
151 (new_symbol): Fill in cplus_specific.demangled_name if it is still
152 missing from SYMBOL_SET_NAMES in the language_fortran case.
153 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
154 variables.
155 (read_type_die) <DW_TAG_module>: New.
156 (MAX_SEP_LEN): Increase to 7.
157 (typename_concat): New parameter physname. New variable lead. Support
158 also language_fortran.
159 * f-exp.y (yylex): Consider : also as a symbol name character class.
160 * f-lang.c: Include cp-support.h.
161 (f_word_break_characters, f_make_symbol_completion_list): New functions.
162 (f_language_defn): Use cp_lookup_symbol_nonlocal,
163 f_word_break_characters and f_make_symbol_completion_list.
164 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
165 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
166 * symtab.c (symbol_init_language_specific): Support language_fortran.
167 (symbol_find_demangled_name): New comment on language_fortran.
168 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
169 for language_fortran.
170 (lookup_symbol_aux_local): Check imports also for language_fortran.
171 (default_make_symbol_completion_list): Rename to ...
172 (default_make_symbol_completion_list_break_on): ... this name. New
173 parameter break_on, use it.
174 (default_make_symbol_completion_list): New stub.
175 * symtab.h (default_make_symbol_completion_list_break_on): New
176 prototype.
177
178 2010-06-02 Joel Brobecker <brobecker@adacore.com>
179
180 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
181 to error.
182
183 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
184
185 * dwarf2read.c (typename_concat): Add const to the variable sep.
186
187 2010-06-02 Tom Tromey <tromey@redhat.com>
188
189 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
190 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
191 type is const. Add 'def' argument. Add missing operators, remove
192 unhandled ones.
193 (decode_locdesc): Update.
194 (dwarf2_always_disassemble): New global.
195 (show_dwarf2_always_disassemble): New function.
196 (_initialize_dwarf2_read): Add always-disassemble.
197 (dwarf2_per_cu_offset_size): New function.
198 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
199 (piece_end_p): New function.
200 (locexpr_describe_location_piece): Replace 'size' argument with
201 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
202 some constants. Remove errors.
203 (disassemble_dwarf_expression): New function.
204 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
205 Add 'offset_size' argument.
206 (loclist_describe_location): Change output formatting.
207 * dwarf2expr.h (dwarf_stack_op_name): Declare.
208
209 2010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
210
211 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
212 anonymous type case.
213
214 2010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
215
216 * dwarf2read.c (read_subrange_type): Handle missing base type
217 according to Dwarf-2 specifications.
218
219 2010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
220
221 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
222 BINOP_EXCL.
223 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
224 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
225 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
226 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
227 UNOP_CHMAX, UNOP_CHMIN.
228 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
229 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
230 UNOP_CHMIN>: Remove opcodes.
231
232 2010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
233
234 * dwarf2read.c (read_func_scope): Do not complain for
235 external function if bounds are not found.
236
237 2010-06-01 Pedro Alves <pedro@codesourcery.com>
238
239 * NEWS: Mention gdbserver fast tracepoints support.
240
241 2010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
242
243 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
244 New macros.
245 (windows_set_console_info): New function.
246 (windows_create_inferior): Call windows_set_console_info
247 if NEW_CONSOLE is true.
248 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
249 (_initialize_loadable): Initialize GetConsoleFontSize and
250 GetCurrentConsoleFont.
251
252 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
253
254 * Makefile.in (RDYNAMIC): New.
255 (SFILES): Add proc-service.list.
256 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
257 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
258 * config/arm/linux.mh: Likewise.
259 * config/i386/linux.mh: Likewise.
260 * config/i386/linux64.mh: Likewise.
261 * config/ia64/linux.mh: Likewise.
262 * config/m32r/linux.mh: Likewise.
263 * config/m68k/linux.mh: Likewise.
264 * config/mips/linux.mh: Likewise.
265 * config/pa/linux.mh: Likewise.
266 * config/powerpc/linux.mh: Likewise.
267 * config/powerpc/ppc64-linux.mh: Likewise.
268 * config/s390/s390.mh: Likewise.
269 * config/sparc/linux.mh: Likewise.
270 * config/sparc/linux64.mh: Likewise.
271 * config/xtensa/linux.mh: Likewise.
272 * configure.ac: New RDYNAMIC on native host and GCC.
273 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
274 * configure: Regenerate.
275 * proc-service.list: New.
276
277 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
278
279 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
280 CONTENT.
281
282 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
283
284 * linux-nat.c (linux_nat_wait_1): Do not call
285 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
286 TARGET_WAITKIND_SIGNALLED.
287
288 2010-05-27 Joel Brobecker <brobecker@adacore.com>
289
290 * ada-lang.c (ada_inferior_data): New struct.
291 (ada_inferior_data): New static global.
292 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
293 (ada_get_tsd_type): New functions.
294 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
295 to look the tsd type up.
296 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
297 event. Set ada_inferior_data.
298
299 2010-05-27 Pedro Alves <pedro@codesourcery.com>
300
301 * remote.c (unpack_varlen_hex): Remove forward declaration.
302 (remote_console_output): Make static, and add forward declaration.
303 * remote.h: Drop FIXME comment.
304 (unpack_varlen_hex): Declare.
305 (remote_console_output, remote_cisco_objfile_relocate)
306 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
307 Delete declarations.
308 * tracepoint.c: Include "remote.h".
309 (unpack_varlen_hex): Delete declaration.
310
311 2010-05-27 Tom Tromey <tromey@redhat.com>
312
313 * dwarf2loc.c (struct piece_closure) <refc>: New field.
314 (allocate_piece_closure): Initialize refc.
315 (copy_pieced_value_closure): Use refc.
316 (free_pieced_value_closure): Likewise.
317
318 2010-05-27 Tom Tromey <tromey@redhat.com>
319
320 * arm-tdep.c (push_stack_item): 'contents' now const.
321 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
322 value_contents_writeable. Introduce new temporary.
323
324 2010-05-27 Tom Tromey <tromey@redhat.com>
325
326 * findcmd.c (parse_find_args): Use value_contents, not
327 value_contents_raw.
328
329 2010-05-27 Tom Tromey <tromey@redhat.com>
330
331 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
332 const. Use value_contents, not value_contents_writeable.
333
334 2010-05-27 Joel Brobecker <brobecker@adacore.com>
335
336 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
337 by call to value_contents.
338
339 2010-05-27 Ozkan Sezer <sezeroz@gmail.com>
340
341 * MAINTAINERS: Add myself for write after approval privileges.
342
343 2010-05-26 Doug Evans <dje@google.com>
344
345 Allow python to find its files if moved from original location.
346 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
347 (GDB_AC_WITH_DIR): Call it.
348 * configure.ac: Define WITH_PYTHON_PATH if we can find the
349 python installation directory.
350 * config.in: Regenerate.
351 * configure: Regenerate.
352 * defs.h (python_libdir): Declare.
353 * main.c (python_libdir): Define.
354 (captured_main): Initialize python_libdir.
355 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
356 call Py_SetProgramName to make sure python can find its libraries
357 and modules.
358
359 * configure.ac: Try to use python's distutils to fetch compilation
360 parameters.
361 * configure: Regenerate.
362 * python/python-config.py: New file.
363
364 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
365
366 * ser-tcp.c (net_open): Check error return from socket() call by its
367 equality to -1 not by it being negative.
368 (net_close): Likewise.
369
370 2010-05-26 Pedro Alves <pedro@codesourcery.com>
371
372 * NEWS: Mention the `qRelocInsn' feature.
373 * gdbarch.sh (relocate_instruction): New.
374 * amd64-tdep.c (rip_relative_offset): New.
375 (append_insns): New.
376 (amd64_relocate_instruction): New.
377 (amd64_init_abi): Install it.
378 * i386-tdep.c (append_insns): New.
379 (i386_relocate_instruction): New.
380 (i386_gdbarch_init): Install it.
381 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
382 * gdbarch.h, gdbarch.c: Regenerate.
383
384 2010-05-26 Tom Tromey <tromey@redhat.com>
385
386 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
387 (struct dwarf2_loclist_baton) <data>: Likewise.
388 * dwarf2loc.c (find_location_expression): Constify return type.
389 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
390 (dwarf2_loc_desc_needs_frame): Likewise.
391 (loclist_read_variable): Constify.
392 (loclist_describe_location): Likewise.
393 (loclist_tracepoint_var_ref): Likewise.
394
395 2010-05-25 Tom Tromey <tromey@redhat.com>
396
397 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
398 (dwarf_expr_frame_base_1): Likewise.
399 (read_pieced_value): Update.
400 (needs_frame_frame_base): Constify.
401 (dwarf2_tracepoint_var_loc): Likewise.
402 (dwarf2_tracepoint_var_access): Likewise.
403 (locexpr_describe_location_piece): Likewise.
404 (locexpr_describe_location_1): Likewise.
405 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
406 Constify.
407 (data): Now const.
408 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
409 (dwarf_expr_eval, read_uleb128, read_sleb128)
410 (dwarf2_read_address): Update.
411 * dwarf2expr.c (dwarf_expr_eval): Constify.
412 (read_uleb128): Likewise.
413 (read_sleb128): Likewise.
414 (dwarf2_read_address): Likewise.
415 (require_composition): Likewise.
416 (execute_stack_op): Likewise.
417 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
418 "const gdb_byte *".
419 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
420 Now const.
421 (no_get_frame_base): Constify.
422 (execute_stack_op): Likewise.
423 (execute_cfa_program): Likewise.
424 (read_encoded_value): Likewise.
425
426 2010-05-25 Doug Evans <dje@google.com>
427
428 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
429
430 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
431 * event-loop.c: ... here.
432 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
433 `error' for clarity.
434 (tui_getc): Pass correct value for `error' parameter to
435 tui_readline_output.
436
437 Add python gdb.GdbError and gdb.string_to_argv.
438 * NEWS: Document them.
439 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
440 the exception is gdb.GdbError. Print a second traceback if there's
441 an error computing the error message.
442 (gdbpy_string_to_argv): New function.
443 * python/py-utils.c (gdbpy_obj_to_string): New function.
444 (gdbpy_exception_to_string): New function.
445 * python/python-internal.h (gdbpy_string_to_argv): Declare.
446 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
447 (gdbpy_gdberror_exc): Declare.
448 * python/python.c (gdbpy_gdberror_exc): New global.
449 (_initialize_python): Initialize gdbpy_gdberror_exc and create
450 gdb.GdbError.
451 (GdbMethods): Add string_to_argv.
452
453 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
454
455 * windows-nat.c (display_selector): Call GetLastError to give better
456 failure explanation.
457
458 2010-05-24 Pedro Alves <pedro@codesourcery.com>
459
460 * config.in: Regenerate.
461
462 2010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
463
464 Code cleanup.
465 * target.c (push_target): Return only void. Remove the return value
466 comment.
467 * target.h (push_target): Return only void.
468
469 2010-05-23 Pedro Alves <pedro@codesourcery.com>
470
471 Update gnulib from latest git.
472 (250b80067c1e1d8faa0c42fb572f721975b929c5)
473
474 * gnulib/memcmp.c: Removed.
475 * gnulib/memchr.valgrind: New.
476 * gnulib/stddef.in.h: New.
477 * gnulib/Makefile.am: Updated.
478 * gnulib/memchr.c: Updated.
479 * gnulib/memmem.c: Updated.
480 * gnulib/stdint.in.h: Updated.
481 * gnulib/str-two-way.h: Updated.
482 * gnulib/string.in.h: Updated.
483 * gnulib/wchar.in.h: Updated.
484
485 * gnulib/extra/link-warning.h: Removed.
486 * gnulib/extra/c++defs.h: New.
487 * gnulib/extra/warn-on-use.h: New.
488 * gnulib/extra/arg-nonnull.h: Updated.
489
490 * gnulib/m4/extensions.m4: Updated.
491 * gnulib/m4/gnulib-cache.m4: Updated.
492 * gnulib/m4/gnulib-common.m4: Updated.
493 * gnulib/m4/gnulib-comp.m4: Updated.
494 * gnulib/m4/gnulib-tool.m4: Updated.
495 * gnulib/m4/include_next.m4: Updated.
496 * gnulib/m4/longlong.m4: Updated.
497 * gnulib/m4/memchr.m4: Updated.
498 * gnulib/m4/memmem.m4: Updated.
499 * gnulib/m4/stdint.m4: Updated.
500 * gnulib/m4/string_h.m4: Updated.
501 * gnulib/m4/memcmp.m4: Removed.
502 * gnulib/m4/onceonly_2_57.m4: Removed.
503 * gnulib/m4/00gnulib.m4: New.
504 * gnulib/m4/mmap-anon.m4: New.
505 * gnulib/m4/multiarch.m4: New.
506 * gnulib/m4/onceonly.m4: New.
507 * gnulib/m4/stddef_h.m4: New.
508 * gnulib/m4/warn-on-use.m4: New.
509 * gnulib/m4/wchar.m4: Removed.
510 * gnulib/m4/wchar_h.m4: New.
511 * gnulib/m4/wchar_t.m4: New.
512 * gnulib/m4/wint_t.m4: New.
513
514 * aclocal.m4: Regenerate.
515 * config.in: Likewise.
516 * configure: Likewise.
517 * gnulib/Makefile.in: Likewise.
518
519 2010-05-21 Tom Tromey <tromey@redhat.com>
520
521 * dwarf2loc.c (extract_bits_primitive): New function.
522 (extract_bits): Likewise.
523 (insert_bits): Likewise.
524 (copy_bitwise): Likewise.
525 (read_pieced_value): Do all operations in bits.
526 (write_pieced_value): Likewise.
527 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
528 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
529 Always use xrealloc to resize piece array.
530 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
531 <DW_OP_piece>: Update.
532 <DW_OP_bit_piece>: New case.
533
534 2010-05-21 Tom Tromey <tromey@redhat.com>
535
536 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
537 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
538 * dwarf2expr.h (enum dwarf_value_location)
539 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
540 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
541 (add_piece): Handle empty piece.
542 (execute_stack_op) <DW_OP_piece>: Handle
543 DWARF_VALUE_OPTIMIZED_OUT.
544
545 2010-05-21 Tom Tromey <tromey@redhat.com>
546
547 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
548 evaluate_subexp, not evaluate_subexp_with_coercion.
549
550 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
551
552 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
553 attribute.
554
555 2010-05-21 Tom Tromey <tromey@redhat.com>
556
557 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
558 offset.
559 (write_pieced_value): Likewise.
560
561 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
562
563 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
564 and DW_TAG_volatile_type.
565 (new_symbol): Likewise.
566
567 2010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
568
569 * p-valprint.c (pascal_val_print): Call get_array_bounds
570 to obtain the number of elements in an array.
571
572 2010-05-19 Doug Evans <dje@google.com>
573
574 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
575
576 * python.c (source_python_script): Add comment.
577 (source_python_script_for_objfile): Remove unnecessary call to
578 gdbpy_print_stack.
579
580 2010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
581 Sergio Durigan Junior <sergiodj@redhat.com>
582
583 Code cleanup.
584 * parse.c (exp_iterate): Use operator_length wrapper function.
585
586 2010-05-18 Michael Snyder <msnyder@vmware.com>
587
588 * ada-lang.c: White space.
589 * ada-typeprint.c: White space.
590 * ada-valprint.c: White space.
591 * addrmap.c: White space.
592 * auxv.c: White space.
593 * ax-gdb.c: White space.
594
595 2010-05-18 Hui Zhu <teawater@gmail.com>
596
597 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
598 for oldfp.
599 (inferior_call_waitpid): Move make_cleanup out of check.
600 Check the return of waitpid.
601 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
602
603 2010-05-17 Michael Snyder <msnyder@vmware.com>
604
605 * tui/tui.c: White space.
606 * tui/tui-data.c: White space.
607 * tui/tui-disasm.c: White space.
608 * tui/tui-file.c: White space.
609 * tui/tui-interp.c: White space.
610 * tui/tui-main.c: White space.
611 * tui/tui-out.c: White space.
612 * tui/tui-regs.c: White space.
613 * tui/tui-source.c: White space.
614 * tui/tui-stack.c: White space.
615 * tui/tui-win.c: White space.
616 * tui/tui-winsource.c: White space.
617
618 * procfs.c: White space.
619
620 * python/py-auto-load.c: White space.
621 * python/py-block.c: White space.
622 * python/py-breakpoint.c: White space.
623 * python/py-cmd.c: White space.
624 * python/py-function.c: White space.
625 * python/py-lazy-string.c: White space.
626 * python/py-objfile.c: White space.
627 * python/py-param.c: White space.
628 * python/py-prettyprint.c: White space.
629 * python/py-progspace.c: White space.
630 * python/py-symtab.c: White space.
631 * python/python.c: White space.
632 * python/py-type.c: White space.
633 * python/py-utils.c: White space.
634 * python/py-value.c: White space.
635
636 * mi/mi-cmd-break.c: White space.
637 * mi/mi-cmd-env.c: White space.
638 * mi/mi-cmds.c: White space.
639 * mi/mi-cmd-stack.c: White space.
640 * mi/mi-cmd-var.c: White space.
641 * mi/mi-console.c: White space.
642 * mi/mi-getopt.c: White space.
643 * mi/mi-interp.c: White space.
644 * mi/mi-main.c: White space.
645 * mi/mi-out.c: White space.
646 * mi/mi-parse.c: White space.
647
648 * cli/cli-cmds.c: White space.
649 * cli/cli-decode.c: White space.
650 * cli/cli-dump.c: White space.
651 * cli/cli-interp.c: White space.
652 * cli/cli-logging.c: White space.
653 * cli/cli-script.c: White space.
654 * cli/cli-setshow.c: White space.
655
656 * valarith.c: White space.
657 * valops.c: White space.
658 * valprint.c: White space.
659 * value.c: White space.
660 * varobj.c: White space.
661 * xcoffread.c: White space.
662 * xml-support.c: White space.
663 * xml-tdesc.c: White space.
664
665 2010-05-17 Andreas Schwab <schwab@redhat.com>
666
667 PR gdb/11092
668 * c-lang.c (c_printstr): Compute real length of NUL terminated
669 string at first.
670
671 2010-05-17 Joel Brobecker <brobecker@adacore.com>
672
673 * parse.c (parse_exp_in_context): When block is not NULL, use
674 its associated language to parse the expression instead of
675 the current_language.
676
677 2010-05-17 Joel Brobecker <brobecker@adacore.com>
678
679 * jv-lang.c (java_lookup_class): Remove commented out code.
680 (type_from_class): Likewise.
681 (java_op_print_tab): Remove commented-out elements.
682
683 2010-05-17 Joel Brobecker <brobecker@adacore.com>
684
685 * ada-lang.c (to_fixed_range_type): The the raw index type as
686 argument instead of the raw type name. Remove orig_type parameter.
687 Update calls throughout.
688 (ada_fixup_array_indexes_type): New function.
689 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
690 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
691 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
692 Remove name parameter.
693 (print_array_type): Add call to ada_fixup_array_indexes_type.
694 Update calls to print_range_type.
695 (ada_print_type): Update calls to print_range_type.
696
697 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
698
699 * dwarf2read.c (read_set_type): Set type length if
700 DW_AT_byte_size attribute is present.
701
702 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
703
704 * p-valprint.c (pascal_val_print): Handle set type if range limits
705 are undefined but size is known.
706
707 2010-05-17 Pedro Alves <pedro@codesourcery.com>
708
709 * procfs.c: Reformat.
710
711 2010-05-16 Michael Snyder <msnyder@vmware.com>
712
713 * target.c: White space.
714 * target-descriptions.c: White space.
715 * target-memory.c: White space.
716 * thread.c: White space.
717 * top.c: White space.
718 * tracepoint.c: White space.
719 * trad-frame.c: White space.
720 * tramp-frame.c: White space.
721 * ui-file.c: White space.
722 * ui-out.c: White space.
723 * user-regs.c: White space.
724 * utils.c: White space.
725
726 * scm-exp.c: White space.
727 * scm-lang.c: White space.
728 * scm-valprint.c: White space.
729 * sentinel-frame.c: White space.
730 * ser-base.c: White space.
731 * ser-go32.c: White space.
732 * serial.c: White space.
733 * ser-mingw.c: White space.
734 * ser-pipe.c: White space.
735 * ser-tcp.c: White space.
736 * ser-unix.c: White space.
737 * solib.c: White space.
738 * solib-darwin.c: White space.
739 * solib-frv.c: White space.
740 * solib-irix.c: White space.
741 * solib-osf.c: White space.
742 * solib-pa64.c: White space.
743 * solib-som.c: White space.
744 * solib-spu.c: White space.
745 * solib-svr4.c: White space.
746 * solib-target.c: White space.
747 * source.c: White space.
748 * stabsread.c: White space.
749 * stack.c: White space.
750 * std-regs.c: White space.
751 * symfile.c: White space.
752 * symmisc.c: White space.
753 * symtab.c: White space.
754
755 2010-05-16 Michael Snyder <msnyder@vmware.com>
756
757 * source.c (_initialize_source): Add "rev" as an abbreviation
758 for the "reverse-search" command.
759
760 2010-05-16 Michael Snyder <msnyder@vmware.com>
761
762 * record.c: White space.
763 * regcache.c: White space.
764 * reggroups.c: White space.
765 * remote-fileio.c: White space.
766 * remote-m32r-sdi.c: White space.
767 * remote-mips.c: White space.
768 * remote-sim.c: White space.
769 * remote.c: White space.
770 (process_g_packet): Remove orphan braces.
771
772 2010-05-15 Michael Snyder <msnyder@vmware.com>
773
774 * parse.c: White space.
775 * p-lang.c: White space.
776 * posix-hdep.c: White space.
777 * printcmd.c: White space.
778 * progspace.c: White space.
779 * prologue-value.c: White space.
780 * psymtab.c: White space.
781 * p-typeprint.c: White space.
782 * p-valprint.c: White space.
783
784 * objc-lang.c: White space.
785 * objfiles.c: White space.
786 * observer.c: White space.
787 * osabi.c: White space.
788 * osdata.c: White space.
789
790 * m2-lang.c: White space.
791 * m2-valprint.c: White space.
792 * macrocmd.c: White space.
793 * macroexp.c: White space.
794 * macroscope.c: White space.
795 * macrotab.c: White space.
796 * main.c: White space.
797 * maint.c: White space.
798 * mdebugread.c: White space.
799 * memattr.c: White space.
800 * minsyms.c: White space.
801 * monitor.c: White space.
802
803 2010-05-14 Michael Snyder <msnyder@vmware.com>
804
805 * jv-lang.c: White space.
806 * jv-typeprint.c: White space.
807 * jv-valprint.c: White space.
808 * language.c: White space.
809 * libunwind-frame.c: White space.
810 * linespec.c: White space.
811 * linux-nat.c: White space.
812 * linux-record.c: White space.
813 * linux-thread-db.c: White space.
814
815 * infcall.c: White space.
816 * inf-child.c: White space.
817 * infcmd.c: White space.
818 * inferior.c: White space.
819 * inf-loop.c: White space.
820 * inflow.c: White space.
821 * inline-frame.c: White space.
822 * interps.c: White space.
823
824 * gcore.c: White space.
825 * gdb.c: White space.
826 * gdbtypes.c: White space.
827 * gnu-nat.c: White space.
828 * gnu-v2-abi.c: White space.
829 * gnu-v3-abi.c: White space.
830
831 * findcmd.c: White space.
832 * findvar.c: White space.
833 * fork-child.c: White space.
834 * frame-base.c: White space.
835 * frame.c: White space.
836 * frame-unwind.c: White space.
837 * f-valprint.c: White space.
838
839 * elfread.c: White space.
840 * environ.c: White space.
841 * eval.c: White space.
842 * event-loop.c: White space.
843 * event-top.c: White space.
844 * exceptions.c: White space.
845 * exec.c: White space.
846 * expprint.c: White space.
847
848 * dbxread.c: White space.
849 * dcache.c: White space.
850 * disasm.c: White space.
851 * doublest.c: White space.
852 * dsrec.c: White space.
853 * dummy-frame.c: White space.
854 * dwarf2expr.c: White space.
855 * dwarf2-frame.c: White space.
856 * dwarf2loc.c: White space.
857 * dwarf2read.c: White space.
858
859 2010-05-14 Phil Muldoon <pmuldoon@redhat.com>
860
861 PR python/11482
862
863 * python/py-value.c (valpy_hash): New function.
864 (value_object_type): Register valpy_hash.
865
866 2010-05-14 Hui Zhu <teawater@gmail.com>
867 Michael Snyder <msnyder@vmware.com>
868
869 * linux-fork.c (gdbthread.h): New include.
870 (fork_info): Add parent_ptid.
871 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
872 functions.
873 (delete_checkpoint_command): Call inferior_call_waitpid.
874 (checkpoint_command): Set parent_ptid.
875
876 2010-05-13 Michael Snyder <msnyder@vmware.com>
877
878 * dictionary.c: Re-indent to GNU coding standard.
879
880 * charset.c: White space.
881 * c-lang.c: White space.
882 * cli-out.c: White space.
883 * coffread.c: White space.
884 * complaints.c: White space.
885 * completer.c: White space.
886 * corefile.c: White space.
887 * corelow.c: White space.
888 * cp-abi.c: White space.
889 * cp-namespace.c: White space.
890 * cp-support.c: White space.
891 * cp-valprint.c: White space.
892 * c-typeprint.c: White space.
893 * c-valprint.c: White space.
894 * blockframe.c: White space.
895 * breakpoint.c: White space.
896 * buildsym.c: White space.
897 * blockframe.c: White space.
898 * bcache.c: White space.
899 * gdbarch.sh: White space, add blank lines.
900 * arch-utils.c: Ditto.
901 * gdbarch.c: Regenerate.
902 * frame.c: White space, add blank lines.
903 * stack.c: White space, add blank lines.
904 (initialize_stack): Remove long-dead code.
905
906 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
907
908 Code cleanup.
909 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
910 (locexpr_read_variable, loclist_read_variable): Update the callers.
911
912 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
913
914 Code cleanup.
915 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
916 Remove check of NULL returned by tag_type_to_type.
917 (die_containing_type): Remove variable type. Remove type_die variable
918 initialization. Remove check of NULL returned by tag_type_to_type.
919
920 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
921
922 PR exp/11530.
923 * gdbtypes.c (lookup_struct_elt_type): Also lookup
924 names of unnamed structures or unions.
925
926 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
927
928 * procfs.c (proc_watchpoint_address): New function.
929 (procfs_stopped_by_watchpoint): Remove useless check after
930 find_procinfo_or_die call.
931 (procfs_stopped_data_address): New function.
932 (procfs_use_watchpoints): Register new watchpoint related function.
933
934 2010-05-11 Tom Tromey <tromey@redhat.com>
935
936 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
937
938 2010-05-10 Michael Snyder <msnyder@vmware.com>
939
940 * utils.c: White space cleanup.
941
942 2010-05-10 Tom Tromey <tromey@redhat.com>
943
944 * eval.c (ptrmath_type_p): Add 'lang' argument.
945 (evaluate_subexp_standard): Update.
946 (evaluate_subexp_with_coercion): Update.
947 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
948
949 2010-05-10 Michael Snyder <msnyder@vmware.com>
950
951 * utils.c (do_fclose_cleanup) Restore local variable.
952
953 2010-05-09 Doug Evans <dje@google.com>
954
955 * record.c (init_record_core_ops): Rename record_core to record-core.
956
957 2010-05-08 Joel Brobecker <brobecker@adacore.com>
958
959 Implement task switching on pa-hpux.
960 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
961 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
962
963 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
964
965 * valops.c (find_overload_match): Add missing i18n markup.
966
967 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
968
969 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
970
971 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
972
973 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
974 list for the obconcat call.
975 * mdebugread.c (parse_symbol): Likewise.
976 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
977 Likewise.
978 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
979 New variable ap. Remove variables len and val.
980 * symfile.h (obconcat): Likewise for the prototype.
981
982 2010-05-07 Michael Snyder <msnyder@vmware.com>
983
984 * python/python.c (execute_gdb_command): Remove unused variables.
985 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
986 * python/py-breakpoint.c (gdbpy_breakpoint_created):
987 Remove unused variable.
988 * python/py-cmd.c (cmdpy_function): Remove unused variable.
989 (cmdpy_completer): Remove unused variable.
990 * python/py-frame.c (frapy_find_sal): Remove unused variable.
991 * python/py-function.c (fnpy_call): Remove unused variable.
992 * python/py-objfile.c (objfile_to_objfile_object):
993 Remove unused variable.
994 * python/py-param.c (parmpy_init): Remove unused variable.
995 * python/py-prettyprint.c (apply_varobj_pretty_printer):
996 Remove unused variable.
997 (gdbpy_default_visualizer): Remove unused variable.
998 * python/py-progspace.c (pspace_to_pspace_object):
999 Remove unused variable.
1000 * python/py-symtab.c (symtab_and_line_to_sal_object):
1001 Remove unused variable.
1002 * python/py-type.c (typy_template_argument):
1003 Remove unused variable.
1004 * python/py-value.c (valpy_string): Remove unused variable.
1005 (convert_value_from_python): Remove unused variables.
1006
1007 2010-05-07 Michael Snyder <msnyder@vmware.com>
1008
1009 * valops.c (value_cast_pointers): Restore unused variable 'type1',
1010 and use it to compute variable 't1'.
1011
1012 2010-05-07 Joel Brobecker <brobecker@adacore.com>
1013
1014 * ada-lang.c (assign_aggregate): Remove unused variable.
1015
1016 2010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
1017
1018 PR C++/7943:
1019 * valops.c (find_overload_match): Handle fsym == NULL case.
1020 Add int no_adl argument.
1021 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
1022 when appropriate.
1023 Add int no_adl argument.
1024 (find_oload_champ_namespace): Add int no_adl argument.
1025 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
1026 expression.
1027 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
1028 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
1029 Evaluate arguments and use them to perform ADL lookup.
1030 Pass no_adl argument to find_overload_match.
1031 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
1032 * cp-support.h: Added prototype for
1033 make_symbol_overload_list_namespace.
1034 * cp-support.c (make_symbol_overload_list_namespace): New function.
1035 (make_symbol_overload_list_adl_namespace): New function.
1036 (make_symbol_overload_list_adl): New function.
1037 (make_symbol_overload_list_using): Moved code to add function to
1038 overload set to make_symbol_overload_list_namespace.
1039 * c-exp.y: create UNKNOWN_CPP_NAME token.
1040 Add parse rule for ADL functions.
1041 (classify_name): Recognize an UNKNOWN_CPP_NAME.
1042
1043 2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1044
1045 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
1046 sentinel.
1047
1048 2010-05-07 Joel Brobecker <brobecker@adacore.com>
1049
1050 Implement task switching on solaris targets.
1051 * sol-thread.c (thread_db_find_thread_from_tid)
1052 (sol_get_ada_task_ptid): New functions.
1053 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
1054
1055 2010-05-07 Pedro Alves <pedro@codesourcery.com>
1056
1057 * remote.c (remote_query_supported_append): Use reconcat.
1058 (remote_query_supported): Install a cleanup. Use reconcat.
1059
1060 2010-05-07 Pedro Alves <pedro@codesourcery.com>
1061
1062 * gdbarch.sh (qsupported): Delete.
1063 * gdbarch.h, gdbarch.c: Regenerate.
1064 * remote.c (remote_query_supported): Remove use of
1065 gdbarch_qsupported.
1066
1067 2010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
1068
1069 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
1070 function.
1071
1072 2010-05-06 Michael Snyder <msnyder@vmware.com>
1073
1074 * xml-support.c (xinclude_start_include): Delete unused variable.
1075 (xml_process_xincludes): Delete unused variable.
1076 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
1077 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
1078 (tdesc_find_arch_register): Delete unused variable.
1079 (tdesc_use_registers): Delete unused variable.
1080 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
1081 * inferior.c (print_inferior): Delete unused variable.
1082 * record.c (record_open_1): Delete unused variable.
1083 (record_restore): Delete unused variable.
1084 (cmd_record_save): Delete unused variable.
1085 * gcore.c (derive_heap_segment): Delete unused variable.
1086 (objfile_find_memory_regions): Use unused variable.
1087 * jit.c (jit_inferior_init): Delete unused variable.
1088 * progspace.c (clone_program_space): Delete unused variable.
1089 (pspace_empty_p): Delete unused variable.
1090
1091 * frame-unwind.c (frame_unwind_find_by_frame):
1092 Delete unused variable.
1093 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
1094 * cp-support.c (mangled_name_to_comp): Delete unused variable.
1095 (method_name_from_physname): Delete unused variable.
1096 (cp_func_name): Delete unused variable.
1097 (cp_validate_operator): Delete unused variable.
1098 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
1099 Delete unused variable.
1100 * trad-frame.c (trad_frame_get_prev_register):
1101 Delete unused variable.
1102 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
1103
1104 * serial.c (serial_for_fd): Delete unused variable.
1105 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
1106 * top.c (execute_command): Delete unused variable.
1107 (init_main): Delete unused variable.
1108 * utils.c (do_fclose_cleanup): Delete unused variable.
1109 (do_all_inferior_continuations): Delete unused variable.
1110 (initialize_utils): Delete unused variable.
1111 (internal_problem_mode): Delete unused global.
1112 * frame.c (get_prev_frame): Delete unused global.
1113 (get_frame_locals_address): Delete unused global.
1114 (get_frame_args_address): Delete unused global.
1115
1116 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
1117 (pascal_type_print_varspec_prefix): Delete unused variable.
1118 * f-typeprint.c (f_type_print_base): Delete unused variable.
1119 (f_type_print_varspec_suffix): Delete unused variable.
1120 * m2-typeprint.c (m2_print_type): Delete unused variable.
1121 (m2_long_set): Delete unused variable.
1122 * ada-valprint.c (ada_val_print_1): Delete unused variable.
1123 * d-valprint.c (dynamic_array_type): Delete unused variable.
1124 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
1125 Delete unused variable.
1126 (f77_create_arrayprint_offset_tbl): Delete unused variable.
1127 * m2-valprint.c (m2_val_print): Delete unused variable.
1128
1129 * ui-out.c (ui_out_field_int): Delete unused variable.
1130 (ui_out_field_fmt_int): Delete unused variable.
1131 * varobj.c (varobj_list_children): Delete unused variable.
1132 (varobj_set_value): Delete unused variable.
1133 (install_new_value_visualizer): Delete unused variable.
1134 (varobj_set_visualizer): Delete unused variable.
1135 (varobj_update): Delete unused variable.
1136 (varobj_editable_p): Delete unused variable.
1137 (c_value_of_root): Delete unused variable.
1138 (cplus_describe_child): Delete unused variable.
1139
1140 * ada-lang.c (add_defn_to_vec): Delete unused variable.
1141 (decode_constrained_packed_array_type): Delete unused variable.
1142 (add_defn_to_vec): Delete unused variable.
1143 (symbol_completion_match): Delete unused variable.
1144 (value_tag_from_contents_and_address): Delete unused variable.
1145 (ada_evaluate_subexp): Delete unused variable.
1146 * c-lang.c (classify_type): Delete unused variable.
1147 * f-lang.c (f_printstr): Delete unused variable.
1148 * objc-lang.c (objc_printstr): Delete unused variable.
1149 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
1150 * jv-lang.c (type_from_class): ifdef unused variable.
1151 (java_class_name_from_physname): Delete unused variable.
1152 * m2-lang.c (m2_printstr): Delete unused variable.
1153
1154 * objfiles.c (objfile_relocate): Delete unused variable.
1155 * maint.c (_initialize_maint_cmds): Delete unused variable.
1156 * demangle.c (_initialize_demangler): Delete unused variable.
1157 * corefile.c (reopen_exec_file): Delete unused variable.
1158 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
1159 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
1160
1161 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
1162 * memattr.c (mem_delete): Delete unused variable.
1163 (invalidate_target_mem_regions): Delete unused variable.
1164 * mem-break.c (default_memory_insert_breakpoint):
1165 Delete unused variable.
1166 * target.c (target_get_osdata): Delete unused variable.
1167 * parse.c (length_of_subexp): Delete unused variable.
1168 (prefixify_subexp): Delete unused variable.
1169 (exp_iterate): Delete unused variable.
1170 * reverse.c (delete_bookmark_command): Delete unused variable.
1171
1172 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
1173 * macroexp.c (gather_arguments): Delete unused variable.
1174 (substitute_args): Delete unused variable.
1175 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
1176 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
1177 (_initialize_gdbarch): Delete unused variable.
1178 * gdbarch.c, gdbarch.h: Regenerate.
1179 * arch-utils.c (initialize_current_architecture):
1180 Delete unused variable.
1181 (_initialize_gdbarch_utils): Delete unused variable.
1182 * gdbtypes.c (make_cv_type): Delete unused variable.
1183 (make_type_with_address_space): Delete unused variable.
1184
1185 * linespec.c (decode_compound): Delete unused variable.
1186 * dictionary.c (iterator_next_hashed): Delete unused variable.
1187 * infcall.c (call_function_by_hand): Delete unused variable.
1188 * infcmd.c (step_1): Delete unused variable.
1189 (registers_info): Delete unused variable.
1190 (attach_command): Delete unused variable.
1191 * infrun.c (follow_exec): Delete unused variable.
1192 (handle_step_into_function_backwards): Delete unused variable.
1193 (_initialize_infrun): Delete unused variable.
1194 * stack.c (parse_frame_specification_1): Delete unused variable.
1195 (frame_info): Delete unused variable.
1196 (backtrace_command_1): Delete unused variable.
1197 (catch_info): Delete unused variable.
1198
1199 * eval.c (evaluate_subexp_standard): Delete unused variable.
1200 * valops.c (value_cast_pointers): Delete unused variable.
1201 (value_dynamic_cast): Delete unused variable.
1202 (value_array): Delete unused variable.
1203 (find_overload_match): Delete unused variable.
1204 * valarith.c (value_subscript): Delete unused variable.
1205 (value_binop): Delete unused variable.
1206 * valprint.c (_initialize_valprint): Delete unused variable.
1207 * printcmd.c (print_command_1): Delete unused variable.
1208 (address_info): Delete unused variable.
1209 (printf_command): Delete unused variable.
1210
1211 * auxv.c (target_auxv_search): Delete unused variable.
1212 * blockframe.c (get_frame_block): Delete unused variable.
1213 * regcache.c (regcache_cpy): Delete unused variable.
1214 (regcache_cpy_no_passthrough): Delete unused variable.
1215 * charset.c (wchar_iterate): Delete unused variable.
1216 (find_charset_names): Delete unused variable.
1217 (_initialize_charset): Delete unused variable.
1218 * disasm.c (do_mixed_source_and_assembly):
1219 Delete unused variable.
1220 * source.c (set_default_source_symtab_and_line):
1221 Delete unused variable.
1222 (set_substitute_path_command): Delete unused variable.
1223 * value.c (preserve_values): Delete unused variable.
1224 (value_from_double): Delete unused variable.
1225
1226 2010-05-05 Michael Snyder <msnyder@vmware.com>
1227
1228 * psymtab.c (lookup_partial_symbol): Delete unused variable.
1229 (find_last_source_symtab_from_partial): Delete unused variable.
1230 * symfile.c (place_section): Delete unused variable.
1231 (default_symfile_offsets): Delete unused variable.
1232 (get_debug_link_info): Delete unused variable.
1233 (find_separate_debug_file_by_debuglink): Delete unused variable.
1234 (add_symbol_file_command): Delete unused variable.
1235 (symfile_find_segment_sections): Delete unused variable.
1236 * symmisc.c (free_symtab): Delete unused variable.
1237 (dump_symtab_1): Delete unused variable.
1238 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
1239 (find_pc_sect_symtab): Delete unused variable.
1240 (skip_prologue_using_lineinfo): Delete unused variable.
1241 (sources_info): Delete unused variable.
1242 (completion_list_add_name): Delete unused variable.
1243 (expand_line_sal): Delete unused variable.
1244
1245 * breakpoint.c (validate_commands_for_breakpoint):
1246 Delete unused variables.
1247 (insert_catchpoint): Delete unused variable.
1248 (update_watchpoint): Delete unused variable.
1249 (insert_bp_location): Delete unused variable.
1250 (insert_breakpoint_locations): Delete unused variable.
1251 (remove_breakpoint_1): Delete unused variable.
1252 (software_breakpoint_inserted_here_p): Delete unused variable.
1253 (watchpoints_triggered): Delete unused variable.
1254 (bpstat_check_watchpoint): Delete unused variable.
1255 (bpstat_stop_status): Delete unused variable.
1256 (print_one_breakpoint_location): Delete unused variable.
1257 (allocate_bp_location): Delete unused variable.
1258 (create_breakpoint): Delete unused variable.
1259 (watch_command_1): Delete unused variable.
1260 (catch_exception_command_1): Delete unused variable.
1261 (catch_ada_exception_command): Delete unused variable.
1262 (delete_breakpoint): Delete unused variable.
1263 (breakpoint_re_set_one): Delete unused variable.
1264 (do_enable_breakpoint): Delete unused variable.
1265
1266 2010-05-06 Pedro Alves <pedro@codesourcery.com>
1267
1268 * amd64-tdep.c: Include disasm.h.
1269 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
1270 (amd64_insn_length): Moved to disasm.c and renamed.
1271 (fixup_riprel): Adjust.
1272 * disasm.c (do_ui_file_delete): New.
1273 (gdb_insn_length): New.
1274 (gdb_buffered_insn_length_fprintf)
1275 (gdb_buffered_insn_length_init_dis)
1276 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
1277 renamed.
1278 * disasm.h (gdb_insn_length): Declare.
1279 (gdb_buffered_insn_length): Declare.
1280
1281 2010-05-06 Pedro Alves <pedro@codesourcery.com>
1282
1283 * remote.c (clear_threads_parsing_context): New.
1284 (remote_threads_info): Delete unused null_cleanup. Install a
1285 cleanup to clear the threads_parsing_context in case parsing
1286 throws.
1287
1288 2010-05-05 Michael Snyder <msnyder@vmware.com>
1289
1290 * c-exp.y (parse_string_or_char): Delete unused variable.
1291 (c_lex): Delete unused variable.
1292 * cp-name-parser.y (cpname_lex): Delete unused variable.
1293 * ada-exp.y (find_primitive_type): Delete unused variable.
1294 (write_var_or_type): Delete unused variable.
1295 * jv-exp.y (java_parse): Delete unused variable.
1296 (push_expression_name): Delete unused variable.
1297 * p-exp.y (pascal_lex): Delete unused variable.
1298
1299 2010-05-05 Pedro Alves <pedro@codesourcery.com>
1300
1301 * remote.c (remote_threads_info): Really revert previous previous
1302 change.
1303
1304 2010-05-05 Michael Snyder <msnyder@vmware.com>
1305
1306 * elfread.c (elf_symtab_read): Delete unused variable.
1307 (find_separate_debug_file_by_buildid): Delete unused variables.
1308 (elf_symfile_read): Delete unused variable.
1309
1310 * coffread.c (coff_symfile_read): Delete unused variables.
1311
1312 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
1313 (read_pe_exported_syms): Delete unused variable.
1314
1315 * stabsread.c (define_symbol): Delete unused variable.
1316
1317 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
1318 (process_psymtab_comp_unit): Delete unused variable.
1319 (dwarf2_build_psymtabs_hard): Delete unused variable.
1320 (load_partial_comp_unit): Delete unused variable.
1321 (create_all_comp_units): Delete unused variable.
1322 (scan_partial_symbols): Delete unused variable.
1323 (add_partial_symbol): Delete unused variable.
1324 (add_partial_namespace): Delete unused variable.
1325 (add_partial_enumeration): Delete unused variable.
1326 (load_full_comp_unit): Delete unused variable.
1327 (process_full_comp_unit): Delete unused variable.
1328 (read_file_scope): Delete unused variable.
1329 (read_type_unit_scope): Delete unused variable.
1330 (process_structure_scope): Delete unused variable.
1331 (process_enumeration_scope): Delete unused variable.
1332 (read_tag_ptr_to_member_type): Delete unused variable.
1333 (read_typedef): Delete unused variable.
1334 (read_partial_die): Delete unused variable.
1335 (decode_locdesc): Delete unused variable.
1336 (zeroed_partial_die): Delete unused global variable.
1337
1338 * tui/tui-interp.c (_initialize_tui_interp):
1339 Delete unused variable.
1340 * tui/tui-regs.c tui_display_registers_from):
1341 Delete unused variable.
1342 (tui_check_register_values): Delete unused variable.
1343 (tui_register_format): Delete unused variable.
1344 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
1345 * tui/tui-windata.c (tui_display_data_from_line):
1346 Delete unused variables.
1347 (tui_vertical_data_scroll): Delete unused variables.
1348
1349 2010-05-05 Michael Snyder <msnyder@vmware.com>
1350
1351 * remote.c (remote_threads_info): Revert questionable part of
1352 the previous change.
1353
1354 2010-05-05 Michael Snyder <msnyder@vmware.com>
1355
1356 * mi/mi-out.c (mi_table_begin): Delete unused variable.
1357 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
1358 (mi_cmd_var_list_children): Delete unused variable.
1359 (varobj_update_one): Delete unused variable.
1360 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
1361 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
1362 Delete unused variable.
1363 (mi_cmd_stack_list_variables): Delete unused variable.
1364 (list_args_or_locals): Delete unused variable.
1365 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
1366 Delete unused variables.
1367 (mi_cmd_file_list_exec_source_files): Delete unused variable.
1368 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
1369 Delete unused variable.
1370 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
1371 (mi_cmd_interpreter_exec): Delete unused variable.
1372 (mi_on_normal_stop): Delete unused variable.
1373 * mi/mi-main.c (run_one_inferior): Delete unused variable.
1374 (print_one_inferior): Delete unused variables.
1375 (mi_execute_command): Delete unused variable.
1376 (mi_cmd_execute): Delete unused variable.
1377 (timestamp): Delete unused variable.
1378
1379 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
1380 (restore_binary_file): Delete unused variable.
1381 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
1382 * cli/cli-script.c (define_command): Delete unused variables.
1383 (recurse_read_control_structure): Delete unused variable.
1384 (script_from_file): Delete unused variable.
1385 * cli/cli-cmds.c (complete_command): Delete unused variable.
1386 (disassemble_command): Delete unused variable.
1387
1388 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
1389 * tracepoint.c (delete_trace_variable_command):
1390 Delete unused variables.
1391 (encode_actions_1): Delete unused variables.
1392 (start_tracing): Delete unused variable.
1393 (trace_status_mi): Delete unused variable.
1394 (tfind_1): Delete unused variable.
1395 (trace_find_pc_command): Delete unused variable.
1396 (trace_find_line_command): Delete unused variables.
1397 (trace_find_range_command): Delete unused variables.
1398 (trace_find_outside_command): Delete unused variables.
1399 (parse_tracepoint_definition): Delete unused variables.
1400 (tfile_fetch_registers): Delete unused variable.
1401
1402 * dcache.c (dcache_init): Delete unused variable.
1403 (dcache_info): Delete unused variable.
1404
1405 * remote.c (remote_threads_info): Delete unused variable.
1406 (process_stop_reply) :Delete unused variable.
1407 (remote_get_trace_status): Delete unused variables.
1408
1409 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
1410 (thread_from_lwp): Delete unused variable.
1411 (enable_thread_event_reporting): Delete unused variable.
1412 (check_for_thread_db): Delete unused variables.
1413 (thread_db_find_new_threads_2): Delete unused variable.
1414
1415 * linux-fork.c (info_checkpoints_command): Delete unused variables.
1416 (checkpoint_command): Delete unused variable.
1417 (linux_fork_context): Delete unused variables.
1418
1419 * linux-nat.c (linux_parent_pid): Delete unused global variable.
1420 (linux_tracefork_child): Delete unused variable.
1421 (linux_child_follow_fork): Delete unused variable.
1422 (linux_nat_detach): Delete unused variable.
1423 (linux_handle_extended_wait): Delete unused variable.
1424 (linux_nat_has_pending_sigint): Delete unused variable.
1425 (linux_nat_find_memory_regions): Delete unused variable.
1426 (linux_nat_make_corefile_notes): Delete unused variables.
1427 (linux_nat_info_proc_cmd): Delete unused variable.
1428 (linux_proc_pending_signals): Delete unused variable.
1429 (linux_nat_stop_lwp): Delete unused variables.
1430 (_initialize_linux_nat): Delete unused variable.
1431
1432 * ser-pipe.c (pipe_ops): Delete unused global variable.
1433
1434 * linux-record.c (record_linux_system_call):
1435 Delete unused variables.
1436
1437 * corelow.c (core_xfer_partial): Delete unused variables.
1438
1439 * solib-svr4.c (find_program_interpreter): Delete unused variable.
1440 (svr4_solib_create_inferior_hook): Add ifdef around
1441 conditionally-used variable declarations.
1442
1443 * solib.c (solib_find): Delete unused variable.
1444 (free_so_symbols): Delete unused variable.
1445 (info_sharedlibrary_command): Delete unused variable.
1446 (reload_shared_libraries_1): Delete unused variable.
1447 (_initialize_solib): Delete unused variable.
1448
1449 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
1450 (i386_collect_xstateregset): Delete unused variable.
1451 * i387-tdep.c (i387_print_float_info): Delete unused variable.
1452
1453 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
1454 Delete unused variable 'type'.
1455
1456 2010-05-05 Joel Brobecker <brobecker@adacore.com>
1457
1458 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
1459 ada-lang.c: Remove comment mentioning these macros.
1460 * m2-exp.y: Delete commented out code.
1461
1462 2010-05-05 Joel Brobecker <brobecker@adacore.com>
1463
1464 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
1465 for array types.
1466 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
1467
1468 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
1469
1470 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
1471 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
1472 ATTRIBUTE_UNUSED.
1473 (cleanup_kernel_helper_return): Likewise.
1474 * arm-tdep.c (copy_unmodified): Likewise.
1475 (copy_preload): Likewise.
1476 (copy_copro_load_store): Likewise.
1477 (cleanup_branch): Likewise.
1478 (copy_b_bl_blx): Likewise.
1479 (copy_bx_blx_reg): Likewise.
1480 (copy_alu_imm): Likewise.
1481 (copy_alu_reg): Likewise.
1482 (copy_alu_shifted_reg): Likewise.
1483 (cleanup_load): Likewise.
1484 (cleanup_store): Likewise.
1485 (cleanup_block_load_pc): Likewise.
1486 (cleanup_svc): Likewise.
1487 (copy_undef): Likewise.
1488 (copy_unpred): Likewise.
1489 * remote.c (register_remote_support_xml): Likewise.
1490
1491 2010-05-05 Hui Zhu <teawater@gmail.com>
1492
1493 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
1494
1495 2010-05-04 Mark Kettenis <kettenis@gnu.org>
1496
1497 * remote.c (register_remote_support_xml)
1498 (remote_query_supported_append, remote_query_supported): Add cast
1499 to NULL used as sentinel.
1500 * tracepoint.c (tvariables_info_1): Likewise.
1501 * utils.c (add_internal_problem_command): Likewise.
1502
1503 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1504
1505 * dwarf2loc.c (read_pieced_value, write_pieced_value,
1506 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
1507 registers gracefully.
1508
1509 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1510
1511 * exec.c (print_section_info): Display entry point without arch
1512 specific parts.
1513
1514 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
1515
1516 PR exp/11349.
1517 * printcmd.c (x_command): Only dereference once implicitly for
1518 TYPE_CODE_REF.
1519
1520 2010-05-03 Doug Evans <dje@google.com>
1521
1522 * event-loop.c (gdb_timer): Delete unused global.
1523 (create_timer): Update.
1524
1525 2010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1526
1527 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
1528 CURRENT->DECLARATION case.
1529 * cp-support.h (struct using_direct): Provide extended comment.
1530
1531 2010-05-03 Mark Kettenis <kettenis@gnu.org>
1532
1533 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
1534 HPPABSD_SIZEOF_GREGS.
1535 (HPPAOBSD_SIZEOF_FPREGS): New define.
1536 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
1537 (hppaobsd_supply_fpregset): New function.
1538 (hppaobsd_gregset): Renamed from hppabsd_gregset.
1539 (hppaobsd_fpregset): New variable.
1540 (hppaobsd_regset_from_core_section): Handle floating-point registers.
1541 (_initialize_hppabsd_tdep): Remove spurious blank line.
1542
1543 2010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
1544
1545 PR pascal/11349.
1546 * p-valprint.c (pascal_value_print): Always dereference a value with
1547 type code TYPE_CODE_REF.
1548
1549 2010-05-03 Pedro Alves <pedro@codesourcery.com>
1550
1551 * remote.c (remote_notice_signals): New.
1552 (remote_start_remote): In non-stop mode, update the remote end on
1553 which signals it can silently pass.
1554 (init_remote_ops): Install remote_notice_signals.
1555
1556 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1557
1558 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
1559 * command.h (error_no_arg): ... here. Remove NORETURN, change
1560 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1561 * defs.h (NORETURN, ATTR_NORETURN): Remove.
1562 (perror_with_name, verror, error, error_stream, vfatal, fatal)
1563 (internal_verror, internal_error, nomem): Remove NORETURN, change
1564 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1565 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
1566 (throw_vfatal, throw_error): Remove NORETURN.
1567 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
1568 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
1569 (throw_error, deprecated_throw_reason): Remove NORETURN, change
1570 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1571 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
1572 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
1573 NORETURN.
1574 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
1575 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
1576 ATTRIBUTE_NORETURN.
1577 * target.c (tcomplain): Likewise.
1578 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
1579 ATTRIBUTE_NORETURN.
1580 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
1581 (internal_error, perror_with_name, nomem): Remove NORETURN.
1582 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
1583 ATTRIBUTE_NORETURN.
1584
1585 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1586
1587 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1588 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
1589 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
1590 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1591 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
1592 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1593 * complaints.h (complaint, internal_complaint): Likewise.
1594 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
1595 (ATTR_FORMAT): Remove.
1596 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
1597 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
1598 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
1599 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
1600 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
1601 (internal_error, internal_vwarning, internal_warning, warning)
1602 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1603 * disasm.c (fprintf_disasm): Likewise.
1604 * exceptions.c (throw_it): Likewise.
1605 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
1606 (throw_error): Likewise.
1607 * language.h (type_error, range_error): Likewise.
1608 * linespec.c (cplusplus_error): Likewise.
1609 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
1610 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
1611 * monitor.c (monitor_debug): Likewise.
1612 * parser-defs.h (parser_fprintf): Likewise.
1613 * serial.h (serial_printf): Likewise.
1614 * tui/tui-hooks.c (tui_query_hook): Likewise.
1615 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
1616 (uo_message): Likewise.
1617 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
1618 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
1619 Likewise.
1620 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
1621
1622 2010-05-02 Pedro Alves <pedro@codesourcery.com>
1623
1624 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
1625 (cli_table_header, cli_begin, cli_end, cli_field_int)
1626 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
1627 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
1628 Delete forward declarations.
1629 (cli_ui_out_impl): Move below the callbacks.
1630 (_initialize_cli_out): Delete.
1631
1632 2010-05-02 Pedro Alves <pedro@codesourcery.com>
1633
1634 * README: Use consistent `GDB' and `GDBserver' spellings.
1635
1636 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1637
1638 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
1639
1640 2010-05-01 Pedro Alves <pedro@codesourcery.com>
1641
1642 * infrun.c (prepare_for_detach): In non-stop, context switch to
1643 the thread that got the event before handling the event.
1644
1645 2010-04-30 Tom Tromey <tromey@redhat.com>
1646
1647 * symtab.c (symbol_set_names): Fix typo.
1648
1649 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
1650
1651 * python/py-param.c (parm_constants): Avoid ARI warning
1652 by adding ARI comment.
1653 (parmpy_init): Likewise.
1654
1655 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
1656
1657 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
1658 and created type for re-use.
1659
1660 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
1661
1662 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
1663
1664 2010-04-29 Doug Evans <dje@google.com>
1665
1666 * ser-base.h (reschedule): Delete prototype.
1667 * ser-base.c (reschedule): Make static.
1668
1669 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1670
1671 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
1672 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
1673 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
1674 EABI.
1675 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
1676 use.
1677
1678 2010-04-29 Pedro Alves <pedro@codesourcery.com>
1679
1680 PR gdb/11557
1681
1682 * regcache.c (registers_changed): Rename to ...
1683 (registers_changed_ptid): ... this, and only delete register cache
1684 entries matching the ptid filter argument.
1685 (registers_changed): Reimplement on top of registers_changed_ptid.
1686 * regcache.h (registers_changed_ptid): Declare.
1687 * target.c (target_resume): Flush register caches.
1688
1689 2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
1690 Tom Tromey <tromey@redhat.com>
1691 Thiago Jung Bauermann <bauerman@br.ibm.com>
1692
1693 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
1694 (SUBDIR_PYTHON_SRCS): Likewise.
1695 (py-parameter.o): New rule.
1696 * python/py-parameter.c: New file.
1697 * python/python-internal.h (gdbpy_initialize_parameter)
1698 (gdbpy_parameter, gdbpy_parameter_value)
1699 (gdbpy_parse_command_name): Declare.
1700 * python/py-cmd.c (parse_command_name): Rename to
1701 gdbpy_parse_command_name.
1702 (gdbpy_parse_command_name): Accept a starting list parameter and
1703 use over cmdlist.
1704 (cmdpy_init): Use gdbpy_parse_command_name.
1705 * python/python.c (parameter_to_python): Rename to
1706 gdbpy_parameter_to_python. Accept enum var_types and value.
1707 (gdbpy_parameter): Use gdbpy_parameter_value.
1708 (_initialize_python): Call gdbpy_initialize_parameters.
1709
1710 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1711
1712 * MAINTAINERS: Add myself for write after approval privileges.
1713
1714 2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
1715
1716 D language support.
1717 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
1718 (COMMON_OBS): Add d-lang.o d-valprint.o.
1719 (HFILES_NO_SRCDIR): Add d-lang.h.
1720 * NEWS: Mention D language support.
1721 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
1722 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
1723 * d-lang.c: New file.
1724 * d-lang.h: New file.
1725 * d-valprint.c: New file.
1726 * defs.h (enum language): Add language_d.
1727 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
1728 * language.c (binop_result_type, integral_type, character_type)
1729 (string_type, boolean_type, structured_type): Add language_d.
1730 * symfile.c (init_filename_language_table): Add language_d.
1731 * symtab.c: Include d-lang.h.
1732 (symbol_init_language_specific, symbol_find_demangled_name)
1733 (symbol_natural_name, lookup_symbol_in_language)
1734 (symbol_demangled_name, symbol_matches_domain): Add language_d.
1735
1736 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1737
1738 * solib-svr4.c (solib_svr4_r_map): Expand function description.
1739
1740 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1741
1742 * symfile.c (init_filename_language_table): Register .dg files
1743 with language_ada.
1744
1745 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1746
1747 * gdbtypes.h (struct main_type): Expand comment about target_type
1748 field.
1749
1750 2010-04-27 Pedro Alves <pedro@codesourcery.com>
1751 Tristan Gingold <gingold@adacore.com>
1752
1753 * symfile.c (reread_symbols): Also search for file in libraries.
1754 Update comment.
1755
1756 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1757
1758 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
1759 in terms of configuration.
1760
1761 2010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1762
1763 * objfiles.c: Include solist.h.
1764 (free_all_objfiles): New variable so. Check stale solist objfiles.
1765 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
1766 and no_shared_libraries.
1767
1768 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1769
1770 ARI warning fix.
1771 * python/py-auto-load.c (source_section_scripts): Remove trailing
1772 new-line in i18n string.
1773
1774 2010-04-26 Doug Evans <dje@google.com>
1775
1776 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
1777
1778 2010-04-26 Tom Tromey <tromey@redhat.com>
1779
1780 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
1781 command list.
1782
1783 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
1784
1785 Removal of config/i386/nm-i386sol2.h native configuration file.
1786 * config/i386/nm-i386sol2.h: Remove file.
1787 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
1788 * config/i386/sol2-64.mh: Idem.
1789 * config/djgpp/fnchange.lst: Remove reference to that file.
1790 * Makefile.in (HFILES_NO_SRCDIR): Idem.
1791
1792 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
1793
1794 PR breakpoints/11531.
1795 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
1796 macro definition and related comment.
1797 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
1798 (resume): Remove code and comment related to this macro.
1799
1800 2010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1801
1802 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
1803 Fix whitespace.
1804
1805 2010-04-24 Pedro Alves <pedro@codesourcery.com>
1806
1807 * defs.h: Adjust comment.
1808 * filesystem.h, filesystem.c: New files.
1809 * Makefile.in (SFILES): Add filesystem.c.
1810 (COMMON_OBS): Add filesystem.o.
1811 * solib.c (solib_find): Handle DOS-based filesystems. Handle
1812 different target and host path flavours.
1813 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
1814 has_dos_based_file_system on the gdbarch.
1815 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
1816 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
1817 * i386-tdep.c (i386_go32_init_abi): Ditto.
1818 * gdbarch.sh (has_dos_based_file_system): New.
1819 * gdbarch.h, gdbarch.c: Regenerate.
1820 * NEWS: Mention improved support for remote targets with DOS-based
1821 filesystems. Mention new `set/show target-file-system-kind'
1822 commands.
1823
1824 2010-04-23 Stan Shebs <stan@codesourcery.com>
1825
1826 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
1827 comments.
1828 (struct agent_reqs): Remove.
1829 (ax_reg_mask): Declare.
1830 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
1831 (free_agent_expr): Free reg_mask.
1832 (ax_print): Add scope and register mask info.
1833 (ax_reqs): Remove agent_reqs argument, use agent expression
1834 fields, and move part of register mask computation to...
1835 (ax_reg_mask): New function.
1836 * ax-gdb.c (gen_trace_static_fields): Call it.
1837 (gen_traced_pop): Ditto.
1838 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
1839 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
1840 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
1841 (gen_eval_for_expr): Ditto, and require an rvalue.
1842 (agent_command): Call ax_reqs.
1843 (agent_eval_command): Ditto.
1844 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
1845 (validate_action_line): Ditto.
1846 (collect_symbol): Ditto.
1847 (encode_actions_1): Ditto.
1848
1849 2010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
1850 Paul Pluzhnikov <ppluzhnikov@google.com>
1851 Jan Kratochvil <jan.kratochvil@redhat.com>
1852
1853 Fix deadlock on looped list of loaded shared objects.
1854 * solib-svr4.c (LM_PREV): New function.
1855 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
1856 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
1857 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
1858 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
1859
1860 2010-04-23 Doug Evans <dje@google.com>
1861
1862 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
1863 python.
1864 * configure: Regenerate.
1865 * main.c: #include "python/python.h".
1866 (captured_main): Defer loading auto-loaded scripts until after
1867 local_gdbinit has been sourced.
1868 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
1869 (load_auto_scripts_for_objfile): New function.
1870 (auto_load_new_objfile): Call it.
1871 * python/python.h (gdbpy_global_auto_load): Declare.
1872 (load_auto_scripts_for_objfile): Declare.
1873
1874 Add support for auto-loading scripts from .debug_gdb_scripts section.
1875 * NEWS: Add entry for .debug_gdb_scripts.
1876 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
1877 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
1878 (py-auto-load.o): New rule.
1879 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
1880 * cli/cli-cmds.h (find_and_open_script): Update prototype.
1881 * python/py-auto-load.c: New file.
1882 * python/python-internal.h: #include <stdio.h>.
1883 (set_python_list, show_python_list): Declare.
1884 (gdbpy_initialize_auto_load): Declare.
1885 (source_python_script_for_objfile): Declare.
1886 * python/python.c: Remove #include of observer.h.
1887 (gdbpy_auto_load): Moved to py-auto-load.c.
1888 (GDBPY_AUTO_FILENAME): Ditto.
1889 (gdbpy_new_objfile): Delete.
1890 (source_python_script_for_objfile): New function.
1891 (set_python_list, show_python_list): Make externally visible.
1892 (_initialize_python): Move "auto-load" command to py-auto-load.c
1893 and observer_attach_new_objfile to py-auto-load.c.
1894
1895 2010-04-23 Jerome Guitton <guitton@adacore.com>
1896
1897 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
1898 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
1899 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
1900 New constants.
1901 (alpha_heuristic_analyze_probing_loop): New function.
1902 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
1903 and handle cases when a stack probe loop is generated.
1904 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
1905 (alpha_mdebug_max_frame_size_exceeded): New function.
1906 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
1907 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
1908 Return 0 when the maximum debuggable frame size has been exceeded.
1909
1910 2010-04-23 Joel Brobecker <brobecker@adacore.com>
1911
1912 Fix ARI warning.
1913 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
1914
1915 2010-04-20 Chris Moller <cmoller@redhat.com>
1916
1917 PR 10179
1918
1919 * symtab.c (rbreak_command): Added code to include a filename
1920 specification in the rbreak argument.
1921 * NEWS: Added a brief description of filename-qualified rbreak.
1922
1923 2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1924
1925 Fix crashes on dangling display expressions.
1926 * ada-lang.c (ada_operator_check): New function.
1927 (ada_exp_descriptor): Fill-in the field operator_check.
1928 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
1929 * jv-lang.c (exp_descriptor_java): Likewise.
1930 * m2-lang.c (exp_descriptor_modula2): Likewise.
1931 * scm-lang.c (exp_descriptor_scm): Likewise.
1932 * parse.c (exp_descriptor_standard): Likewise.
1933 (operator_check_standard): New function.
1934 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
1935 * parser-defs.h (struct exp_descriptor): New field operator_check.
1936 (operator_check_standard, exp_uses_objfile): New declarations.
1937 * printcmd.c: Remove the inclusion of solib.h.
1938 (display_uses_solib_p): Remove the function.
1939 (clear_dangling_display_expressions): Call lookup_objfile_from_block
1940 and exp_uses_objfile instead of display_uses_solib_p.
1941 * solist.h (struct so_list) <objfile>: New comment.
1942 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
1943 * symtab.h (lookup_objfile_from_block): New declaration.
1944 (struct general_symbol_info) <obj_section>: Extend the comment.
1945
1946 2010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
1947 Thiago Jung Bauermann <bauerman@br.ibm.com>
1948
1949 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
1950 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
1951 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
1952 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
1953 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
1954 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
1955 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
1956 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
1957 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
1958 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
1959 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
1960 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
1961 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
1962 Define, in case <ptrace.h> doesn't provide it.
1963 (booke_debug_info): New variable.
1964 (max_slots_number): Ditto.
1965 (hw_break_tuple): New struct.
1966 (thread_points): Ditto.
1967 (ppc_threads): New variable.
1968 (PPC_DEBUG_CURRENT_VERSION): New define.
1969 (have_ptrace_new_debug_booke): New function.
1970 (ppc_linux_check_watch_resources): Renamed to ...
1971 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
1972 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
1973 (booke_cmp_hw_point): New function.
1974 (booke_find_thread_points_by_tid): Ditto.
1975 (booke_insert_point): Ditto.
1976 (booke_remove_point): Ditto.
1977 (ppc_linux_insert_hw_breakpoint): Ditto.
1978 (ppc_linux_remove_hw_breakpoint): Ditto.
1979 (get_trigger_type): Ditto.
1980 (ppc_linux_insert_watchpoint): Handle BookE processors.
1981 (ppc_linux_remove_watchpoint): Ditto.
1982 (ppc_linux_new_thread): Ditto.
1983 (ppc_linux_thread_exit): New function..
1984 (ppc_linux_stopped_data_address): Handle BookE processors.
1985 (ppc_linux_watchpoint_addr_within_range): Ditto.
1986 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
1987 to_remove_hw_breakpoint fields of the target operations struct.
1988 Add observe for the thread_exit event.
1989
1990 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
1991
1992 * i386-linux-nat.c (regmap): Removed.
1993 (fetch_register): Replace regmap with
1994 i386_linux_gregset_reg_offset.
1995 (store_register): Likewise.
1996 (supply_gregset): Likewise.
1997 (fill_gregset): Likewise.
1998
1999 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
2000 global.
2001
2002 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
2003
2004 2010-04-22 Chris Moller <cmoller@redhat.com>
2005
2006 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
2007 method of popping recursion-detection stack with a method based on
2008 obstack_object_size(). (Similar to the PR9167 patch below, but for
2009 the static array obstack rather than the static member obstack.)
2010
2011 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
2012
2013 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
2014 (_initialize_amd64_linux_nat): Replace
2015 amd64_linux_gregset64_reg_offset with
2016 amd64_linux_gregset_reg_offset.
2017
2018 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
2019 global.
2020
2021 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
2022
2023 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
2024
2025 PR stabs/11479.
2026 * stabsread.c (set_length_in_type_chain): New function.
2027 (read_struct_type): Call set_length_in_type_chain function.
2028 (read_enum_type): Idem.
2029
2030 2010-04-21 Stan Shebs <stan@codesourcery.com>
2031 Nathan Sidwell <nathan@codesourcery.com>
2032
2033 * tracepoint.c (trace_save): Open in binary mode.
2034
2035 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
2036
2037 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
2038 fields.
2039 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
2040 builtin_char32 fields.
2041 * printcmd.c (decode_format): Set char size to '\0'
2042 for strings unless explicit size is given.
2043 (print_formatted): Correct calculation of NEXT_ADDRESS
2044 for 16 or 32 bit strings.
2045 (do_examine): Do not force byte size for strings.
2046 Use builtin_char16 and builtin_char32 types to display
2047 16 or 32 bit-wide strings.
2048 (x_command): Set LAST_SIZE to 'b' for string type.
2049
2050 2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
2051
2052 PR corefiles/11523
2053 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
2054 XCR0 first.
2055
2056 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
2057 there is no .reg-xstate section.
2058 (i386_linux_core_read_description): Check XCR0 first.
2059
2060 2010-04-21 Mike Frysinger <vapier@gentoo.org>
2061
2062 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
2063 for len <= 8.
2064
2065 2010-04-21 Chris Moller <cmoller@redhat.com>
2066
2067 PR 9167
2068 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
2069 method of popping recursion-detection stack with a method based on
2070 obstack_object_size().
2071
2072 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
2073
2074 PR pascal/11492.
2075 * p-valprint.c (pascal_val_print): Fix default printing of integer
2076 arrays.
2077
2078 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
2079
2080 Fix compilation warning on gcc-4.1.2.
2081 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
2082 local variable`pc' to zero.
2083
2084 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2085
2086 Implement thread support with core files on alpha-tru64.
2087 * dec-thread.c (dec_thread_find_new_threads): New function,
2088 extracted from resync_thread_list.
2089 (resync_thread_list): Add OPS parameter. Replace extracted-out
2090 code by call to dec_thread_find_new_threads.
2091 (dec_thread_wait): Update call to resync_thread_list.
2092 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
2093
2094 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2095
2096 * ada-lang.c (value_pointer): New function.
2097 (make_array_descriptor): Call value_pointer to convert addresses to
2098 pointers.
2099
2100 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2101
2102 * rs6000-aix-tdep.c: #include exceptions.h.
2103 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
2104 while reading the memory at ADDR, then ADDR cannot be a function
2105 descriptor.
2106
2107 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2108
2109 * ada-typeprint.c (ada_print_typedef): New function.
2110 * ada-lang.h (ada_print_typedef): Add declaration.
2111 * ada-lang.c (ada_language_defn): set la_print_typdef field
2112 to ada_print_typedef.
2113
2114 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2115
2116 * procfs.c (procfs_address_to_host_pointer): Only define when used.
2117
2118 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2119
2120 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
2121 (iterate_over_mappings): Adjust function profile. Add declaration.
2122 (insert_dbx_link_bpt_in_region, info_mappings_callback):
2123 Adjust accordingly.
2124
2125 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2126
2127 * procfs.c (solib_mappings_callback): Move function up to avoid
2128 a compiler warning.
2129
2130 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2131
2132 * procfs.c (find_signalled_thread, find_stop_signal): Move
2133 these functions down to define them only when used.
2134
2135 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2136
2137 * valprint.c (common_val_print): Fix the value before extracting
2138 its contents.
2139 * ada-lang.c (ada_to_fixed_value): Make this function extern.
2140 * ada-lang.h (ada_to_fixed_value): New function declaration.
2141 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
2142 to avoid code duplication and fix a bug in the handling of
2143 fixed types contents.
2144
2145 2010-04-20 Tom Tromey <tromey@redhat.com>
2146
2147 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
2148 (read_partial_die): Likewise.
2149 (dwarf_attr_name): Likewise.
2150
2151 2010-04-20 Chris Moller <cmoller@redhat.com>
2152
2153 PR 10867
2154
2155 * cp-valprint.c (global): Adding new static array recursion
2156 detection obstack.
2157 (cp_print_value_fields, cp_print_static_field): Added new static
2158 array recursion detection code.
2159
2160 2010-04-20 Mark Kettenis <kettenis@gnu.org>
2161
2162 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
2163 general-purpose register set should be 68 instead of 144.
2164 (i386_linux_sse_regset_sections): Likewise.
2165 (i386_linux_avx_regset_sections): Likewise.
2166
2167 2010-04-20 Stan Shebs <stan@codesourcery.com>
2168 Nathan Sidwell <nathan@codesourcery.com>
2169
2170 * dwarf2loc.c (struct axs_var_loc): New struct.
2171 (dwarf2_tracepoint_var_loc): New function.
2172 (dwarf2_tracepoint_var_access): New function.
2173 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
2174 with DW_OP_piece.
2175 (locexpr_describe_location_piece): New function.
2176 (locexpr_describe_location_1): New function.
2177 (locexpr_describe_location): Call it, update signature.
2178 (loclist_describe_location): Rewrite to loop over locations,
2179 update signature.
2180 * symtab.h (struct symbol_computed_ops): Add address to
2181 describe_location arguments, return void.
2182 * printcmd.c (address_info): Get context PC, pass to computed
2183 location description.
2184 * tracepoint.c (scope_info): Ditto.
2185 * ax-gdb.c (trace_kludge): Export.
2186
2187 2010-04-20 Tom Tromey <tromey@redhat.com>
2188
2189 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
2190 (struct dwarf2_cie) <segment_size>: New field.
2191 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
2192 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
2193 DW_FORM_exprloc.
2194 (read_attribute_value): Handle DW_FORM_flag_present,
2195 DW_FORM_sec_offset, DW_FORM_exprloc.
2196 (dump_die_shallow): Likewise.
2197 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
2198 (dwarf2_const_value): Handle DW_FORM_exprloc.
2199 (attr_form_is_block): Likewise.
2200 (struct line_header) <maximum_ops_per_instruction>: New field.
2201 (dwarf_decode_line_header): Set new field.
2202 (dwarf_decode_lines): Handle new field.
2203
2204 2010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2205
2206 * f-exp.y: Add new production to recognize the `logical*8' type.
2207 (LOGICAL_S8_KEYWORD): New token.
2208 * f-lang.c (enum f_primitive_types)
2209 <f_primitive_type_logical_s8>: New field.
2210 (f_language_arch_info): Handling `logical*8' type.
2211 (build_fortran_types): Building `logical*8' type.
2212 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
2213
2214 2010-04-19 Doug Evans <dje@google.com>
2215
2216 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
2217 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
2218 (pipe_close): Ditto.
2219
2220 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2221
2222 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
2223
2224 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2225
2226 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
2227 type to void function.
2228
2229 2010-04-19 Stan Shebs <stan@codesourcery.com>
2230 Vladimir Prus <vladimir@codesourcery.com>
2231
2232 * tracepoint.c (tfind_1): Add missing newline, report exit from
2233 tfind mode as such.
2234 * target.c (update_current_target): Make default
2235 to_trace_find return -1.
2236
2237 2010-04-19 Mike Frysinger <vapier@gentoo.org>
2238
2239 * objc-lang.c (find_methods): Move symname check up.
2240
2241 2010-04-19 Pedro Alves <pedro@codesourcery.com>
2242
2243 * ada-lang.c (print_recreate_exception)
2244 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
2245 not "catch unhandled".
2246
2247 2010-04-19 Pedro Alves <pedro@codesourcery.com>
2248
2249 PR breakpoints/8554.
2250
2251 Implement `save-breakpoints'.
2252
2253 * breakpoint.c (save_cmdlist): New.
2254 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
2255 to save_cmdlist.
2256 (print_recreate_catch_fork): New.
2257 (catch_fork_breakpoint_ops): Install it.
2258 (print_recreate_catch_vfork): New.
2259 (catch_vfork_breakpoint_ops): Install it.
2260 (print_recreate_catch_syscall): New.
2261 (catch_syscall_breakpoint_ops): Install it.
2262 (print_recreate_catch_exec): New.
2263 (catch_exec_breakpoint_ops): Install it.
2264 (print_recreate_exception_catchpoint): New.
2265 (gnu_v3_exception_catchpoint_ops): Install it.
2266 (save_breakpoints): New, based on tracepoint_save_command, but
2267 handle all breakpoint types.
2268 (save_breakpoints_command): New.
2269 (tracepoint_save_command): Rename to...
2270 (save_tracepoints_command): ... this, and reimplement using
2271 save_breakpoints.
2272 (save_command): New.
2273 (_initialize_breakpoints): Install the "save" command prefix.
2274 Install the "save breakpoints" command. Make "save-tracepoints" a
2275 deprecated alias for "save tracepoints".
2276 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
2277 * ada-lang.c (print_recreate_exception): New.
2278 (print_recreate_catch_exception): New.
2279 (catch_exception_breakpoint_ops): Install it.
2280 (print_recreate_catch_exception_unhandled): New.
2281 (catch_exception_unhandled_breakpoint_ops): Install it.
2282 (print_recreate_catch_assert): New.
2283 (catch_assert_breakpoint_ops): Install it.
2284
2285 * NEWS: Mention the new `save breakpoints' command. Mention the
2286 new `save tracepoints' alias and that `save-tracepoints' is now
2287 deprecated.
2288
2289 2010-04-18 Pedro Alves <pedro@codesourcery.com>
2290
2291 PR tui/9217
2292
2293 * tui/tui-out.c: Include cli-out.h.
2294 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
2295 (tui_begin, tui_end, tui_field_int, tui_field_skip)
2296 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
2297 (tui_message, tui_wrap_hint, tui_flush): Delete forward
2298 declarations.
2299 (struct ui_out_data): Rename to...
2300 (struct tui_ui_out_data): ... this. Remove `stream' and
2301 `suppress_output' fields, and inherit cli_ui_out_data.
2302 (tui_out_data): New typedef.
2303 (tui_ui_out_impl): Don't initialize fields staticaly.
2304 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
2305 (tui_begin, tui_end): Delete.
2306 (tui_field_int): Adjust to delegate most work to the base type.
2307 (tui_field_skip): Delete.
2308 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
2309 delegate most work to the base type.
2310 (tui_spaces): Delete.
2311 (tui_text): Adjust to delegate most work to the base type.
2312 (tui_message): Delete.
2313 (tui_wrap_hint): Delete.
2314 (tui_flush): Delete.
2315 (out_field_fmt): Delete.
2316 (field_separator): Delete.
2317 (tui_out_new): Adjust to initialize the base type.
2318 (_initialize_tui_out): Initialize tui_ui_out_impl.
2319 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
2320 cli_ui_out_data.
2321 (cli_out_data): Adjust.
2322 (cli_ui_out_impl): Make extern.
2323 (cli_table_header, cli_field_int, cli_field_skip): Use
2324 uo_field_string instead of cli_field_string.
2325 (cli_redirect): Adjust to use cli_out_data.
2326 (cli_out_data_ctor): New.
2327 (cli_out_new): Use it.
2328 * cli-out.h (struct ui_file): Remove forward declaration.
2329 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
2330 (cli_ui_out_impl): Declare.
2331 (cli_out_data_ctor): Declare.
2332 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
2333 (uo_field_string): No longer static.
2334 (ui_out_data): Change return type to void pointer.
2335 (ui_out_new): Change `data' parameter type to void pointer.
2336 * ui-out.h (struct ui_out_data): Don't forward declare.
2337 (ui_out_data): Change return type to void pointer.
2338 (ui_out_new): Change `data' parameter type to void pointer.
2339 (uo_field_string): Declare.
2340
2341 2010-04-17 Pedro Alves <pedro@codesourcery.com>
2342
2343 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
2344 instead of always false.
2345
2346 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
2347
2348 PR corefiles/11511
2349 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
2350 orig_rax.
2351
2352 2010-04-17 Pedro Alves <pedro@codesourcery.com>
2353
2354 * breakpoint.c (watchpoints_triggered): Use
2355 is_hardware_watchpoint.
2356 (watchpoints_triggered): Ditto.
2357 (bpstat_check_location): Use is_watchpoint and
2358 is_hardware_watchpoint.
2359 (bpstat_check_watchpoint): Use is_watchpoint and
2360 is_hardware_watchpoint.
2361 (bpstat_stop_status): Fix comment.
2362 (user_settable_breakpoint): Use is_watchpoint.
2363 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
2364 (disable_watchpoints_before_interactive_call_start): Use
2365 is_watchpoint.
2366 (enable_watchpoints_after_interactive_call_stop): Use
2367 is_watchpoint.
2368 (clear_command): Use is_watchpoint.
2369 (do_enable_breakpoint): Use is_watchpoint.
2370
2371 2010-04-16 Mike Frysinger <vapier@gentoo.org>
2372
2373 * solib-frv.c (enable_break1_done): Delete.
2374 (enable_break2): Do not check enable_break1_done. Move the
2375 enable_break2_done setting and call to
2376 remove_solib_event_breakpoints() to the end. Return without
2377 warning when the contents of _dl_debug_addr are 0.
2378 (enable_break): Do not set enable_break1_done.
2379 (frv_clear_solib): Likewise.
2380
2381 2010-04-16 Kevin Buettner <kevinb@redhat.com>
2382
2383 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
2384 instead of an error if no PLT entry is found. Return a
2385 potentially useful result.
2386 (m32c_m16c_pointer_to_address): Add code to search for function
2387 address when no .plt entry is found.
2388
2389 2010-04-16 Stan Shebs <stan@codesourcery.com>
2390
2391 * tracepoint.c (trace_variable_command): Run a cleanup.
2392
2393 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2394
2395 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
2396
2397 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2398
2399 Support for Windows OS Thread Information Block.
2400 * NEWS: Document new feature.
2401 * remote.c (PACKET_qGetTIBAddr): New enum element.
2402 (remote_get_tib_address): New function.
2403 (init_remote_ops): Set to_get_tib_address field
2404 to remote_get_tib_address.
2405 (_initialize_remote): Add add_packet_config_cmd
2406 for PACKET_qGetTIBAddr.
2407 * target.c (update_current_target): Set default value for
2408 new to_get_tib_address field.
2409 * target.h (target_ops): New field to_get_tib_address.
2410 (target_get_tib_address): New macro.
2411 * windows-nat.c (thread_info): Add thread_local_base field.
2412 (windows_add_thread): Add tlb argument of type 'void *'.
2413 (fake_create_process): Adapt windows_add_thread call.
2414 (get_windows_debug_event): Idem.
2415 (windows_get_tib_address): New function.
2416 (init_windows_ops): Set to_get_tib_address field
2417 to remote_get_tib_address.
2418 (_initialize_windows_nat): Replace info_w32_cmdlist
2419 initialization by a call to init_w32_command_list.
2420 (info_w32_command, info_w32_cmdlist): Removed from here...
2421 to windows-tdep.c file.
2422 * windows-tdep.h (info_w32_cmdlist): Declare.
2423 (init_w32_command_list): New external function
2424 declaration.
2425 * windows-tdep.c: Add several headers.
2426 (info_w32_cmdlist): to here, made global.
2427 (thread_information_32): New struct.
2428 (thread_information_64): New struct.
2429 (TIB_NAME): New char array.
2430 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
2431 (maint_display_all_tib): New static variable.
2432 (windows_get_tlb_type): New function.
2433 (tlb_value_read, tlb_value_write): New functions.
2434 (tlb_value_funcs): New static struct.
2435 (tlb_make_value): New function.
2436 (display_one_tib): New function.
2437 (display_tib): New function.
2438 (show_maint_show_all_tib):New function.
2439 (info_w32_command): Moved from windows-nat.c.
2440 (init_w32_command_list): New function.
2441 (_initialize_windows_tdep): New function.
2442 New "maint set/show show-all-tib" command
2443 New "$_tlb" internal variable.
2444
2445 2010-04-16 Joel Brobecker <brobecker@adacore.com>
2446
2447 * tui/tui-regs.c (tui_display_register): Add comment about
2448 a couple of casts.
2449 * tui/tui-stack.c (tui_show_locator_content): Ditto.
2450
2451 2010-04-15 Stan Shebs <stan@codesourcery.com>
2452
2453 * frame.c: Include tracepoint.h.
2454 (get_current_frame): Allow a trace frame to be an alternate source
2455 of stack frame data.
2456 * tracepoint.c (tfind_1): Don't try to get current stack frame if
2457 it won't succeed.
2458
2459 2010-04-15 Pedro Alves <pedro@codesourcery.com>
2460
2461 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
2462 flags.
2463 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
2464
2465 2010-04-15 Doug Evans <dje@google.com>
2466
2467 * NEWS: Add entry for python program space support.
2468 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
2469 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
2470 (py-progspace.o): New rule.
2471 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
2472 function.
2473 (find_pretty_printer_from_progspace): New function.
2474 (find_pretty_printer_from_gdb): New function.
2475 (find_pretty_printer): Rewrite.
2476 * python/py-progspace.c: New file.
2477 * python/python-internal.h (program_space): Add forward decl.
2478 (pspace_to_pspace_object, pspy_get_printers): Declare.
2479 (gdbpy_initialize_pspace): Declare.
2480 * python/python.c: #include "progspace.h".
2481 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
2482 (_initialize_python): Call gdbpy_initialize_pspace.
2483 (GdbMethods): Add current_progspace, progspaces.
2484
2485 Add -s option to source command.
2486 * NEWS: Document new option.
2487 * cli/cli-cmds.c (find_and_open_script): Add function comment.
2488 Delete from_tty and cleanupp args. Split filep arg into file and
2489 full_pathp. New arg search_path.
2490 (source_script_from_stream): New function.
2491 (source_script_with_search): New function.
2492 (source_script): Rewrite.
2493 (source_command): Parse "-s" option.
2494 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
2495 * python/python.c (source_python_script): Make file arg a const char *.
2496 Don't call fclose, leave for caller.
2497 * python/python.h (source_python_script): Update.
2498
2499 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2500 Pedro Alves <pedro@codesourcery.com>
2501
2502 Avoid rereading shared libraries that haven't changed.
2503
2504 * solib.c (free_so_symbols): New function, from ...
2505 (free_so): ... here. Call it.
2506 (solib_read_symbols): Don't warn here if symbols have already been
2507 loaded.
2508 (solib_add): Warn here instead, if a pattern was specified.
2509 (reload_shared_libraries_1): New.
2510 (reload_shared_libraries): Rewrite to not fetch the library list.
2511
2512 2010-04-14 Doug Evans <dje@google.com>
2513
2514 * source.c (openp): Strip DOS drive letter if present before
2515 concatenating string to search path.
2516
2517 2010-04-14 Pedro Alves <pedro@codesourcery.com>
2518
2519 * objfiles.h (gdb_bfd_close_or_warn): Declare.
2520 * objfiles.c (gdb_bfd_close_or_warn): New.
2521 * corelow.c: Include objfiles.h
2522 (core_close): Use gdb_bfd_close_or_warn.
2523 * elfread.c (build_id_verify): Ditto.
2524 * exec.c (exec_close, exec_close_1): Ditto.
2525
2526 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2527 Pedro Alves <pedro@codesourcery.com>
2528
2529 Group errors for many missing shared libraries.
2530
2531 * solist.h (struct so_list): Remove from_tty.
2532 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
2533 (solib_map_sections): Take so_list argument. Return 0 if we
2534 failed to open a BFD. Add target sections here.
2535 (symbol_add_stub): Delete.
2536 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
2537 not from_tty copied from the so_list. Don't warn a second time
2538 for a missing library.
2539 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
2540 add to the section table here. Print out a single warning for all
2541 missing libraries.
2542 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
2543 flags.
2544
2545 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
2546
2547 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
2548 error/warning messages. Capitalize and use complete sentences.
2549 (blpy_block_syms_iternext): Likewise.
2550 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
2551 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
2552 (frame_info_to_frame_object, frapy_read_var)
2553 (gdbpy_frame_stop_reason_string): Likewise.
2554 * python/py-lazy-string.c (stpy_convert_to_value)
2555 (gdbpy_create_lazy_string_object): Likewise.
2556 * python/py-objfile.c (objfpy_set_printers): Likewise.
2557 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
2558 * python/python.c (parameter_to_python): Likewise.
2559 * python/py-type.c (typy_range, typy_target): Likewise.
2560 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
2561 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
2562
2563
2564 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
2565
2566 PR python/11381
2567
2568 * python/py-prettyprint.c (pretty_print_one_value): Test for
2569 Py_None.
2570 (print_string_repr): Test for Py_None. Set flags accordingly.
2571 Return value depending on return type.
2572 (print_children): Take a value indicating whether data was printed
2573 before this function was called. Alter output accordingly.
2574 (apply_val_pretty_printer): Capture return value from
2575 print_string_repr and pass to print_children.
2576
2577 2010-04-13 Mark Kettenis <kettenis@gnu.org>
2578
2579 PR corefiles/11481
2580 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
2581 register note sections.
2582 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
2583 New variables.
2584 (i386_linux_init_abi): Install list of supported register note
2585 sections that matches the target description.
2586
2587 2010-04-13 Pedro Alves <pedro@codesourcery.com>
2588
2589 * remote.c (remote_get_noisy_reply): Don't error out on empty
2590 replies.
2591 (remote_start_remote): Update and merge tracepoints and trace
2592 state variables as long as the target supports tracepoints.
2593 (remote_trace_init): Fix prototype.
2594 (remote_download_trace_state_variable): Validate reply.
2595 (remote_trace_set_readonly_regions): Fix prototype.
2596 (remote_trace_start): Fix prototype. Check for empty reply.
2597 (remote_get_trace_status): Small cleanup.
2598 (remote_trace_stop): Fix prototype. Check for empty reply.
2599 (remote_trace_find): Check for empty reply.
2600 (remote_save_trace_data): Validate reply.
2601 (remote_set_disconnected_tracing): Check for empty reply, and
2602 validate reply.
2603 (remote_set_circular_trace_buffer): Ditto.
2604
2605 2010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
2606
2607 Suppress unused value warning during compilation.
2608 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
2609 calls to void.
2610 * tui/tui-stack.c (tui_show_locator_content): Likewise.
2611
2612 2010-04-12 Stan Shebs <stan@codesourcery.com>
2613
2614 * tracepoint.c (tfile_xfer_partial): Check read result.
2615
2616 2010-04-12 Mike Frysinger <vapier@gentoo.org>
2617
2618 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
2619 * remote-sim.c (gdbsim_files_info): Likewise.
2620
2621 2010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
2622
2623 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
2624 * arm-linux-nat.c (arm_linux_vfp_register_count): New
2625 variable.
2626 (fetch_vfp_registers): New function to fetch VFP registers.
2627 (store_vfp_registers): New function to store VFP registers.
2628 (arm_linux_fetch_inferior_registers): Add support for VFP
2629 registers.
2630 (arm_linux_store_inferior_registers): Likewise.
2631 (arm_linux_read_description): Likewise.
2632 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
2633 until we need it.
2634
2635 2010-04-11 H.J. Lu <hongjiu.lu@intel.com>
2636
2637 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
2638 tdep.
2639 (amd64_collect_xstateregset): Likewise.
2640
2641 2010-04-09 Stan Shebs <stan@codesourcery.com>
2642
2643 * tracepoint.c (trace_status_mi): Report frames created.
2644
2645 * tracepoint.c (trace_dump_command): Include default-collect
2646 expressions.
2647
2648 2010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
2649
2650 * symtab.c (find_function_start_sal): Never return SAL pointing
2651 before function start address, even if line info is missing.
2652
2653 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2654
2655 * NEWS: Mention tracepoints support.
2656
2657 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2658
2659 * tracepoint.c (trace_status_mi): Report disconnected tracing and
2660 circular trace buffer statuses.
2661
2662 2010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2663
2664 * config/djgpp/fnchange.lst: Fix typo in translations for
2665 symbol-without-target_section.exp and symbol-without-target_section.c.
2666
2667 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2668
2669 * breakpoint.c (condition_command): Pass condition expression to
2670 set_breakpoint_condition stripped from breakpoint number.
2671
2672 2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
2673 Thiago Jung Bauermann <bauerman@br.ibm.com>
2674 Tom Tromey <tromey@redhat.com>
2675
2676 * breakpoint.c (condition_command): Simplify. Move condition
2677 setting code to ...
2678 (set_breakpoint_condition): ... here. New function.
2679 * breakpoint.h (set_breakpoint_condition): Declare.
2680 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
2681 (SUBDIR_PYTHON_SRCS): Likewise.
2682 (py-breakpoint.o): New rule.
2683 * python/py-breakpoint.c: New file.
2684 * python/python-internal.h (gdbpy_breakpoints)
2685 (gdbpy_initialize_breakpoints): Declare.
2686 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
2687
2688 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2689
2690 * regformats/regdat.sh: Include server.h. Don't include
2691 regcache.h.
2692
2693 2010-04-08 Stan Shebs <stan@codesourcery.com>
2694 Pedro Alves <pedro@codesourcery.com>
2695
2696 * tracepoint.h (struct trace_status): New fields disconnected_tracing
2697 and circular_buffer.
2698 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
2699 * tracepoint.c (trace_status_command): Display target's status for
2700 disconnected tracing and circular buffer.
2701 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
2702 query for non-disconnected-tracing case, remove the stop_tracing
2703 call.
2704 (tfile_open): Clear disconnected and circular buffer status.
2705 (trace_save): Save disconnected and circular buffer status.
2706 (parse_trace_status): Parse disconnected and circular buffer status,
2707 also recognize disconnected as a stop reason.
2708 * remote.c (remote_set_disconnected_tracing): Only set
2709 QTDisconnected if the remote end supports disconnected tracing.
2710 Warn otherwise, if trying to enable disconnected tracing.
2711 * infcmd.c (detach_command): Update disconnect_tracing call.
2712 * cli/cli-cmds.c (quit_command): Ditto.
2713
2714 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
2715
2716 * i387-tdep.c (i387_collect_xsave): Replace abort with
2717 internal_error.
2718
2719 2010-04-08 Stan Shebs <stan@codesourcery.com>
2720
2721 * breakpoint.c (default_collect_info): New function.
2722 (breakpoints_info): Call it.
2723 (maintenance_info_breakpoints): Ditto.
2724 (tracepoints_info): Ditto.
2725
2726 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
2727
2728 * i387-tdep.c (i387_collect_xsave): Re-indent.
2729
2730 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
2731
2732 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
2733 if HAVE_PTRACE_GETFPXREGS is defined.
2734 (i386_linux_read_description): Set have_ptrace_getfpxregs and
2735 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
2736
2737 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
2738 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
2739 if .reg-xfp section doesn't exist.
2740 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
2741
2742 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
2743
2744 * i386-tdep.c: Include "features/i386/i386-mmx.c".
2745 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
2746 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
2747 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
2748 (i386_gdbarch_init): Update comments.
2749 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
2750
2751 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
2752
2753 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
2754
2755 * features/Makefile (i386/i386-mmx-expedite): New.
2756 (i386/i386-mmx-linux-expedite): Likewise.
2757 ($(outdir)/i386/i386-mmx.dat): Likewise.
2758 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
2759
2760 * features/i386/i386-mmx-linux.c: New.
2761 * features/i386/i386-mmx-linux.xml: Likewise.
2762 * features/i386/i386-mmx.c: Likewise.
2763 * features/i386/i386-mmx.xml: Likewise.
2764 * regformats/i386/i386-mmx-linux.dat: Likewise.
2765 * regformats/i386/i386-mmx.dat: Likewise.
2766
2767 * features/Makefile (WHICH): Add i386/i386-mmx and
2768 i386/i386-mmx-linux.
2769
2770 2010-04-08 Doug Evans <dje@google.com>
2771
2772 * source.c (openp): Skip $cdir in PATH.
2773
2774 2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
2775
2776 PR python/11417
2777 * python/py-lazy-string.c (stpy_convert_to_value): Check for
2778 a NULL address.
2779 (gdbpy_create_lazy_string_object): Allow strings with a NULL
2780 address and a zero length.
2781
2782 2010-04-08 Hui Zhu <teawater@gmail.com>
2783
2784 * i386-tdep.c (i386_process_record): Add support for insn
2785 rdtsc.
2786
2787 2010-04-07 Doug Evans <dje@google.com>
2788
2789 * python/python.c (source_python_script): Use ensure_python_env
2790 to prepare environment for script.
2791
2792 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2793
2794 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
2795 <sys/uio.h> and "i386-xstate.h".
2796 (PTRACE_GETREGSET): New.
2797 (PTRACE_SETREGSET): Likewise.
2798 (have_ptrace_getregset): Likewise.
2799 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
2800 registers.
2801 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
2802 registers.
2803 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
2804 (amd64_linux_store_inferior_registers): Likewise.
2805 (amd64_linux_read_description): Check and enable AVX target
2806 descriptions.
2807
2808 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
2809 and "features/i386/amd64-avx-linux.c".
2810 (amd64_linux_regset_sections): New.
2811 (amd64_linux_core_read_description): Check and enable AVX
2812 target description.
2813 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
2814 set_gdbarch_core_regset_sections.
2815 (_initialize_amd64_linux_tdep): Call
2816 initialize_tdesc_amd64_avx_linux.
2817
2818 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
2819 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
2820 (tdesc_amd64_avx_linux): New.
2821 (amd64_linux_update_xstateregset): Likewise.
2822
2823 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
2824 (amd64_ymm_names): New.
2825 (amd64_ymmh_names): Likewise.
2826 (amd64_register_name): Likewise.
2827 (amd64_supply_xstateregset): Likewise.
2828 (amd64_collect_xstateregset): Likewise.
2829 (amd64_supply_xsave): Likewise.
2830 (amd64_collect_xsave): Likewise.
2831 (AMD64_NUM_REGS): Removed.
2832 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
2833 %xmmN if AVX is available.
2834 (amd64_pseudo_register_name): Support pseudo YMM registers.
2835 (amd64_regset_from_core_section): Support .reg-xstate section.
2836 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
2837 and ymm0h_regnum. Call set_gdbarch_register_name.
2838 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
2839
2840 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
2841 AMD64_YMM15H_REGNUM.
2842 (AMD64_NUM_REGS): New.
2843 (amd64_supply_xsave): Likewise.
2844 (amd64_collect_xsave): Likewise.
2845 (amd64_register_name): Removed.
2846 (amd64_register_type): Likewise.
2847
2848 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2849
2850 * i387-tdep.c: Include "i386-xstate.h".
2851 (XSAVE_XSTATE_BV_ADDR): New.
2852 (xsave_avxh_offset): Likewise.
2853 (XSAVE_AVXH_ADDR): Likewise.
2854 (i387_supply_xsave): Likewise.
2855 (i387_collect_xsave): Likewise.
2856
2857 * i387-tdep.h (I387_NUM_YMM_REGS): New.
2858 (I387_YMM0H_REGNUM): Likewise.
2859 (I387_YMMENDH_REGNUM): Likewise.
2860 (i387_supply_xsave): Likewise.
2861 (i387_collect_xsave): Likewise.
2862
2863 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2864
2865 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
2866 <sys/uio.h> and "i386-xstate.h".
2867 (PTRACE_GETREGSET): New.
2868 (PTRACE_SETREGSET): Likewise.
2869 (fetch_xstateregs): Likewise.
2870 (store_xstateregs): Likewise.
2871 (GETXSTATEREGS_SUPPLIES): Likewise.
2872 (regmap): Include 8 upper YMM registers.
2873 (i386_linux_fetch_inferior_registers): Support XSAVE extended
2874 state.
2875 (i386_linux_store_inferior_registers): Likewise.
2876 (i386_linux_read_description): Check and enable AVX target
2877 descriptions.
2878
2879 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
2880 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
2881 (i386_linux_regset_sections): Add ".reg-xstate".
2882 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
2883 (i386_linux_core_read_xcr0): New.
2884 (i386_linux_core_read_description): Check and enable AVX target
2885 description.
2886 (i386_linux_init_abi): Set xsave_xcr0_offset.
2887 (_initialize_i386_linux_tdep): Call
2888 initialize_tdesc_i386_avx_linux.
2889
2890 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
2891 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
2892 (i386_linux_core_read_xcr0): New.
2893 (tdesc_i386_avx_linux): Likewise.
2894 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
2895
2896 * i386-tdep.c: Include "i386-xstate.h" and
2897 "features/i386/i386-avx.c".
2898 (i386_ymm_names): New.
2899 (i386_ymmh_names): Likewise.
2900 (i386_ymmh_regnum_p): Likewise.
2901 (i386_ymm_regnum_p): Likewise.
2902 (i386_xmm_regnum_p): Likewise.
2903 (i386_register_name): Likewise.
2904 (i386_ymm_type): Likewise.
2905 (i386_supply_xstateregset): Likewise.
2906 (i386_collect_xstateregset): Likewise.
2907 (i386_sse_regnum_p): Removed.
2908 (i386_pseudo_register_name): Support pseudo YMM registers.
2909 (i386_pseudo_register_type): Likewise.
2910 (i386_pseudo_register_read): Likewise.
2911 (i386_pseudo_register_write): Likewise.
2912 (i386_dbx_reg_to_regnum): Return %ymmN register number for
2913 %xmmN if AVX is available.
2914 (i386_regset_from_core_section): Support .reg-xstate section.
2915 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
2916 (i386_process_record): Replace i386_sse_regnum_p with
2917 i386_xmm_regnum_p.
2918 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
2919 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
2920 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
2921 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
2922 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
2923 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
2924 Set ymm0_regnum.
2925 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
2926
2927 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
2928 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
2929 i386_ymm_type.
2930 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
2931 (I386_AVX_NUM_REGS): New.
2932 (i386_xmm_regnum_p): Likewise.
2933 (i386_ymm_regnum_p): Likewise.
2934 (i386_ymmh_regnum_p): Likewise.
2935
2936 * common/i386-xstate.h: New.
2937
2938 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2939
2940 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
2941
2942 * features/Makefile (WHICH): Add i386/i386-avx,
2943 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
2944 (i386/i386-avx-expedite): New.
2945 (i386/i386-avx-linux-expedite): Likewise.
2946 (i386/x86-64-avx-expedite):Likewise.
2947 (i386/x86-64-avx-linux-expedite): Likewise.
2948 ($(outdir)/i386/i386-avx.dat): New dependency.
2949 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
2950 ($(outdir)/i386/x86-avx-64.dat): Likewise.
2951 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
2952
2953 * features/i386/32bit-avx.xml: New.
2954 * features/i386/64bit-avx.xml: Likewise.
2955 * features/i386/i386-avx-linux.c: Likewise.
2956 * features/i386/i386-avx-linux.xml: Likewise.
2957 * features/i386/i386-avx.c: Likewise.
2958 * features/i386/i386-avx.xml: Likewise.
2959 * features/i386/x86-64-avx-linux.c: Likewise.
2960 * features/i386/x86-64-avx-linux.xml: Likewise.
2961 * features/i386/x86-64-avx.c: Likewise.
2962 * features/i386/x86-64-avx.xml: Likewise.
2963 * regformats/i386/i386-avx-linux.dat: Likewise.
2964 * regformats/i386/i386-avx.dat: Likewise.
2965 * regformats/i386/x86-64-avx-linux.dat: Likewise.
2966 * regformats/i386/x86-64-avx.dat: Likewise.
2967
2968 2010-04-07 Doug Evans <dje@google.com>
2969
2970 * top.c (source_file_name): Make const char *.
2971 * top.h (source_file_name): Update.
2972 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
2973 const char *.
2974 (script_from_file): Change `file' arg to const char *.
2975 * cli/cli-script.h (script_from_file): Update.
2976
2977 2010-04-06 Doug Evans <dje@google.com>
2978
2979 * cli/cli-cmds.c (source_command): Run cleanups.
2980
2981 2010-04-06 Stan Shebs <stan@codesourcery.com>
2982
2983 * defs.h (char_ptr): Move typedef here from...
2984 * ada-lang.c (char_ptr): Remove.
2985 * charset.c (char_ptr): Remove.
2986 * tracepoint.h (struct uploaded_string): Remove.
2987 (struct uploaded_tp): Use vectors for string arrays.
2988 * tracepoint.c (trace_save): Use vectors of actions.
2989 (parse_tracepoint_definition): Ditto.
2990 (get_uploaded_tp): Clear vectors.
2991 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
2992 (next_cmd): Change to an int.
2993 (read_next_cmd): Use vector of command strings.
2994
2995 2010-04-06 Doug Evans <dje@google.com>
2996
2997 * top.h (source_script, cd_command): Delete.
2998 * main.c: #include "cli/cli-cmds.h"
2999
3000 2010-04-06 Kevin Buettner <kevinb@redhat.com>
3001
3002 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
3003 type in bytes, not bits.
3004
3005 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
3006
3007 * stabsread.c (define_symbol): Add support for char
3008 and string constants.
3009
3010 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
3011
3012 Remove remaining "%ll" uses.
3013 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
3014 hex_string call.
3015 * rs6000-nat.c (rs6000_ptrace64): Idem.
3016 * solib-pa64.c (pa64_current_sos): Idem.
3017 * solib-spu.c (spu_current_sos): Idem.
3018 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
3019 plongest call.
3020 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
3021 phex (VAR, 8) call.
3022 * sh64-tdep.c (sh64_show_media_regs): Idem.
3023
3024 2010-04-05 Stan Shebs <stan@codesourcery.com>
3025
3026 * tracepoint.c: Include gdbcore.h.
3027 (tfile_xfer_partial): Return partial results, also try reading
3028 from executable.
3029 (tfile_has_all_memory): New function.
3030 (init_tfile_ops): Use it.
3031
3032 2010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
3033
3034 PR gdb/10736:
3035 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
3036 the changes in data-directory.
3037 (init_sysinfo): Reload the syscall XML file if the data-directory
3038 has changed.
3039
3040 2010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3041
3042 Code cleanup.
3043 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
3044
3045 2010-04-04 Stan Shebs <stan@codesourcery.com>
3046 Nathan Sidwell <nathan@codesourcery.com>
3047
3048 * breakpoint.c (breakpoint_1): Add filter argument, return number of
3049 breakpoints printed.
3050 (is_hardware_watchpoint): Make argument const.
3051 (is_watchpoint): Ditto.
3052 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
3053 use it everywhere.
3054 (breakpoints_info): Pass NULL to breakpoint_1.
3055 (maintenance_info_breakpoints): Ditto.
3056 (watchpoints_info): New function.
3057 (tracepoints_info): Use breakpoint_1 filter.
3058 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
3059 (_initialize_breakpoint): Make "info watchpoints" its own command.
3060 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
3061 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
3062
3063 2010-04-04 Stan Shebs <stan@codesourcery.com>
3064
3065 * tracepoint.c (tfile_fetch_registers): Add fallback case.
3066
3067 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3068
3069 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
3070 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
3071
3072 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3073
3074 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
3075 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
3076
3077 2010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3078
3079 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
3080 code form.
3081
3082 2010-04-02 Hui Zhu <teawater@gmail.com>
3083
3084 * i386-tdep.c (OT_DQUAD): New enum.
3085 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
3086 SSE3, SSSE3 and SSE4.
3087
3088 2010-04-02 Hui Zhu <teawater@gmail.com>
3089
3090 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
3091 "*addr = 0".
3092
3093 2010-04-02 Pedro Alves <pedro@codesourcery.com>
3094
3095 * tracepoint.c (trace_dump_actions): New, factored out from
3096 trace_dump_command, and adjusted to recurse into while-stepping's
3097 action list.
3098 (trace_dump_command): Use it.
3099
3100 2010-04-02 Pedro Alves <pedro@codesourcery.com>
3101
3102 * breakpoint.h (struct counted_command_line): Moved definition to
3103 breakpoint.c, and forward declare.
3104 (breakpoint_commands): Declare.
3105 * breakpoint.c (struct counted_command_line): Moved here.
3106 (breakpoint_commands): New.
3107 * tracepoint.c (encode_actions): Use breakpoint_commands.
3108 * remote.c (remote_download_tracepoint): Ditto.
3109
3110 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
3111
3112 * remote.c (remote_parse_stop_reply): Use hex_string instead
3113 of phex_nz for error.
3114
3115 2010-04-01 Stan Shebs <stan@codesourcery.com>
3116 Nathan Sidwell <nathan@codesourcery.com>
3117
3118 * tracepoint.h (enum actionline_type): Remove.
3119 (validate_actionline): Change return to void.
3120 * tracepoint.c (report_agent_reqs_errors): New function.
3121 (validate_actionline): Call it, change return to void, report errors
3122 more consistently.
3123 (collect_symbol): Call report_agent_reqs_errors.
3124 (encode_actions_1): Ditto.
3125 (encode_actions): Don't expect a result from validate_actionline.
3126
3127 2010-04-01 Stan Shebs <stan@codesourcery.com>
3128
3129 * tracepoint.c (trace_start_command): Confirm if trace is running.
3130 (trace_stop_command): Error if trace not running.
3131
3132 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
3133
3134 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
3135 (AMD64_NUM_LOWER_BYTE_REGS): New.
3136 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
3137 (amd64_pseudo_register_write): Likewise.
3138 (amd64_init_abi): Set num_byte_regs to 20.
3139
3140 2010-04-01 Pedro Alves <pedro@codesourcery.com>
3141
3142 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
3143 (prev_breakpoint_count): New.
3144 (set_breakpoint_count): Adjust.
3145 (rbreak_start_breakpoint_count): New.
3146 (start_rbreak_breakpoints): Adjust.
3147 (end_rbreak_breakpoints): Adjust.
3148 (struct commands_info) <arg>: New field.
3149 (do_map_commands_command): Tweak output to include breakpoint spec
3150 range.
3151 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
3152 ARG was empty on entry. Set INFO's arg.
3153 (create_breakpoint): Adjust.
3154
3155 * NEWS: Clarify `commands' changes.
3156
3157 2010-04-01 Pedro Alves <pedro@codesourcery.com>
3158
3159 * tracepoint.c: Include stack.h.
3160 (struct add_local_symbols_data): New.
3161 (do_collect_symbol): New.
3162 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
3163 iterate_over_block_local_vars.
3164 * stack.c (print_block_frame_locals): Rewrite as ...
3165 (iterate_over_block_locals): ... this. Take a callback function
3166 pointer and generic data pointer, and call that instead of
3167 print_variable_and_value.
3168 (struct print_variable_and_value_data): New.
3169 (do_print_variable_and_value): New.
3170 (iterate_over_block_local_vars): New, abstracted out from
3171 print_frame_local_vars.
3172 (print_frame_local_vars): Rewrite using
3173 iterate_over_block_local_vars.
3174 (iterate_over_block_arg_vars): New, abstracted out from
3175 print_frame_arg_vars.
3176 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
3177 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
3178 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
3179
3180 2010-03-31 Richard Earnshaw <rearnsha@arm.com>
3181
3182 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
3183 instructions. Use the PC+4 if the base of the TBB or TBH is the
3184 PC register.
3185
3186 2010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
3187
3188 Fix crash on reading wrong function declaration DWARF.
3189 * dwarf2read.c (read_subroutine_type): New variable void_type.
3190 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
3191 more close to their use.
3192
3193 2010-03-31 Stan Shebs <stan@codesourcery.com>
3194
3195 * breakpoint.c (tracepoint_save_command): Include variables,
3196 conditionals, tracepoint types, and default-collect.
3197 * tracepoint.c (save_trace_state_variables): New function.
3198 * tracepoint.h (save_trace_state_variables): Declare it.
3199
3200 2010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
3201
3202 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
3203
3204 2010-03-30 Keith Seitz <keiths@redhat.com>
3205
3206 * c-typeprint.c (c_type_print_args): Don't print "void"
3207 for java, regardless of whether it is TYPE_PROTOTYPED.
3208 Use the passed-in language instead of current_language.
3209 (c_type_print_varspec_suffix): Use current_language instead
3210 of assuming language_c.
3211 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
3212 any return type specifier from the physname.
3213
3214 2010-03-30 Pedro Alves <pedro@codesourcery.com>
3215
3216 * tui/tui-interp.c (tui_is_toplevel): New.
3217 (tui_init): Set it.
3218 (tui_allowed_p): New.
3219 * tui/tui.c (tui_enable): Check if the TUI is allowed before
3220 enabling it.
3221 * tui/tui.h (tui_allowed_p): Declare.
3222
3223 2010-03-30 Ozkan Sezer <sezeroz@gmail.com>
3224
3225 * serial.h: Include winsock2.h before windows.h.
3226
3227 2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
3228
3229 * NEWS: Mention xmlRegisters= in qSupported packet.
3230
3231 * i386-tdep.c: Include "remote.h".
3232 (_initialize_i386_tdep): Call register_remote_support_xml.
3233
3234 * remote.c (remote_support_xml): New.
3235 (register_remote_support_xml): Likewise.
3236 (remote_query_supported_append): Likewise.
3237 (remote_query_supported): Support remote_support_xml.
3238
3239 * remote.h (register_remote_support_xml): New.
3240
3241 2010-03-29 Stan Shebs <stan@codesourcery.com>
3242
3243 * tracepoint.c (trace_find_line_command): Remove dead code.
3244
3245 * tracepoint.h (struct uploaded_string): New struct.
3246 (struct uploaded_tp): New fields for source strings.
3247 * breakpoint.c (this_utp, next_cmd): New globals.
3248 (read_uploaded_action): New function.
3249 (create_tracepoint_from_upload): Fill in more parts
3250 of a tracepoint.
3251 * tracepoint.c (encode_source_string): New function.
3252 (trace_save): Write out source strings, fix error checks.
3253 (parse_tracepoint_definition): Add source string parsing.
3254 * remote.c (PACKET_TracepointSource): New packet type.
3255 (remote_download_command_source): New function.
3256 (remote_download_tracepoint): Download source pieces also.
3257 (_initialize_remote): Add packet config command.
3258
3259 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
3260 expression handler.
3261
3262 * tracepoint.c (start_tracing): Check tracepoints before sending
3263 commands to target, don't start if all tracepoints disabled.
3264
3265 2010-03-28 Pedro Alves <pedro@codesourcery.com>
3266
3267 * cli/cli-script.c (process_next_line): Handle 'stepping'.
3268
3269 2010-03-26 Stan Shebs <stan@codesourcery.com>
3270
3271 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
3272
3273 2010-03-26 Tom Tromey <tromey@redhat.com>
3274
3275 * breakpoint.c (commands_command_1): Duplicate 'arg'.
3276
3277 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3278
3279 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
3280 (skip_prologue_sal): Remove local definition.
3281 (resolve_sal_pc): Remove now unnecessary code.
3282 * linespec.c (minsym_found): Call skip_prologue_sal.
3283 * symtab.c (find_function_start_pc): Remove.
3284 (find_function_start_sal): Extract prologue skipping into ...
3285 (skip_prologue_sal): ... this new function. Handle code both
3286 with and without debug info. Respect SAL's explicit_pc and
3287 explicit_line flags. Inline old find_function_start_pc.
3288 * symtab.h (find_function_start_pc): Remove.
3289 (skip_prologue_sal): Add prototype.
3290
3291 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3292
3293 * dwarf2read.c (read_func_scope): Also scan specification DIEs
3294 for DW_TAG_imported_module children.
3295
3296 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3297
3298 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
3299 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
3300 * completer.c (add_struct_fields): Fix inverted logic.
3301
3302 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3303
3304 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
3305
3306 2010-03-26 Pedro Alves <pedro@codesourcery.com>
3307
3308 * tracepoint.c (current_trace_status): Don't make sure error_desc
3309 is non-NULL here.
3310 (parse_trace_status): Release a previous error_desc string, and
3311 set it to NULL by default. If stop reason is tracepoint_error,
3312 make sure error_desc is not left NULL.
3313
3314 2010-03-26 Pedro Alves <pedro@codesourcery.com>
3315
3316 * tracepoint.c (trace_save): Remove X from tracepoint error
3317 description.
3318
3319 2010-03-26 Pedro Alves <pedro@codesourcery.com>
3320
3321 * tracepoint.c (parse_trace_status): Don't allow plain strings in
3322 the terror description. Don't expect an X prefix.
3323
3324 2010-03-25 Stan Shebs <stan@codesourcery.com>
3325
3326 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
3327 (struct trace_status): New field error_desc.
3328 * tracepoint.c (stop_reason_names): Add terror.
3329 (current_trace_status): Ensure non-NULL error description.
3330 (trace_status_command): Add error report.
3331 (trace_status_mi): Ditto.
3332 (trace_save): Add special case for error description.
3333 (parse_trace_status): Add case for errors.
3334
3335 2010-03-25 Keith Seitz <keiths@redhat.com>
3336
3337 * dwarf2read.c (read_subroutine_type): If the compilation unit
3338 language is Java, mark any formal parameter named "this" as
3339 artificial (GCC/43521).
3340 (dwarf2_name): Add special handling for Java constructors.
3341
3342 2010-03-25 Tom Tromey <tromey@redhat.com>
3343
3344 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
3345 * infrun.c (handle_inferior_event): Change initialization of
3346 stop_stack_dummy.
3347 (handle_inferior_event): Change assignment to stop_stack_dummy.
3348 (normal_stop): Update use of stop_stack_dummy.
3349 (struct inferior_status) <stop_stack_dummy>: Change type.
3350 * inferior.h (stop_stack_dummy): Update.
3351 * infcmd.c (stop_stack_dummy): Change type.
3352 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
3353 function.
3354 (call_function_by_hand): Call set_std_terminate_breakpoint.
3355 Rewrite std::terminate handling.
3356 * breakpoint.h (enum bptype) <bp_std_terminate,
3357 bp_std_terminate_master>: New.
3358 (enum stop_stack_kind): New.
3359 (struct bpstat_what) <call_dummy>: Change type.
3360 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
3361 Declare.
3362 * breakpoint.c (create_std_terminate_master_breakpoint): New
3363 function.
3364 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
3365 Call create_std_terminate_master_breakpoint.
3366 (print_it_typical): Handle new breakpoint kinds.
3367 (bpstat_stop_status): Handle bp_std_terminate_master.
3368 (bpstat_what): Correctly set call_dummy field. Handle
3369 bp_std_terminate_master and bp_std_terminate.
3370 (print_one_breakpoint_location): Update.
3371 (allocate_bp_location): Update.
3372 (set_std_terminate_breakpoint): New function.
3373 (delete_std_terminate_breakpoint): Likewise.
3374 (create_thread_event_breakpoint): Update.
3375 (delete_command): Update.
3376 (breakpoint_re_set_one): Update.
3377 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
3378
3379 2010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3380
3381 * symfile.c (build_section_addr_info_from_bfd): New.
3382 (build_section_addr_info_from_objfile): Base it on
3383 build_section_addr_info_from_bfd.
3384 (addrs_section_compar, addrs_section_sort): New.
3385 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
3386 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
3387 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
3388
3389 2010-03-24 Michael Snyder <msnyder@localhost.localdomain>
3390
3391 * elfread.c (find_separate_debug_file_by_buildid):
3392 Remove unused local variable.
3393
3394 2010-03-24 Tom Tromey <tromey@redhat.com>
3395
3396 PR breakpoints/9352:
3397 * NEWS: Mention changes to `commands' and `rbreak'.
3398 * symtab.c (do_end_rbreak_breakpoints): New function.
3399 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
3400 end_rbreak_breakpoints.
3401 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
3402 (set_breakpoint_count): Likewise. Clear last_was_multi.
3403 (multi_start, multi_end, last_was_multi): New globals.
3404 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
3405 functions.
3406 (struct commands_info): New
3407 (do_map_commands_command): New function.
3408 (commands_command_1): New function.
3409 (commands_command): Use it.
3410 (commands_from_control_command): Likewise.
3411 (do_delete_breakpoint): New function.
3412 (delete_command): Use it.
3413 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
3414 (do_map_disable_breakpoint): New function.
3415 (disable_command): Use it.
3416 (do_map_enable_breakpoint): New function.
3417 (enable_command): Use it.
3418 (enable_once_breakpoint): Add argument.
3419 (enable_once_command): Update.
3420 (enable_delete_breakpoint): Add argument.
3421 (enable_delete_command): Update.
3422 (break_command_really): Set last_was_multi when needed.
3423 (check_tracepoint_command): Fix formatting.
3424 (validate_commands_for_breakpoint): New function.
3425 (breakpoint_set_commands): Use it.
3426 (tracepoint_save_command): Update.
3427 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
3428 Declare.
3429
3430 2010-03-24 Tom Tromey <tromey@redhat.com>
3431
3432 * breakpoint.h (struct counted_command_line): New struct.
3433 (struct breakpoint) <commands>: Change type.
3434 (struct bpstats) <commands>: Change type.
3435 <commands_left>: New field.
3436 * breakpoint.c (alloc_counted_command_line): New function.
3437 (incref_counted_command_line): Likewise.
3438 (decref_counted_command_line): Likewise.
3439 (do_cleanup_counted_command_line): Likewise.
3440 (make_cleanup_decref_counted_command_line): Likewise.
3441 (breakpoint_set_commands): Use decref_counted_command_line and
3442 alloc_counted_command_line.
3443 (commands_command): Don't error if breakpoint commands are
3444 executing.
3445 (commands_from_control_command): Likewise.
3446 (bpstat_free): Update.
3447 (bpstat_copy): Likewise.
3448 (bpstat_clear_actions): Likewise.
3449 (bpstat_do_actions_1): Likewise.
3450 (bpstat_stop_status): Likewise.
3451 (print_one_breakpoint_location): Likewise.
3452 (delete_breakpoint): Likewise.
3453 (bpstat_alloc): Initialize new field.
3454 (tracepoint_save_command): Update.
3455 * tracepoint.c (encode_actions): Update.
3456 (trace_dump_command): Update.
3457
3458 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
3459
3460 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
3461 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
3462 (read_structure_type): For RealView, set TYPE_STUB on structures with
3463 no byte size and no children.
3464 (read_subroutine_type): Mark functions as prototyped by default.
3465 * symtab.c (producer_is_realview): New function.
3466 * symtab.h (expand_line_sal): Fix declaration formatting.
3467 (producer_is_realview): Declare.
3468
3469 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
3470
3471 * arm-tdep.c (skip_prologue_function): New function.
3472 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
3473 (thumb_analyze_prologue): Document return value. Recognize more
3474 Thumb instructions, skippable calls, and some Thumb-2 instructions.
3475 Add debug output.
3476 (arm_skip_prologue): Remove call dummy check. Check the prologue
3477 for non-GNU compilers.
3478 (arm_instruction_changes_pc): New function.
3479 (arm_analyze_prologue): New function, broken out from
3480 arm_scan_prologue. Recognize more ARM instructions and skippable
3481 calls. Update comments. Handle NULL cache. Return the address
3482 of the first unrecognized instruction. Do not skip past other
3483 instructions which change control flow. Add debug output.
3484 (arm_scan_prologue): Use arm_analyze_prologue.
3485 (ARM_PC_32): Delete.
3486 (shifted_reg_val): Simplify ARM_PC_32 check.
3487
3488 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3489
3490 * tracepoint.c (tvariables_info_1): Actually compute
3491 the number of rows in the result.
3492
3493 2010-03-24 Pedro Alves <pedro@codesourcery.com>
3494
3495 * remote.c (crc32): Constify `buf' parameter.
3496 (remote_verify_memory): New, abstracted out from...
3497 (compare_sections_command): ... this. Remove hardcoded target
3498 checks.
3499 (init_remote_ops): Install remote_verify_memory.
3500 * target.c (target_verify_memory): New.
3501 * target.h (struct target_ops) <to_verify_memory>: New field.
3502 (target_verify_memory): Declare.
3503
3504 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3505
3506 Implement -trace-save.
3507
3508 * mi-cmds.h (mi_cmds_trace_save): Declare.
3509 * mi-cmds.c (mi_cmds): Register -trace-save.
3510 * mi/mi-main.c (mi_cmd_trace_save): New.
3511 * remote.c (remote_save_trace_data): Take const parameter.
3512 * target.h (struct target_ops::to_save_trace_data): Take
3513 const parameter.
3514 * target.c (update_current_target): Adjust to the above.
3515 * tracepoint.c (trave_save): New, extracted from
3516 (trace_save_command): ...this.
3517 (tfile_trace_find): Remove message that is unnecessary now
3518 that 'tfind' reports found frame.
3519 * tracepoint.h (trace_save): Declare.
3520
3521 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3522
3523 Implement -trace-find.
3524
3525 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
3526 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
3527 * mi/mi-main.c (mi_cmd_trace_find): New.
3528 * target.h (struct target_ops): Document to_trace_find.
3529 * tracepoint.h (tfind_1): Declare.
3530 * tracepoint.c (finish_tfind_command): Rename to...
3531 (tfind_1): ...this.
3532 * remote.c (remote_trace_find): Return -1 if target say
3533 there's no frame. Improve error diagnostics.
3534
3535 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3536
3537 -trace-define-variable and -trace-list-variables.
3538
3539 * tracepoint.c (create_trace_state_variable): Make
3540 private copy of name, as opposed to assuming the
3541 pointer lives forever.
3542 (tvariables_info_1): New.
3543 (tvariables_info): Use the above.
3544 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
3545 Declare.
3546 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
3547 and -trace-list-variables.
3548 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
3549 (mi_cmd_trace_list_variables): New.
3550 * mi/mi-main.c (mi_cmd_trace_define_variable)
3551 (mi_cmd_trace_list_variables): New.
3552
3553 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3554
3555 Implement -break-passcount.
3556
3557 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
3558 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
3559 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
3560
3561 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3562
3563 -trace-start/-trace-end/-trace-status.
3564
3565 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
3566 and -trace-stop.
3567 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
3568 (mi_cmd_trace_stop): Declare.
3569 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
3570 (mi_cmd_trace_stop): New.
3571 * tracepoint.c (start_tracing): New, extracted from...
3572 (trace_start_command): ...this.
3573 (trace_status_mi): New.
3574 * tracepoint.h (struct trace_status): Document
3575 stopping_tracepoint.
3576 (start_tracing, stop_tracing, trace_status_mi): Declare.
3577
3578 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3579
3580 Implement creating tracepoints with -break-insert.
3581
3582 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
3583 to mean that tracepoint should be created.
3584
3585 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3586
3587 * breakpoint.c (check_no_tracepoint_commands): Use
3588 current spelling of 'teval'.
3589
3590 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3591
3592 Unify actions and commands
3593
3594 * defs.h (read_command_lines, read_command_lines_1): New
3595 parameters validator and closure.
3596 * tracepoint.h (struct action_line): Remove.
3597 * breakpoint.h (struct breakpoint): Remove the 'actions'
3598 field.
3599 * defs.h (enum command_control_type): New value
3600 while_stepping_control.
3601 (struct command_line): Add comments.
3602 * breakpoint.c (breakoint_is_tracepoint): New.
3603 (breakpoint_set_commands): For tracepoints,
3604 verify the commands are permissible.
3605 (check_tracepoint_commands): New.
3606 (commands_command): Require that each new line is validated using
3607 check_tracepoint_command, if we set commands for a tracepoint.
3608 (create_tracepoint_from_upload): Likewise.
3609 (print_one_breakpoint_location): Remove the code to print
3610 actions specifically.
3611 (tracepoint_save_command): Relay to print_command_lines.
3612 * cli/cli-script.c (process_next_line): New parameters validator
3613 and closure. Handle 'while-stepping'. Call validator if not null.
3614 (read_command_lines, read_command_lines1): Likewise.
3615 (recurse_read_control_structure): New parameters validator and
3616 closure. Handle while_stepping_control.
3617 (print_command_lines): Handle while-stepping.
3618 (get_command_line, define_command, document_command): Adjust.
3619 * remote.c (remote_download_tracepoint): Adjust.
3620 * tracepoint.c (make_cleanup_free_actions, read_actions)
3621 (free_actions, do_free_actions_cleanup): Remove.
3622 (trace_actions_command): Use read_command_lines.
3623 (validate_actionline): Use error in one place.
3624 (encode_actions_1): New, extracted from...
3625 (encode_actions): ...this. Also use cleanups for exception
3626 safety.
3627 (trace_dump_command): Adjust.
3628 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
3629 it's tracepoint.
3630
3631 2010-03-23 Mike Frysinger <vapier@gentoo.org>
3632
3633 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
3634
3635 2010-03-22 Stan Shebs <stan@codesourcery.com>
3636
3637 * value.c (value_static_field): Be lazy about the field's value.
3638
3639 2010-03-22 Reid Kleckner <reid@kleckner.net>
3640
3641 PR gdb/11094
3642 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
3643 bp_jit_event.
3644 (disable_breakpoints_in_shlibs): Likewise.
3645
3646 2010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
3647
3648 * dwarf2read.c (partial_die_parent_scope): Work around buggy
3649 GCC 4.1 debug info generation (GCC PR c++/28460).
3650 (determine_prefix): Likewise.
3651
3652 2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
3653
3654 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
3655 get_current_arch.
3656 * tui/tui-layout.c (extract_display_start_addr): Likewise.
3657
3658 2010-03-19 Stan Shebs <stan@codesourcery.com>
3659
3660 * ax-gdb.c (gen_fetch): Handle bool.
3661 (gen_usual_unary): Ditto.
3662 (gen_cast): Ditto.
3663 (gen_equal): New function.
3664 (gen_less): New function.
3665 (gen_expr_binop_rest): Call them, also return integer type from
3666 logical operations.
3667 (gen_expr): Ditto.
3668
3669 2010-03-19 Tom Tromey <tromey@redhat.com>
3670
3671 * jv-lang.c (jv_dynamics_objfile_data_key)
3672 (jv_type_objfile_data_key): New globals.
3673 (class_symtab): Move earlier.
3674 (jv_per_objfile_free): New function.
3675 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
3676 parameter.
3677 Remove ancient #if 1.
3678 (add_class_symbol): Remove redundant declaration.
3679 (java_lookup_class): Use alloc_type, not alloc_type_arch.
3680 (java_link_class_type): Mark as static. Update.
3681 (jv_clear_object_type): New function.
3682 (set_java_object_type): Likewise.
3683 (get_java_object_type): Use set_java_object_type.
3684 (is_object_type): Likewise.
3685 (_initialize_java_language): Register new objfile keys.
3686 (get_java_class_symtab): Add 'gdbarch' parameter.
3687 (add_class_symtab_symbol): Update.
3688 (type_from_class): Update.
3689
3690 2010-03-19 Stan Shebs <stan@codesourcery.com>
3691
3692 * ax-general.c (ax_const_l): Fix a sizing bug.
3693
3694 2010-03-18 Joel Brobecker <brobecker@adacore.com>
3695
3696 GDB 7.1 released.
3697
3698 2010-03-18 Stan Shebs <stan@codesourcery.com>
3699 Pedro Alves <pedro@codesourcery.com>
3700
3701 * target.h (struct target_ops): New method
3702 to_set_circular_trace_buffer.
3703 (target_set_circular_trace_buffer): New macro.
3704 * target.c (update_current_target): Add
3705 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
3706 default behavior.
3707 * remote.c (remote_set_circular_trace_buffer): New function.
3708 (init_remote_ops): Add it to vector.
3709 * tracepoint.h (struct trace_status): New field traceframes_created,
3710 change buffer_size and buffer_free to int.
3711 * tracepoint.c (circular_trace_buffer): New global.
3712 (start_tracing): Send values of disconnected tracing and circular
3713 trace buffer settings.
3714 (set_circular_trace_buffer): New function.
3715 (parse_trace_state): Handle total space and frames created.
3716 (trace_status_command): Display total space and total frames
3717 created.
3718 (trace_save): Write out new status values.
3719 (parse_trace_status): Set traceframe_count, traceframes_created,
3720 buffer_free and buffer_size to -1 by default.
3721 (_initialize_tracepoint): New setshow for circular-trace-buffer.
3722 * NEWS: Mention the circular trace buffer option.
3723
3724 2010-03-18 Tom Tromey <tromey@redhat.com>
3725
3726 * infcmd.c (finish_command_continuation): Wrap print_return_value
3727 in TRY_CATCH.
3728
3729 2010-03-18 Joel Brobecker <brobecker@adacore.com>
3730
3731 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
3732 DIE has a name before creating the associated partial symbol.
3733 (read_func_scope): Emit a complaint if the subprogram does not
3734 have a name or when we can't extract the subprogram PC bounds.
3735
3736 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
3737
3738 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
3739 instead of selected frame architecture.
3740
3741 2010-03-18 Pedro Alves <pedro@codesourcery.com>
3742
3743 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
3744 a valid selected thread, and that it is not running.
3745 (advance_command): Ditto.
3746 (finish_command): Ditto.
3747
3748 2010-03-17 Stan Shebs <stan@codesourcery.com>
3749
3750 * ax-gdb.c (require_rvalue): Disallow non-scalars.
3751
3752 * infcall.c: Include tracepoint.h.
3753 (call_function_by_hand): Disallow calls in tfind mode.
3754 * infcmd.c: Include tracepoint.h.
3755 (ensure_not_tfind_mode): New function.
3756 (continue_1): Call it.
3757 (step_1) Ditto.
3758 (jump_command): Ditto.
3759 (signal_command): Ditto.
3760 (advance_command): Ditto.
3761 (until_command): Ditto.
3762 (finish_command): Ditto.
3763 * tracepoint.h (disconnect_or_stop_tracing): Declare.
3764
3765 * ax-gdb.h (struct axs_value): New field optimized_out.
3766 (gen_trace_for_var): Add gdbarch argument.
3767 * ax-gdb.c (gen_trace_static_fields): New function.
3768 (gen_traced_pop): Call it, add gdbarch argument.
3769 (gen_trace_for_expr): Update call to it.
3770 (gen_trace_for_var): Ditto, and report optimized-out variables.
3771 (gen_struct_ref_recursive): Check for optimized-out value.
3772 (gen_struct_elt_for_reference): Ditto.
3773 (gen_static_field): Pass gdbarch instead of expression, assume
3774 optimization if field not found.
3775 (gen_var_ref): Set the optimized_out flag.
3776 (gen_expr): Error on optimized-out variable.
3777 * tracepoint.c (collect_symbol): Handle struct-valued vars as
3778 expressions, skip optimized-out variables with computed locations.
3779 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
3780 erroring out if location expression missing.
3781 (loclist_tracepoint_var_ref): Don't error out here.
3782
3783 2010-03-17 Tom Tromey <tromey@redhat.com>
3784
3785 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
3786 DWARF data is available.
3787
3788 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
3789
3790 * symfile.c (generic_load): Reset breakpoints after loading.
3791
3792 2010-03-17 Tom Tromey <tromey@redhat.com>
3793
3794 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
3795
3796 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3797
3798 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
3799 create_breakpoint call, adjust the parameters.
3800
3801 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3802 Chandru <chandru@in.ibm.com>
3803
3804 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
3805 * valarith.c (value_subscripted_rvalue): Suppress error if
3806 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
3807
3808 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
3809
3810 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
3811
3812 2010-03-16 Joel Brobecker <brobecker@adacore.com>
3813
3814 * ada-tasks.c (task_command_1): Check that the task ptid is valid
3815 before doing the associated thread switch.
3816
3817 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
3818
3819 * MAINTAINERS: Update my email address.
3820
3821 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
3822
3823 Simplify MI breakpoint setting.
3824
3825 * breakpoint.c (break_command_really): Make nonstatic and
3826 rename to...
3827 (create_breakpoint): ...this. Rename prior function by this name
3828 to...
3829 (create_breakpoint_sal): ...this.
3830 (create_breakpoints): Rename to...
3831 (create_breakpoints_sal): ...this.
3832 (set_breakpoint): Remove.
3833 * breakpoint.h: Adjust to above changes.
3834 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
3835
3836 2010-03-15 Stan Shebs <stan@codesourcery.com>
3837
3838 * ax-gdb.c: Include cp-support.h.
3839 (find_field): Remove.
3840 (gen_primitive_field): New function.
3841 (gen_struct_ref_recursive): New function.
3842 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
3843 of find_field.
3844 (gen_static_field): New function.
3845 (gen_struct_elt_for_reference): New.
3846 (gen_namespace_elt): New.
3847 (gen_maybe_namespace_elt): New.
3848 (gen_aggregate_elt_ref): New.
3849 (gen_expr): Add OP_SCOPE, display opcode name in error message.
3850
3851 2010-03-15 Tom Tromey <tromey@redhat.com>
3852
3853 * dwarf2read.c (die_needs_namespace): Also return 0 for
3854 DW_TAG_subprogram.
3855
3856 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
3857
3858 PR c++/7936:
3859 * cp-support.h: Added char *declaration element to using_direct
3860 data struct.
3861 (cp_add_using): Added char *declaration argument.
3862 (cp_add_using_directive): Ditto.
3863 (cp_lookup_symbol_imports): made extern.
3864 * cp-namespace.c: Updated with the above changes.
3865 * dwarf2read.c (read_import_statement): Ditto.
3866 (read_namespace): Ditto.
3867 (read_import_statement): Support import declarations.
3868 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
3869 declarations.
3870 Added support for 'declaration_only' search.
3871 (cp_lookup_symbol_namespace): Attempt to search for the name as
3872 is before consideration of imports.
3873 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
3874 search at every block level search.
3875 Now takes language argument.
3876 (lookup_symbol_aux): Updated.
3877
3878 2010-03-15 Tom Tromey <tromey@redhat.com>
3879
3880 * c-exp.y (name_not_typename): Add 'operator' clause.
3881
3882 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
3883
3884 * configure.ac: Exit if ${gdb_target_obs}" is not set.
3885 * configure: Regenerate.
3886
3887 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
3888
3889 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
3890 and ".sdynbss". Update the comment.
3891
3892 2010-03-15 Jie Zhang <jie@codesourcery.com>
3893
3894 * MAINTAINERS: Update my email address.
3895
3896 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
3897
3898 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
3899
3900 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
3901
3902 * charset.c [USE_WIN32API]: Include <windows.h>.
3903 (_initialize_charset): Correct type of w32_host_default_charset.
3904
3905 2010-03-14 Pedro Alves <pedro@codesourcery.com>
3906
3907 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
3908
3909 2010-03-12 Tom Tromey <tromey@redhat.com>
3910
3911 PR c++/9708:
3912 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
3913 in a lexical block does not need a namespace.
3914 (new_symbol) <DW_TAG_variable>: Put extern variables on
3915 list_in_scope in all cases.
3916
3917 2010-03-12 Stan Shebs <stan@codesourcery.com>
3918
3919 * ax-gdb.c (gen_expr): Add shift expressions.
3920 (gen_expr_binop_rest): Ditto.
3921
3922 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
3923
3924 * buildsym.c (finish_block): Reset using_directives pointer
3925 after block initialization.
3926
3927 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
3928
3929 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
3930 * i386-tdep.c (i386_word_names): Likewise.
3931
3932 2010-03-12 Pedro Alves <pedro@codesourcery.com>
3933
3934 * target.c (memory_xfer_partial): Don't use the stack cache if
3935 inspecting trace frames.
3936 * tracepoint.c (finish_tfind_command): Invalidate the target
3937 dcache.
3938
3939 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3940
3941 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
3942 for the PIC displacement, print also the displacement value.
3943 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
3944
3945 2010-03-10 Kevin Buettner <kevinb@redhat.com>
3946
3947 * remote-mips.c (close_ports, mips_initialize_cleanups)
3948 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
3949 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
3950 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
3951 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
3952 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
3953 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
3954 comments describing each of these functions.
3955 (mips_enter_debug, mips_exit_debug, common_open)
3956 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
3957 blank line after the comment describing the function.
3958
3959 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3960
3961 * solib-svr4.c (svr4_exec_displacement): Return now success, new
3962 parameter displacementp. Update comment.
3963 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
3964 element exists. Return if svr4_exec_displacement was not successful.
3965 Update comment.
3966
3967 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3968 Daniel Jacobowitz <dan@codesourcery.com>
3969
3970 * solib-svr4.c (read_program_header): Support type == -1 to read
3971 all program headers.
3972 (read_program_headers_from_bfd): New function.
3973 (svr4_static_exec_displacement): Remove and move the comment ...
3974 (svr4_exec_displacement): ... here. Remove variable found. New
3975 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
3976 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
3977 targets using read_program_headers_from_bfd. Remove the call of
3978 svr4_static_exec_displacement.
3979
3980 2010-03-10 Tom Tromey <tromey@redhat.com>
3981
3982 * dwarf2read.c (struct pubnames_header): Remove.
3983 (_PUBNAMES_HEADER): Remove.
3984 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
3985 (struct aranges_header): Remove.
3986 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
3987 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
3988 (PUBNAMES_SECTION): Remove.
3989 (ARANGES_SECTION): Remove.
3990 (dwarf2_locate_sections): Don't handle pubnames or aranges.
3991 (dwarf2_build_psymtabs): Remove dead code.
3992 (dwarf2_build_psymtabs_easy): Remove.
3993
3994 2010-03-10 Tom Tromey <tromey@redhat.com>
3995
3996 * elfread.c (elf_symfile_read): Don't call
3997 dwarf2_build_frame_info.
3998 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
3999 (struct dwarf2_per_objfile) <objfile>: New field.
4000 (dwarf2_has_info): Now idempotent. Set objfile field.
4001 (dwarf2_read_section): Check and set readin field. Call
4002 posix_madvise.
4003 (dwarf2_build_psymtabs): Don't read all sections.
4004 (read_type_comp_unit_head): Read types section.
4005 (create_debug_types_hash_table): Likewise.
4006 (init_cu_die_reader): Add asserts.
4007 (process_type_comp_unit): Add assert.
4008 (dwarf2_build_psymtabs_hard): Read info section.
4009 (load_partial_comp_unit): Add assert.
4010 (create_all_comp_units): Read info section.
4011 (load_full_comp_unit): Likewise.
4012 (dwarf2_ranges_read): Read ranges section.
4013 (dwarf2_record_block_ranges): Add assert.
4014 (dwarf2_read_abbrevs): Read abbrev section.
4015 (read_indirect_string): Read str section.
4016 (dwarf_decode_line_header): Read line section.
4017 (read_signatured_type_at_offset): Read types section.
4018 (dwarf_decode_macros): Read macinfo section.
4019 (dwarf2_symbol_mark_computed): Read loc section.
4020 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
4021 dwarf2_build_frame_info.
4022 (dwarf2_build_frame_info): Unconditionally set
4023 dwarf2_frame_objfile_data on the objfile.
4024 * configure.ac: Check for posix_madvise.
4025 * config.in, configure: Rebuild.
4026
4027 2010-03-10 Tom Tromey <tromey@redhat.com>
4028
4029 * xcoffread.c (xcoff_start_psymtab): Update.
4030 (xcoff_end_psymtab): Update.
4031 * psymtab.c (allocate_psymtab): Remove dead code.
4032 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
4033 void*.
4034 * mdebugread.c (parse_partial_symbols): Update.
4035 (new_psymtab): Likewise.
4036 * dwarf2read.c (process_psymtab_comp_unit): Update.
4037 (psymtab_to_symtab_1): Update.
4038 * dbxread.c (start_psymtab): Update.
4039 (end_psymtab): Likewise.
4040
4041 2010-03-10 Tom Tromey <tromey@redhat.com>
4042
4043 * xcoffread.c: Include psymtab.h.
4044 (xcoff_sym_fns): Update.
4045 * symtab.h (struct partial_symbol): Remove.
4046 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
4047 (struct partial_symtab): Remove.
4048 (PSYMTAB_TO_SYMTAB): Remove.
4049 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
4050 (find_pc_sect_psymtab): Remove.
4051 (find_pc_sect_symtab_via_partial): Declare.
4052 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
4053 (find_main_psymtab): Remove.
4054 (find_main_filename): Declare.
4055 (fixup_psymbol_section): Remove.
4056 (fixup_section): Declare.
4057 * symtab.c: Include psymtab.h.
4058 (lookup_symtab): Use lookup_symtab method.
4059 (lookup_partial_symtab): Remove.
4060 (find_pc_sect_psymtab_closer): Remove.
4061 (find_pc_sect_psymtab): Remove.
4062 (find_pc_sect_symtab_via_partial): New function.
4063 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
4064 (fixup_section): No longer static.
4065 (fixup_psymbol_section): Remove.
4066 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
4067 (lookup_global_symbol_from_objfile): Likewise.
4068 (lookup_symbol_aux_psymtabs): Remove.
4069 (lookup_symbol_aux_quick): New function.
4070 (lookup_symbol_global): Use lookup_symbol_aux_quick.
4071 (lookup_partial_symbol): Remove.
4072 (basic_lookup_transparent_type_quick): New function.
4073 (basic_lookup_transparent_type): Use it.
4074 (find_main_psymtab): Remove.
4075 (find_main_filename): New function.
4076 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
4077 (find_line_symtab): Use expand_symtabs_with_filename method.
4078 (output_partial_symbol_filename): New function.
4079 (sources_info): Use map_partial_symbol_filenames.
4080 (struct search_symbols_data): New type.
4081 (search_symbols_file_matches): New function.
4082 (search_symbols_name_matches): Likewise.
4083 (search_symbols): Use expand_symtabs_matching method.
4084 (struct add_name_data): Rename from add_macro_name_data.
4085 (add_macro_name): Update.
4086 (add_partial_symbol_name): New function.
4087 (default_make_symbol_completion_list): Use
4088 map_partial_symbol_names.
4089 (struct add_partial_symbol_name): New type.
4090 (maybe_add_partial_symtab_filename): New function.
4091 (make_source_files_completion_list): Use
4092 map_partial_symbol_filenames.
4093 (expand_line_sal): Use expand_symtabs_with_filename method.
4094 * symmisc.c: Include psymtab.h.
4095 (print_objfile_statistics): Use print_stats method.
4096 (dump_objfile): Use dump method.
4097 (dump_psymtab, maintenance_print_psymbols)
4098 (maintenance_info_psymtabs, maintenance_check_symtabs)
4099 (extend_psymbol_list): Remove.
4100 * symfile.h (struct quick_symbol_functions): New struct.
4101 (struct sym_fns) <qf>: New field.
4102 (sort_pst_symbols): Remove.
4103 (increment_reading_symtab): Declare.
4104 * symfile.c: Include psymtab.h.
4105 (compare_psymbols, sort_pst_symbols): Remove.
4106 (psymtab_to_symtab): Remove.
4107 (increment_reading_symtab): New function.
4108 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
4109 method.
4110 (set_initial_language): Use find_main_filename.
4111 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
4112 (free_named_symtabs): Remove unused code.
4113 (start_psymtab_common, add_psymbol_to_bcache)
4114 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
4115 Remove.
4116 * stack.c: Include psymtab.h, symfile.h.
4117 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
4118 * source.h (psymtab_to_fullname): Don't declare.
4119 * source.c: Include psymtab.h.
4120 (select_source_symtab): Use find_last_source_symtab method.
4121 (forget_cached_source_info): Use forget_cached_source_info
4122 method.
4123 (find_and_open_source): No longer static.
4124 (psymtab_to_fullname): Remove.
4125 * somread.c: Include psymtab.h.
4126 (som_sym_fns): Update.
4127 * psympriv.h: New file.
4128 * psymtab.h: New file.
4129 * psymtab.c: New file.
4130 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
4131 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
4132 * objfiles.c: Include psymtab.h.
4133 (objfile_relocate1): Use relocate method.
4134 (objfile_has_partial_symbols): Use has_symbols method.
4135 * mipsread.c: Include psymtab.h.
4136 (ecoff_sym_fns): Update.
4137 * mi/mi-cmd-file.c: Include psymtab.h.
4138 (print_partial_file_name): New function.
4139 (mi_cmd_file_list_exec_source_files): Use
4140 map_partial_symbol_filenames.
4141 * mdebugread.c: Include psympriv.h.
4142 * machoread.c: Include psympriv.h.
4143 (macho_sym_fns): Update.
4144 * m2-exp.y (yylex): Use lookup_symtab.
4145 * elfread.c: Include psympriv.h.
4146 (elf_sym_fns): Update.
4147 * dwarf2read.c: Include psympriv.h.
4148 * dbxread.c: Include psympriv.h.
4149 (aout_sym_fns): Update.
4150 * cp-support.c: Include psymtab.h.
4151 (read_in_psymtabs): Remove.
4152 (make_symbol_overload_list_qualified): Use
4153 expand_symtabs_for_function method.
4154 * coffread.c: Include psympriv.h.
4155 (coff_sym_fns): Update.
4156 * blockframe.c: Include psymtab.h.
4157 (find_pc_partial_function): Use find_pc_sect_symtab method.
4158 * ada-lang.h (ada_update_initial_language): Update.
4159 * ada-lang.c: Include psymtab.h.
4160 (ada_update_initial_language): Remove 'main_pst' argument.
4161 (ada_lookup_partial_symbol): Remove.
4162 (struct ada_psym_data): New type.
4163 (ada_add_psyms): New function.
4164 (ada_add_non_local_symbols): Use map_ada_symtabs method.
4165 (struct add_partial_datum): New type.
4166 (ada_add_partial_symbol_completions): New function.
4167 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
4168 (ada_exception_support_info_sniffer): Update.
4169 * Makefile.in (SFILES): Add psymtab.c.
4170 (COMMON_OBS): Add psymtab.o.
4171 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
4172
4173 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
4174
4175 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
4176
4177 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
4178
4179 PR C++/11236:
4180 * cp-namespace.c (cp_add_using): Deleted.
4181 (cp_add_using_directive): Use obstack allocations.
4182 Merged the function cp_add_using into this one.
4183 Added 'struct obstack *' argument.
4184 (cp_scan_for_anonymous_namespaces): Updated.
4185 * cp-support.h: Updated.
4186 * dwarf2read.c (read_import_statement): Updated.
4187 (read_namespace): Updated.
4188
4189 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
4190
4191 * windows-nat.c (cygwin_conv_path): Remove old macro.
4192
4193 2010-03-10 Pedro Alves <pedro@codesourcery.com>
4194
4195 * breakpoint.c (condition_command): Handle watchpoint conditions.
4196 (is_hardware_watchpoint): Add comment.
4197 (is_watchpoint): New.
4198 (update_watchpoint): Don't reparse the watchpoint's condition
4199 unless necessary.
4200 (WP_IGNORE): New.
4201 (watchpoint_check): Use it.
4202 (bpstat_check_watchpoint): Handle it.
4203 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
4204 conditions in a frame where it makes sense.
4205 (watch_command_1): Store the innermost block of the condition
4206 expression.
4207 (delete_breakpoint): Delete the watchpoint condition expression.
4208 * breakpoint.h (struct bp_location) <cond>: Update comment.
4209 (struct breakpoint): New field `cond_exp_valid_block'.
4210
4211 2010-03-09 Joel Brobecker <brobecker@adacore.com>
4212
4213 Adjust handling of Ada DIEs after dwarf2_physname patch.
4214 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
4215
4216 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
4217 Pierre Muller <muller@ics.u-strasbg.fr>
4218
4219 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
4220 from/to posix/win32.
4221 (windows_make_so): Use non-Cygwin 1.7 specific function.
4222 (windows_create_inferior): Make sure that cygallargs points to
4223 original args in non Cygwin 1.7. case.
4224
4225 2010-03-09 Michael Snyder <msnyder@vmware.com>
4226
4227 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
4228 after target_read_memory to get host byte order.
4229 (i386_process_record): Ditto.
4230
4231 2010-03-09 Keith Seitz <keiths@redhat.com>
4232
4233 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
4234 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
4235 print out const or volatile qualifiers, too.
4236 (c_type_print_args): Add parameters show_artificial and language.
4237 Skip artificial parameters when requested.
4238 Use the appropriate language printer.
4239 (c_type_print_varspec): Tell c_type_print_args to skip artificial
4240 parameters and pass language_c.
4241 * dwarf2read.c (die_list): New file global.
4242 (struct partial_die_info): Update comments for name field.
4243 (pdi_needs_namespace): Renamed to ...
4244 (die_needs_namespace): ... this. Rewrite.
4245 (dwarf2_linkage_name): Remove.
4246 (add_partial_symbol): Do not predicate the call to
4247 partial_die_full_name based on pdi_needs_namespace.
4248 Remove call to cp_check_possible_namespace_symbols and associated
4249 outdated comments.
4250 (guess_structure_name): Do not inspect child subprogram DIEs.
4251 (dwarf2_fullname): Update comments.
4252 Use die_needs_namespace to assist in computing the name.
4253 (read_func_scope): Use dwarf2_name to get the DIE's name.
4254 Use dwarf2_physname to get the "linkage name" of the DIE.
4255 (dwarf2_add_member_field): Use dwarf2_physname instead of
4256 dwarf2_linkage_name.
4257 (read_structure_type): For structs and classes, set TYPE_NAME, too.
4258 (determine_class): Remove.
4259 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
4260 except Ada.
4261 (new_symbol): Unconditionally call dwarf2_name.
4262 Compute the "linkage name" using dwarf2_physname.
4263 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
4264 When determining to scan for anonymous C++ namespaces, ignore
4265 the linkage name.
4266 (dwarf2_physname): New function.
4267 (dwarf2_full_name): Move content to new function and call
4268 that.
4269 (dwarf2_compute_name): "New" function.
4270 (_initialize_dwarf2_read): Initialize die_list.
4271 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
4272 physname.
4273 (gnu_v3_print_method_ptr): Use the physname for virtual methods
4274 without a demangled name.
4275 Print out type information for non-virtual methods.
4276 * linespec.c (decode_line_1): Force ANY string using "::" (or
4277 "." for java) to use decode_compound, and clean up any stray quoting.
4278 If we found a file symtab, re-evaluate whether the remainder is_quoted.
4279 (decode_compound): Stop consuming at an open parenthesis.
4280 Keep template parameters.
4281 Keep any overload information.
4282 Keep keywords like "const".
4283 Remove paren_pointer.
4284 Move is_quoted check from set_flags to here.
4285 Remove #if 0 code from 2000. Ten years is long enough.
4286 (find_method): Before comparing symbol names, canonicalize the string
4287 from the user.
4288 If a specific overload is requested, find it. Otherwise throw an error.
4289 (find_method_overload_end): New function.
4290 (set_flags): Remove.
4291 (decode_compound): Assume that parentheses are matched.
4292 It's a lot easier.
4293 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
4294 to cplus_demangle.
4295 * linespec.c (decode_line_1): Keep important keywords like
4296 "const" and "volatile".
4297 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
4298 * typeprint.h (c_type_print_args): Add declaration.
4299 * ui-file.c (do_ui_file_obsavestring): New function.
4300 (ui_file_obsavestring): New function.
4301 * ui-file.h (ui_file_obsavestring): Add declaration.
4302 * valops.c (find_overload_match): Resolve the object to
4303 a non-pointer type.
4304 If the object is a data member, search the object for the member
4305 and return with staticp set.
4306 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
4307 Do not attempt to extract a function name from non-function types.
4308 If the extracted function name and the original name are the same,
4309 we don't have a C++ method.
4310
4311 From Jan Kratochvil <jan.kratochvil@redhat.com>:
4312 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
4313
4314 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
4315 and arguments from symbol lookups.
4316 * ax-gdb.c (gen_expr): Likewise.
4317 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
4318 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
4319 lookup_possible_namespace_symbol): Likewise.
4320 * cp-support.c (read_in_psymtabs): Likewise.
4321 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
4322 * language.h (la_lookup_symbol_nonlocal): Likewise.
4323 * scm-valprint.c (scm_inferior_print): Likewise.
4324 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
4325 * solib-svr.c (elf_lookup_lib): Likewise.
4326 * solib.c (show_auto_solib_add): Likewise.
4327 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
4328 * symmisc.c (maintenance_check_symtabs): Likewise.
4329 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
4330 lookup_symbol_aux_local, lookup_symbol_aux_block,
4331 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
4332 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
4333 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
4334 basic_lookup_transparent_type, find_main_psymtab,
4335 lookup_block_symbol): Likewise.
4336 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
4337 lookup_symbol_global, lookup_symbol_aux_block,
4338 lookup_symbol_partial_symbol, lookup_block_symbol,
4339 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
4340
4341 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
4342
4343 * python/python-internal.h: Include symtab.h.
4344
4345 2010-03-09 Joel Brobecker <brobecker@adacore.com>
4346 Pierre Muller <muller@ics.u-strasbg.fr>
4347
4348 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
4349 * p-valprint.c (pascal_val_print): Remove undeed block and fix
4350 indentation.
4351
4352 2010-03-08 Tom Tromey <tromey@redhat.com>
4353
4354 * breakpoint.c (breakpoint_1): Add "QUIT".
4355
4356 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
4357 Pedro Alves <pedro@codesourcery.com>
4358
4359 * solib.c (solib_find): Replace extension if
4360 solib_symbols_extension is set in the target gdbarch.
4361 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
4362 solib_symbols_extension to "sym".
4363 * gdbarch.sh (solib_symbols_extension): New variable.
4364 (pstring): New function.
4365 * gdbarch.h, gdbarch.c: Regenerate.
4366
4367 2010-03-08 Tom Tromey <tromey@redhat.com>
4368
4369 PR cli/9591:
4370 * NEWS: Update.
4371 * utils.c: Include main.h.
4372 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
4373 (defaulted_query): Use default answer if `batch_flag'.
4374 * main.h (batch_flag): Declare.
4375 * main.c (batch_flag): New global.
4376 (captured_main): Remove 'batch'. Update.
4377
4378 2010-03-08 Kevin Buettner <kevinb@redhat.com>
4379
4380 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
4381 and Kevin Buettner:
4382
4383 * remote-mips.c (rockhopper_ops): New target_ops struct.
4384 (MON_ROCKHOPPER): New mips_monitor_type.
4385 (read_hex_value): New function.
4386 (mips_request): Send 8-byte values with a 'T' packet. Read the
4387 packet argument as a string and use read_hex_value to parse it.
4388 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
4389 (rockhopper_open): New function.
4390 (mips_wait): Read the PC, FP and SP fields as strings. Use
4391 read_hex_value to parse them and mips_set_register to commit them.
4392 (mips_set_register): New function.
4393 (mips_fetch_registers): Do not cast register value to "unsigned"
4394 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
4395 (mips_store_registers): Use a 'T' packet to set registers when
4396 using MON_ROCKHOPPER.
4397 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
4398 and expect the total to be printed before the entry address.
4399 (_initialize_remote_mips): Initialize and add rockhopper_ops.
4400
4401 2010-03-08 Kevin Buettner <kevinb@redhat.com>
4402
4403 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
4404 Change return value to int. Store value fetched in location
4405 addressed by `val'. Use function's return value as success
4406 or failure indicator. Adjust all callers.
4407
4408 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
4409
4410 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
4411
4412 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4413 Hui Zhu <teawater@gmail.com>
4414
4415 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
4416 tmp_to_stopped_data_address.
4417 (record_open): Reset tmp_to_stopped_by_watchpoint and
4418 tmp_to_stopped_data_address.
4419 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
4420 to_stopped_data_address.
4421
4422 2010-03-08 Hui Zhu <teawater@gmail.com>
4423
4424 * i386-tdep.c (i386_process_record): Initialize regnum.
4425
4426 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4427
4428 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
4429 Do not warn on ".gnu.liblist" and ".gnu.conflict".
4430
4431 2010-03-08 Joel Brobecker <brobecker@adacore.com>
4432
4433 Memory error when reading wrong core file.
4434 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
4435 errors while reading the inferior memory, and return zero if
4436 an exception was raised.
4437
4438 2010-03-07 Michael Snyder <msnyder@vmware.com>
4439
4440 * record.c (record_restore): Rename tmpu8 to rectype.
4441
4442 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
4443 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
4444
4445 (i386_record_push): Rename local tmpulongest to addr.
4446
4447 (i386_process_record): Rename local tmpulongest to addr.
4448
4449 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
4450 addr64.
4451
4452 Rename local variable tmpu8 to opcode8 and regnum.
4453
4454 2010-03-07 Joel Brobecker <brobecker@adacore.com>
4455
4456 * remote.c (remote_get_ada_task_ptid): New function.
4457 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
4458
4459 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
4460
4461 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
4462 block. Define helper macros to reduce ifdefs in code.
4463 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
4464 size. Call unadorned GetModuleFileNameEx rather than
4465 GetModuleFileNameEx*.
4466 (windows_make_so): Use __PMAX to denote maximum buffer size and
4467 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
4468 appropriate.
4469 (get_image_name): Use __PMAX to denote maximum buffer size.
4470 (handle_load_dll): Likewise.
4471 (windows_pid_to_exec_file): Likewise.
4472 (windows_create_inferior): Add many accommodations for older Cygwin and
4473 non-Cygwin.
4474 (bad_GetModuleFileNameExW): Control inclusion of this function based on
4475 __USEWIDE conditional.
4476 (bad_GetModuleFileNameExA): Likewise.
4477 (_initialize_loadable): Just use real function names without the dyn_
4478 part since they are defined earlier.
4479
4480 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
4481 Tom Tromey <tromey@redhat.com>
4482
4483 * utils.c (host_char_to_target): Add 'gdbarch' argument.
4484 (parse_escape): Likewise.
4485 * python/py-utils.c (unicode_to_target_string): Update.
4486 (unicode_to_target_python_string): Update.
4487 (target_string_to_unicode): Update.
4488 * printcmd.c (printf_command): Update.
4489 * p-exp.y (yylex): Update.
4490 * objc-exp.y (yylex): Update.
4491 * mi/mi-parse.c: Include charset.h.
4492 (mi_parse_escape): New function.
4493 (mi_parse_argv): Use it.
4494 * jv-exp.y (yylex): Update.
4495 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
4496 function.
4497 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
4498 * gdbarch.sh (auto_charset, auto_wide_charset): New.
4499 * gdbarch.c: Rebuild.
4500 * gdbarch.h: Rebuild.
4501 * defs.h (parse_escape): Update.
4502 * cli/cli-setshow.c: Include arch-utils.h.
4503 (do_setshow_command): Update.
4504 * cli/cli-cmds.c (echo_command): Update.
4505 * charset.h (target_charset, target_wide_charset): Update.
4506 * charset.c: Include arch-utils.h.
4507 (target_charset_name): Default to "auto".
4508 (target_wide_charset_name): Likewise.
4509 (show_target_charset_name): Handle "auto".
4510 (show_target_wide_charset_name): Likewise.
4511 (be_le_arch): New global.
4512 (set_be_le_names): Add 'gdbarch' argument.
4513 (validate): Likewise. Don't call set_be_le_names.
4514 (set_charset_sfunc, set_host_charset_sfunc)
4515 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
4516 Update.
4517 (target_charset): Add 'gdbarch' argument.
4518 (target_wide_charset): Likewise. Remove 'byte_order' argument.
4519 (auto_target_charset_name): New global.
4520 (default_auto_charset, default_auto_wide_charset): New functions.
4521 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
4522 for target charsets. Copy result of nl_langinfo. Use GetACP if
4523 USE_WIN32API.
4524 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
4525 remove 'byte_order' argument. Update.
4526 (classify_type): Likewise.
4527 (c_emit_char): Update.
4528 (c_printchar): Update.
4529 (c_printstr): Update.
4530 (c_get_string): Update.
4531 (evaluate_subexp_c): Update.
4532 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
4533 Declare.
4534 * python/python.c (gdbpy_target_charset): New function.
4535 (gdbpy_target_wide_charset): Likewise.
4536 (GdbMethods): Update.
4537 * NEWS: Update.
4538
4539 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
4540
4541 * symfile.c (build_section_addr_info_from_objfile): Do not mask
4542 off high address bits.
4543
4544 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
4545
4546 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
4547 address as UnsignedLongLong, not LongLong.
4548
4549 2010-03-05 Kevin Buettner <kevinb@redhat.com>
4550 Pedro Alves <pedro@codesourcery.com>
4551
4552 * remote-mips.c (gdbthread.h): Include.
4553 (remote_mips_ptid): Declare.
4554 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
4555 (common_open): Set inferior_ptid, add it as an inferior, and
4556 as a thread too. Delete FIXME comment regarding start_remote().
4557 (mips_close): Invoke generic_mourn_inferior().
4558 (mips_kill): Make sure that target_mourn_inferior is invoked.
4559 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
4560 it's now invoked from mips_close().
4561 (mips_load): Don't null out inferior_ptid. Don't call
4562 clear_symtab_users().
4563 (mips_thread_alive, mips_pid_to_str): New functions.
4564 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
4565 to_thread_alive and to_pid_to_str operations.
4566
4567 2010-03-04 Tom Tromey <tromey@redhat.com>
4568
4569 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
4570 in DWARF 3 and later.
4571 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
4572
4573 2010-03-04 Keith Seitz <keiths@redhat.com>
4574
4575 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
4576 If the filename portion of the linespec was quoted, recheck the
4577 remainder for additional quoting.
4578 (locate_first_half): Skip over completer chars, too.
4579
4580 2010-03-04 Tom Tromey <tromey@redhat.com>
4581
4582 * printcmd.c (printf_command): Pass dummy argument to
4583 printf_filtered.
4584
4585 2010-03-04 Doug Evans <dje@google.com>
4586
4587 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
4588 unwound_fp.
4589
4590 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
4591
4592 2010-03-04 Pedro Alves <pedro@codesourcery.com>
4593
4594 * breakpoint.c (update_watchpoint): Create a sentinel location if
4595 the software watchpoint isn't watching any memory.
4596 (breakpoint_address_bits): Skip dummy software watchpoint locations.
4597
4598 2010-03-04 Pedro Alves <pedro@codesourcery.com>
4599
4600 * utils.c (fputs_maybe_filtered): Check if there's already a top
4601 level interpreter before dereferencing it. If there isn't one,
4602 don't paginate either.
4603
4604 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4605
4606 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
4607 the state right when single stepping.
4608 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
4609 Get the next PC along with the instruction state.
4610 (thumb_get_next_pc): Remove.
4611 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
4612
4613 2010-03-04 Hui Zhu <teawater@gmail.com>
4614
4615 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
4616
4617 2010-03-03 Pedro Alves <pedro@codesourcery.com>
4618
4619 * utils.c (fputs_maybe_filtered): Always disable pagination if the
4620 top level interpreter is MI.
4621
4622 2010-03-03 Stan Shebs <stan@codesourcery.com>
4623
4624 * remote.c (remote_download_tracepoint): Iterate over locations.
4625 * tracepoint.c (validate_actionline): Ditto.
4626 (encode_actions): Add location argument.
4627 (trace_dump_command): Check all locations to see if stepping
4628 frame.
4629
4630 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
4631 Eli Zaretskii <eliz@gnu.org>
4632
4633 * NEWS: Add X86 general purpose registers section.
4634
4635 2010-03-03 Tom Tromey <tromey@redhat.com>
4636
4637 PR mi/11098:
4638 * varobj.c (install_new_value): Handle case where new print_value
4639 is NULL.
4640
4641 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
4642
4643 PR gdb/11345:
4644 * printcmd.c (printf_command): Print end of format string using
4645 printf_filtered.
4646
4647 2010-03-02 Tom Tromey <tromey@redhat.com>
4648
4649 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
4650 * defs.h (read_command_lines_1): Add missing 'void'.
4651 * cli/cli-script.c (recurse_read_control_structure): Add missing
4652 'void'.
4653 (read_next_line): Likewise.
4654 (read_command_lines_1): Likewise.
4655
4656 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
4657
4658 * spu-tdep.c (spu_analyze_prologue): Track instruction to
4659 store backchain as part of prologue.
4660
4661 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
4662
4663 * progspace.c (update_address_spaces): Update inferior address spaces
4664 also.
4665
4666 2010-03-02 Doug Evans <dje@google.com>
4667
4668 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
4669 lowpc,highpc args to addrmap_set_empty.
4670
4671 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
4672
4673 * amd64-tdep.c (amd64_byte_names): New.
4674 (amd64_word_names): Likewise.
4675 (amd64_dword_names): Likewise.
4676 (amd64_pseudo_register_name): Likewise.
4677 (amd64_pseudo_register_read): Likewise.
4678 (amd64_pseudo_register_write): Likewise.
4679 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
4680 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
4681 set_gdbarch_pseudo_register_write and
4682 set_tdesc_pseudo_register_name. Don't call
4683 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
4684
4685 * i386-tdep.c (i386_num_mmx_regs): Removed.
4686 (i386_num_pseudo_regs): Likewise.
4687 (i386_byte_names): New.
4688 (i386_word_names): Likewise.
4689 (i386_byte_regnum_p): Likewise.
4690 (i386_word_regnum_p): Likewise.
4691 (i386_mmx_regnum_p): Updated.
4692 (i386_pseudo_register_name): Make it global. Handle byte and
4693 word pseudo-registers.
4694 (i386_pseudo_register_read): Likewise.
4695 (i386_pseudo_register_write): Likewise.
4696 (i386_pseudo_register_type): Handle byte, word and dword
4697 pseudo-registers
4698 (i386_register_reggroup_p): Don't include pseudo
4699 registers, except for MXX, in any register groups. Don't
4700 include pseudo byte, word, dword registers in general_reggroup.
4701 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
4702 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
4703 pseudo-registers after word pseudo-registers. Call
4704 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
4705
4706 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
4707 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
4708 eax_regnum.
4709 (i386_byte_regnum_p): New.
4710 (i386_word_regnum_p): Likewise.
4711 (i386_dword_regnum_p): Likewise.
4712 (i386_pseudo_register_name): Likewise.
4713 (i386_pseudo_register_read): Likewise.
4714 (i386_pseudo_register_write): Likewise.
4715
4716 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
4717
4718 * target-descriptions.c (tdesc_type): Remove
4719 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
4720 (tdesc_predefined_types): Likewise.
4721 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
4722 if flag name is empty.
4723 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
4724
4725 * features/i386/32bit-core.xml: Define i386_eflags.
4726 * features/i386/64bit-core.xml: Likewise.
4727
4728 * features/i386/32bit-sse.xml: Define i386_mxcsr.
4729 * features/i386/64bit-sse.xml: Likewise.
4730
4731 * features/i386/amd64-linux.c: Regenerated.
4732 * features/i386/amd64.c: Likewise.
4733 * features/i386/i386-linux.c: Likewise.
4734 * features/i386/i386.c: Likewise.
4735
4736 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
4737
4738 * gdbtypes.c (append_composite_type_field_raw): New.
4739 (append_composite_type_field_aligned): Use the new function.
4740 * gdbtypes.h (append_composite_type_field_raw): Declare.
4741 * target-descriptions.c (struct tdesc_type_field): Add start and end.
4742 (struct tdesc_type_flag): New type.
4743 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
4744 kind. Add size to u.u. Add u.f for flags.
4745 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
4746 (tdesc_free_type): Likewise.
4747 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
4748 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
4749 (tdesc_add_bitfield, tdesc_add_flag): New.
4750 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
4751 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
4752 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
4753 current_type. Add current_type_size and current_type_is_flags.
4754 (tdesc_start_union): Clear the new fields.
4755 (tdesc_start_struct, tdesc_start_flags): New.
4756 (tdesc_start_field): Handle struct fields, including bitfields.
4757 (field_attributes): Make type optional. Add start and end.
4758 (union_children): Rename to struct_union_children.
4759 (union_attributes): Rename to struct_union_attributes. Add optional
4760 size.
4761 (flags_attributes): New.
4762 (feature_children): Add struct and flags.
4763 * features/gdb-target.dtd: Add flags and struct to features.
4764 Make field type optional. Add field start and end.
4765
4766 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
4767
4768 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
4769 (amd64_linux_read_description): Likewise.
4770 (_initialize_amd64_linux_nat): Set to_read_description to
4771 amd64_linux_read_description.
4772
4773 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
4774 (amd64_linux_register_name): Removed.
4775 (amd64_linux_register_type): Likewise.
4776 (amd64_linux_core_read_description): New.
4777 (amd64_linux_init_abi): Set target description to
4778 tdesc_amd64_linux if needed. Support orig_rax in target
4779 description. Don't call set_gdbarch_register_name nor
4780 set_gdbarch_register_type. Call
4781 set_gdbarch_core_read_description.
4782 (_initialize_amd64_linux_tdep): Call
4783 initialize_tdesc_amd64_linux.
4784
4785 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
4786
4787 * amd64-tdep.c: Include "features/i386/amd64.c".
4788 (amd64_register_names): Removed.
4789 (amd64_register_name): Likewise.
4790 (amd64_register_type): Likewise.
4791 (amd64_init_abi): Set num_core_regs and register_names. Set
4792 target description to tdesc_amd64 if needed. Don't call
4793 set_gdbarch_register_name nor set_gdbarch_register_type.
4794 (_initialize_amd64_tdep): New.
4795
4796 * i386-linux-nat.c (i386_linux_read_description): New.
4797 (_initialize_i386_linux_nat): Set to_read_description to
4798 i386_linux_read_description.
4799
4800 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
4801 (i386_linux_register_name): Removed.
4802 (i386_linux_core_read_description): New.
4803 (i386_linux_read_description): Likewise.
4804 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
4805 Set target description to tdesc_i386_linux if needed. Support
4806 orig_eax. Set register_reggroup_p. Call
4807 set_gdbarch_core_read_description.
4808 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
4809
4810 * i386-linux-tdep.h (tdesc_i386_linux): New.
4811
4812 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
4813 with I387_NUM_REGS.
4814
4815 * i386-tdep.c: Include "features/i386/i386.c".
4816 (i386_register_names): Make it const.
4817 (i386_mmx_names): Likewise.
4818 (i386_num_register_names): Removed.
4819 (i386_register_name): Likewise.
4820 (i386_eflags_type): Likewise.
4821 (i386_mxcsr_type): Likewise.
4822 (i386_sse_type): Likewise.
4823 (i386_register_type): Likewise.
4824 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
4825 (i386_pseudo_register_name): New.
4826 (i386_pseudo_register_type): Likewise.
4827 (i386_mmx_type): Make it static.
4828 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
4829 I387_NUM_REGS. Set num_core_regs and register_names. Don't
4830 call set_gdbarch_register_name nor set_gdbarch_register_type.
4831 Set register_reggroup_p. Set target description to tdesc_i386
4832 if needed. Call set_tdesc_pseudo_register_type,
4833 set_tdesc_pseudo_register_name and tdesc_use_registers.
4834 (_initialize_i386_tdep): Call initialize_tdesc_i386.
4835 initialize_tdesc_x86_64.
4836
4837 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
4838 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
4839 register_names, tdesc and register_reggroup_p.
4840 (I386_NUM_FREGS): Removed.
4841 (i386_eflags_type): Likewise.
4842 (i386_mxcsr_type): Likewise.
4843 (i386_mmx_type): Likewise.
4844 (i386_sse_type): Likewise.
4845 (i386_register_name): Likewise.
4846 (i386_regnum): Add I386_MXCSR_REGNUM.
4847 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
4848
4849 * i387-tdep.h (I387_NUM_REGS): New.
4850
4851 * regformats/i386/i386-linux.dat: Generated.
4852 * regformats/i386/i386.dat: Likewise.
4853 * regformats/i386/amd64-linux.dat: Likewise.
4854 * regformats/i386/amd64.dat: Likewise.
4855
4856 * regformats/reg-i386-linux.dat: Removed.
4857 * regformats/reg-i386.dat: Likewise.
4858 * regformats/reg-x86-64-linux.dat: Likewise.
4859 * regformats/reg-x86-64.dat: Likewise.
4860
4861 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
4862
4863 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
4864 cygwin_conv_path API rather than the deprecated
4865 cygwin_conv_to_full_posix_path.
4866 * windows-nat.c:
4867 (GetModuleFileNameExA): Undefine for Cygwin.
4868 (GetModuleFileNameExW): Define for Cygwin.
4869 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
4870 Call GetModuleFileNameExW and convert path to POSIX using
4871 cygwin_conv_path.
4872 (windows_make_so): Always define p. Drop unused variable m.
4873 Don't use Win32 functions to check file existance, rather use
4874 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
4875 Use canonicalize_file_name to get full path.
4876 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
4877 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
4878 use correct target buffer size in call to WideCharToMultiByte.
4879 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
4880 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
4881 (windows_create_inferior): Convert all paths and arguments to wchar_t
4882 and use CreateProcessW on Cygwin.
4883 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
4884 (bad_GetModuleFileNameExA): Undefine for Cygwin.
4885 (bad_GetModuleFileNameExW): Define for Cygwin.
4886 (_initialize_loadable): Load GetModuleFileNameExW into
4887 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
4888
4889 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
4890
4891 PR python/11036
4892 * python/py-frame.c (frapy_read_var): Add block argument and logic
4893 to cope with user provided blocks.
4894
4895 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4896
4897 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
4898 New comment.
4899
4900 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
4901
4902 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
4903 (COMMON_OBS): ... to here since it's used unconditionally.
4904 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
4905 (SFILES): To here.
4906
4907 2010-02-26 David Daney <ddaney@caviumnetworks.com>
4908
4909 * mips-linux-tdep.c: Update struct sigframe comments.
4910 (SIGFRAME_CODE_OFFSET): Delete macro.
4911 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
4912 this_frame's sp.
4913 (mips_linux_n32n64_sigframe_init): Same.
4914
4915 2010-02-26 Kevin Buettner <kevinb@redhat.com>
4916
4917 * remote-mips.c (mips_load): Don't use pseudo-register when
4918 invalidating regcache.
4919
4920 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
4921
4922 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
4923
4924 2010-02-26 Pedro Alves <pedro@codesourcery.com>
4925
4926 * NEWS: Add "New targets" section, and mention ARM Symbian
4927 support.
4928
4929 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
4930
4931 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
4932 add ADDR_SIZE member.
4933 (allocate_piece_closure): Update.
4934 (copy_pieced_value_closure): Likewise.
4935 (dwarf2_evaluate_loc_desc): Likewise.
4936 (read_pieced_value): Use DWARF address size instead of
4937 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
4938
4939 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
4940 Tom Tromey <tromey@redhat.com>
4941
4942 * python/py-type.c (typy_lookup_typename): Add in block argument.
4943 If provided restrict lookup to specified blocks.
4944 (gdbpy_lookup_type): Likewise.
4945 (typy_lookup_type): Likewise.
4946
4947 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
4948
4949 Symbian config
4950
4951 gdb/
4952 * arm-symbian-tdep.c: New.
4953 * configure.tgt (arm*-*-symbianelf*): New target.
4954 (*-*-symbianelf*): New OS.
4955 * osabi.c (gdb_osabi_names): Add Symbian.
4956 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
4957 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
4958 (ALLDEPFILES): Add arm-symbian-tdep.c.
4959
4960 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
4961
4962 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
4963
4964 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4965
4966 * mi/mi-main.c (mi_cmd_execute): Fix typo.
4967
4968 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
4969 Tom Tromey <tromey@redhat.com>
4970 Thiago Jung Bauermann <bauerman@br.ibm.com>
4971
4972 * python/python.c (_initialize_python): Call
4973 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
4974 gdbpy_initialize_blocks.
4975 * python/python-internal.h: Declare struct symbol, block and
4976 symtab_and_line. Declare block_object_type and
4977 symbol_object_type
4978 (gdbpy_lookup_symbol gdbpy_block_for_pc)
4979 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
4980 (symbol_to_symbol_object, block_to_block_object)
4981 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
4982 (gdbpy_initialize_blocks ): Declare.
4983 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
4984 (frapy_select): Add methods.
4985 (frapy_read_var): Add symbol branch.
4986 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
4987 py-block.
4988 (SUBDIR_PYTHON_SRCS): Likewise.
4989 (py-symbol.o): New rule.
4990 (py-symtab.o): Likewise.
4991 (py-block.o): Likewise.
4992 * python/py-symbol.c: New file.
4993 * python/py-symtab.c: Likewise.
4994 * python/py-block.c: Likewise.
4995
4996 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4997
4998 PR gdb/11321
4999
5000 * inferior.h (prepare_for_detach): Declare.
5001 (struct inferior) <detaching>: New field.
5002 * infrun.c (prepare_for_detach): New.
5003 (handle_inferior_event) <random signal>: Don't stop if detaching.
5004 * target.c (target_detach): Call prepare_for_detach.
5005
5006 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5007
5008 Per-process displaced stepping queue.
5009
5010 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
5011 (displaced_step_gdbarch, displaced_step_closure,
5012 (displaced_step_original, displaced_step_copy): Move globals to
5013 this...
5014 (struct displaced_step_inferior_state): ... new structure.
5015 (displaced_step_inferior_states): New global.
5016 (get_displaced_stepping_state, add_displaced_stepping_state)
5017 (remove_displaced_stepping_state, infrun_inferior_exit): New
5018 functions.
5019 (displaced_step_clear): Add displaced_step_inferior_state
5020 parameter, and adjust to handle it.
5021 (displaced_step_clear_cleanup): Parameter is now a
5022 displaced_step_inferior_state. Adjust.
5023 (displaced_step_prepare): Adjust.
5024 (displaced_step_fixup, displaced_step_fixup)
5025 (infrun_thread_ptid_changed, resume): Adjust.
5026 (init_wait_for_inferior): Don't call displaced_step_clear.
5027 (infrun_thread_stop_requested): Rewrite.
5028 (_initialize_infrun): Install infrun_inferior_exit as
5029 inferior_exit observer.
5030
5031 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5032
5033 * inferior.h (ptid_match): Declare.
5034 * infrun.c (ptid_match): New.
5035 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
5036 (handle_notification): Add debug output.
5037 * linux-nat.c (ptid_match): Delete.
5038
5039 2010-02-24 David S. Miller <davem@davemloft.net>
5040
5041 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
5042 * syscalls/sparc-linux.xml: New.
5043 * syscalls/sparc64-linux.xml: New.
5044 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
5045 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
5046 (sparc32_linux_get_syscall_number): New function.
5047 (sparc32_linux_init_abi): Set syscall XML file name and hook up
5048 syscall number fetcher.
5049 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
5050 (sparc64_linux_get_syscall_number): New function.
5051 (sparc64_linux_init_abi): Set syscall XML file name and hook up
5052 syscall number fetcher.
5053
5054 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
5055
5056 Multiexec MI
5057
5058 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
5059 * inferior.c (add_inferior_silent): Notify inferior_added
5060 observer.
5061 (delete_inferior_1): Notify inferior_removed observer.
5062 (exit_inferior_1): Pass inferior, not pid, to observer.
5063 (inferior_appeared): Likewise.
5064 (add_inferior_with_spaces): New.
5065 (add_inferior_command): Use the above.
5066 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
5067 Declare.
5068
5069 * inflow.c (inflow_inferior_exit): Likewise.
5070 * jit.c (jit_inferior_exit_hook): Likewise.
5071
5072 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
5073 remove-inferior.
5074 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
5075 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
5076 (report_initial_inferior): New.
5077 (mi_inferior_removed): Register the above. Make sure
5078 inferior_added observer is called on the first inferior.
5079 (mi_new_thread, mi_thread_exit): Thread group is now identified by
5080 inferior number, not pid.
5081 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
5082 affected.
5083 * mi/mi-main.c (current_context): New.
5084 (proceed_thread_callback): Use typed closure.
5085 Proceed everything if pid is 0. Most implementation split into
5086 (proceed_thread): ... this.
5087 (run_one_inferior): New.
5088 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
5089 Adjust for multiexec behaviour.
5090 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
5091 (mi_cmd_execute): Handle the 'thread-group' option here.
5092 Do some extra checks.
5093 * mi-parse.c (mi_parse): Handle the --all and --thread-group
5094 options.
5095 * mi-parse.h (struct mi_parse): New fields all and thread_group.
5096
5097 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
5098
5099 Make -exec-run a proper MI commands.
5100
5101 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
5102 * mi/mi-cmds.c (mi_cmds): Adjust.
5103 * mi/mi-main.c (mi_cmd_exec_run): New.
5104
5105 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5106 Stan Shebs <stan@codesourcery.com>
5107
5108 * tracepoint.h (set_traceframe_number)
5109 (cleanup_restore_current_traceframe): Declare.
5110 * tracepoint.c (set_traceframe_number): New.
5111 (struct current_traceframe_cleanup): New.
5112 (do_restore_current_traceframe_cleanup)
5113 (restore_current_traceframe_cleanup_dtor)
5114 (make_cleanup_restore_current_traceframe): New.
5115 * infrun.c: Include tracepoint.h.
5116 (fetch_inferior_event): Switch out and in of tfind mode.
5117
5118 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5119
5120 * breakpoint.c (breakpoint_init_inferior): Also delete
5121 bp_shlib_event breakpoints.
5122 * solib-frv.c (enable_break): Remove call to
5123 remove_solib_event_breakpoints.
5124 * solib-svr4.c (enable_break): Ditto.
5125 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
5126 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
5127 * solib-som.c (som_solib_create_inferior_hook): Ditto.
5128 * solib-spu.c (spu_enable_break): Ditto.
5129
5130 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
5131
5132 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
5133
5134 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
5135
5136 * varobj.c (varobj_update): Avoid non-constants in initializers.
5137
5138 2010-02-23 Tom Tromey <tromey@redhat.com>
5139
5140 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
5141 handle big-endian values.
5142 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
5143
5144 2010-02-22 Pedro Alves <pedro@codesourcery.com>
5145
5146 PR9605
5147
5148 gdb/
5149 * breakpoint.c (insert_bp_location): If inserting the read
5150 watchpoint failed, fallback to an access watchpoint.
5151 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
5152 if the value changed, if not watching the same memory for writes.
5153 (watchpoint_locations_match): Add comment.
5154 (update_global_location_list): Copy the location's watchpoint type.
5155 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
5156 handle read watchpoints here.
5157 (i386_insert_watchpoint): Read watchpoints aren't supported.
5158 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
5159 packets.
5160 * target.h (target_insert_watchpoint): Update description.
5161
5162 2010-02-19 Tom Tromey <tromey@redhat.com>
5163
5164 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
5165 * m2-typeprint.c (m2_print_type): Update.
5166 * gdbtypes.c (recursive_dump_type): Update.
5167 (copy_type_recursive): Update.
5168 * c-typeprint.c (c_type_print_varspec_prefix): Update.
5169 (c_type_print_base): Update.
5170 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
5171 Remove.
5172 (struct cplus_struct_type) <ntemplate_args>: Remove.
5173 <struct template_arg>: Remove.
5174 <is_dynamic>: Move earlier.
5175 (TYPE_TEMPLATE_ARGS): Remove.
5176 (TYPE_NTEMPLATE_ARGS): Remove.
5177 (TYPE_TEMPLATE_ARG): Remove.
5178
5179 2010-02-19 Tom Tromey <tromey@redhat.com>
5180
5181 PR c++/8693, PR c++/9496:
5182 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
5183 * c-exp.y (lex_one_token): Rename from yylex. Don't call
5184 write_dollar_variable. Don't try to classify NAME tokens.
5185 (token_and_value): New type.
5186 (token_fifo, popping, name_obstack): New globals.
5187 (classify_name): New function.
5188 (classify_inner_name): Likewise.
5189 (yylex): Likewise.
5190 (VARIABLE): Now has type sval.
5191 (exp : VARIABLE): Call write_dollar_variable.
5192 (qualified_name): Use TYPENAME, not typebase. Add production for
5193 multiple "::" instances.
5194 (variable): Use name_not_typename.
5195 (qualified_type): Remove.
5196 (typebase): Update.
5197
5198 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
5199
5200 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
5201 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
5202 found by bfd_get_section_by_name.
5203 * symfile.h (struct section_addr_info) <sectindex>: New comment.
5204
5205 2010-02-19 Joel Brobecker <brobecker@adacore.com>
5206
5207 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
5208 7.0 section" into "Changes in 7.1".
5209
5210 2010-02-19 Joel Brobecker <brobecker@adacore.com>
5211
5212 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
5213 * version.in: Bump version to 7.1.50.20100219-cvs.
5214
5215 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
5216
5217 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
5218 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
5219
5220 2010-02-17 Tom Tromey <tromey@redhat.com>
5221
5222 * NEWS: Add Python API Improvements section.
5223
5224 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
5225
5226 * NEWS: Correct typo.
5227
5228 2010-02-17 Tom Tromey <tromey@redhat.com>
5229
5230 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
5231
5232 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5233
5234 * symfile.c (build_section_addr_info_from_objfile): Include sections
5235 only if they are SEC_ALLOC or SEC_LOAD.
5236
5237 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
5238
5239 PR shlibs/11293
5240 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
5241 of ULONGEST for address size.
5242
5243 2010-02-17 Tom Tromey <tromey@redhat.com>
5244
5245 * NEWS: Add C++ improvements section.
5246
5247 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
5248
5249 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
5250 PyThreadState_Swap): Avoid "statement with no effect" warning.
5251
5252 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5253
5254 * solib-svr4.c (enable_break <target_auxv_search>): New variable
5255 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
5256
5257 2010-02-17 Tristan Gingold <gingold@adacore.com>
5258 Petr Hluzin <petr.hluzin@gmail.com>
5259
5260 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
5261 gdb_assert. Fix info->size for SIG prologue.
5262
5263 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5264
5265 * infcmd.c (show_inferior_tty_command): Check for NULL.
5266 Correct output message.
5267
5268 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5269
5270 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
5271 FUNCTION contains parentheses. Improve removal of a trailing
5272 single quote.
5273
5274 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5275
5276 * gcore.c (do_bfd_delete_cleanup): New function.
5277 (gcore_command): Use it. Discard the cleanup after success.
5278 (gcore_copy_callback): Delete dead code.
5279
5280 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5281
5282 * symfile.c (addr_info_make_relative): Always use
5283 find_lowest_section.
5284
5285 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
5286
5287 * NEWS: Added entry for namespace fixes.
5288
5289 2010-02-15 Tom Tromey <tromey@redhat.com>
5290
5291 * dwarf2read.c (guess_structure_name): Allocate name on the
5292 objfile obstack.
5293
5294 2010-02-15 Tom Tromey <tromey@redhat.com>
5295
5296 * c-typeprint.c (c_type_print_base): Reverse order of test.
5297
5298 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5299
5300 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
5301 initialize it from ELF BFD. Extend the prelink condition by it.
5302
5303 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5304
5305 * defs.h (parse_pid_to_attach): New.
5306 * utils.c (parse_pid_to_attach): New.
5307 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
5308 * gnu-nat.c (gnu_attach): Likewise.
5309 * nto-procfs.c (procfs_attach): Likewise.
5310 * procfs.c (procfs_attach): Likewise.
5311 * windows-nat.c (windows_attach): Likewise.
5312 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
5313 * inf-ttrace.c (inf_ttrace_attach): Likewise.
5314 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
5315 check.
5316
5317 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
5318
5319 * MAINTAINERS: Add myself for write after approval privileges.
5320
5321 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5322
5323 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
5324 block.
5325
5326 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5327
5328 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
5329 only if INFO_VERBOSE.
5330
5331 2010-02-12 Tomas Holmberg <th@virtutech.com>
5332
5333 * mi/mi-main.c: Added the --reverse flag to the following MI
5334 commands: exec-continue, exec-finish, exec-next, exec-step,
5335 exec-next-instruction, exec-step-instruction. This is to
5336 support reverse execution over the MI interface to gdb.
5337
5338 2010-02-12 Pedro Alves <pedro@codesourcery.com>
5339
5340 * tracepoint.c (_initialize_tracepoint): Specify that the address
5341 range of `tfind outsize' is exclusive, and that the address range
5342 of `tfind range' is inclusive, in the commands' help strings.
5343
5344 2010-02-12 Joel Brobecker <brobecker@adacore.com>
5345
5346 Spurious "dll not found" error messages on x64-windows.
5347 * windows-nat.c: Add include of complaints.h.
5348 (handle_unload_dll): Change dll-not-found error into a complaint.
5349
5350 2010-02-12 Pedro Alves <pedro@codesourcery.com>
5351
5352 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
5353 bp_tracepoint and bp_fast_tracepoint, not
5354 bp_loc_software_breakpoint.
5355 (update_global_location_list): Tracepoints are never duplicates of
5356 anything.
5357
5358 2010-02-12 Pedro Alves <pedro@codesourcery.com>
5359
5360 * breakpoint.c (break_command_really): Change return type to int.
5361 Return false if no breakpoint was created, true otherwise.
5362 (trace_command): Don't set the tracepoint count if no tracepoint
5363 was created.
5364 (ftrace_command): Ditto.
5365 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
5366 created in the breakpoints table.
5367
5368 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5369 Ulrich Weigand <uweigand@de.ibm.com>
5370
5371 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
5372
5373 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5374
5375 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
5376 the offset value isn't of integral type.
5377
5378 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5379
5380 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
5381 New.
5382
5383 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5384
5385 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
5386 non-subscriptable types.
5387 * valarith.c (binop_types_user_defined_p): New, abstracted out
5388 from ...
5389 (binop_user_defined_p): ... this.
5390 * value.h (binop_types_user_defined_p): Declare.
5391
5392 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5393
5394 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
5395 Merge uploaded TSVs before merging uploaded tracepoints.
5396
5397 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5398
5399 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
5400
5401 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
5402
5403 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
5404 whitespace character after a dot in comment.
5405 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
5406 Likewise.
5407 (list_args_or_locals): For the 'all' (that is
5408 -stack-list-variables) case, always output list of tuples.
5409 Output 'arg' field if variable is argument.
5410
5411 2010-02-10 Tom Tromey <tromey@redhat.com>
5412
5413 * parser-defs.h (parser_debug): Declare.
5414 * parse.c (_initialize_parse): Install "debug parser" set/show
5415 command.
5416 (parser_debug): New global.
5417 (show_parserdebug): New function.
5418 * c-exp.y (c_parse): Set yydebug.
5419
5420 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
5421
5422 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
5423 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
5424 (tdesc_predefined_types): Add i387_ext, i386_eflags and
5425 i386_mxcsr.
5426 (tdesc_find_type): New.
5427 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
5428 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
5429
5430 * target-descriptions.h (tdesc_find_type): New.
5431
5432 2010-02-10 Michael Snyder <msnyder@vmware.com>
5433
5434 * gdb-gdb.py: Comment fix.
5435
5436 2010-02-09 Tristan Gingold <gingold@adacore.com>
5437
5438 * machoread.c (macho_symfile_relocate): New function.
5439 (macho_sym_fns): Use macho_symfile_relocate instead of
5440 default_symfile_relocate.
5441 (macho_oso_data): New type.
5442 (current_oso): New variable.
5443 (macho_add_oso_symfile): Do not compute section_addr_info, but
5444 instead set vma of sections.
5445 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
5446 Set and clear current_oso.
5447
5448 2010-02-09 Joel Brobecker <brobecker@adacore.com>
5449
5450 Wrong type description for tagged type parameter.
5451 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
5452 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
5453 reference to a tagged type.
5454
5455 2010-02-09 Tristan Gingold <gingold@adacore.com>
5456
5457 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
5458 brothers of the parent.
5459
5460 2010-02-08 Tom Tromey <tromey@redhat.com>
5461
5462 PR c++/8017:
5463 * value.h: Update.
5464 * valops.c (search_struct_field): Make 'name' const.
5465 (search_struct_method): Likewise.
5466 (find_method_list): Make 'method' const.
5467 (value_struct_elt): Make 'name' and 'err' const.
5468 (value_find_oload_method_list): Make 'method' const.
5469 (find_overload_match): Make 'name' const.
5470 * eval.c (evaluate_subexp_standard): New locals function,
5471 function_name.
5472 <OP_FUNCALL>: Handle OP_SCOPE specially.
5473
5474 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
5475
5476 * infrun.c (handle_inferior_event): Do not look up regcache
5477 for exited processes.
5478
5479 2010-02-08 Chris Moller <moller@mollerware.com>
5480
5481 PR gdb/10728
5482 * valarith.c (value_ptrdiff): Added a test for a zero type length,
5483 warn if found, and assume length = 1.
5484
5485 2010-02-08 Chris Moller <cmoller@redhat.com>
5486
5487 PR gdb/9067
5488 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
5489 cp_print_static_field) Fix use of obstacks.
5490
5491 2010-02-08 Pedro Alves <pedro@codesourcery.com>
5492
5493 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
5494 resumed LWPs as resumed.
5495 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
5496 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
5497 of throwing an internal error. If an LWP of a process we're not
5498 waiting for reports a signal, don't force collecting a SIGSTOP,
5499 and if it was breakpoint hit in non-stop mode, cancel it. Don't
5500 go through all LWPs cancelling breakpoints in non-stop mode.
5501 (resume_stopped_resumed_lwps): New.
5502 (linux_nat_wait): Use it.
5503
5504 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
5505
5506 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
5507 i386/amd64 and i386/amd64-linux.
5508 (i386/i386-expedite): New.
5509 (i386/i386-linux-expedite): Likewise.
5510 (i386/amd64-expedite):Likewise.
5511 (i386/amd64-linux-expedite): Likewise.
5512 ($(outdir)/i386/i386-linux.dat): Likewise.
5513 ($(outdir)/i386/amd64.dat): Likewise.
5514 ($(outdir)/i386/amd64-linux.dat): Likewise.
5515
5516 * features/i386/32bit-core.xml: New.
5517 * features/i386/32bit-linux.xml: Likewise.
5518 * features/i386/32bit-sse.xml: Likewise.
5519 * features/i386/64bit-core.xml: Likewise.
5520 * features/i386/64bit-linux.xml: Likewise.
5521 * features/i386/64bit-sse.xml: Likewise.
5522 * features/i386/i386-linux.xml: Likewise.
5523 * features/i386/i386.xml: Likewise.
5524 * features/i386/amd64-linux.xml: Likewise.
5525 * features/i386/amd64.xml: Likewise.
5526 * features/i386/i386-linux.c: Likewise.
5527 * features/i386/i386.c: Likewise.
5528 * features/i386/amd64-linux.c: Likewise.
5529 * features/i386/amd64.c: Likewise.
5530
5531 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
5532
5533 PR c++/7935:
5534 * cp-support.h: Added char* alias element to using_direct data
5535 struct.
5536 (cp_add_using): Added char* alias argument.
5537 (cp_add_using_directive): Ditto.
5538 * cp-namespace.c: Updated with the above changes.
5539 (cp_lookup_symbol_imports): Check for aliases.
5540 * dwarf2read.c (read_import_statement): Figure out local alias
5541 for the import and pass it on to cp_add_using.
5542 (read_namespace): Pass alias argument to cp_add_using.
5543
5544 2010-02-05 Hui Zhu <teawater@gmail.com>
5545
5546 * defs.h (gdb_bfd_errmsg): New extern.
5547 * exec.c (exec_file_attach): Change bfd_errmsg to
5548 gdb_bfd_errmsg.
5549 * utils.c (AMBIGUOUS_MESS1): New macro.
5550 (AMBIGUOUS_MESS2): New macro.
5551 (gdb_bfd_errmsg): New function.
5552
5553 2010-02-04 Doug Evans <dje@google.com>
5554
5555 * solib-svr4.c (enable_break): Add comment.
5556
5557 2010-02-04 Anthony Green <green@moxielogic.com>
5558
5559 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
5560 gracefully.
5561
5562 2010-02-04 Tom Tromey <tromey@redhat.com>
5563
5564 * valops.c (search_struct_field): Account for
5565 value_embedded_offset. Fix check for virtual base past the end of
5566 the object. Use value_copy when making a slice of the value.
5567
5568 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
5569
5570 PR tui/9622
5571 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
5572 only if gdb_stdout is a tty.
5573
5574 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
5575
5576 * target-descriptions.c: Include "osabi.h".
5577 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
5578 OSABI.
5579
5580 2010-02-04 Tristan Gingold <gingold@adacore.com>
5581
5582 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
5583 (macho_symtab_read): Adjust calls to macho_add_oso.
5584 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
5585 (macho_symfile_read): Adjust call to macho_oso_symfile.
5586 (macho_new_init): Move this function after declarations.
5587 (macho_symfile_init): Ditto.
5588 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
5589 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
5590
5591 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
5592
5593 Include MI command in remotelog.
5594
5595 * mi/mi-main.c (mi_execute_command): Call target_log_command.
5596
5597 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5598
5599 * remote.c (remote_state): Remove gdbarch.
5600 (init_remote_state): Don't set gdbarch.
5601 (remote_query_supported): Pass target_gdbarch instead of
5602 rs->gdbarch to gdbarch_qsupported.
5603
5604 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5605
5606 * gdbarch.sh: Add qsupported.
5607
5608 * gdbarch.c: Regenerated.
5609 * gdbarch.h: Likewise.
5610
5611 * remote.c (remote_state): Add gdbarch.
5612 (init_remote_state): Set gdbarch.
5613 (remote_query_supported): Support gdbarch_qsupported.
5614
5615 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
5616
5617 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
5618 __FreeBSD_kernel_version.
5619
5620 2010-02-03 Tristan Gingold <gingold@adacore.com>
5621
5622 * symfile.h (struct sym_fns): Add sym_relocate field.
5623 (default_symfile_relocate): New prototype.
5624 (symfile_relocate_debug_section): First argument is now an objfile.
5625 * symfile.c (default_symfile_relocate): Rename from
5626 symfile_relocate_debug_section, first argument is now an objfile.
5627 (symfile_relocate_debug_section): New function.
5628 * coffread.c (coff_sym_fns): Set sym_relocate field.
5629 * somread.c (som_sym_fns): Ditto.
5630 * mipsread.c (ecoff_sym_fns): Ditto.
5631 * machoread.c (macho_sym_fns): Ditto.
5632 * elfread.c (elf_sym_fns): Ditto.
5633 * dwarf2read.c (dwarf2_read_section): Ditto.
5634 * xcoffread.c (xcoff_sym_fns): Ditto.
5635 * dbxread.c (aout_sym_fns): Ditto.
5636 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
5637 (elfstab_build_psymtabs): Ditto.
5638
5639 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5640
5641 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
5642
5643 2010-02-02 Tom Tromey <tromey@redhat.com>
5644
5645 * valops.c (value_cast_structs): Try downcasting using the RTTI
5646 type.
5647
5648 2010-02-02 Tom Tromey <tromey@redhat.com>
5649
5650 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
5651 (gnuv2_baseclass_offset): Now static.
5652 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
5653 * gnu-v2-abi.h: Remove.
5654
5655 2010-02-02 Tom Tromey <tromey@redhat.com>
5656
5657 * m2-typeprint.c (m2_record_fields): Don't use
5658 TYPE_DECLARED_TYPE.
5659 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
5660 (struct main_type) <flag_declared_class>: New field.
5661 (struct cplus_struct_type) <declared_type>: Remove.
5662 <ntemplate_args>: Move earlier.
5663 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
5664 (DECLARED_TYPE_TEMPLATE): Remove.
5665 (TYPE_DECLARED_TYPE): Remove.
5666 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
5667 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
5668 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
5669 TYPE_DECLARED_TYPE.
5670
5671 2010-02-02 Tom Tromey <tromey@redhat.com>
5672
5673 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
5674 * valops.c (search_struct_field): Compute nbases after calling
5675 CHECK_TYPEDEF.
5676 (check_field): Call CHECK_TYPEDEF.
5677 * cp-valprint.c (cp_print_value): Pass correct address to
5678 baseclass_offset. Fix check for virtual base past the end of the
5679 object. Don't offset address passed to cp_print_value_fields or
5680 apply_val_pretty_printer.
5681 (cp_print_value_fields): Fix call to val_print.
5682 (cp_print_value_fields_rtti): New function.
5683 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
5684 * p-valprint.c (pascal_object_print_value_fields): Fix call to
5685 val_print.
5686 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
5687 offset to address.
5688 * language.h (struct language_defn) <la_val_print>: Document.
5689 * c-lang.h (cp_print_value_fields_rtti): Declare.
5690
5691 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5692
5693 PR libc/11214:
5694 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
5695 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
5696 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
5697
5698 2010-02-01 Michael Matz <matz@suse.de>
5699 Daniel Jacobowitz <dan@codesourcery.com>
5700
5701 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
5702 functions use a frame pointer.
5703
5704 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5705
5706 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
5707 by a conditional setting DYN_ADDR. Use DYN_ADDR.
5708 * config/djgpp/fnchange.lst: Add translations for
5709 symbol-without-target_section.exp and symbol-without-target_section.c.
5710
5711 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5712
5713 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
5714 (remote_breakpoint_for_pc): Correct invalid_p check.
5715 * gdbarch.c: Regenerated.
5716
5717 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5718
5719 * arm-tdep.c (arm_find_mapping_symbol): New function, from
5720 arm_pc_is_thumb.
5721 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
5722 (extend_buffer_earlier): New function.
5723 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
5724 (arm_adjust_breakpoint_address): New function.
5725 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
5726
5727 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5728
5729 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
5730 (arm_linux_thumb2_le_breakpoint): New constants.
5731 (arm_linux_init_abi): Set thumb2_breakpoint and
5732 thumb2_breakpoint_size.
5733 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
5734 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
5735 Implement support for single stepping through IT blocks if
5736 a 32-bit Thumb breakpoint instruction is available.
5737 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
5738 is available, use it when needed.
5739 (arm_remote_breakpoint_from_pc): New function.
5740 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
5741 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
5742 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
5743
5744 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5745
5746 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
5747 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
5748 * gdbarch.c, gdbarch.h: Regenerated.
5749 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
5750 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
5751 gdbarch_remote_breakpoint_from_pc.
5752
5753 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
5754
5755 * infrun.c (prepare_to_proceed): Handle other signals which might
5756 match a breakpoint.
5757 (handle_inferior_event): Move the check for unusual breakpoint
5758 signals earlier.
5759
5760 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
5761
5762 amd64 - function returning record with field straddling 2 registers.
5763 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
5764 a record of length <= 16 in which a field straddles the two
5765 eightbytes.
5766
5767 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5768
5769 Implement return values on amd64-windows.
5770 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
5771 (amd64_windows_return_value): New function.
5772 (amd64_windows_init_abi): Call set_gdbarch_return_value with
5773 amd64_windows_return_value.
5774
5775 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5776
5777 amd64-windows: 32 bytes allocated on stack by caller for integer
5778 parameter registers.
5779 * i386-tdep.h (struct gdbarch_tdep): Add new field
5780 integer_param_regs_saved_in_caller_frame.
5781 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5782 tdep->integer_param_regs_saved_in_caller_frame to 1.
5783 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
5784 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
5785
5786 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5787
5788 amd64-windows: memory args passed by pointer during function calls.
5789 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
5790 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
5791 where tdep->memory_args_by_pointer is non-zero.
5792 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5793 tdep->memory_args_by_pointer to 1.
5794
5795 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5796
5797 amd64-windows: Integer parameters in function calls.
5798 * i386-tdep.h (enum amd64_reg_class): New, moved here from
5799 amd64-tdep.c.
5800 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
5801 call_dummy_integer_regs, and classify.
5802 * amd64-tdep.h (amd64_classify): Add declaration.
5803 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
5804 (amd64_reg_class): Delete, moved to i386-tdep.h.
5805 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
5806 Replace call to amd64_classify by call to tdep->classify.
5807 (amd64_push_arguments): Get the list of registers to use for
5808 passing integer parameters from the gdbarch tdep structure,
5809 rather than using a hardcoded one. Replace calls to amd64_classify
5810 by calls to tdep->classify.
5811 (amd64_push_dummy_call): Get the register number used for
5812 the "hidden" argument from tdep->call_dummy_integer_regs.
5813 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
5814 and tdep->call_dummy_integer_regs. Set tdep->classify.
5815 * amd64-windows-tdep.c: Add include of gdbtypes.h.
5816 (amd64_windows_dummy_call_integer_regs): New static global.
5817 (amd64_windows_classify): New function.
5818 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
5819 tdep->call_dummy_integer_regs and tdep->classify.
5820
5821 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
5822
5823 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
5824 for the new regcache. All callers updated.
5825 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
5826 (get_thread_arch_regcache): Do not set aspace here.
5827 * regcache.h (regcache_xmalloc): Update declaration.
5828
5829 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
5830 regcache_xmalloc updated.
5831
5832 2010-01-28 Joel Brobecker <brobecker@adacore.com>
5833
5834 Another -Wunused-function error in procfs.c (sparc-solaris)
5835 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
5836 Only define if SYS_syssgi is defined.
5837 (remove_dbx_link_breakpoint): Delete declaration. Move up.
5838 (dbx_link_addr, insert_dbx_link_bpt_in_file)
5839 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
5840 is itself defined.
5841
5842 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
5843
5844 * windows-nat.c (windows_initialization_done): New variable.
5845 (get_windows_debug_event): Issue error when process dies before
5846 completely initializing.
5847 (do_initial_windows_stuff): Set flag to indicate when we are done with
5848 the initial steps of attaching to the child.
5849
5850 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
5851
5852 * symtab.h (struct symbol <symtab>): New comment on NULL values.
5853
5854 2010-01-27 Doug Evans <dje@google.com>
5855
5856 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
5857
5858 * breakpoint.c (bpstat_stop_status): Delete useless code.
5859
5860 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
5861
5862 * printcmd.c (display_uses_solib_p): Remove variable section. Access
5863 objfile via SYMBOL_SYMTAB.
5864
5865 2010-01-26 Tom Tromey <tromey@redhat.com>
5866
5867 PR exp/7643:
5868 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
5869 coerce_array on result.
5870
5871 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
5872
5873 * cp-namespace.c (cp_lookup_symbol_namespace): Added
5874 search_parent argument.
5875 (cp_add_using): Initialize 'searched' field.
5876 (reset_directive_searched): New function.
5877 * cp-support.h: Add 'searched' field to using_direct struct.
5878 (cp_lookup_symbol_imports): Ditto.
5879 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
5880 Perform recursive search.
5881 Implement non parent search.
5882 * valops.c (value_maybe_namespace_elt): Updated.
5883
5884 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
5885
5886 PR gdb/10929:
5887 * dwarf2read.c (read_lexical_block_scope): Create blocks for
5888 scopes which contain using directives even if they contain no
5889 declarations.
5890 * symtab.c (lookup_symbol_aux): Pass lowest level block to
5891 la_lookup_symbol_nonlocal.
5892 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
5893 cp_lookup_symbol_namespace.
5894 (cp_lookup_symbol_namespace): Perform an import lookup at every
5895 block level.
5896 (cp_lookup_symbol_imports): New function.
5897 (cp_lookup_symbol_in_namespace): New function.
5898
5899 2010-01-25 Tom Tromey <tromey@redhat.com>
5900
5901 PR gdb/11049:
5902 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
5903 result.
5904
5905 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5906
5907 * configure.ac: Only use host_os part when disabling TUI on osf.
5908 Use test to check variables, prefix strings with x.
5909 * configure: Regenerate.
5910
5911 * solib-osf.c (osf_current_sos): Initialize tail.
5912
5913 2010-01-25 gingold <gingold@adacore.com>
5914
5915 * windows-nat.c (windows_continue): Use %x to print thread id.
5916 (get_windows_debug_event): Ditto.
5917
5918 2010-01-22 Tom Tromey <tromey@redhat.com>
5919
5920 PR symtab/11199:
5921 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
5922 type and arguments. Use smash_to_methodptr_type.
5923 (read_structure_type): Call quirk_gcc_member_function_pointer
5924 later.
5925 * gdbtypes.h (smash_to_methodptr_type): Declare.
5926 * gdbtypes.c (smash_to_methodptr_type): New function.
5927 (lookup_methodptr_type): Use it.
5928
5929 2010-01-21 Tom Tromey <tromey@redhat.com>
5930
5931 PR symtab/11198:
5932 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
5933 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
5934 * glibc-tdep.c (find_minsym_and_objfile): Remove.
5935 (glibc_skip_solib_resolver): Use
5936 lookup_minimal_symbol_and_objfile.
5937
5938 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
5939
5940 * inflow.c (check_syscall): Guard by #if clause for GO32 and
5941 WIN32 targets.
5942
5943 2010-01-20 Tom Tromey <tromey@redhat.com>
5944
5945 PR backtrace/10770:
5946 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
5947 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
5948 * dwarf2expr.c (new_dwarf_expr_context): Allocate
5949 dwarf_stack_values, not CORE_ADDRs.
5950 (execute_stack_op): Change DW_OP_div and comparison operators to
5951 use signed operands.
5952
5953 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
5954
5955 Per-inferior args and tty and environment.
5956
5957 * infcmd.c (inferior_args): Rename to ...
5958 (inferior_args_scratch): ... this.
5959 (inferior_io_terminal): Rename to ...
5960 (inferior_io_terminal_scratch): ... this.
5961 (inferior_argc, inferior_argv): Remove.
5962 (set_inferior_io_terminal, get_inferior_io_terminal): Store
5963 inside current_inferior().
5964 (set_inferior_tty_command, show_inferior_tty_command): New.
5965 (get_inferior_args, set_inferior_args): Store inside
5966 current_inferior().
5967 (notice_args_set): Likewise and rename to...
5968 (set_args_command): ... this.
5969 (set_inferior_args_vector): Likewise.
5970 (notice_args_read): Rename to...
5971 (show_args_command): ...new.
5972 (tty_command): Remove.
5973 (run_command_1): Don't free old args, as they are freed by
5974 set_inferior_arg now.
5975 (run_no_args_command): Likewise.
5976 (inferior_environ): Remove.
5977 (run_command_1): Use environment of the current inferior.
5978 (environment_info, set_environment_command)
5979 (unset_environment_command, path_info, path_command): Likewise.
5980 (_initialize_infcmd): Adjust for function and variable renames.
5981 Do not init inferior_environ.
5982 * inferior.h (set_inferior_arg): Adjust prototype.
5983 (struct inferior): New fields args, argc, argv, terminal, environment.
5984 (inferior_environ): Remove declaration.
5985 * inferior.c (free_inferior): Free new fields.
5986 (add_inferior_silent): Initialize 'environment' field.
5987 * main.c (captured_main): Set arguments only after the initial
5988 inferior has been created. Set set_inferior_io_terminal,
5989 not tty_command.
5990 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
5991 inferior.
5992 (_initialize_mi_cmd_env): Adjust for disappearance of global
5993 inferior_environ.
5994 * solib.c (solib_find): Use environment of the current inferior.
5995
5996 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5997
5998 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
5999 HAVE_PYTHON.
6000 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
6001
6002 2010-01-20 Joel Brobecker <brobecker@adacore.com>
6003
6004 Get rid of ada-lang.c:function_name_from_pc.
6005 * ada-lang.c: Add "stack.h" #include.
6006 (function_name_from_pc): Delete.
6007 (is_known_support_routine): Replace call to function_name_from_pc
6008 by call to find_frame_funname.
6009 (ada_unhandled_exception_name_addr_from_raise): Likewise.
6010
6011 2010-01-19 Tom Tromey <tromey@redhat.com>
6012
6013 PR c++/11026:
6014 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
6015 objfile obstack.
6016
6017 2010-01-19 Tom Tromey <tromey@redhat.com>
6018
6019 * top.c (stop_sig, float_handler, do_nothing): Remove.
6020
6021 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
6022
6023 * breakpoint.c (watchpoint_check): Check the call
6024 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
6025 Extend the comment.
6026 * config/djgpp/fnchange.lst: Add translations for
6027 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
6028 watchpoint-cond-gone-stripped.c.
6029
6030 2010-01-19 Tom Tromey <tromey@redhat.com>
6031
6032 PR c++/8000:
6033 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
6034 into parent scope, and enumerator into grandparent scope.
6035
6036 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6037
6038 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
6039
6040 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6041
6042 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
6043 i[34567]86-*-solaris2.1[0-9]*.
6044 * configure.tgt: Likewise.
6045
6046 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6047
6048 * NEWS: Document the source command enhancement allowing it
6049 to load Python scripts. Document the "set/show script-extension"
6050 commands.
6051
6052 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6053
6054 Add -Wunused-function to compile flags.
6055 * configure.ac: Add -Wunused-function to build_warnings.
6056 * configure: Regenerate.
6057
6058 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6059
6060 "delete" ada-lex.c:input function, not used.
6061 * ada-lex.l: #define YY_NO_INPUT.
6062
6063 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6064
6065 Delete free_named_symtabs and associated cleanup.
6066 * symfile.h (free_named_symtabs): Delete declaration.
6067 * symfile.c: Remove some commented out code (clear_symtab_users_once).
6068 (cashier_psymtab): Comment function out.
6069 Delete declaration.
6070 (free_named_symtabs): Delete.
6071 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
6072 * dbxread.c (end_psymtab): Likewise.
6073 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
6074 * exec.c (exec_close_1): Ditto.
6075 * xcoffread.c (xcoff_end_psymtab): Likewise.
6076
6077 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6078
6079 * stack.c (print_block_frame_labels): Comment function out.
6080
6081 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6082
6083 Delete unused or undefined functions.
6084 * breakpoint.c (ep_parse_optional_filename): Delete.
6085 * dcache.c (dcache_write_line): Remove declaration.
6086 * infrun.c (build_infrun): Remove declaration.
6087 * tracepoint.c (tracepoint_save_command): Remove declaration.
6088 * linux-nat.c (init_lwp_list): Delete. No longer used.
6089 * event-loop.c (check_async_signal_handlers): Delete declaration.
6090 * infrun.c (init_execution_control_state): Delete.
6091 (proceed): Update comment to avoid mentioning
6092 init_execution_control_state.
6093 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
6094 * ada-lang.c (ada_to_static_fixed_value): Delete.
6095 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
6096 * cp-namespace.c (cp_copy_usings): Delete.
6097 * xml-syscall.c (xml_number_of_syscalls): Delete.
6098 * progspace.c (find_program_space_by_num): Delete.
6099 * inflow.c (handle_sigio): Delete declaration.
6100 * hppa-tdep.c (hppa_alignof): Delete.
6101 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
6102 (mipsnbsd_core_osabi_sniffer): Delete.
6103
6104 2010-01-18 Tom Tromey <tromey@redhat.com>
6105
6106 PR c++/9680:
6107 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
6108 (CONST_CAST): New tokens.
6109 (exp): Add new productions.
6110 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
6111 reinterpret_cast.
6112 (is_cast_operator): New function.
6113 (yylex): Handle cast operators specially.
6114 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
6115 UNOP_REINTERPRET_CAST>: New cases.
6116 * expprint.c (print_subexp_standard): Likewise.
6117 (op_name_standard): Likewise.
6118 (dump_subexp_body_standard): Likewise.
6119 * parse.c (operator_length_standard): Likewise.
6120 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
6121 UNOP_REINTERPRET_CAST.
6122 * gdbtypes.c (class_types_same_p): New function.
6123 (is_ancestor): Use it.
6124 (is_public_ancestor): New function.
6125 (is_unique_ancestor_worker): Likewise.
6126 (is_unique_ancestor): Likewise.
6127 * gdbtypes.h (class_types_same_p, is_public_ancestor)
6128 (is_unique_ancestor): Declare.
6129 * valops.c (value_reinterpret_cast): New function.
6130 (dynamic_cast_check_1): Likewise.
6131 (dynamic_cast_check_2): Likewise.
6132 (value_dynamic_cast): Likewise.
6133 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
6134
6135 2010-01-18 Joel Brobecker <brobecker@adacore.com>
6136
6137 Fix build failure when building without Python support.
6138 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
6139 is not defined.
6140
6141 2010-01-18 Joel Brobecker <brobecker@adacore.com>
6142
6143 Use XVS field type instead of doing a parallel lookup.
6144 * ada-lang.c (ada_get_base_type): Follow the XVS field type
6145 if it is a reference type instead of doing a type lookup using
6146 the XVS field name.
6147
6148 2010-01-18 Joel Brobecker <brobecker@adacore.com>
6149
6150 Trust PAD types instead of using PAD___XVS.
6151 * ada-lang.c (trust_pad_over_xvs): New static variable.
6152 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
6153 parallel XVS type, follow the XVS type instead of the PAD type.
6154 (unwrap_value): Make sure that there is no parallel XVE type
6155 before returning the value as is.
6156 (set_ada_list, show_ada_list): New static variables.
6157 (set_ada_command, show_ada_command): New functions.
6158 (_initialize_ada_language): Add new "set/show ada" prefix commands.
6159 Add new "set/show ada trust-PAD-over-XVS" setting.
6160
6161 2010-01-18 Tom Tromey <tromey@redhat.com>
6162 Thiago Jung Bauermann <bauerman@br.ibm.com>
6163
6164 Allow "source" to load python scripts.
6165 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
6166 * python/python.c (source_python_script): New function.
6167 * python/python.h (source_python_script): Add declaration.
6168 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
6169 (script_ext_off, script_ext_soft, script_ext_strict)
6170 (script_ext_enums, script_ext_mode): New static constants.
6171 (show_script_ext_mode, find_and_open_script): New functions.
6172 (source_script): Enhance to handle Python scripts.
6173 (init_cli_cmds): Add set/show script-extension commands.
6174
6175 2010-01-16 Stan Shebs <stan@codesourcery.com>
6176
6177 * tracepoint.h (struct trace_status): Use unsigned long long
6178 instead of size_t.
6179 * tracepoint.c (trace_status_command): Fix printf directive.
6180 (trace_save_command): Check fwrite returns, fix printf directive.
6181 (trace_filename): New global.
6182 (tfile_open): Set it, check read returns.
6183 (tfile_close): Free trace_filename.
6184 (tfile_get_traceframe_address): Check read returns.
6185 (tfile_trace_find): Ditto.
6186 (tfile_fetch_registers): Ditto.
6187 (tfile_xfer_partial): Ditto.
6188 (tfile_get_trace_state_variable_value): Ditto.
6189
6190 2010-01-15 Stan Shebs <stan@codesourcery.com>
6191
6192 Add trace file support.
6193 * tracepoint.h (enum trace_stop_reason): New enum.
6194 (struct trace_status): New struct.
6195 (parse_trace_status): Declare.
6196 (struct uploaded_tp): Move here from remote.c,
6197 add fields for actions.
6198 (struct uploaded_tsv): New struct.
6199 * tracepoint.c (tfile_ops): New target vector.
6200 (trace_fd): New global.
6201 (tfile_open): New function.
6202 (tfile_close): New function.
6203 (tfile_files_info): New function.
6204 (tfile_get_trace_status): New function.
6205 (tfile_get_traceframe_address): New function.
6206 (tfile_trace_find): New function.
6207 (tfile_fetch_registers): New function.
6208 (tfile_xfer_partial): New function.
6209 (tfile_get_trace_state_variable_value): New function.
6210 (init_tfile_ops): New function.
6211 (_initialize_tracepoint): Call it, add tfile target.
6212 (trace_status): New global.
6213 (current_trace_status): New function.
6214 (trace_running_p): Remove, change all users to get from
6215 current_trace_status()->running.
6216 (get_trace_status): Remove.
6217 (trace_status_command): Call target_get_trace_status directly,
6218 report more detail including tracing stop reasons.
6219 (trace_find_command): Always allow tfind on a file.
6220 (trace_find_pc_command): Ditto.
6221 (trace_find_tracepoint_command): Ditto.
6222 (trace_find_line_command): Ditto.
6223 (trace_find_range_command): Ditto.
6224 (trace_find_outside_command): Ditto.
6225 (trace_frames_offset, cur_offset): Declare as off_t.
6226 (trace_regblock_size): Rename from reg_size, update users.
6227 (parse_trace_status): New function.
6228 (tfile_interp_line): New function.
6229 (disconnect_or_stop_tracing): Ensure current trace
6230 status before asking what to do.
6231 (stop_reason_names): New global.
6232 (trace_save_command): New command.
6233 (get_uploaded_tp): Move here from remote.c.
6234 (find_matching_tracepoint): Ditto.
6235 (merge_uploaded_tracepoints): New function.
6236 (parse_trace_status): Use stop_reason_names.
6237 (_initialize_tracepoint): Define tsave command.
6238 * target.h (target_ops): New fields to_save_trace_data,
6239 to_upload_tracepoints, to_upload_trace_state_variables,
6240 to_get_raw_trace_data, change to_get_trace_status
6241 to take a pointer to a status struct.
6242 (target_save_trace_data): New macro.
6243 (target_upload_tracepoints): New macro.
6244 (target_upload_trace_state_variables): New macro.
6245 (target_get_raw_trace_data): New macro.
6246 * target.c (update_current_target): Add new methods, change
6247 signature of to_get_trace_status.
6248 * remote.c (hex2bin): Make globally visible.
6249 (bin2hex): Ditto.
6250 (remote_download_trace_state_variable): Download name also.
6251 (remote_get_trace_status): Update parameter, use
6252 parse_trace_status.
6253 (remote_save_trace_data): New function.
6254 (remote_upload_tracepoints): New function.
6255 (remote_upload_trace_state_variables): New function.
6256 (remote_get_raw_trace_data): New function.
6257 (remote_start_remote): Use them.
6258 (_initialize_remote_ops): Add operations.
6259 * ax-gdb.c: Include breakpoint.h.
6260 * breakpoint.c (create_tracepoint_from_upload): Use
6261 break_command_really, return tracepoint, warn about unimplemented
6262 parts.
6263 * NEWS: Mention trace file addition.
6264
6265 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6266
6267 Fix compilation warning on gcc-3.4.
6268 * exec.c (print_section_info): Move the `displacement' variable
6269 initialization to its declaration.
6270
6271 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6272
6273 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
6274 comparison.
6275
6276 2010-01-15 Eric Botcazou <botcazou@adacore.com>
6277
6278 "info tasks" broken by typedefs in ATCB type definitions.
6279 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
6280 ada_check_typedef before retrieving the length of the type for
6281 regular fields.
6282
6283 2010-01-15 Joel Brobecker <brobecker@adacore.com>
6284
6285 Do not use name-based lookup for unconstrained packed arrays.
6286 * ada-lang.c (find_parallel_type_by_descriptive_type):
6287 Limit the fallback to name-based lookups to the case where
6288 the type is a constrained packed array.
6289
6290 2010-01-15 Joel Brobecker <brobecker@adacore.com>
6291
6292 Enhance gdb-gdb.py to handle main_type.type_specific.
6293 * gdb-gdb.py: Print the type-specific part of struct main_type.
6294
6295 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6296
6297 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
6298 * configure: Regenerate.
6299 * config.in: Regenerate.
6300 * utils.c: Include sys/resource.h.
6301 (dump_core, can_dump_core): New.
6302 (internal_vproblem): Update the comment. Check can_dump_core while
6303 setting dump_core_p. Replace two abort calls by dump_core calls.
6304
6305 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6306 Eli Zaretskii <eliz@gnu.org>
6307
6308 * NEWS: Document the PIE support.
6309
6310 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6311
6312 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
6313 (check_is_pie_binary, _initialize_linux_tdep): Remove.
6314
6315 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6316
6317 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
6318 Replace exec_entry_point call by bfd_get_start_address.
6319
6320 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6321
6322 Support Valgrind attachments broken by the PIE support.
6323 * auxv.c: Include gdbcore.h.
6324 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
6325 parameters ops, object and annex. Remove their assertions.
6326 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
6327 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
6328 (memory_xfer_auxv): ... here.
6329 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
6330 memory_xfer_auxv.
6331 * procfs.c (procfs_xfer_partial): Likewise.
6332 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
6333 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
6334 (svr4_solib_create_inferior_hook): Conditionalize the
6335 svr4_relocate_main_executable call.
6336
6337 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6338
6339 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
6340 target_section. Find SECT in current_target_sections, gdb_assert it.
6341 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
6342 New variable abfd.
6343 * symtab.c (lookup_objfile_from_block): Return the binary file instead
6344 of separate debug info file.
6345
6346 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6347
6348 Support PIEs with no symfile_objfile.
6349 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
6350 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
6351
6352 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6353
6354 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
6355 code part to ...
6356 (svr4_static_exec_displacement): ... a new function.
6357 (svr4_exec_displacement): New function.
6358 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
6359 new_offsets using alloca now. Remove variable old_chain and changed.
6360 Call objfile_relocate unconditionally now.
6361
6362 2010-01-14 Doug Evans <dje@google.com>
6363
6364 * gdbtypes.c (arch_flags_type): Fix comment.
6365 * gdbtypes.h (arch_composite_type): Fix comment.
6366
6367 2009-01-14 Tristan Gingold <gingold@adacore.com>
6368
6369 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
6370 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
6371 to symbol_file_add_from_bfd. Add OSO as separate objfile.
6372 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
6373 macho_add_oso_symfile.
6374 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
6375
6376 2010-01-14 Joel Brobecker <brobecker@adacore.com>
6377
6378 Tru64: Dead threads are never deleted.
6379 * dec-thread.c (dec_thread_ptid_is_alive): New function.
6380 (dec_thread_count_gdb_threads): Fix counter increment.
6381 (dec_thread_add_gdb_thread): Fix *listp increment.
6382 (resync_thread_list): Fix bug in deletion of dead threads that
6383 caused all threads to be deleted, instead of just the dead ones.
6384
6385 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
6386
6387 PR python/10705
6388
6389 * python/python-internal.h: Add lazy_string_object_type
6390 definition.
6391 (create_lazy_string_object, gdbpy_initialize_lazy_string)
6392 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
6393 * python/py-value.c (valpy_lazy_string): New function.
6394 (convert_value_from_python): Add lazy string conversion.
6395 * python/py-prettyprint.c (pretty_print_one_value): Check if
6396 return is also a lazy string.
6397 (print_string_repr): Add lazy string printing branch.
6398 (print_children): Likewise.
6399 * python/py-lazy-string.c: New file. Implement lazy strings.
6400 * python/python.c (_initialize_python): Call
6401 gdbpy_initialize_lazy_string.
6402 * varobj.c (value_get_print_value): Add lazy string printing
6403 branch. Account for encoding.
6404 * c-lang.c (c_printstr): Account for new encoding argument. If
6405 encoding is NULL, find encoding suited for type, otherwise use
6406 user encoding.
6407 * language.h (language_defn): Add encoding argument.
6408 (LA_PRINT_STRING): Likewise.
6409 * language.c (unk_lang_printstr): Update to reflect new encoding
6410 argument to language_defn.
6411 * ada-lang.h (ada_printstr): Likewise.
6412 * c-lang.h (c_printstr): Likewise.
6413 * p-lang.h (pascal_printstr);
6414 * f-lang.c (f_printstr): Likewise.
6415 * m2-lang.c (m2_printstr): Likewise.
6416 * objc-lang.c (objc_printstr): Likewise.
6417 * p-lang.c (pascal_printstr): Likewise.
6418 * scm-lang.c (scm_printstr): Likewise.
6419 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
6420 encoding argument.
6421 * ada-valprint.c (ada_printstr): Likewise.
6422 * f-valprint.c (f_val_print): Likewise
6423 * m2-valprint.c (m2_val_print): Likewise.
6424 * p-valprint.c (pascal_val_print): Likewise.
6425 * expprint.c (print_subexp_standard): Likewise.
6426 * valprint.c (val_print_string): Likewise.
6427 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
6428 (SUBDIR_PYTHON_SRCS): Likewise.
6429 (py-lazy-string.o): New rule.
6430
6431 2010-01-13 Doug Evans <dje@google.com>
6432
6433 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
6434 uninitialized" warning from gcc on local `tree'.
6435
6436 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
6437
6438 Implement core awareness.
6439
6440 * bcache.c (compare_ints): Remove
6441 (print_percentage): Use compare_positive_ints.
6442 * defs.h (compare_positive_ints): Declare.
6443 * linux-nat.h (struct lin_lwp): New field core.
6444 (linux_nat_core_of_thread_1): Declare.
6445 * linux-nat.c (add_lwp): Init the 'core' field.
6446 (linux_nat_wait_1): Record the core.
6447 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
6448 (linux_nat_add_target): Register the above.
6449 * linux-thread-db.c (update_thread_core): New.
6450 (thread_db_find_new_threads): Update core information for
6451 every thread.
6452 * remote.c (struct private_thread_info): New.
6453 (free_private_thread_info, demand_private_info): New.
6454 (PACKET_qXfer_threads, use_osdata_threads): New.
6455 (struct thread_item, threads_parsing_context
6456 (start_thread, end_thread, thread_attributes)
6457 (thread_children, threads_children, threads_elements): New.
6458 (remote_threads_info): Try qXfer:threads before anything
6459 else.
6460 (remote_protocol_packets): Register qXfer:threads.
6461 (remote_open_1): Init use_osdata_threads.
6462 (struct stop_reply): New field 'core'.
6463 (remote_parse_stop_reply): Parse core number.
6464 (process_stop_reply): Record core number.
6465 (remote_xfer_partial): Handle qXfer:threads.
6466 (remote_core_of_thread): New.
6467 (init_remote_ops): Register remote_core_of_thread.
6468 (_initialize_remote): Register qXfer:read.
6469 * target.c (target_core_of_thread): New
6470 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
6471 (struct target_ops): New field to_core_of_threads.
6472 (target_core_of_thread): Declare.
6473 * gdbthread.h (struct thread_info): New field private_dtor.
6474 * thread.c (print_thread_info): Report the core.
6475 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
6476 * utils.c (compare_positive_ints): New.
6477 * features/threads.dtd: New.
6478 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
6479 * mi/mi-main.c (struct collect_cores_data, collect_cores)
6480 (do_nothing, free_vector_of_osdata_items)
6481 (splay_tree_int_comparator, free_splay_tree): New.
6482 (print_one_inferior_data): Implemented printing of selected
6483 inferiors. Collect and print cores.
6484 (output_cores): New.
6485 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
6486 thread groups together with --available.
6487
6488 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6489
6490 * configure: Regenerate (for _STRUCTURED_PROC).
6491
6492 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6493
6494 Delete dead function.
6495 * ada-lang.c (extract_string): Delete. No longer used.
6496
6497 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6498
6499 Fix -Wunused warning in dec-thread.c.
6500 * dec-thread.c (dec_thread_count_gdb_threads)
6501 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
6502
6503 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6504
6505 * ada-valprint.c (ada_print_floating): Remove trailing space.
6506
6507 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6508
6509 Add support for DW_AT_GNAT_descriptive_type.
6510 * gdbtypes.h (enum type_specific_kind): New enum.
6511 (struct main_type) [type_specific_field]: New component.
6512 [type_specific]: Add new component "gnat_stuff".
6513 (struct gnat_aux_type): New type.
6514 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
6515 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
6516 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
6517 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
6518 (TYPE_SPECIFIC_FIELD): New macros.
6519 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
6520 type does not hold any cplus-specific data.
6521 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
6522 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
6523 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
6524 cplus-specific data.
6525 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
6526 Set new component TYPE_SPECIFIC_FIELD (type).
6527 (gnat_aux_default): New constant.
6528 (allocate_gnat_aux_type): New function.
6529 (init_type): Add initialization the type-specific stuff for
6530 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
6531 (print_gnat_stuff): New function.
6532 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
6533 specific data. Adjust code that prints the contents of the
6534 type-specific union using the TYPE_SPECIFIC_FIELD value.
6535 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
6536 the type cplus stuff for Ada types.
6537 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
6538 Error out if these routines are called with an Ada type.
6539 (read_structure_type, read_array_type, read_subrange_type):
6540 Add call to set_descriptive_type.
6541 (set_die_type): Initialize the gnat-specific data if necessary.
6542 (need_gnat_info, die_descriptive_type, set_descriptive_type):
6543 New functions.
6544 * ada-lang.c (decode_constrained_packed_array_type): Use
6545 decode_constrained_packed_array_type instead of doing a standard
6546 lookup to locate a parallel type.
6547 (find_parallel_type_by_descriptive_type): New function.
6548 (ada_find_parallel_type_with_name): New function.
6549 (ada_find_parallel_type): Reimplement using
6550 ada_find_parallel_type_with_name.
6551 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
6552 to check if type has a cplus stuff.
6553 * linespec.c (total_number_of_methods): Likewise.
6554 * mdebugread.c (new_type): Likewise.
6555
6556 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6557
6558 * NEWS: Document the 0b binary number prefix parsing.
6559
6560 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6561
6562 * objfiles.c (objfile_relocate1): Change the return type to int.
6563 Describe the new return value. Return non-zero if data changed.
6564 (objfile_relocate): New variable changed. Set it. Call
6565 breakpoint_re_set depending on CHANGED.
6566
6567 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6568
6569 Implement binary numbers parsing.
6570 * c-exp.y (parse_number): New case 'b' and 'B'.
6571
6572 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6573 Tristan Gingold <gingold@adacore.com>
6574
6575 * solib.c (info_sharedlibrary_command): Replace
6576 objfile_has_partial_symbols and objfile_has_full_symbols calls by
6577 objfile_has_symbols.
6578
6579 2010-01-10 Joel Brobecker <brobecker@adacore.com>
6580
6581 * NEWS: Document the improvements made to the mips-irix port.
6582
6583 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6584
6585 Fix the documentation of valprint.c:value_print.
6586 * valprint.c (value_print): Update the function description to
6587 mention that the syntax of the output follows the current_language,
6588 not necessarily C.
6589
6590 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6591
6592 Fix displacement of separate debug info files.
6593 * objfiles.c (objfile_relocate): Rename to ...
6594 (objfile_relocate1): ... here and make it static. Extend the comment.
6595 (objfile_relocate): New function.
6596 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
6597 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
6598 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
6599 allocated using alloca.
6600 * symfile.c (copy_section_addr_info): Remove.
6601 (build_section_addr_info_from_objfile): Make it global. New variables
6602 addr_bit and mask, use them.
6603 * symfile.h (build_section_addr_info_from_objfile): New prototype.
6604 (copy_section_addr_info): Remove.
6605
6606 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6607
6608 Signal unwinder for mips-irix N32.
6609 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
6610 tramp-frame.h.
6611 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
6612 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
6613 (SIGCONTEXT_LO_OFF): New macros.
6614 (mips_irix_n32_tramp_frame_init): New function.
6615 (mips_irix_n32_tramp_frame): New static constant.
6616 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
6617
6618 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6619
6620 Breakpoint in shared library does not work on mips-irix.
6621 * procfs.c: #include "observer.h".
6622 (procfs_inferior_created): New function, moving here the code
6623 which unsets the syssgi syscall-exit notifications.
6624 (procfs_create_inferior): Remove the code which unsets the syssgi
6625 syscall-exit notifications. It is too early to do this here.
6626 (_initialize_procfs): Attach the procfs_inferior_created observer.
6627
6628 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6629
6630 Wrong return convention for arrays (mips-irix).
6631 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
6632 128 bits or smaller are returned the same way as structs
6633 and unions of the the same size.
6634
6635 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6636
6637 Cannot set the PC on mips-irix.
6638 * irix5-nat.c (fill_gregset): Check regno against the raw PC
6639 register number, no the cooked one.
6640
6641 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6642
6643 Error while loading core file on mips-irix.
6644 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
6645 if debugging from a core file.
6646
6647 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6648
6649 GDB hangs when attaching to process on mips-irix.
6650 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
6651 attaching to a process.
6652
6653 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6654
6655 Use the correct breakpoint instruction on mips-irix.
6656 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
6657 containing the correct breakpoint instruction to use on mips-irix.
6658 Use it when the osabi is GDB_OSABI_IRIX.
6659
6660 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6661
6662 -Wunused warning in procfs.c (mips-irix only).
6663 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
6664 throughout instead of using praddset and prdelset respectively.
6665
6666 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6667
6668 GDB crash while stepping into function.
6669 * infrun.c (handle_inferior_event): Refetch the current frame
6670 after handling what.main_action, in case that pointer became
6671 dangling.
6672
6673 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6674
6675 Fix build failure of solaris-hosted cross debuggers.
6676 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
6677
6678 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
6679
6680 Fix build failure on sparc-solaris.
6681 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
6682
6683 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6684
6685 Move some symfile code into subroutines.
6686 * symfile.h (relative_addr_info_to_section_offsets)
6687 (addr_info_make_relative): New prototypes.
6688 * symfile.c (default_symfile_offsets): Move a part to ...
6689 (relative_addr_info_to_section_offsets): ... this new function.
6690 (default_symfile_offsets): Call it.
6691 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
6692 this part to ...
6693 (addr_info_make_relative): ... this new function.
6694
6695 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6696
6697 Add from_tty to solib_create_inferior_hook.
6698 * infcmd.c (post_create_inferior): Move solib_add after
6699 solib_create_inferior_hook. Pass from_tty to
6700 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
6701 0 from_tty and comment why.
6702 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
6703 * linux-nat.c (linux_child_follow_fork): Likewise.
6704 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
6705 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
6706 from_tty.
6707 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
6708 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
6709 * solib-null.c (null_solib_create_inferior_hook): Likewise.
6710 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
6711 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
6712 * solib-som.c (som_solib_create_inferior_hook): Likewise.
6713 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
6714 Pass it to svr4_so_ops.solib_create_inferior_hook.
6715 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
6716 from_tty.
6717 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
6718 solib_add.
6719 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
6720 enable_break.
6721 * solib-target.c (solib_target_solib_create_inferior_hook): New
6722 parameter from_tty.
6723 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
6724 it to ops->solib_create_inferior_hook.
6725 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
6726 Move solib_add after solib_create_inferior_hook, call it now with
6727 from_tty as 0. New comment there.
6728 * solib.h (solib_create_inferior_hook): New parameter from_tty.
6729 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
6730 Likewise.
6731
6732 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
6733
6734 Fix multiexec race.
6735 * infrun.c (handle_inferior_event): Use get_thread_regcache
6736 with events ptid, not get_current_regcache.
6737
6738 2009-01-08 Joel Brobecker <brobecker@adacore.com>
6739
6740 GDB crash with empty executable name (MinGW).
6741 * source.c (openp): Add assert that parameter string is not NULL.
6742 if parameter string is an empty string, then return with a failure
6743 immediately.
6744
6745 2009-01-08 Joel Brobecker <brobecker@adacore.com>
6746
6747 Get rid of support for VAX Floats.
6748 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
6749 (ada_vax_float_print_function): Delete.
6750 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
6751 (ada_vax_float_print_function): Delete.
6752 * ada-typeprint.c (print_vax_floating_point_type): Delete.
6753 (ada_print_type): Remove support for VAX floats.
6754 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
6755
6756 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6757
6758 * stabsread.c (read_args): Handle zero arguments.
6759
6760 2009-01-08 Joel Brobecker <brobecker@adacore.com>
6761
6762 Cannot find in-tree libiconv.a after reconfigure.
6763 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
6764 that we can use, then cache the path to this archive.
6765 * configure: Regenerate.
6766
6767 2010-01-07 Stan Shebs <stan@codesourcery.com>
6768
6769 Make tracepoint operations go through target vector.
6770 * target.h (enum trace_find_type): New enum.
6771 (struct target_ops): New fields to_trace_init,
6772 to_download_tracepoint, to_download_trace_state_variable,
6773 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
6774 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
6775 to_set_disconnected_tracing.
6776 (target_trace_init): New macro.
6777 (target_download_tracepoint): New macro.
6778 (target_download_trace_state_variable): New macro.
6779 (target_trace_start): New macro.
6780 (target_trace_set_readonly_regions): New macro.
6781 (target_get_trace_status): New macro.
6782 (target_trace_stop): New macro.
6783 (target_trace_find): New macro.
6784 (target_get_trace_state_variable_value): New macro.
6785 (target_set_disconnected_tracing): New macro.
6786 * target.c (update_current_target): Inherit and set defaults for
6787 tracepoint operations.
6788 * tracepoint.c (default_collect): Make globally visible.
6789 (target_is_remote): Remove, along with all calls.
6790 (tvariables_info): Call target_get_trace_state_variable_value.
6791 (remote_set_transparent_ranges): Remove.
6792 (trace_start_command): Call target_trace_init,
6793 target_download_tracepoint, etc.
6794 (download_tracepoint): Remove.
6795 (trace_stop_command): Simplify.
6796 (stop_tracing): Call target_trace_stop.
6797 (get_trace_status): Call target_get_trace_status.
6798 (trace_status_command): Add case for targets that cannot trace.
6799 (finish_tfind_command): Change to take numerical arguments, call
6800 target_trace_find.
6801 (trace_find_command): Update call to finish_tfind_command.
6802 (trace_find_pc_command): Ditto.
6803 (trace_find_tracepoint_command): Ditto.
6804 (trace_find_line_command): Ditto.
6805 (trace_find_range_command): Ditto.
6806 (trace_find_outside_command): Ditto.
6807 (set_disconnected_tracing_value): Call
6808 target_set_disconnected_tracing.
6809 * remote.c: Add protocol encoding bits from tracepoint.c.
6810 (trace_error): Move from tracepoint.c.
6811 (remote_get_noisy_reply): Ditto.
6812 (free_actions_list_cleanup_wrapper): Ditto.
6813 (free_actions_list): Ditto.
6814 (remote_trace_init): New function.
6815 (remote_download_tracepoint): New function.
6816 (remote_download_trace_state_variable): New function.
6817 (remote_trace_set_readonly_regions): New function.
6818 (remote_trace_start): New function.
6819 (remote_get_trace_status): New function.
6820 (remote_trace_stop): New function.
6821 (remote_trace_find): New function.
6822 (remote_download_trace_state_variable): New function.
6823 (remote_set_disconnected_tracing): New function.
6824 (init_remote_ops): Add tracepoint operations.
6825
6826 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
6827
6828 2010-01-07 Tristan Gingold <gingold@adacore.com>
6829
6830 * symfile.c (build_section_addr_info_from_objfile): New function.
6831 (symbol_file_add_separate): Don't use offsets from objfile but
6832 built an addr info.
6833
6834 2010-01-06 Stan Shebs <stan@codesourcery.com>
6835
6836 Support disconnected tracing.
6837 * infcmd.c (detach_command): Ask whether to stop tracing.
6838 * cli/cli-cmds.c (quit_command): Ditto.
6839 * breakpoint.h (struct breakpoint): New field number_on_target.
6840 * breakpoint.c (create_tracepoint_from_upload): New function.
6841 (get_tracepoint_by_number_on_target): New function.
6842 * remote.c (struct remote): New field disconnected_tracing.
6843 (remote_disconnected_tracing_feature): New function.
6844 (remote_protocol_features): Add DisconnectedTracing.
6845 (struct uploaded_tp): New struct.
6846 (uploaded_tps): New global.
6847 (get_uploaded_tp): New function.
6848 (find_matching_tracepoint): New function.
6849 (remote_get_tracing_state): New function.
6850 (remote_start_remote): Call it.
6851 * tracepoint.c (disconnected_tracing): New global.
6852 (trace_start_command): Initialize number_on_target.
6853 (stop_tracing): New function, split out from...
6854 (trace_stop_command): Call stop_tracing.
6855 (get_trace_status): New function, split out from...
6856 (trace_status_command): Call get_trace_status, add info on
6857 disconnection behavior.
6858 (disconnect_or_stop_tracing): New function.
6859 (finish_tfind_command): Translate from number on target.
6860 (trace_find_tracepoint_command): Translate to number on target.
6861 (send_disconnected_tracing_value): New function.
6862 (set_disconnected_tracing): New function.
6863 (_initialize_tracepoint): Add disconnected-tracing variable.
6864 * NEWS: Mention disconnected tracing.
6865
6866 2010-01-06 Tristan Gingold <gingold@adacore.com>
6867
6868 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
6869 parameter to main_objfile. Iterate on all separate debug objfiles.
6870 * symfile.h (symbol_file_add_separate)
6871 (find_separate_debug_file_by_debuglink): Remove parameter names.
6872 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
6873 (reread_symbols): Use free_objfile_separate_debug.
6874 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
6875 Adjust comment.
6876 (objfile_separate_debug_iterate, add_separate_debug_objfile)
6877 (free_objfile_separate_debug): New prototypes.
6878 * objfiles.c (objfile_separate_debug_iterate): New function.
6879 (add_separate_debug_objfile, free_objfile_separate_debug): New
6880 functions.
6881 (free_objfile): Use free_objfile_separate_debug. Adjust for
6882 multiple separate debug objfile.
6883 (objfile_has_symbols): Adjust comment. Iterate on all separate
6884 debug objfiles.
6885 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
6886 debug objfile.
6887 (lookup_minimal_symbol_text): Ditto.
6888 (lookup_minimal_symbol_by_pc_name): Ditto.
6889 (lookup_minimal_symbol_solib_trampoline): Ditto.
6890 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
6891 debug objfiles.
6892
6893 2010-01-05 Stan Shebs <stan@codesourcery.com>
6894
6895 Add fast tracepoints.
6896 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
6897 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
6898 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
6899 * breakpoint.c (tracepoint_type): New function.
6900 (ALL_TRACEPOINTS): Use it.
6901 (should_be_inserted): Ditto.
6902 (bpstat_check_location): Ditto.
6903 (print_one_breakpoint_location): Ditto.
6904 (user_settable_breakpoint): Ditto.
6905 (set_breakpoint_location_function): Ditto.
6906 (disable_breakpoints_in_shlibs): Ditto.
6907 (delete_trace_command): Ditto.
6908 (print_it_typical): Add bp_fast_tracepoint case.
6909 (bpstat_what): Ditto.
6910 (print_one_breakpoint_location): Ditto.
6911 (allocate_bp_location): Ditto.
6912 (mention): Ditto.
6913 (breakpoint_re_set_one): Ditto.
6914 (disable_command): Ditto.
6915 (enable_command): Ditto.
6916 (check_fast_tracepoint_sals): New function.
6917 (break_command_really): Call it.
6918 (ftrace_command): New function.
6919 (_initialize_breakpoint): Add ftrace command.
6920 * gdbarch.sh (fast_tracepoint_valid_at): New.
6921 * gdbarch.h, gdbarch.c: Regenerate.
6922 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
6923 (i386_gdbarch_init): Use it.
6924 * remote.c (struct remote_state): New field fast_tracepoints.
6925 (PACKET_FastTracepoints): New packet config type.
6926 (remote_fast_tracepoint_feature): New function.
6927 (remote_protocol_features): Add FastTracepoints.
6928 (remote_supports_fast_tracepoints): New function.
6929 (_initialize_remote): Add FastTracepoints.
6930 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
6931 * NEWS: Mention fast tracepoints.
6932
6933 2010-01-06 Joel Brobecker <brobecker@adacore.com>
6934
6935 * gdb-gdb.py: New file.
6936
6937 2010-01-05 Michael Snyder <msnyder@vmware.com>
6938
6939 * infrun.c (handle_inferior_event): Fix typo in comment.
6940
6941 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6942
6943 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
6944
6945 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
6946
6947 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
6948 and s390x-linux64.
6949 (s390-linux32-expedite): Define.
6950 (s390-linux64-expedite): Define.
6951 (s390x-linux64-expedite): Define.
6952 * features/s390-acr.xml: New file.
6953 * features/s390-fpr.xml: New file.
6954 * features/s390-core32.xml: New file.
6955 * features/s390-core64.xml: New file.
6956 * features/s390x-core64.xml: New file.
6957 * features/s390-linux32.xml: New file.
6958 * features/s390-linux64.xml: New file.
6959 * features/s390x-linux64.xml: New file.
6960 * features/s390-linux32.c: New generated file.
6961 * features/s390-linux64.c: New generated file.
6962 * features/s390x-linux64.c: New generated file.
6963
6964 * regformats/s390-linux32.dat: New generated file.
6965 * regformats/s390-linux64.dat: New generated file.
6966 * regformats/s390x-linux64.dat: New generated file.
6967 * regformats/reg-s390.dat: Remove.
6968 * regformats/reg-s390x.dat: Remove.
6969
6970 * s390-nat.c: Include "auxv.h" and <elf.h>.
6971 (HWCAP_S390_HIGH_GPRS): Define if undefined.
6972 (s390_target_wordsize): New function.
6973 (s390_auxv_parse): Likewise.
6974 (s390_get_hwcap): Likewise.
6975 (s390_read_description): Likewise.
6976 (_initialize_s390_nat): Install s390_auxv_parse and
6977 s390_read_description.
6978
6979 * s390-tdep.c: Include "features/s390-linux32.c",
6980 "features/s390-linux64.c", and "features/s390x-linux64.c".
6981 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
6982 (s390_register_call_saved): New function.
6983 (s390_register_name): Remove.
6984 (s390_register_type): Remove.
6985 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
6986 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
6987 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
6988 (s390_pseudo_register_name): New function.
6989 (s390_pseudo_register_type): New function.
6990 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
6991 Handle full GPR pesudos and varying pseudo register numbers.
6992 (s390_pseudo_register_write): Likewise
6993 (s390x_pseudo_register_read): Remove.
6994 (s390x_pseudo_register_write): Likewise.
6995 (s390_register_group): Remove.
6996 (s390_pseudo_register_group): New function.
6997 (s390_regmap_gregset): Add GPR upper halves.
6998 (s390x_regmap_gregset): Likewise.
6999 (s390_regmap_fpregset): Likewise.
7000 (s390_regmap_upper): New global variable.
7001 (s390_upper_regset): New global variable.
7002 (s390_upper_regset_sections): New global variable.
7003 (s390_regset_from_core_section): Handle GPR upper halves.
7004 (s390_core_read_description): New function.
7005 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
7006 register information. Handle varying pseudo register numbers.
7007 (s390_backchain_frame_unwind_cache): Likewise.
7008 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
7009 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
7010 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
7011 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
7012 Handle varying pseudo register numbers.
7013 (s390_unwind_pc): Handle varying pseudo register numbers.
7014 (s390_dwarf2_prev_register): New function.
7015 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
7016 register information. Handle varying pseudo register numbers.
7017 Install s390_dwarf2_prev_register to unwind full GPRs.
7018 (s390_gdbarch_init): Handle target descriptions. Assign varying
7019 pseudo register numbers. Install s390_adjust_frame_regnum.
7020 (_initialize_s390_tdep): Initialize target descriptions.
7021
7022 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
7023 (S390_NUM_REGS): Redefine to include upper half registers.
7024 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
7025 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
7026 (tdesc_s390_linux32): Add declaration.
7027 (tdesc_s390_linux64): Likewise.
7028 (tdesc_s390x_linux64): Likewise.
7029
7030 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7031
7032 * regset.h (struct core_regset_section): Add HUMAN_NAME.
7033 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
7034 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
7035 (ppc_linux_vmx_regset_sections): Likewise.
7036 (ppc_linux_fp_regset_sections): Likewise.
7037
7038 * corelow.c (get_core_register_section): Constify arguments.
7039 (get_core_registers): Use gdbarch_core_regset_sections instead
7040 of hard-coded platform-specific register section names.
7041
7042 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7043
7044 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
7045 a register, assume the least-significant part is used.
7046 (write_pieced_value): Likewise.
7047
7048 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7049
7050 * printcmd.c: Include "arch-utils.h".
7051 (do_one_display): Re-parse expression if current architecture changed.
7052
7053 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7054 Joel Brobecker <brobecker@adacore.com>
7055
7056 * gdbtypes.c (check_typedef): New comment on type length.
7057 * value.c (allocate_value_lazy): Remove the unused atype variable. New
7058 comment on type length.
7059 (value_primitive_field): Keep the original TYPE value, new comment.
7060
7061 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7062
7063 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
7064 p_start. Change != comparisons to > and < comparisons.
7065
7066 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7067
7068 * cli/cli-script.c (process_next_line): Check P2 overrun.
7069
7070 2009-01-01 Joel Brobecker <brobecker@adacore.com>
7071
7072 Update the copyright hearder to add year 2010 for most GDB files.
7073
7074 2009-01-01 Joel Brobecker <brobecker@adacore.com>
7075
7076 Fix build failure in inf-ptrace.c.
7077 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
7078
7079 2010-01-01 Joel Brobecker <brobecker@adacore.com>
7080
7081 * top.c (print_gdb_version): Update copyright year.
7082
7083 2010-01-01 Joel Brobecker <brobecker@adacore.com>
7084
7085 Fix break *FUN'address thread NUM.
7086 * ada-lex.l (task): Expand rule to also match the thread keyword.
7087
7088 2010-01-01 Joel Brobecker <brobecker@adacore.com>
7089
7090 Fix break *FUN'address task NUM.
7091 * ada-lex.l (task): New rule.
7092 * ada-lang.c (valid_task_id): Make sure the Ada task list has
7093 been built before using it.
7094
7095 For older changes see ChangeLog-2009.
7096 \f
7097 Local Variables:
7098 mode: change-log
7099 left-margin: 8
7100 fill-column: 74
7101 version-control: never
7102 coding: utf-8
7103 End:
This page took 0.165965 seconds and 5 git commands to generate.