Import gnulib's latest update-copyright script...
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
8ba85d85
JB
12012-03-01 Joel Brobecker <brobecker@adacore.com>
2
3 * gnulib/extra/update-copyright: Update to the latest from
4 gnulib's git repository.
5 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
6 variable to 2 instead of 1.
7
8219b1e8
JB
82012-02-29 Joel Brobecker <brobecker@adacore.com>
9
10 * varobj.c (c_value_of_variable): Remove dead code.
11
718cb7da
JB
122012-02-29 Joel Brobecker <brobecker@adacore.com>
13
14 * ada-lex.p (processId): Do not modify already encoded IDs.
15 Update function documentation.
16
739593e0
JB
172012-02-29 Joel Brobecker <brobecker@adacore.com>
18
19 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
20 "name" with "struct symbol *name_sym".
21 * ada-exp.y (write_var_or_type): Update call to
22 ada_find_renaming_symbol.
23 "name" with "struct symbol *name_sym". Adjust Implementation
24 accordingly. Adjust the function documentation.
25
852dff6c
JB
262012-02-29 Joel Brobecker <brobecker@adacore.com>
27
28 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
29 * ada-lang.c (ada_find_any_type): Add advance declaration.
30 Make static. Replace ada_find_any_symbol by
31 ada_find_any_type_symbol.
32 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
33 Improve function description. Make static.
34 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
35 Replace ada_find_any_symbol by ada_find_any_type_symbol.
36
1b611343
JB
372012-02-29 Joel Brobecker <brobecker@adacore.com>
38
39 * ada-lang.c (struct tag_args): Delete.
40 (ada_get_tsd_type): Function body moved up in source file.
41 (ada_tag_name_1, ada_tag_name_2): Delete.
42 (ada_get_tsd_from_tag): New function.
43 (ada_tag_name_from_tsd): New function.
44 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
45 to determine the tag name.
46
41246937
JB
472012-02-29 Joel Brobecker <brobecker@adacore.com>
48
49 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
50 declaration.
51 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
52 function.
53
ffde82bf
JB
542012-02-29 Joel Brobecker <brobecker@adacore.com>
55
56 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
57
2ad01556
JB
582012-02-29 Joel Brobecker <brobecker@adacore.com>
59
60 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
61 full searches.
62
99b1c762
JB
632012-02-29 Joel Brobecker <brobecker@adacore.com>
64
65 * ada-lang.c (constrained_packed_array_type): If there is a
66 parallel XA type, use it to determine the array index type.
67
2d4a02ee
JB
682012-02-29 Joel Brobecker <brobecker@adacore.com>
69
70 * ada-valprint.c (ada_val_print_1): If our value is a reference
71 to an array descriptor, dereference it before converting it
72 to a simple array.
73
c48db5ca
JB
742012-02-29 Joel Brobecker <brobecker@adacore.com>
75
76 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
77 creating fixed value.
78 (ada_value_ind, ada_coerce_ref, assign_component)
79 (ada_evaluate_subexp): Remove call to unwrap_value before
80 call to ada_to_fixed_value.
81
2e6fda7d
JB
822012-02-29 Joel Brobecker <brobecker@adacore.com>
83
84 * ada-lang.c (to_fixed_array_type): Set result's type name.
85
5845583d
JB
862012-02-29 Joel Brobecker <brobecker@adacore.com>
87
88 * ada-lang.c (catch_ada_exception_command_split): Add new
89 argument cond_string. Add support for condition at end of
90 "catch exception" commands.
91 (ada_decode_exception_location): Add new argument cond_string.
92 Update call to catch_ada_exception_command_split.
93 (create_ada_exception_catchpoint): Add new argument cond_string.
94 Set the breakpoint condition if needed.
95 (catch_ada_exception_command): Update call to
96 ada_decode_exception_location.
97 (ada_decode_assert_location): Add function documentation.
98 Add support for condition at end of "catch assert" command.
99 (catch_assert_command): Update calls to ada_decode_assert_location
100 and create_ada_exception_catchpoint.
101
9a7f938f
JK
1022012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
103
104 Fix disp-step-syscall.exp: fork: single step over fork.
105 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
106 (i386_linux_get_syscall_number_from_regcache): ... here, new function
107 comment, change parameters gdbarch and ptid to regcache. Remove
108 parameter regcache, initialize gdbarch from regcache here.
109 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
110 New functions.
111 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
112 instead.
113 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
114 'syscall'. Make the 'int' check more strict.
115
ffdf6de5
JK
1162012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
117
118 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
119 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
120 (i386_linux_intx80_sysenter_syscall_record): ... here.
121 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
122 Use the renamed function name.
123
c70a6932
JK
1242012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
125
126 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
127 * breakpoint.c (until_break_command): Likewise.
128 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
129 * infcall.c (call_function_by_hand): Likewise.
130 * infcmd.c (finish_forward): Likewise.
131 * infrun.c (insert_exception_resume_breakpoint): Likewise.
132
d4cd3da9
JB
1332012-02-28 Joel Brobecker <brobecker@adacore.com>
134
135 From Tristan Gingold <gingold@adacore.com>.
136 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
137 avoid variable assignments inside condition.
138
6425366c
JK
1392012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
140
141 Fix static analysis issue found by cppcheck.
142 * microblaze-tdep.c (microblaze_extract_return_value): Fix
143 uninitialized BUF for size 2.
144
c8cef75f
MR
1452012-02-27 Chris Dearman <chris@mips.com>
146 Nathan Froyd <froydnj@codesourcery.com>
147 Maciej W. Rozycki <macro@codesourcery.com>
148
149 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
150 (mips16_instruction_has_delay_slot): Likewise.
151 (mips_segment_boundary): Likewise.
152 (mips_adjust_breakpoint_address): Likewise.
153 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
154
473347ad
MR
1552012-02-27 Maciej W. Rozycki <macro@mips.com>
156 Maciej W. Rozycki <macro@codesourcery.com>
157
158 * infrun.c (handle_inferior_event): Don't proceed through
159 shared library trampolines if stepping at the machine
160 instruction level.
161
cf233303
MR
1622012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
163
164 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
165 too.
166
cb2cf4ce
TS
1672012-02-27 Thomas Schwinge <thomas@codesourcery.com>
168
169 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
170 (sh_stub_unwind_sniffer): New functions.
171 (sh_stub_unwind): New variable.
172 (sh_gdbarch_init): Wire everything.
173
644cebc9
PA
1742012-02-27 Pedro Alves <palves@redhat.com>
175
176 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
177 (linux_nat_post_attach_wait): Adjust to use
178 linux_proc_pid_is_stopped.
179 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
180 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
181 based on pid_is_stopped from both linux-nat.c and
182 gdbserver/linux-low.c, and renamed.
183
283002cf
MR
1842012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
185
186 * remote.c (remote_watchpoint_addr_within_range): New function.
187 (init_remote_ops): Use it.
188
9b3e86b1
MR
1892012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
190
191 * target.h (target_watchpoint_addr_within_range): Document macro.
192
e36930bb
PA
1932012-02-24 Pedro Alves <palves@redhat.com>
194
195 * stack.c (set_last_displayed_sal): Issue internal_error instead
196 of warning, and issue it after clearing the last displayed sal.
197
883bc8d1
PA
1982012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
199 Pedro Alves <palves@redhat.com>
200
201 * breakpoint.c (until_break_command): Install breakpoints after
202 all frame manipulations.
203
b775012e
LM
2042012-02-24 Luis Machado <lgustavo@codesourcery.com>
205
206 * remote.c (remote_supports_cond_breakpoints): New forward
207 declaration.
208 (remote_add_target_side_condition): New function.
209 (remote_insert_breakpoint): Add target-side breakpoint
210 conditional if supported.
211 (remote_insert_hw_breakpoint): Likewise.
212 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
213 hook.
214
215 * target.c (update_current_target): Inherit
216 to_supports_evaluation_of_breakpoint_conditions.
217 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
218
219 * target.h (struct target_ops)
220 <to_supports_evaluation_of_breakpoint_conditions>: New field.
221 (target_supports_evaluation_of_breakpoint_conditions): New #define.
222
223 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
224 (condition_evaluation_both, condition_evaluation_auto,
225 condition_evaluation_host, condition_evaluation_target,
226 condition_evaluation_enums, condition_evaluation_mode_1,
227 condition_evaluation_mode): New static globals.
228 (translate_condition_evaluation_mode): New function.
229 (breakpoint_condition_evaluation_mode): New function.
230 (gdb_evaluates_breakpoint_condition_p): New function.
231 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
232 (mark_breakpoint_modified): New function.
233 (mark_breakpoint_location_modified): New function.
234 (set_condition_evaluation_mode): New function.
235 (show_condition_evaluation_mode): New function.
236 (bp_location_compare_addrs): New function.
237 (get_first_location_gte_addr): New helper function.
238 (set_breakpoint_condition): Free condition bytecode if locations
239 has become unconditional. Call mark_breakpoint_modified (...).
240 (condition_command): Call update_global_location_list (1) for
241 breakpoints.
242 (breakpoint_xfer_memory): Use is_breakpoint (...).
243 (is_breakpoint): New function.
244 (parse_cond_to_aexpr): New function.
245 (build_target_condition_list): New function.
246 (insert_bp_location): Handle target-side conditional
247 breakpoints and call build_target_condition_list (...).
248 (update_inserted_breakpoint_locations): New function.
249 (insert_breakpoint_locations): Handle target-side conditional
250 breakpoints.
251 (bpstat_check_breakpoint_conditions): Add comment.
252 (bp_condition_evaluator): New function.
253 (bp_location_condition_evaluator): New function.
254 (print_breakpoint_location): Print information on where the condition
255 will be evaluated.
256 (print_one_breakpoint_location): Likewise.
257 (init_bp_location): Call mark_breakpoint_location_modified (...) for
258 breakpoint location.
259 (force_breakpoint_reinsertion): New functions.
260 (update_global_location_list): Handle target-side breakpoint
261 conditions.
262 Reinsert locations that are already inserted if conditions have
263 changed.
264 (bp_location_dtor): Free agent expression bytecode.
265 (disable_breakpoint): Call mark_breakpoint_modified (...).
266 Call update_global_location_list (...) with parameter 1 for breakpoints.
267 (disable_command): Call mark_breakpoint_location_modified (...).
268 Call update_global_location_list (...) with parameter 1 for breakpoints.
269 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
270 (enable_command): mark_breakpoint_location_modified (...).
271 (_initialize_breakpoint): Update documentation and add
272 condition-evaluation breakpoint subcommand.
273
274 * breakpoint.h: Include ax.h.
275 (condition_list): New data structure.
276 (condition_status): New enum.
277 (bp_target_info) <cond_list>: New field.
278 (bp_location) <condition_changed, cond_bytecode>: New fields.
279 (is_breakpoint): New prototype.
280
3788aec7
LM
2812012-02-24 Luis Machado <lgustavo@codesourcery.com>
282
283 * remote.c (remote_state) <cond_breakpoints>: New field.
284 (PACKET_ConditionalBreakpoints): New enum.
285 (remote_cond_breakpoint_feature): New function.
286 (remote_protocol_features): Add new ConditionalBreakpoints entry.
287 (remote_supports_cond_breakpoints): New function.
288 (_initialize_remote): Add new packet configuration for
289 target-side conditional breakpoints.
290
72895ff6
LM
2912012-02-24 Luis Machado <lgustavo@codesourcery.com>
292
293 * NEWS: Mention target-side conditional breakpoint support,
294 new condition-evaluation breakpoint subcommand and remote
295 packet extensions.
296
dea2aa5f
LM
2972012-02-24 Luis Machado <lgustavo@codesourcery.com>
298
299 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
300 number.
301
8a8bc27f
TS
3022012-02-24 Thomas Schwinge <thomas@codesourcery.com>
303
304 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
305 (after_prologue): Remove.
306
6b446fdf
TT
3072012-02-23 Tom Tromey <tromey@redhat.com>
308
309 * jv-valprint.c (java_val_print): Remove dead code.
310
ef59abfb
TG
3112012-02-23 Tristan Gingold <gingold@adacore.com>
312
313 * ada-tasks.c (struct ada_tasks_inferior_data): Add
314 known_tasks_element and known_tasks_length fields.
315 (read_known_tasks_array): Change argument type. Use pointer type
316 and number of elements from DATA. Adjust.
317 (read_known_tasks_list): Likewise.
318 (get_known_tasks_addr): Remove.
319 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
320 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
321 type and array length. Merge former get_known_tasks_addr code.
322
def166f6
JK
3232012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
324
325 PR backtrace/13716
326 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
327 it after set_momentary_breakpoint.
328
aeaa2474
SA
3292012-02-22 Sterling Augustine <saugustine@google.com>
330
331 PR 13689:
332 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
333
feea76c2
GB
3342012-02-22 Gary Benson <gbenson@redhat.com>
335
336 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
337 (find_slot_in_mapped_hash): Likewise.
338
f06e05e0
JK
3392012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
340
341 PR build/13638
342 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
343 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
344 * configure: Regenerate.
345
b54a8fd7
PA
3462012-02-21 Tristan Gingold <gingold@adacore.com>
347 Pedro Alves <palves@redhat.com>
348
349 * ia64-tdep.c: Do not include libunwind-ia64.h.
350 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
351 Include libunwind-ia64.h instead of libunwind.h.
352 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
353 for libunwind.h existence.
354 * configure, config.in: Regenerate.
355
dfcee124
AG
3562012-02-21 Anton Gorenkov <xgsa@yandex.ru>
357
358 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
359 instead of value_rtti_target_type.
360 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
361 instead of value_rtti_target_type.
362 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
363 value_rtti_target_type.
364 * valops.c (value_ind): Extract function readjust_indirect_value_type.
365 (value_rtti_target_type): Rename to ...
366 (value_rtti_indirect_type): ... here and make it indirect. Update
367 function comment.
368 * value.c (readjust_indirect_value_type): New function.
369 (coerce_ref): Support for enclosing type setting for references
370 with readjust_indirect_value_type.
371 * value.h (readjust_value_type): New declaration.
372 (value_rtti_target_type): Rename to ...
373 (value_rtti_indirect_type): ... here.
374
02568277
AG
3752012-02-21 Anton Gorenkov <xgsa@yandex.ru>
376
377 * MAINTAINERS (Write After Approval): Add myself to the list.
378
10c07b7e 3792012-02-20 Doug Evans <dje@google.com>
28ee876a 380
d82ea6a8
DE
381 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
382 Rename objfile_p_char parameter to objfilep.
383 (build_objfile_section_table): Result is now void. All callers
384 updated.
385 * objfiles.h (struct objfile): Tweak comments, whitespace.
386 (build_objfile_section_table): Update.
387
28ee876a
DE
388 * elfread.c (elf_symfile_segments): Fix warning text.
389
24c79950
TT
3902012-02-20 Tom Tromey <tromey@redhat.com>
391
392 PR gdb/13498:
393 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
394 particular set of file names once.
395 (dw2_map_symbol_filenames): Likewise.
396
3a9b40b6
JK
3972012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
398
399 Code cleanup.
400 * main.c (write_files): Remove the declaration.
401 (external_editor_command): Move the declaration ...
402 [GDBTK] (external_editor_command): ... here. Fix the comment.
403
4d0795ca
TT
4042012-02-20 Tom Tromey <tromey@redhat.com>
405
406 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
407 extraneous block.
408
637fd620
TG
4092012-02-20 Tristan Gingold <gingold@adacore.com>
410
411 * darwin-nat.h (enum darwin_msg_state): Add comments.
412
6f124894
TG
4132012-02-20 Tristan Gingold <gingold@adacore.com>
414
415 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
416 value.
417
2e6e3d9c
JB
4182012-20-18 Joel Brobecker <brobecker@adacore.com>
419
420 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
421 between function description and implementation.
422
2e8265fd
TT
4232012-02-17 Tom Tromey <tromey@redhat.com>
424
425 PR python/12070:
426 * python/py-event.c (event_object_getset): New global.
427 (event_object_type): Reference it.
428 * python/py-type.c (field_object_getset): New global.
429 (field_object_type): Reference it.
430 * python/python-internal.h (gdb_py_generic_dict): Declare.
431 * python/py-utils.c (gdb_py_generic_dict): New function.
432
8544a150 4332012-02-17 Tristan Gingold <gingold@adacore.com>
6f124894 434
8544a150 435 * solib-darwin.c (darwin_current_sos): Check magic and filetype
6f124894 436
ca193e27
TS
4372012-02-17 Thomas Schwinge <thomas@codesourcery.com>
438
439 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
440 TYPE_CALLING_CONVENTION annotation.
441
e5586183
KB
4422012-02-16 Kevin Buettner <kevinb@redhat.com>
443
444 * MAINTAINERS: Add rx to target ISA section.
445 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
446 (ALLDEPFILES): Add rx-tdep.c.
447
7dcd53a0
TT
4482012-02-16 Tom Tromey <tromey@redhat.com>
449
450 * symfile.c (symbol_file_add_main_1): Use inferior's
451 symfile_flags.
452 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
453 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
454 inferior.
455 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
456 inferior.
457 (follow_exec): Use inferior's symfile_flags.
458 * inferior.h (struct inferior) <symfile_flags>: New field.
459
ddd60447
MF
4602012-02-16 Mike Frysinger <vapier@gentoo.org>
461
462 PR gdb/9734:
463 * remote-sim.c (gdbsim_create_inferior): Call error() when
464 sim_create_inferior() fails.
465
b0d32fb6
TG
4662012-02-16 Josh Matthews <josh@joshmatthews.net>
467
468 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
469
9addecb9
TT
4702012-02-16 Tom Tromey <tromey@redhat.com>
471
472 PR c++/13653:
473 * thread.c (struct current_thread_cleanup) <was_removable>: New
474 field.
475 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
476 (make_cleanup_restore_current_thread): Initialize new field.
477
a58b110a
KB
4782012-02-15 Kevin Buettner <kevinb@redhat.com>
479
480 * MAINTAINERS: Add rl78 to target ISA section.
481 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
482 (ALLDEPFILES): Add rl78-tdep.c.
483 * NEWS: Mention rl78 as a new target.
484
4cb6da1c
AR
4852012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
486
487 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
488 data.
489 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
490
3af2590d
TT
4912012-02-15 Tom Tromey <tromey@redhat.com>
492
493 PR gdb/12659:
494 * infcmd.c (registers_info): Print just the current register's
495 name.
496
c6910659
TT
4972012-02-15 Tom Tromey <tromey@redhat.com>
498
499 * python/py-symbol.c (sympy_value): Use _().
500
7cee1e54
PA
5012012-02-15 Pedro Alves <palves@redhat.com>
502
503 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
504 output to be like native targets'.
505 (remote_pid_to_str): Special case the null ptid.
506
816338b5
SS
5072012-02-14 Stan Shebs <stan@codesourcery.com>
508
509 * NEWS: Mention enable count command.
510 * breakpoint.h (struct breakpoint): New field enable_count.
511 * breakpoint.c (enable_breakpoint_disp): Add count argument.
512 (enable_breakpoint): Add arg to call.
513 (struct disp_data): New struct.
514 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
515 (do_map_enable_once_breakpoint): Create a struct and pass it.
516 (do_map_enable_delete_breakpoint): Ditto.
517 (do_map_enable_count_breakpoint): New function.
518 (enable_count_command): New function.
519 (bpstat_stop_status): Decrement enable_count.
520 (print_one_breakpoint_location): Report enable count.
521 (_initialize_breakpoint): Add enable count command.
522
c47a44f4
KB
5232012-02-14 Kevin Buettner <kevinb@redhat.com>
524
525 * rl78-tdep.c (reggroups.h): Include.
526 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
527 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
528 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
529 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
530 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
531 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
532 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
533 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
534 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
535 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
536 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
537 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
538 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
539 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
540 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
541 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
542 beginning of register list.
543 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
544 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
545 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
546 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
547 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
548 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
549 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
550 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
551 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
552 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
553 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
554 the pseudo registers. Rearrange other pseudo registers too so
555 that the bank registers appear at the end.
556 (rl78_register_type): Account for the fact that the byte sized
557 bank registers are now pseudo-registers.
558 (rl78_register_name): Rearrange the register name array. Make
559 initial set of raw banked registers inaccessible.
560 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
561 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
562 case for copying bytes back and forth between raw and pseudo
563 versions of the banked registers. Update other cases to reflect
564 the changed names.
565 (rl78_return_value): Update to account for changed names of
566 raw registers.
567 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
568 rl78_register_sim_regno().
569
e4569f1e
KB
5702012-02-14 Kevin Buettner <kevinb@redhat.com>
571
572 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
573 the name parameter being passed to find_pc_partial_function().
574
7a05aae7
JK
5752012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
576
577 * MAINTAINERS: Step down from being ia64 target maintainer.
578
11fde611
JK
5792012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
580
581 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
582 compilation warning.
583
57008375
JK
5842012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
585
586 Fix crash on loaded shlibs without loaded exec_bfd.
587 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
588 (set_section_command): Replace exec_bfd by p->bfd.
589
ff3c9849
TT
5902012-02-10 Tom Tromey <tromey@redhat.com>
591
592 * linespec.c (decode_line_internal): Skip symtabs_from_filename
593 when we have a C++ qualified name.
594
db2b9fdd
PA
5952012-02-10 Pedro Alves <palves@redhat.com>
596
597 * inferior.c (inferior_pid_to_str): New.
598 (print_inferior, inferior_command): Use it.
599
12cd34f3
PA
6002012-02-10 Pedro Alves <palves@redhat.com>
601
602 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
603 the test CFLAGS.
604 * configure: Regenerate.
605
e871429d
JK
6062012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
607
608 * linespec.c (decode_line_internal): Fix comment correctness.
609
1916efaf
PA
6102012-02-09 Valery Khromov <valery.khromov@gmail.com>
611
612 PR gdb/12953
613 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
614 * amd64bsd-nat.c: Add support for debug registers (adapted from
615 i386bsd-nat.c).
616 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
617 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
618 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
619 (amd64bsd_dr_get_control): New functions.
620 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
621 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
622 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
623 watchpoints initialization.
624 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
625
f4859d94
JK
6262012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
627
628 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
629 flds_bnds.fields.
630 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
631
c56a97f9
JK
6322012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
633
634 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
635
1a119f36
JB
6362012-02-08 Joel Brobecker <brobecker@adacore.com>
637
638 * language.h (symbol_name_cmp_ftype): Renames
639 symbol_name_match_p_ftype.
640 (struct language_defn)[la_get_symbol_name_cmp]: Renames
641 la_get_symbol_name_match_p.
642 * ada-lang.c (ada_get_symbol_name_cmp): Renames
643 ada_get_symbol_name_match_p. Update comment.
644 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
645 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
646 Renames symbol_name_match_p. Update field type.
647 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
648 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
649 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
650 "la_get_symbol_name_cmp" in comments.
651 * language.c: Likewise.
652
c71bb1cf
RO
6532012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
654
655 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
656 %eflags offset.
657 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
658 (amd64_sol2_gregset32_reg_offs): Likewise.
659
4b2d20a5
TG
6602012-02-08 Joel Brobecker <brobecker@adacore.com>
661
662 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
663 of the returned BFD is allocated by GDB.
664
f0823d2c
TT
6652012-02-07 Tom Tromey <tromey@redhat.com>
666
667 PR python/12027:
668 * python/python-internal.h (frame_object_type): Declare.
669 * python/py-symbol.c (sympy_needs_frame): New function.
670 (sympy_value): New function.
671 (symbol_object_getset): Add "needs_frame".
672 (symbol_object_methods): Add "value".
673 * python/py-frame.c (frame_object_type): No longer static.
674
64e7d9dd
TT
6752012-02-07 Tom Tromey <tromey@redhat.com>
676
677 PR python/13599:
678 * python/py-symbol.c (sympy_line): New function.
679 (symbol_object_getset): Add "line".
680
1d6b2d2b
TT
6812012-02-07 Tom Tromey <tromey@redhat.com>
682
683 * charset.c (find_charset_names): Check 'in' against NULL.
684
0d5cff50
DE
6852012-02-06 Doug Evans <dje@google.com>
686
687 * gdbtypes.h (struct main_type): Change type of name,tag_name,
688 and fields.name members from char * to const char *. All uses updated.
689 (struct cplus_struct_type): Change type of fn_fieldlists.name member
690 from char * to const char *. All uses updated.
691 (type_name_no_tag): Update.
692 (lookup_unsigned_typename, lookup_signed_typename): Update.
693 * gdbtypes.c (type_name_no_tag): Change result type
694 from char * to const char *. All callers updated.
695 (lookup_unsigned_typename, lookup_signed_typename): Change type of
696 name parameter from char * to const char *.
697 * symtab.h (struct cplus_specific): Change type of demangled_name
698 member from char * to const char *. All uses updated.
699 (struct general_symbol_info): Change type of name and
700 mangled_lang.demangled_name members from char * to const char *.
701 All uses updated.
702 (symbol_get_demangled_name, symbol_natural_name): Update.
703 (symbol_demangled_name, symbol_search_name): Update.
704 * symtab.c (symbol_get_demangled_name): Change result type
705 from char * to const char *. All callers updated.
706 (symbol_natural_name, symbol_demangled_name): Ditto.
707 (symbol_search_name): Ditto.
708 (completion_list_add_name): Change type of symname,sym_text,
709 text,word parameters from char * to const char *.
710 (completion_list_objc_symbol): Change type of sym_text,
711 text,word parameters from char * to const char *.
712 * ada-lang.c (find_struct_field): Change type of name parameter
713 from char * to const char *.
714 (encoded_ordered_before): Similarly for N0,N1 parameters.
715 (old_renaming_is_invisible): Similarly for function_name parameter.
716 (ada_type_name): Change result type from char * to const char *.
717 All callers updated.
718 * ada-lang.h (ada_type_name): Update.
719 * buildsym.c (hashname): Change type of name parameter
720 from char * to const char *.
721 * buildsym.h (hashname): Update.
722 * dbxread.c (end_psymtab): Change type of include_list parameter
723 from char ** to const char **.
724 * dwarf2read.c (determine_prefix): Change result type
725 from char * to const char *. All callers updated.
726 * f-lang.c (find_common_for_function): Change type of name, funcname
727 parameters from char * to const char *.
728 * f-lang.c (find_common_for_function): Update.
729 * f-valprint.c (list_all_visible_commons): Change type of funcname
730 parameters from char * to const char *.
731 * gdbarch.sh (static_transform_name): Change type of name parameter
732 and result from char * to const char *.
733 * gdbarch.c: Regenerate.
734 * gdbarch.h: Regenerate.
735 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
736 of name parameter from char * to const char *.
737 * jv-lang.c (java_primitive_type_from_name): Ditto.
738 (java_demangled_signature_length): Similarly for signature parameter.
739 (java_demangled_signature_copy): Ditto.
740 (java_demangle_type_signature): Ditto.
741 * jv-lang.h (java_primitive_type_from_name): Update.
742 (java_demangle_type_signature): Update.
743 * objc-lang.c (specialcmp): Change type of a,b parameters
744 from char * to const char *.
745 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
746 from char * to const char *. All callers updated.
747 * p-lang.h (is_pascal_string_type): Update.
748 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
749 of name parameter from char * to const char *.
750 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
751 * utils.c (fprintf_symbol_filtered): Ditto.
752 * defs.h (fprintf_symbol_filtered): Update.
753 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
754 * stabsread.h (end_psymtab): Update.
755 * stack.c (find_frame_funname): Change type of funname parameter
756 from char ** to const char **.
757 * stack.h (find_frame_funname): Update.
758 * typeprint.c (type_print): Change type of varstring parameter
759 from char * to const char *.
760 * value.h (type_print): Update.
761 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
762 from char * to const char *. All callers updated.
763 (xcoff_end_psymtab): Change type of include_list parameter
764 from char ** to const char **. All callers updated.
765 (swap_sym): Similarly for name parameter. All callers updated.
766 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
767 Use xstrdup.
768 (process_coff_symbol): Use xstrdup.
769 * stabsread.c (stabs_method_name_from_physname): Renamed from
770 update_method_name_from_physname. Change result type from void
771 to char *. All callers updated.
772 (read_member_functions): In has_destructor case, store name in objfile
773 obstack instead of malloc space. In !has_stub case, fix mem leak.
774
5579a92e
TT
7752012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
776
777 * configure: Rebuild.
778 * configure.ac: Put -L../bfd and -L../libiberty at the front of
779 LDFLAGS.
780
9058f767
KB
7812012-02-03 Kevin Buettner <kevinb@redhat.com>
782
783 * configure.tgt (rl78-*-elf): New target.
784 * rl78-tdep.c: New file.
785
5b37825d
PW
7862012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
787
788 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
789 and continue the loop. Add QUIT statement.
790
e009ee71
TT
7912012-02-03 Tom Tromey <tromey@redhat.com>
792
793 PR gdb/13596:
794 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
795 bfd_lookup_symbol_from_symtab.
796 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
797 gdb_bfd_lookup_symbol_from_symtab.
798
f7e44f65
JB
7992012-02-03 Joel Brobecker <brobecker@adacore.com>
800
801 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
802 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
803 symbol. Add assertion that sym2 is never NULL.
804
2c02bd72
DE
8052012-02-02 Doug Evans <dje@google.com>
806
807 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
808 "name" parameter to const char ** from char **. All callers updated.
809 (find_pc_partial_function): Ditto.
810 (cache_pc_function_name): Change type to const char * from char *.
811 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
812 (find_pc_partial_function): Update.
813 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
814 type of "name" parameter to const char * from char *.
815 All uses updated.
816 * arch-utils.c (generic_in_solib_return_trampoline): Change
817 type of "name" parameter to const char * from char *.
818 * arch-utils.h (generic_in_solib_return_trampoline): Update.
819 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
820 type of "name" parameter to const char * from char *.
821 * gdbarch.sh (in_solib_return_trampoline): Ditto.
822 * gdbarch.c: Regenerate.
823 * gdbarch.h: Regenerate.
824 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
825 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
826 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
827 type of "name" parameter to const char * from char *.
828 * skip.c (skip_function_pc): Ditto.
829 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
830 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
831 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
832 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
833 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
834 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
835 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
836 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
837 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
838
e886a173
PA
8392012-02-02 Pedro Alves <palves@redhat.com>
840
841 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
842 the current inferior has no execution. Make sure the current
843 remote process matches gdb's current inferior.
844
c709a7c2
TT
8452012-02-02 Tom Tromey <tromey@redhat.com>
846
847 PR gdb/13405:
848 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
849 read-only memory.
850
f149aabd
TT
8512012-02-02 Tom Tromey <tromey@redhat.com>
852
853 PR gdb/9307:
854 * symtab.c (lookup_language_this): Set block_found.
855
03bef283
TT
8562012-02-01 Tom Tromey <tromey@redhat.com>
857
858 PR gdb/13431:
859 * jit.c (struct jit_inferior_data): Rewrite.
860 (struct jit_objfile_data): New.
861 (get_jit_objfile_data): New function.
862 (add_objfile_entry): Update.
863 (jit_read_descriptor): Return int. Replace descriptor_addr
864 argument with inf_data. Update. Don't call error.
865 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
866 descriptor here.
867 (jit_inferior_init): Don't look up descriptor. Don't call error.
868 (jit_reset_inferior_data_and_breakpoints)
869 (jit_inferior_created_observer): Remove.
870 (jit_inferior_exit_hook): Update.
871 (jit_executable_changed_observer): Remove.
872 (jit_event_handler): Update.
873 (free_objfile_data): Reset inferior data if needed.
874 (_initialize_jit): Update.
875
f0bbc364
TT
8762012-02-01 Tom Tromey <tromey@redhat.com>
877
878 * jit.c (bfd_open_from_target_memory): Move higher in file.
879
47c1316c
TG
8802012-02-01 Tristan Gingold <gingold@adacore.com>
881
882 * libunwind-frame.c (libunwind_load): Display message if dlopen
883 failed.
884
8e704927
GB
8852012-02-01 Gary Benson <gbenson@redhat.com>
886
887 * symtab.h (symbol_name_match_p_ftype): New typedef.
888 (iterate_over_symbols): Use the above.
889 * symtab.c (iterate_over_symbols): Likewise.
890 * language.h (language_defn->la_iterate_over_symbols): Likewise.
891 * ada-lang.c (ada_iterate_over_symbols): Likewise.
892 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
893 (iterate_name_matcher): Document return values.
894 (collect_one_symbol): Likewise.
895 (collect_function_symbols): Likewise.
896 (collect_symbols): Likewise.
897
d9680e73
TT
8982012-02-01 Tom Tromey <tromey@redhat.com>
899
900 * ada-lang.c (resolve_subexp): Update.
901 (ada_lookup_symbol_list): Add 'full_search' argument.
902 (ada_iterate_over_symbols): Pass 0 as full_search argument to
903 ada_lookup_symbol_list.
904 (ada_lookup_encoded_symbol): Update.
905 (get_var_value): Update.
906 * ada-exp.y (block_lookup): Update.
907 (write_var_or_type): Update.
908 (write_name_assoc): Update.
909 * ada-lang.h (ada_lookup_symbol_list): Update.
910
72e1143f
TT
9112012-01-31 Tom Tromey <tromey@redhat.com>
912
913 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
914 comment.
915
ab2d2ad3
DE
9162012-01-31 Doug Evans <dje@google.com>
917
918 * symtab.h: Remove outdated comment.
e9111bf7 919 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
ab2d2ad3 920
bc884eba
JB
9212012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
922
923 Fix build error in Darwin port.
924 * i386-darwin-nat.c: Include i386-nat.h.
925
8fc3fc34
TT
9262012-01-30 Tom Tromey <tromey@redhat.com>
927
928 PR breakpoints/13568:
929 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
930 argument. Check for recursive includes.
931 (dwarf_decode_macros): Create an include hash.
932
5d853008
ME
9332012-01-30 Michael Eager <eager@eagercon.com>
934
935 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
936 * ppc-linux-tdep.c: Include glibc-tdep.h.
ab2d2ad3 937 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
5d853008
ME
938 (powerpc_linux_in_plt_stub): New function.
939 (powerpc_linux_in_dynsym_resolve_code): New function.
940 (ppc_skip_trampoline_code): New function.
941 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
942 Use glibc_skip_solib_resolver.
943
40478521
JK
9442012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
945
946 Code cleanup: Make 1440 bytes of data segment read-only.
947 * arch-utils.c (endian_enum): Make it const char *const [].
948 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
949 Likewise.
950 * breakpoint.c (always_inserted_enums): Likewise.
951 * cli/cli-cmds.c (script_ext_enums): Likewise.
952 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
953 enumlist parameter const char *const *.
954 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
955 const char *const *.
956 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
957 parameter const char *const *.
958 * cris-tdep.c (cris_modes): Make it const char *const [].
959 * filesystem.c (target_file_system_kinds): Likewise.
960 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
961 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
962 (can_use_displaced_stepping_enum, scheduler_enums)
963 (exec_direction_names): Likewise.
964 * language.c (_initialize_language): Make the type_or_range_names and
965 case_sensitive_names variables const char *const [].
966 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
967 * python/python.c (python_excp_enums): Likewise.
968 * remote.c (interrupt_sequence_modes): Likewise.
969 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
970 * serial.c (logbase_enums): Likewise.
971 * sh-tdep.c (sh_cc_enum): Likewise.
972 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
973 Likewise.
974 * symtab.c (multiple_symbols_modes): Likewise.
975 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
976 Likewise.
977 * utils.c (internal_problem_modes): Likewise.
978
b3b8b934
JK
9792012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
980
981 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
982 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
983 result.
984
8c85a4e2
DE
9852012-01-27 Doug Evans <dje@google.com>
986
987 * configure.ac (with_python): Fix absolute path handling for win32.
988 * configure: Regenerate.
989
78d8b4d7
DE
9902012-01-26 Doug Evans <dje@google.com>
991
eca864fe
DE
992 * symtab.c: Whitespace cleanup, no code changes.
993
7e082072
DE
994 * symtab.c (lookup_symbol_in_language): Improve comment.
995 (lookup_symbol_aux): Fix comment.
996
7dc25483
DE
997 * psymtab.c (add_psymbol_to_list): Result is now "void".
998 * psympriv.h (add_psymbol_to_list): Update.
999
78d8b4d7
DE
1000 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
1001
4c63965b
JK
10022012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1003
1004 Do not open script filenames twice.
1005 * cli/cli-cmds.c (source_script_from_stream): Pass to
1006 source_python_script also STREAM.
1007 * python/py-auto-load.c (source_section_scripts): Pass to
1008 source_python_script_for_objfile also STREAM.
1009 (auto_load_objfile_script): Pass to source_python_script_for_objfile
1010 also INPUT.
1011 * python/python-internal.h (source_python_script_for_objfile): New
1012 parameter file, rename parameter file to filename.
1013 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
1014 instead if !_WIN32. Update the function comment.
1015 (source_python_script, source_python_script_for_objfile)
1016 (source_python_script): New parameter file, rename parameter file to
1017 filename. Pass FILENAME to python_run_simple_file.
1018 * python/python.h (source_python_script): New parameter file, rename
1019 parameter file to filename.
1020
88f38a04
PA
10212012-01-26 Pedro Alves <palves@redhat.com>
1022
1023 * corelow.c (core_has_fake_pid): Delete.
1024 (core_close): Delete references to `core_has_fake_pid'.
1025 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
1026 (core_open): Delete references to `core_has_fake_pid'.
1027 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
1028 the removed global.
1029
e078317b
JB
10302012-01-26 Joel Brobecker <brobecker@adacore.com>
1031
1032 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
1033 Remove language parameter from name_matcher. Adjust the comment.
1034 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
1035 Remove language parameter.
1036 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
1037 * linespec.c (iterate_name_matcher): Likewise.
1038 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
1039 name_matcher. Adjust call accordingly.
1040 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
1041 (maintenance_check_symtabs): Adjust type of parameter "fun".
1042 * psymtab.h (maintenance_check_symtabs): Likewise.
1043
74ccd7f5
JB
10442012-01-26 Joel Brobecker <brobecker@adacore.com>
1045
1046 * language.h (symbol_name_match_p_ftype): New typedef.
1047 (struct language_defn): Replace field la_symbol_name_compare
1048 by la_get_symbol_name_match_p.
1049 * ada-lang.c (ada_get_symbol_name_match_p): New function.
1050 (ada_language_defn): Use it.
1051 * linespec.c (struct symbol_matcher_data): New type.
1052 (iterate_name_matcher): Rewrite.
1053 (iterate_over_all_matching_symtabs): Pass a pointer to
1054 a symbol_matcher_data struct to expand_symtabs_matching
1055 instead of just the lookup name.
1056 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
1057 opencl-lang.c, p-lang.c, language.c: Delete field
1058 la_symbol_name_compare, and replace by NULL for new field
1059 la_get_symbol_name_match_p.
1060 * symfile.h (struct quick_symbol_functions): Update comment.
1061
5d268276
TT
10622012-01-25 Tom Tromey <tromey@redhat.com>
1063
1064 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
1065 dereferencing.
1066
edcc5120
TT
10672012-01-24 Tom Tromey <tromey@redhat.com>
1068
1069 PR symtab/12406:
1070 * solib.c (update_solib_list): Update the program space's
1071 added_solibs and deleted_solibs fields.
1072 * progspace.h (struct program_space) <added_solibs,
1073 deleted_solibs>: New fields.
1074 (clear_program_space_solib_cache): Declare.
1075 * progspace.c (release_program_space): Call
1076 clear_program_space_solib_cache.
1077 (clear_program_space_solib_cache): New function.
1078 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
1079 bpstat_stop_status. Use handle_solib_event.
1080 * breakpoint.c: Include gdb_regex.h.
1081 (print_solib_event): New function.
1082 (bpstat_print): Use print_solib_event.
1083 (bpstat_stop_status): Add special case for bp_shlib_event.
1084 (handle_solib_event): New function.
1085 (bpstat_what): Use handle_solib_event.
1086 (struct solib_catchpoint): New.
1087 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
1088 (breakpoint_hit_catch_solib, check_status_catch_solib)
1089 (print_it_catch_solib, print_one_catch_solib)
1090 (print_mention_catch_solib, print_recreate_catch_solib): New
1091 functions.
1092 (catch_solib_breakpoint_ops): New global.
1093 (catch_load_or_unload, catch_load_command_1)
1094 (catch_unload_command_1): New functions.
1095 (internal_bkpt_check_status): Add special case for
1096 bp_shlib_event.
1097 (internal_bkpt_print_it): Use print_solib_event.
1098 (initialize_breakpoint_ops): Initialize
1099 catch_solib_breakpoint_ops.
1100 (_initialize_breakpoint): Register "catch load" and "catch
1101 unload".
1102 * breakpoint.h (handle_solib_event): Declare.
1103 * NEWS: Add entry for "catch load" and "catch unload".
1104
fa864999
TT
11052012-01-24 Tom Tromey <tromey@redhat.com>
1106
1107 * ada-lang.c: Include gdb_vecs.h.
1108 * charset.c: Include gdb_vecs.h.
1109 * tracepoint.h: Include gdb_vecs.h.
1110 * gdb_vecs.h: New file.
1111
f90263c1
TT
11122012-01-24 Pedro Alves <pedro@codesourcery.com>
1113
1114 * breakpoint.c (breakpoint_hit_catch_fork)
1115 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
1116 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
1117 * infrun.c (inferior_has_forked, inferior_has_vforked)
1118 (inferior_has_execd, inferior_has_called_syscall): Delete.
1119 (handle_syscall_event): Get syscall_number from the execution
1120 control state's wait status.
1121 (wait_for_inferior): Don't clear syscall_number.
1122
09ac7c10
TT
11232012-01-24 Pedro Alves <palves@redhat.com>
1124
1125 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
1126 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
1127 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
1128 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
1129 `ws' parameter.
1130 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
1131 false for events other than TARGET_SIGNAL_TRAP.
1132 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
1133 Add `ws' parameter.
1134 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
1135 events other than TARGET_SIGNAL_TRAP.
1136 (tracepoint_breakpoint_hit): Add `ws' parameter.
1137 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
1138 parameter.
1139 (bpstat_stop_status): Same.
1140 (pc_at_non_inline_function): Same.
1141 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
1142 to pass the current event's waitstatus to bpstat_stop_status
1143 and pc_at_non_inline_function.
1144
86eb7e95
JK
11452012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1146
1147 Code cleanup.
1148 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
1149 Update the function comment for it.
1150 (source_script_with_search): Call make_cleanup_fclose for STREAM.
1151 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
1152 for STREAM.
1153
a9b3a50f
PA
11542012-01-24 Pedro Alves <palves@redhat.com>
1155
1156 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
1157 outside `bs->stop' block.
1158 (bpstat_what): Rework bp_shlib_event handling.
1159 (internal_bkpt_check_status): If the breakpoint is a
1160 bp_shlib_event, then set bs->stop and bs->print if
1161 stop_on_solib_events is set.
1162
53fe1783
GB
11632012-01-24 Gary Benson <gbenson@redhat.com>
1164
1165 Delete #if 0'd out code.
1166 * stack.c (print_frame_label_vars): Remove.
1167 (catch_info): Likewise.
1168 (_initialize_stack): Remove "info catch" command.
1169 * NEWS: Mention the above.
1170
49c62f2e
PA
11712012-01-24 Pedro Alves <palves@redhat.com>
1172
1173 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
1174 it.
1175 (remote_notice_new_inferior): If the remote end doesn't support
1176 the multiprocess extensions, then the PID is fake.
1177 (add_current_inferior_and_thread): New.
1178 (remote_start_remote): Use it.
1179 (extended_remote_attach_1): Adjust.
1180 (extended_remote_create_inferior_1): Use
1181 add_current_inferior_and_thread.
1182
d0d8b0c6
JK
11832012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1184
1185 Fix watchpoints to be specific for each inferior.
1186 * breakpoint.c (watchpoint_in_thread_scope): Verify also
1187 current_program_space.
1188 * i386-nat.c (i386_inferior_data_cleanup): New.
1189 (i386_inferior_data_get): Replace variable inf_data_local by an
1190 inferior_data call.
1191 (i386_use_watchpoints): Initialize i386_inferior_data.
1192 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
1193 specific iterate_over_lwps.
1194
4403d8e9
JK
11952012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1196
1197 Fix watchpoints across inferior fork.
1198 * amd64-linux-nat.c (update_debug_registers_callback): Update the
1199 comment for linux_nat_iterate_watchpoint_lwps.
1200 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
1201 linux_nat_iterate_watchpoint_lwps.
1202 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
1203 * i386-linux-nat.c (update_debug_registers_callback): Update the
1204 comment for linux_nat_iterate_watchpoint_lwps.
1205 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
1206 linux_nat_iterate_watchpoint_lwps.
1207 (i386_linux_prepare_to_resume): New comment on Linux kernel.
1208 * i386-nat.c: Include inferior.h.
1209 (dr_mirror): Remove.
1210 (i386_inferior_data, struct i386_inferior_data)
1211 (i386_inferior_data_get): New.
1212 (i386_debug_reg_state): Use i386_inferior_data_get.
1213 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
1214 (i386_insert_watchpoint, i386_remove_watchpoint)
1215 (i386_stopped_data_address, i386_insert_hw_breakpoint)
1216 (i386_remove_hw_breakpoint): New variable state, use
1217 i386_debug_reg_state instead of DR_MIRROR.
1218 * linux-nat.c (delete_lwp): New declaration.
1219 (num_lwps): Move here from downwards.
1220 (delete_lwp_cleanup): New.
1221 (linux_child_follow_fork): Create new child_lp, call
1222 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
1223 PTRACE_DETACH.
1224 (num_lwps): Move upwards.
1225 (linux_nat_iterate_watchpoint_lwps): New.
1226 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
1227 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
1228
2992c9a7 12292012-01-24 Joel Brobecker <brobecker@adacore.com>
1230
1231 GDB 7.4 released.
1232
e360902b
PA
12332012-01-23 Pedro Alves <palves@redhat.com>
1234
1235 * top.c (caution): Rename to ...
1236 (confirm): ... this.
1237 (show_caution): Rename to ...
1238 (show_confirm): ... this.
1239 (quit_cover): Adjust.
1240 (init_main): Adjust.
1241 * top.h (caution): Rename to ...
1242 (confirm): ... this.
1243 * utils.c (internal_vproblem, defaulted_query): Adjust.
1244
050a2e1d
PA
12452012-01-23 Pedro Alves <palves@redhat.com>
1246
1247 * top.c (caution): Update comment.
1248 (execute_command): Don't consider the current value of `caution'.
1249
77a35dd8
JK
12502012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1251
1252 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
1253
a71b5a38
UW
12542012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
1255
1256 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
1257 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
1258 * target.c (target_fileio_pwrite): Remove buffer address from
1259 debug output.
1260 (target_fileio_pread): Likewise.
1261
d99bd577
UW
12622012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1263
1264 * NEWS: Document remote "info proc" and "generate-core-file".
1265
35c2fab7
UW
12662012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1267
1268 * gdbarch.sh (find_memory_regions): New callback.
1269 * gdbarch.c, gdbarch.h: Regenerate.
1270
1271 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
1272 callback before falling back to target method.
1273
1274 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
1275 (linux_target_install_ops): No longer install it.
1276
1277 * linux-tdep.c (linux_find_memory_regions): New function.
1278 (linux_init_abi): Install it.
1279
6432734d
UW
12802012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1281
1282 * gdbarch.sh (make_corefile_notes): New architecture callback.
1283 * gdbarch.c: Regenerate.
1284 * gdbarch.h: Likewise.
1285
1286 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
1287 before target_make_corefile_notes. If NULL is returned, the
1288 target does not support core file generation.
1289
1290 * linux-nat.c: Include "linux-tdep.h".
1291 (find_signalled_thread, find_stop_signal): Remove.
1292 (linux_nat_do_thread_registers): Likewise.
1293 (struct linux_nat_corefile_thread_data): Likewise.
1294 (linux_nat_corefile_thread_callback): Likewise.
1295 (iterate_over_spus): Likewise.
1296 (struct linux_spu_corefile_data): Likewise.
1297 (linux_spu_corefile_callback): Likewise.
1298 (linux_spu_make_corefile_notes): Likewise.
1299 (linux_nat_collect_thread_registers): New function.
1300 (linux_nat_make_corefile_notes): Replace contents by call to
1301 linux_make_corefile_notes passing linux_nat_collect_thread_registers
1302 as native-only callback.
1303
1304 * linux-tdep.h: Include "bfd.h".
1305 (struct regcache): Add forward declaration.
1306 (linux_collect_thread_registers_ftype): New typedef.
1307 (linux_make_corefile_notes): Add prototype.
1308 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
1309 "regset.h", and "elf-bfd.h".
1310 (find_signalled_thread, find_stop_signal): New functions.
1311 (linux_spu_make_corefile_notes): Likewise.
1312 (linux_collect_thread_registers): Likewise.
1313 (struct linux_corefile_thread_data): New data structure.
1314 (linux_corefile_thread_callback): New funcion.
1315 (linux_make_corefile_notes): Likewise.
1316 (linux_make_corefile_notes_1): Likewise.
1317 (linux_init_abi): Install it.
1318
3030c96e
UW
13192012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1320
1321 * gdbarch.sh (info_proc): New callback.
1322 * gdbarch.c, gdbarch.h: Regenerate.
1323
1324 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
1325 before falling back to the target info_proc callback.
1326
1327 * linux-nat.c: Do not include "cli/cli-utils.h".
1328 (linux_nat_info_proc): Remove.
1329 (linux_target_install_ops): No longer install it.
1330
1331 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
1332 (read_mapping): New function.
1333 (linux_info_proc): Likewise.
1334 (linux_init_abi): Install it.
1335
145b16a9
UW
13362012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1337
1338 * defs.h (enum info_proc_what): Moved here from linux-nat.c
1339 * infcmd.c: (info_proc_cmd_1): New function.
1340 (info_proc_cmd): New function, moved here from equivalent routine
1341 orignally in linux-nat.c.
1342 (info_proc_cmd_mappings): Likewise.
1343 (info_proc_cmd_stat): Likewise.
1344 (info_proc_cmd_status): Likewise.
1345 (info_proc_cmd_cwd): Likewise.
1346 (info_proc_cmd_cmdline): Likewise.
1347 (info_proc_cmd_exe): Likewise.
1348 (info_proc_cmd_all): Likewise.
1349 (_initialize_infcmd): Install "info proc" command and subcommands.
1350
1351 * target.h (struct target_ops): Add to_info_proc.
1352 (target_info_proc): Add prototype.
1353 * target.c (target_info_proc): New function.
1354
1355 * procfs.c (procfs_info_proc): Add prototype.
1356 (info_proc_cmd): Rename into ...
1357 (procfs_info_proc): ... this. Update argument types as appropriate
1358 for a to_info_proc implementation. Handle "what" argument.
1359 (procfs_target): Install procfs_info_proc.
1360 (_initialize_procfs): No longer install "info proc" command.
1361
1362 * linux-nat.c: (enum info_proc_what): Remove.
1363 (linux_nat_info_proc_cmd_1): Rename into ...
1364 (linux_nat_info_proc): ... this. Update argument types as appropriate
1365 for a to_info_proc implementation.
1366 (linux_nat_info_proc_cmd): Remove.
1367 (linux_nat_info_proc_cmd_mappings): Likewise.
1368 (linux_nat_info_proc_cmd_stat): Likewise.
1369 (linux_nat_info_proc_cmd_status): Likewise.
1370 (linux_nat_info_proc_cmd_cwd): Likewise.
1371 (linux_nat_info_proc_cmd_cmdline): Likewise.
1372 (linux_nat_info_proc_cmd_exe): Likewise.
1373 (linux_nat_info_proc_cmd_all): Likewise.
1374 (linux_target_install_ops): Install linux_nat_info_proc.
1375 (_initialize_linux_nat): No longer install "info proc" command
1376 and subcommands.
1377
b9e7b9c3
UW
13782012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1379
1380 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
1381 * config.in, configure: Regenerate.
1382
1383 * target.h (struct target_ops): Add to_fileio_readlink.
1384 (target_fileio_readlink): Add prototype.
1385 * target.c (target_fileio_readlink): New function.
1386
1387 * inf-child.c: Conditionally include <sys/param.h>.
1388 (inf_child_fileio_readlink): New function.
1389 (inf_child_target): Install it.
1390
1391 * remote.c (PACKET_vFile_readlink): New enum value.
1392 (remote_hostio_readlink): New function.
1393 (init_remote_ops): Install it.
1394 (_initialize_remote): Handle vFile:readlink packet type.
1395
7313baad
UW
13962012-01-20 Pedro Alves <palves@redhat.com>
1397 Ulrich Weigand <ulrich.weigand@linaro.org>
1398
1399 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
1400 * config.in, configure: Regenerate.
1401
1402 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
1403 to_fileio_pread, to_fileio_close, to_fileio_unlink.
1404 (target_fileio_open): Add prototype.
1405 (target_fileio_pwrite): Likewise.
1406 (target_fileio_pread): Likewise.
1407 (target_fileio_close): Likewise.
1408 (target_fileio_unlink): Likewise.
1409 (target_fileio_read_alloc): Likewise.
1410 (target_fileio_read_stralloc): Likewise.
1411
1412 * target.c: Include "gdb/fileio.h".
1413 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
1414 (default_fileio_target): New function.
1415 (target_fileio_open): Likewise.
1416 (target_fileio_pwrite): Likewise.
1417 (target_fileio_pread): Likewise.
1418 (target_fileio_close): Likewise.
1419 (target_fileio_unlink): Likewise.
1420 (target_fileio_close_cleanup): Likewise.
1421 (target_fileio_read_alloc_1): Likewise.
1422 (target_fileio_read_alloc): Likewise.
1423 (target_fileio_read_stralloc): Likewise.
1424
1425 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
1426 <fcntl.h>, and <unistd.h>.
1427 (inf_child_fileio_open_flags_to_host): New function.
1428 (inf_child_errno_to_fileio_error): Likewise.
1429 (inf_child_fileio_open): Likewise.
1430 (inf_child_fileio_pwrite): Likewise.
1431 (inf_child_fileio_pread): Likewise.
1432 (inf_child_fileio_close): Likewise.
1433 (inf_child_fileio_unlink): Likewise.
1434 (inf_child_target): Install to_fileio routines.
1435
1436 * remote.c (init_remote_ops): Install to_fileio routines.
1437
901f9912
UW
14382012-01-20 Pedro Alves <palves@redhat.com>
1439 Ulrich Weigand <ulrich.weigand@linaro.org>
1440
1441 * remote.c (remote_multi_process_p): Only check for multi-process
1442 protocol feature, do not check for extended protocol.
1443 (remote_supports_multi_process): Check for extended protocol here.
1444 (set_general_process): Likewise.
1445 (extended_remote_kill): Likewise.
1446 (remote_pid_to_str): Likewise.
1447 (remote_query_supported): Always query multiprocess mode.
1448
e714e1bf
UW
14492012-01-20 Pedro Alves <palves@redhat.com>
1450 Ulrich Weigand <ulrich.weigand@linaro.org>
1451
1452 * inferior.h (struct inferior): Add fake_pid_p.
1453 * inferior.c (exit_inferior_1): Clear fake_pid_p.
1454 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
1455 magic_null_ptid since the remote side doesn't provide a real PID.
1456
50897289
TT
14572012-01-19 Tom Tromey <tromey@redhat.com>
1458
1459 * NEWS: Combine the two Python sections.
1460
1afc2033
JK
14612012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1462
1463 * target.h (target_close): Update comment on the target's unpush state.
1464
305436e0
PA
14652012-01-19 Pedro Alves <palves@redhat.com>
1466
1467 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
1468 linux_nat_async directly instead of going through the target
1469 vector.
1470 * target.c (unpush_target): Close target after unpushing it, not
1471 before.
1472
49323895
GB
14732012-01-19 Gary Benson <gbenson@redhat.com>
1474
1475 * mdebugread.c (sort_blocks): Replace integer constants with ones
1476 derived from FIRST_LOCAL_BLOCK.
1477
1db33378
PP
14782012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
1479 Jan Kratochvil <jan.kratochvil@redhat.com>
1480
1481 PR gdb/9538
1482 * symfile.c (find_separate_debug_file): New function.
1483 (terminate_after_last_dir_separator): Likewise.
1484 (find_separate_debug_file_by_debuglink): Also try realpath.
1485 * configure.ac (AC_CHECK_FUNCS): Add lstat.
1486 * configure: Regenerate.
1487 * config.in: Regenerate.
1488
f83d8a90
DE
14892012-01-18 Doug Evans <dje@google.com>
1490
1491 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
1492 (main.o): Remove rule.
1493 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
1494 (--with-sysroot): Rewrite.
1495 * configure: Regenerate.
1496 * config.in: Regenerate.
1497
2dbca4d6
SDJ
14982012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
1499
1500 * parse.c (initialize_expout): New function.
1501 (reallocate_expout): Likewise.
1502 (parse_exp_in_context): Use `initialize_expout' and
1503 `reallocate_expout' when appropriate.
1504
0695b514
PA
15052012-01-18 Pedro Alves <palves@redhat.com>
1506
1507 * record.c (struct record_breakpoint, record_breakpoint_p)
1508 (record_breakpoints): New.
1509 (record_insert_breakpoint, record_remove_breakpoint): Manage
1510 record breakpoints list. Only remove breakpoints from the
1511 inferior if they had been inserted there in the first place.
1512
136e1c30
DE
15132012-01-17 Doug Evans <dje@google.com>
1514
1515 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
1516 if we know we don't have a file name to look for.
1517
c0bf857d
PA
15182012-01-17 Pedro Alves <palves@redhat.com>
1519
1520 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
1521 the frame's stop reason is UNWIND_UNAVAILABLE.
1522
b486de60
JK
15232012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1524
1525 Fix compilation error.
1526 * m2-exp.y (yyerror): Use ANSI C prototype.
1527
d04550a6
SDJ
15282012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
1529
1530 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
1531 (growbuf_by_size): Likewise.
1532 (yyerror): Likewise.
1533 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
1534 (modblock): Remove variable (was #if 0'ed).
1535 (parse_number): Convert prototype from K&R to ANSI C.
1536 (yyerror): Likewise.
1537 * objc-exp.y (parse_number): Likewise.
1538 (yyerror): Likewise.
1539 (yylex): Remove #if 0'ed code.
1540 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
1541 (yyerror): Likewise.
1542
4aac40c8
TT
15432012-01-16 Tom Tromey <tromey@redhat.com>
1544
1545 * NEWS: Add item.
1546 * symtab.h (compare_filenames_for_search): Declare.
1547 * symtab.c (compare_filenames_for_search): New function.
1548 (iterate_over_some_symtabs): Use it.
1549 * symfile.h (struct quick_symbol_functions)
1550 <map_symtabs_matching_filename>: Change spec.
1551 * psymtab.c (partial_map_symtabs_matching_filename): Use
1552 compare_filenames_for_search. Update for new spec.
1553 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
1554 compare_filenames_for_search. Update for new spec.
1555 * breakpoint.c (clear_command): Use compare_filenames_for_search.
1556
cafec441
TT
15572012-01-16 Tom Tromey <tromey@redhat.com>
1558
1559 PR python/13281:
1560 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
1561 (struct main_type) <flag_flag_enum>: New field.
1562 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
1563 * NEWS: Add entries.
1564 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
1565 enums.
1566 * python/lib/gdb/printing.py (_EnumInstance): New class.
1567 (FlagEnumerationPrinter): Likewise.
1568
983af33b
SDJ
15692012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
1570
1571 * breakpoint.c (create_sals_from_address_default): New function.
1572 (create_breakpoints_sal_default): Likewise.
1573 (decode_linespec_default): Likewise.
1574 (is_marker_spec): Removed.
1575 (strace_marker_p): New function.
1576 (init_breakpoint_sal): Using `strace_marker_p' instead of
1577 `is_marker_spec'.
1578 (create_breakpoint): Call method `create_sals_from_address' from
1579 breakpoint_ops, replacing code that created SALs conditionally
1580 on the type of the breakpoint. Call method `create_breakpoints_sal',
1581 replacing code that created breakpoints conditionally on the type
1582 wanted.
1583 (base_breakpoint_create_sals_from_address): New function.
1584 (base_breakpoint_create_breakpoints_sal): Likewise.
1585 (base_breakpoint_decode_linespec): Likewise.
1586 (base_breakpoint_ops): Add methods
1587 `base_breakpoint_create_sals_from_address',
1588 `base_breakpoint_create_breakpoints_sal' and
1589 `base_breakpoint_decode_linespec'.
1590 (bkpt_create_sals_from_address): New function.
1591 (bkpt_create_breakpoints_sal): Likewise.
1592 (bkpt_decode_linespec): Likewise.
1593 (tracepoint_create_sals_from_address): Likewise.
1594 (tracepoint_create_breakpoints_sal): Likewise.
1595 (tracepoint_decode_linespec): Likewise.
1596 (strace_marker_create_sals_from_address): Likewise.
1597 (strace_marker_create_breakpoints_sal): Likewise.
1598 (strace_marker_decode_linespec): Likewise.
1599 (strace_marker_breakpoint_ops): New variable.
1600 (addr_string_to_sals): Remove `marker_spec'. Call method
1601 `decode_linespec' from breakpoint_ops, replacing code that decoded
1602 an address string into a SAL. Use `strace_marker_p' instead of
1603 `marker_spec'.
1604 (strace_command): Decide whether we are dealing with a static
1605 tracepoint with marker or not. Use the appropriate breakpoint_ops.
1606 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
1607 * breakpoint.h (linespec_result, linespec_sals): New forward
1608 declarations.
1609 (breakpoint_ops) <create_sals_from_address>,
1610 <create_breakpoints_sal>, <decode_linespec>: New methods.
1611
4795f398
DE
16122012-01-14 Doug Evans <dje@google.com>
1613
1614 * NEWS: Update text for "maint set python print-stack".
1615 It is deprecated in gdb 7.4 and deleted in 7.5.
1616
ee5106fe
EZ
16172012-01-13 Eli Zaretskii <eliz@gnu.org>
1618
1619 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
1620 including curses.h.
1621
b161e06f
JK
16222012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1623
1624 * configure: Regenerate.
1625 * config.in: Regenerate.
1626
85254831
KS
16272012-01-12 Keith Seitz <keiths@redhat.com>
1628
1629 PR mi/10586
1630 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
1631 (ANONYMOUS_UNION_NAME): Define.
1632 (is_path_expr_parent): New function.
1633 (get_path_expr_parent): New function.
1634 (is_anonymous_child): New function.
1635 (create_child_with_value): If the child is anonymous and without
1636 a name, assign an object name to it.
1637 (c_describe_child): Use get_path_expr_parent to determine
1638 the parent expression.
1639 If there field represents an anonymous struct or union and
1640 has no name, set an appropriate display name and expression.
1641 (cplus_describe_child): Likewise.
1642
620fa63a
PA
16432012-01-12 Pedro Alves <palves@redhat.com>
1644
1645 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
1646 available when %ebp is found to be zero (outermost).
1647
2efa2c79
AT
16482012-01-11 Andreas Tobler <andreast@fgznet.ch>
1649
1650 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
1651 an internal gdb_static_assert.
1652 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
1653
88e7d25d
TT
16542012-01-11 Tom Tromey <tromey@redhat.com>
1655
1656 PR gdb/9598:
1657 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
1658 catch" and "catch throw".
1659
72384ba3
PH
16602012-01-11 Paul Hilfinger <hilfingr@adacore.com>
1661
1662 * blockframe.c (block_innermost_frame): Start search from selected
1663 frame, if present, or otherwise the current frame.
1664
1665 * c-exp.y (variable): Update innermost_block for
1666 'block COLONCOLON NAME' clause.
1667 * m2-exp.y (variable): Ditto.
1668 * objc-exp.y (variable): Ditto.
1669
065a711f
TT
16702012-01-10 Tom Tromey <tromey@redhat.com>
1671
1672 PR python/13199:
1673 * python/python.c (finish_python_initialization): Set sys.argv.
1674
f3f5162e
DE
16752012-01-10 Doug Evans <dje@google.com>
1676
1677 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
1678 "want_line_info". All callers updated.
1679 (dwarf_decode_lines_1): New function.
1680 (handle_DW_AT_stmt_list): Add function comment.
1681 New arg "want_line_info". All callers updated.
1682 (read_file_scope,read_type_unit_scope): Move comment from
1683 handle_DW_AT_stmt_list to here.
1684
9934703b
JK
16852012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1686
1687 Fix regression after libiberty/ update for GCC PR 6057 and others.
1688 * c-exp.y (operator) <OPERATOR DELETE>
1689 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
1690 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
1691 (make_builtin_type, make_name): New variable i, add gdb_assert.
1692 (operator) <OPERATOR NEW>: Update ARGS to 3.
1693 (operator) <OPERATOR DELETE>: Add trailing space.
1694 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
1695 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
1696 * cp-support.c (cp_canonicalize_string): Check NULL from
1697 cp_comp_to_string, call warning and return.
1698
06b9f45f
JK
16992012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1700
1701 Fix duplicate .o files after omitting libbfd.a.
1702 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
1703 (SFILES): Add corelow.c.
1704 (COMMON_OBS): Add corelow.o.
1705 (ALLDEPFILES): Remove corelow.c.
1706 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
1707 * config/alpha/alpha-osf3.mh: Likewise.
1708 * config/alpha/fbsd.mh: Likewise.
1709 * config/arm/nbsdaout.mh: Likewise.
1710 * config/arm/nbsdelf.mh: Likewise.
1711 * config/i386/i386gnu.mh: Likewise.
1712 * config/ia64/hpux.mh: Likewise.
1713 * config/ia64/linux.mh: Likewise.
1714 * config/m32r/linux.mh: Likewise.
1715 * config/m68k/linux.mh: Likewise.
1716 * config/mips/irix5.mh: Likewise.
1717 * config/mips/irix6.mh: Likewise.
1718 * config/pa/hpux.mh: Likewise.
1719 * config/pa/linux.mh: Likewise.
1720 * config/powerpc/aix.mh: Likewise.
1721 * config/sparc/linux.mh: Likewise.
1722 * config/sparc/linux64.mh: Likewise.
1723 * config/sparc/sol2.mh: Likewise.
1724 * config/vax/vax.mh: Likewise.
1725 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
1726 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
1727 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
1728 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
1729 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
1730 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
1731 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
1732 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
1733 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
1734 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
1735 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
1736 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
1737 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
1738 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
1739 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
1740 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
1741 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
1742 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
1743 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
1744 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
1745 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
1746 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
1747 corelow.o from gdb_target_obs.
1748 * corefile.c (core_target): Update the comment on NULL value.
1749 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
1750 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
1751 MATCHES. Drop YUMMY set on NULL.
1752 (core_close): Do not call exit_inferior_silent on zero PID. Do not
1753 reclaim CORE_DATA if it is already NULL.
1754
34365054
DE
17552012-01-09 Doug Evans <dje@google.com>
1756
1757 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
1758 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
1759
696166a3
KS
17602012-01-09 Keith Seitz <keiths@redhat.com>
1761
1762 * breakpoint.c (wrapper.h): Don't include.
1763
8e7b59a5
KS
17642012-01-09 Keith Seitz <keiths@redhat.com>
1765
1766 * Makefile.in (SFILES): Remove wrapper.c.
1767 (HFILES_NO_SRCDIR): Remove wrapper.h.
1768 (COMMON_OBS): Remove wrapper.o.
1769 * cli/cli-interp.c: Don't inlude wrapper.h.
1770 * corelow.c: Likewise.
1771 (core_open): Replace gdb_target_find_new_threads with
1772 TRY_CATCH around target_find_new_threads.
1773 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
1774 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
1775 * varobj.c (varobj_create): Likewise for parse_exp_1 and
1776 evaluate_expression.
1777 (varobj_set_value): Likewise for evaluate_expression and
1778 value_assign.
1779 (install_new_variable): Likewise for value_fetch_lazy.
1780 (adjust_value_for_child_access): Likewise for value_ind.
1781 (c_describe_child): Likewise for value_subscript and
1782 value_ind.
1783 (c_value_of_root): Likewise for evaluate_expression.
1784 * wrapper.c: Remove.
1785 * wrapper.h: Remove.
1786
1a4eeb98
DE
17872012-01-09 Doug Evans <dje@google.com>
1788
9ff913ba
DE
1789 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
1790 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
1791 "abfd" args with "section". All callers updated.
1792 Error checking code moved ...
1793 (error_check_comp_unit_head): ... here. New function.
1794 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
1795 Delete arg "abfd". New arg "type_offset". All callers updated.
1796 (create_debug_types_hash_table): Simplify by using
1797 read_and_check_type_unit_head.
1798
1a4eeb98
DE
1799 * parser-defs.h (namecopy): Delete.
1800 * parse.c (namecopy, namecopy_size): Move into copy_name.
1801
2e6af8c0
JK
18022012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1803
1804 Partially fix duplicate .o files after omitting libbfd.a.
1805 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
1806 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1807 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
1808 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1809 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
1810 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
1811 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1812
9f2f828a
PA
18132012-01-09 Pedro Alves <palves@redhat.com>
1814
1815 * MAINTAINERS: Update my email address.
1816
4d72c0bc
DE
18172012-01-08 Doug Evans <dje@google.com>
1818
d467dd73
DE
1819 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
1820 n_type_units. Rename type_comp_units to all_type_units.
1821 All uses updated.
1822 (add_signatured_type_cu_to_table): Renamed from
1823 add_signatured_type_cu_to_list. All callers updated.
1824
4d72c0bc
DE
1825 * gdbtypes.h (struct cplus_struct_type): Delete member
1826 nfn_fields_total. All uses removed.
1827
21b2bd31
DE
18282012-01-06 Doug Evans <dje@google.com>
1829
1830 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
1831 to top of file.
1832 (dwarf2_find_comp_unit): Delete.
1833 (process_psymtab_comp_unit): Make result "void".
1834 Delete args buffer, info_ptr, buffer_size, and replace with
1835 "section". All callers updated.
1836 (dwarf2_build_psymtabs_hard): Simplify.
1837
bfd189b1
SDJ
18382012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
1839 Thiago Jung Bauermann <bauerman@br.ibm.com>
1840
1841 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
1842 before `struct gdb_exception'.
1843 * breakpoint.c (update_global_location_list_nothrow)
1844 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
1845 * cp-abi.c (value_rtti_type): Likewise.
1846 * cp-support.c (cp_validate_operator): Likewise.
1847 * infrun.c (insert_exception_resume_breakpoint)
1848 (check_exception_resume, keep_going): Likewise.
1849 * mi-interp.c (mi_breakpoint_created)
1850 (mi_breakpoint_modified): Likewise.
1851 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
1852 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
1853 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
1854
6b07635f
DE
18552012-01-05 Doug Evans <dje@google.com>
1856
0b30b85c
DE
1857 * dwarf2read.c (statement_prologue): Delete, unused.
1858
98714339
DE
1859 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
1860 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
1861
6b07635f
DE
1862 * dwarf2read.c (comp_unit_header): Delete, unused.
1863
761f4555
UW
18642012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
1865
1866 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
1867 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
1868
2ca0b532
PA
18692012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
1870
1871 * infrun.c (normal_stop): Don't skip calling the normal_stop
1872 observers if the thread was doing a multi-step, but stopped for
1873 some reason other than stepping.
1874
50aeff07
PA
18752012-01-05 Pedro Alves <alves.ped@gmail.com>
1876
1877 * cli/cli-decode.h: Add comments.
1878 (CMD_LIST_AMBIGUOUS): Moved to command.h
1879 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
1880 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
1881 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
1882 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
1883 (add_com, add_com_alias, add_info, add_info_alias)
1884 (complete_on_cmdlist, complete_on_enum, help_list): Remove
1885 declarations.
1886 * command.h: Add and adjust comments.
1887 (CMD_LIST_AMBIGUOUS): Moved here.
1888 (help_cmd, help_cmd_list): Delete declarations.
1889
5953832c
DE
18902012-01-04 Doug Evans <dje@google.com>
1891
e5fe5e75
DE
1892 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
1893 All callers updated.
1894 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
1895 Replace all arguments with "per_cu". All callers updated.
1896
28dee7f5
DE
1897 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
1898
23745b47
DE
1899 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
1900 New arg "per_cu". All callers updated.
1901
5953832c
DE
1902 Delete #if 0'd out code.
1903 * language.c (binop_result_type): Delete.
1904 (simple_type, ordered_type, same_type, integral_type): Delete.
1905 (numeric_type, character_type, string_type, boolean_type): Delete.
1906 (float_type, structured_type): Delete.
1907 * language.h: Update.
1908
0f5b7562
TT
19092012-01-04 Tom Tromey <tromey@redhat.com>
1910
1911 * python/py-value.c (valpy_binop): Initialize 'res_val'.
1912
78218f56
JB
19132012-01-04 Joel Brobecker <brobecker@adacore.com>
1914
1915 * corefile.c (close_exec_file): Delete.
1916 (reopen_exec_file): Remove commented out code that seems related
1917 to close_exec_file, which is being deleted here.
1918 * inferior.h (close_exec_file): Delete.
1919 * fork-child.c (fork_inferior): Remove call to fork_inferior.
1920
0fcd72ba
JB
19212012-01-04 Joel Brobecker <brobecker@adacore.com>
1922
1923 * ada-lang.c: #include "cli/cli-utils.h".
1924 (get_selections): Use skip_spaces.
1925 (ada_get_next_arg): Use skip_spaces and skip_to_space.
1926 (catch_ada_exception_command_split): Use skip_spaces.
1927 (ada_decode_assert_location): Likewise.
1928
1dabb4c4
JB
19292012-01-04 Joel Brobecker <brobecker@adacore.com>
1930
1931 * linespec.c (decode_line_internal): Check for C++ or Java
1932 compound constructs only if the current language is C, C++
1933 or Java.
1934
5931a2fa
JK
19352012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1936
1937 Revert:
1938 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1939 Joel Brobecker <brobecker@adacore.com>
1940 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
1941 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
1942 3 times.
1943 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
1944 fall through into AT_ENTRY_POINT.
1945 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
1946 DUMMY_ADDR with it.
1947 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
1948 PPC_INSN_SIZE skip to 3 times.
1949
1a2da5ee
JB
19502012-01-04 Joel Brobecker <brobecker@adacore.com>
1951
1952 * linespec.c (add_minsym): Preserve function descriptors.
1953
8645ff69
UW
19542012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
1955
1956 * breakpoint.c (all_locations_are_pending): Consider locations
1957 in program spaces executing during startup pending as well.
1958
0b302171
JB
19592012-01-04 Joel Brobecker <brobecker@adacore.com>
1960
1961 Copyright year update in most files of the GDB Project.
1962
8ba098ad
JB
19632012-01-04 Joel Brobecker <brobecker@adacore.com>
1964
1965 * copyright.sh: Delete.
1966 * copyright.py: Rewrite.
1967
09c01c30
JB
19682012-01-04 Joel Brobecker <brobecker@adacore.com>
1969
1970 * gnulib/extra/update-copyright: New file, imported from gnulib.
1971
3c36c0af
JB
19722012-01-04 Joel Brobecker <brobecker@adacore.com>
1973
1974 * README (Copyright and License Notices): New section.
1975
888fe1e1
TT
19762012-01-03 Tom Tromey <tromey@redhat.com>
1977
1978 PR python/12533:
1979 * python/py-value.c (valpy_dereference, valpy_get_address
1980 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
1981 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
1982 (valpy_absolute, valpy_richcompare): Free intermediate values.
1983
6e681866
JB
19842011-01-03 Joel Brobecker <brobecker@adacore.com>
1985
1986 * ada-lang.c: Reformat the copyright notice.
1987
0cd09acb
JK
19882012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1989
1990 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
1991 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
1992 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
1993 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
1994 Revert this part of:
1995 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1996 Build gdb directly from *.o files not using libgdb.a.
1997 * Makefile.in (COMMON_OBS): Remove solib-target.o.
1998
12c3e59c
JB
19992012-01-02 Joel Brobecker <brobecker@adacore.com>
2000
2001 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
2002 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
2003 Reformat the copyright header.
2004
11bf1490
JK
20052012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2006
2007 Revert this part of:
2008 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2009 Remove the gdbtui binary.
2010 * gdb.c (main): Remove args.interpreter_p initialization.
2011 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
2012 * main.h (struct captured_main_args): Remove interpreter_p.
2013
1fef196f
JB
20142012-01-02 Joel Brobecker <brobecker@adacore.com>
2015
2016 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
2017
67827812
JB
20182012-01-02 Joel Brobecker <brobecker@adacore.com>
2019
2020 * top.c (print_gdb_version): Update copyright year.
2021
a4d0b831
YQ
20222012-01-02 Yao Qi <yao@codesourcery.com>
2023
2024 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
2025
b5914469
JK
20262012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2027 Joel Brobecker <brobecker@adacore.com>
2028
2029 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
2030 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
2031 3 times.
2032 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
2033 fall through into AT_ENTRY_POINT.
2034 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
2035 DUMMY_ADDR with it.
2036 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
2037 PPC_INSN_SIZE skip to 3 times.
2038
8da828f7
JK
20392012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2040
2041 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
2042 the return value.
2043 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
2044
8574e74b
JK
20452012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2046
2047 Build gdb directly from *.o files not using libgdb.a.
2048 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
2049 (COMMON_OBS): Remove solib-target.o.
2050 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
2051 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
2052 (LIBGDB_OBS, libgdb.a): Move it above.
2053 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
2054 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
2055 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
2056 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
2057 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
2058 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
2059 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
2060 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
2061 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
2062 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
2063 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
2064 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
2065 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
2066 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
2067 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
2068 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
2069 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
2070 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
2071 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
2072 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
2073 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
2074 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
2075 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
2076 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
2077 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
2078 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
2079 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
2080
217bff3e
JK
20812012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2082
2083 Remove the gdbtui binary.
2084 * .gitignore (/gdbtui): Remove.
2085 * Makefile.in (TUI): Remove.
2086 (SUBDIR_TUI_OBS): Remove tui-main.o.
2087 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
2088 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
2089 (tui-main.o): Remove.
2090 (all_object_files): Remove tui-main.o.
2091 * NEWS: New note for the gdbtui removal.
2092 * configure: Rebuilt.
2093 * configure.ac: No longer add all-tui, clean-tui, install-tui and
2094 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
2095 CONFIG_UNINSTALL respectively.
2096 * gdb.c (main): Remove args.interpreter_p initialization.
2097 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
2098 * main.h (struct captured_main_args): Remove interpreter_p.
2099 * tui/tui-main.c: Remove.
2100
9cdd5dbd
DE
21012012-01-01 Doug Evans <dje@google.com>
2102
bb5ed363
DE
2103 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
2104 (dwarf2_physname, read_import_statement): Ditto.
2105 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
2106 (process_structure_scope read_subroutine_type): Ditto.
2107 (read_typedef, load_partial_dies, read_partial_die): Ditto.
2108 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
2109 (dwarf2_fetch_die_location_block): Ditto.
2110 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
2111
a0f42c21
DE
2112 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
2113 All callers updated.
2114 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
2115 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
2116 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
2117
2dc860c0
DE
2118 * dwarf2read.c (load_cu): Move assert to more useful location.
2119
68dc6402
DE
2120 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
2121 All callers updated.
2122
9cdd5dbd
DE
2123 * dwarf2read.c (dwarf2_per_objfile): Add comment.
2124 (dwarf2_elf_names): Minor reformat.
2125 (dwarf2_per_cu_data): Tweak comment.
2126 (dwarf2_read_section): Fix comment.
2127 (create_all_comp_units): Fix comment.
2128 (load_full_comp_unit): Fix comment.
2129 (process_full_comp_unit): Fix comment.
2130 (read_signatured_type): Fix comment.
2131
0c10e53e 2132For older changes see ChangeLog-2011.
c906108c
SS
2133\f
2134Local Variables:
2135mode: change-log
2136left-margin: 8
2137fill-column: 74
2138version-control: never
57da7796 2139coding: utf-8
c906108c 2140End:
This page took 1.466911 seconds and 4 git commands to generate.