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