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