PR c++/14365
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-08-19 Keith Seitz <keiths@redhat.com>
2
3 PR c++/14365
4 * c-typeprint.c (c_type_print_varspec_prefix): Pass
5 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
6
7 2012-08-18 Eli Zaretskii <eliz@gnu.org>
8
9 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
10 The typo broke "make TAGS".
11
12 2012-08-17 Joel Brobecker <brobecker@adacore.com>
13
14 GDB 7.5 released.
15
16 2012-08-17 Keith Seitz <keiths@redhat.com>
17
18 PR c++/13356
19 * gdbtypes.c (strict_type_checking): New variable.
20 (show_strict_type_checking): New function.
21 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
22 if strict type checking is disabled.
23 (_initialize_gdbtypes): Add "check type" subcommand.
24 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
25
26 2012-08-17 Keith Seitz <keiths@redhat.com>
27
28 * language.h (type_mode): Remove.
29 (type_check): Remove.
30 (struct language_defn): Remove la_type_check.
31 (STRICT_TYPE): Remove unused macro.
32 (type_error): Remove.
33 * language.c (set_type_range_case): Renamed to ...
34 (set_range_case): ... this. Update all callers.
35 Remove type_mode/type_check.
36 (type_mode): Remove.
37 (type_check): Remove.
38 (show_type_command): Remove.
39 (set_type_command): Remove.
40 (language_info): Remove type checking output.
41 (type_error): Remove unused function.
42 (range_error): Update comment.
43 (unknown_language_defn): Remove la_type_check.
44 (auto_language_defn): Likewise.
45 (local_language_defn): Likewise.
46 (_initialize_language): Remove "check type" subcommand.
47 * ada-lang.c (ada_language_defn): Remove la_type_check.
48 * c-lang.c (c_language_defn): Likewise.
49 (cplus_language_defn): Likewise.
50 (asm_language_defn): Likewise.
51 (minimal_language_defn): Likewise.
52 * d-lang.c (d_language_defn): Likewise.
53 * f-lang.c (f_language_defn): Likewise.
54 * go-lang.c (go_language_defn): Likewise.
55 * jv-lang.c (java_language_defn): Likewise.
56 * m2-lang.c (m2_language_defn): Likewise.
57 * objc-lang.c (objc_language_defn): Likewise.
58 * opencl-lang.c (opencl_language_defn): Likewise.
59 * p-lang.c (pascal_language_defn): Likewise.
60
61 2012-08-16 Mike Frysinger <vapier@gentoo.org>
62
63 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
64
65 2012-08-16 Joel Brobecker <brobecker@adacore.com>
66
67 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
68 New function.
69 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
70 using the regache. Use ia64_hpux_get_register_from_save_state_t
71 to access the bsp and bspstore registers if not.
72
73 2012-08-16 Joel Brobecker <brobecker@adacore.com>
74
75 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
76 * breakpoint.c (detach_breakpoints): Change pid parameter into
77 a ptid. Adjust code accordingly.
78 * infrun.c (handle_inferior_event): Delete variable child_pid.
79 Update call to detach_breakpoints to pass the child ptid for
80 fork events.
81 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
82 assert that inferior_ptid's lwp is zero.
83 (linux_handle_extended_wait): Update call to detach_breakpoints.
84 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
85 detach_breakpoints.
86
87 2012-08-16 Joel Brobecker <brobecker@adacore.com>
88
89 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
90 parent, only call detach_breakpoints if tts.tts_event ==
91 TTEVT_VFORK.
92
93 2012-08-16 Joel Brobecker <brobecker@adacore.com>
94
95 * dwarf2-frame.c (dwarf2_frame_cache): Use
96 get_frame_address_in_block instead of get_frame_pc as
97 the bound for executing the frame's FDE.
98
99 2012-08-16 Yao Qi <yao@codesourcery.com>
100
101 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
102 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
103 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
104 (c_type_print_varspec_suffix): Likewise.
105 * eval.c (evaluate_subexp_standard): Likewise.
106 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
107 (f_type_print_varspec_suffix): Likewise.
108 * gdbtypes.c (is_scalar_type): Likewise.
109 (recursive_dump_type): Likewise.
110 * infcall.c (value_arg_coerce): Likewise.
111 * m2-valprint.c (m2_val_print): Likewise.
112 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
113 (pascal_type_print_varspec_suffix): Likewise.
114 (pascal_type_print_base): Likewise.
115 * p-valprint.c (pascal_val_print): Likewise.
116 (pascal_val_print): Likewise.
117 * valops.c (value_slice): Likewise.
118 * valprint.c (scalar_type_p): Likewise.
119 * valarith.c (value_bitstring_subscript): Remove.
120 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
121 Remove comment on TYPE_CODE_BITSTRING.
122
123 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
124 TYPE_CODE_BITSTRING.
125
126 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
127 slot 0.
128
129 2012-08-16 Yao Qi <yao@codesourcery.com>
130
131 * tracepoint.c (trace_find_none_command): Remove.
132 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
133
134 2012-08-16 Yao Qi <yao@codesourcery.com>
135
136 * remote.c (handle_notification): Remove parameter 'length'.
137 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
138
139 2012-08-15 Keith Seitz <keiths@redhat.com>
140
141 * gdbtypes.c (opaque_type_resolution): Make static.
142 Add missing comment.
143 (overload_debug): Add missing comment.
144 (show_opaque_type_resolution): Likewise.
145 (show_overload_debug): Likewise.
146 (print_bit_vector): Remove unnecessary forward declaration.
147 (print_arg_types): Likewise.
148 (dump_fn_fieldlists): Likewise.
149 (print_cplus_stuff): Likewise.
150
151 2012-08-15 Tom Tromey <tromey@redhat.com>
152
153 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
154 (gdb_bfd_ref): Initialize new field.
155 (gdb_bfd_unref): Unref the archive BFD.
156 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
157 parent archive.
158
159 2012-08-15 Tom Tromey <tromey@redhat.com>
160
161 PR python/14387:
162 * python/py-bpevent.c (create_breakpoint_event_object): Update
163 comment.
164 * python/py-event.c (evpy_add_attribute): Update comment.
165 * python/py-exitedevent.c (create_exited_event_object): Fix
166 reference counting and error handling.
167 * python/py-newobjfileevent.c (create_new_objfile_event_object):
168 Fix reference counting.
169 * python/py-signalevent.c (create_signal_event_object): Fix
170 reference counting and error handling.
171 * python/py-stopevent.c (emit_stop_event): Fix reference
172 counting.
173 * python/py-threadevent.c (get_event_thread): Return a
174 borrowed reference.
175 * python/py-type.c (convert_field): Fix reference counting.
176
177 2012-08-15 Tom Tromey <tromey@redhat.com>
178
179 * dwarf2read.c (dwarf_decode_macro_bytes)
180 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
181 as hash key.
182
183 2012-08-14 Mike Frysinger <vapier@gentoo.org>
184
185 * infcmd.c (_initialize_infcmd): Update help text for the signal,
186 stepi, nexti, finish, next, step, jump, and continue commands.
187 * infrun.c (_initialize_infrun): Update help text for the handle
188 command.
189
190 2012-08-14 Doug Evans <dje@google.com>
191
192 * gdbtypes.c (struct extra): Delete, unused.
193
194 * gdbtypes.c: Whitespace cleanup.
195 (address_space_name_to_int): Remove "extern" from definition.
196 (_initialize_gdbtypes): Declare with initialize_file_ftype.
197
198 * gdbtypes.c (make_pointer_type): Remove redundant setting of
199 TYPE_POINTER_TYPE (type).
200
201 2012-08-14 Gary Benson <gbenson@redhat.com>
202
203 * solib-svr4.c (svr4_free_library_list): Use free_so.
204
205 2012-08-13 Mike Frysinger <vapier@gentoo.org>
206
207 * .gitignore: Add go-exp.c.
208
209 2012-08-13 Doug Evans <dje@google.com>
210
211 * value.c (show_convenience): Tweak comment.
212 (_initialize_values): Mention convenience functions in the help text
213 for "show convenience".
214
215 2012-08-13 Yao Qi <yao@codesourcery.com>
216
217 * std-operator.def: Remove TERNOP_SLICE_COUNT.
218 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
219 TERNOP_SLICE_COUNT.
220 * eval.c (evaluate_subexp_standard): Likewise.
221 * expprint.c (print_subexp_standard): Likewise.
222 (dump_subexp_body_standard): Likewise.
223 * parse.c (operator_length_standard): Likewise.
224
225 2012-08-13 Yao Qi <yao@codesourcery.com>
226
227 * std-operator.def: Remove OP_BITSTRING.
228 * breakpoint.c (watchpoint_exp_is_const): Update.
229 * eval.c (evaluate_subexp_standard): Remove handling to
230 OP_BITSTRING.
231 * expprint.c (print_subexp_standard): Likewise.
232 (dump_subexp_body_standard): Likewise.
233 * parse.c (operator_length_standard): Likewise.
234 * valops.c (value_bitstring): Remove.
235 * value.h: Remove the declaration of 'value_bitstring'.
236
237 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
238
239 * linespec.c (find_methods): Remove unused variables `i1' and
240 `name_len'.
241 (decode_line_full): Likewise for `arg_start'.
242
243 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
244
245 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
246 (zlib_decompress_section): Likewise for `section_data'.
247 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
248
249 2012-08-10 Doug Evans <dje@google.com>
250
251 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
252 * NEWS: Document them.
253 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
254 function/strfns.py.
255 * python/py-type.c (typy_array_1): New function.
256 (typy_array): Call it.
257 (typy_vector): New function.
258 (type_object_methods): Add "vector".
259 * python/lib/gdb/function/__init__.py: New file.
260 * python/lib/gdb/function/strfns.py: New file.
261
262 2012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
263
264 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
265 for TYPE_FIELD_BITPOS.
266 (typy_get_sizeof): Likewise for TYPE_LENGTH.
267
268 2012-08-10 Mike Frysinger <vapier@gentoo.org>
269
270 PR cli/10436:
271 * common/vec.h (VEC_merge): Define.
272 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
273 (DEF_VEC_ALLOC_FUNC_P): Likewise.
274 (DEF_VEC_ALLOC_FUNC_O): Likewise.
275 * completer.c: Include gdb_signals.h.
276 (signal_completer): Define.
277 * completer.h (signal_completer): Add prototype.
278 * infcmd.c (_initialize_infcmd): Assign the command
279 completer for "signal" to handle_completer.
280 * infrun.c: Include completer.h.
281 (handle_completer): Define.
282 (_initialize_infrun): Declare a new local variable c. Store the
283 result of add_com("handle") to it. Assign the command
284 completer for "handle" to handle_completer.
285
286 2012-08-09 Yao Qi <yao@codesourcery.com>
287
288 * cli/cli-decode.c (set_cmd_prefix): New.
289 (lookup_cmd_for_prefixlist): New.
290 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
291 of each cmd_list_element in *prefixlist.
292 (add_setshow_cmd_full): set_cmd_prefix.
293 (add_alias_cmd): Likewise.
294 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
295 Declare 'auto_boolean_enums'.
296 * cli/cli-setshow.c: Include "observer.h".
297 (notify_command_param_changed_p): New.
298 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
299 Remove 'static'.
300 (do_setshow_command): Split it to ...
301 (do_set_command, do_show_command): ... them. New.
302 (do_set_command): Call observer_notify_command_param_changed if
303 notify_command_param_changed_p returns true.
304 (cmd_show_list): Caller update.
305 * auto-load.c (set_auto_load_cmd): Likewise.
306 * remote.c (show_remote_cmd): Likewise.
307 * cli/cli-setshow.h: Update declarations.
308 * top.c (execute_command): Call do_set_command and do_show_command.
309
310 * NEWS: Mention new MI notification.
311 * mi/mi-interp.c: Declare mi_command_param_changed.
312 (mi_interpreter_init): Attach mi_command_param_changed to
313 observer command_param_changed.
314 (mi_command_param_changed): New.
315 Remove mi_suppress_breakpoint_notifications.
316 Define global variable mi_suppress_notification.
317 (mi_breakpoint_created): Update.
318 (mi_breakpoint_deleted): Likewise.
319 (mi_breakpoint_modified): Likewise.
320 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
321 'gdb-set' and set mi_suppress_notification.
322 * mi/mi-main.h: (mi_suppress_notification): New struct.
323
324 2012-08-09 Andreas Tobler <andreast@fgznet.ch>
325 Jan Kratochvil <jan.kratochvil@redhat.com>
326
327 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
328
329 2012-08-09 Yao Qi <yao@codesourcery.com>
330
331 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
332 (skiplist): Move it to skip.c.
333 (init_cmd_lists): Remove code setting enablebreaklist and
334 skiplist to NULL.
335 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
336 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
337 skiplist.
338 * gdbcmd.h: Likewise.
339 * skip.c (_initialize_step_skip): Move 'skiplist' from
340 cli/cli-cmds.c.
341
342 2012-08-09 Yao Qi <yao@codesourcery.com>
343
344 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
345 * gnu-nat.c, symfile.c: Likewise.
346
347 2012-08-08 Aaron Gamble <agamble@google.com>
348
349 * utils.c (prompt_for_continue_wait_time): New static global.
350 (make_command_stats_cleanup): Initialize it.
351 (report_command_stats): Subtract time waiting for user.
352 (prompt_for_continue): Track time waiting for user.
353 (defaulted_query): Track time waiting for user.
354
355 2012-08-08 Doug Evans <dje@google.com>
356
357 * eval.c (evaluate_subexp_standard): Fix thinko in handling
358 UNOP_MEMVAL_TYPE.
359 * expprint.c (print_subexp_standard, case OP_TYPE): New.
360 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
361 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
362 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
363 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
364 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
365 elt.
366 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
367 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
368 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
369 (dump_prefix_expression): Handle OP_TYPE.
370
371 2012-08-08 Keith Seitz <keiths@redhat.com>
372
373 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
374 addr_start.
375
376 2012-08-08 Doug Evans <dje@google.com>
377
378 * linux-thread-db.c: #include "gdb_vecs.h".
379 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
380 updated.
381 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
382 (thread_db_load_search): Use a vector to iterate over path elements.
383 Handle text appearing after "$pdir".
384
385 * gdb_string.h: Moved to ...
386 * common/gdb_string.h: ... here.
387 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
388 gdb_string.h and gdb_assert.h.
389
390 2012-08-08 Yao Qi <yao@codesourcery.com>
391
392 * tic6x-tdep.c (tic6x_register_to_value): Remove.
393 (tic6x_value_to_register): Likewise.
394 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
395 and set_gdbarch_value_to_register.
396
397 2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
398 Jean-Marc Saffroy <saffroy@gmail.com>
399
400 PR 11804
401 * defs.h (find_memory_region_ftype): New comment. New arg modified.
402 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
403 * gcore.c (gcore_create_callback): New function comment. Add modified
404 parameter. Only write modified regions. Set SEC_READONLY exactly
405 according to MODIFIED.
406 (objfile_find_memory_regions): Ignore separate debug info files. Ass
407 the passed modified value to FUNC.
408 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
409 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
410 first. New variables modified and has_anonymous. Parse the lines of
411 smaps file. Add the passed MODIFIED value to FUNC.
412 * procfs.c (find_memory_regions_callback): Add the passed modified
413 value.
414
415 2012-08-06 Tom Tromey <tromey@redhat.com>
416
417 * dwarf2-frame.c (clear_pointer_cleanup): New function.
418 (dwarf2_frame_cache): Use it.
419 * frame-unwind.h (frame_sniffer_ftype): Document prologue
420 cache initialization constraint.
421
422 2012-08-06 Tom Tromey <tromey@redhat.com>
423
424 PR python/14386:
425 * varobj.c (update_dynamic_varobj_children): Don't call
426 PyIter_Check.
427
428 2012-08-06 Tom Tromey <tromey@redhat.com>
429
430 PR cli/14392:
431 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
432
433 2012-08-06 Nathaniel Flath <flat0103@gmail.com>
434
435 * NEWS: New entry for 'cd' default parameters.
436 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
437
438 2012-08-03 Tom Tromey <tromey@redhat.com>
439
440 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
441 return.
442
443 2012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
444
445 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
446 to attempting lseek/write.
447 (inf_child_fileio_pread): Likewise for pread.
448
449 2012-08-02 Yao Qi <yao@codesourcery.com>
450
451 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
452 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
453 add_setshow_zinteger_cmd.
454 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
455 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
456 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
457 instead of add_setshow_zinteger_cmd.
458 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
459 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
460 instead of add_setshow_zinteger_cmd.
461 * frame.c (frame_debug): Add 'unsigned'.
462 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
463 add_setshow_zinteger_cmd.
464 * frame.h: Update the declaration of 'frame_debug'.
465 * gdbtypes.c (overload_debug): Add 'unsigned'.
466 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
467 add_setshow_zinteger_cmd.
468 * inferior.h: Update declaration of 'debug_infrun'.
469 * infrun.c (debug_infrun): Add 'unsigned'.
470 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
471 add_setshow_zinteger_cmd.
472 * jit.c (jit_debug): Add 'unsigned'.
473 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
474 add_setshow_zinteger_cmd.
475 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
476 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
477 instead of add_setshow_zinteger_cmd.
478 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
479 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
480 add_setshow_zinteger_cmd.
481 * machoread.c (mach_o_debug_level): Add 'unsigned'.
482 (_initialize_machoread): Call add_setshow_zuinteger_cmd
483 instead of add_setshow_zinteger_cmd.
484 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
485 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
486 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
487 intead of add_setshow_zinteger_cmd.
488 * mips-tdep.c (mips_debug): Add 'unsigned'.
489 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
490 instead of add_setshow_zinteger_cmd.
491 * monitor.c (monitor_debug): Add 'unsigned'.
492 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
493 add_setshow_zinteger_cmd.
494 * observer.c (observer_debug): Add 'unsigned'.
495 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
496 add_setshow_zinteger_cmd.
497 * parse.c (expressiondebug): Add 'unsigned'.
498 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
499 add_setshow_zinteger_cmd.
500 * record.c (record_debug): Add 'unsigned'.
501 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
502 add_setshow_zinteger_cmd.
503 * record.h: Update the declaration of 'record_debug'.
504 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
505 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
506 add_setshow_zinteger_cmd.
507 * serial.c (global_serial_debug_p): Add 'unsigned'.
508 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
509 add_setshow_zinteger_cmd.
510 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
511 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
512 add_setshow_zinteger_cmd.
513 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
514 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
515 add_setshow_zinteger_cmd.
516 * target.c (targetdebug): Add 'unsigned'.
517 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
518 add_setshow_zinteger_cmd.
519 * valops.c (overload_debug): Add 'unsigned'.
520 * varobj.c (varobjdebug): Add 'unsigned'.
521 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
522 add_setshow_zinteger_cmd.
523 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
524 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
525 instead of add_setshow_zinteger_cmd.
526
527 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
528 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
529 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
530 instead of add_setshow_zinteger_cmd.
531 * gdbarch.c, gdbarch.h: Re-generated.
532
533 2012-08-02 Yao Qi <yao@codesourcery.com>
534
535 * nto-tdep.c: Don't include cli/cli-decode.h and
536 cli/cli-cmds.h.
537 (_initialize_nto_tdep): Remove.
538 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
539 Remove field.
540 Remove macro nto_internal_debugging.
541
542 2012-08-01 Richard Henderson <rth@redhat.com>
543
544 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
545 (mep-*-*) [gdb_target_obs]: Likewise.
546
547 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
548
549 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
550 linux_get_siginfo_type.
551
552 2012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
553
554 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
555 AT_ENTRY_POINT.
556 (call_function_by_hand) <ON_STACK>: Call write_memory with
557 gdbarch_breakpoint_from_pc, if possible.
558 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
559 here.
560
561 2012-07-31 Yao Qi <yao@codesourcery.com>
562
563 * tracepoint.c: Add 'static' for some variables.
564
565 2012-07-31 Yao Qi <yao@codesourcery.com>
566
567 * go32-nat.c: Declare _initialize_go32_nat.
568 * ser-go32.c: Declare _initialize_ser_dos.
569 * top.c (do_chdir_cleanup): Add 'static'.
570
571 2012-07-30 Keith Seitz <keiths@redhat.com>
572
573 * linespec.c (linespec_lex_number): A number followed
574 by quotes is a valid number, too.
575
576 2012-07-30 Tom Tromey <tromey@redhat.com>
577
578 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
579
580 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
581
582 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
583 attempt to 4-byte-align HW breakpoint addresses for Thumb.
584
585 2012-07-30 Andrew Burgess <aburgess@broadcom.com>
586
587 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
588 invalid or reevaluated to prevent prevent references to possibly
589 delete'd type objects being left in the varobj.
590
591 2012-07-27 Tom Tromey <tromey@redhat.com>
592 Jan Kratochvil <jan.kratochvil@redhat.com>
593
594 * copying.awk: Print buffer-read-only and vi ro markers.
595 * copying.c: Rebuild.
596 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
597 * gdbarch.c, gdbarch.h: Rebuild.
598 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
599 buffer-read-only and vi ro markers.
600 * features/arm-with-iwmmxt.c: Rebuild.
601 * features/arm-with-m-fpa-layout.c: Rebuild.
602 * features/arm-with-m-vfp-d16.c: Rebuild.
603 * features/arm-with-m.c: Rebuild.
604 * features/arm-with-neon.c: Rebuild.
605 * features/arm-with-vfpv2.c: Rebuild.
606 * features/arm-with-vfpv3.c: Rebuild.
607 * features/i386/amd64-avx-linux.c: Rebuild.
608 * features/i386/amd64-avx.c: Rebuild.
609 * features/i386/amd64-linux.c: Rebuild.
610 * features/i386/amd64.c: Rebuild.
611 * features/i386/i386-avx-linux.c: Rebuild.
612 * features/i386/i386-avx.c: Rebuild.
613 * features/i386/i386-linux.c: Rebuild.
614 * features/i386/i386-mmx-linux.c: Rebuild.
615 * features/i386/i386-mmx.c: Rebuild.
616 * features/i386/i386.c: Rebuild.
617 * features/i386/x32-avx-linux.c: Rebuild.
618 * features/i386/x32-avx.c: Rebuild.
619 * features/i386/x32-linux.c: Rebuild.
620 * features/i386/x32.c: Rebuild.
621 * features/mips-dsp-linux.c: Rebuild.
622 * features/mips-linux.c: Rebuild.
623 * features/mips64-dsp-linux.c: Rebuild.
624 * features/mips64-linux.c: Rebuild.
625 * features/rs6000/powerpc-32.c: Rebuild.
626 * features/rs6000/powerpc-32l.c: Rebuild.
627 * features/rs6000/powerpc-403.c: Rebuild.
628 * features/rs6000/powerpc-403gc.c: Rebuild.
629 * features/rs6000/powerpc-405.c: Rebuild.
630 * features/rs6000/powerpc-505.c: Rebuild.
631 * features/rs6000/powerpc-601.c: Rebuild.
632 * features/rs6000/powerpc-602.c: Rebuild.
633 * features/rs6000/powerpc-603.c: Rebuild.
634 * features/rs6000/powerpc-604.c: Rebuild.
635 * features/rs6000/powerpc-64.c: Rebuild.
636 * features/rs6000/powerpc-64l.c: Rebuild.
637 * features/rs6000/powerpc-7400.c: Rebuild.
638 * features/rs6000/powerpc-750.c: Rebuild.
639 * features/rs6000/powerpc-860.c: Rebuild.
640 * features/rs6000/powerpc-altivec32.c: Rebuild.
641 * features/rs6000/powerpc-altivec32l.c: Rebuild.
642 * features/rs6000/powerpc-altivec64.c: Rebuild.
643 * features/rs6000/powerpc-altivec64l.c: Rebuild.
644 * features/rs6000/powerpc-cell32l.c: Rebuild.
645 * features/rs6000/powerpc-cell64l.c: Rebuild.
646 * features/rs6000/powerpc-e500.c: Rebuild.
647 * features/rs6000/powerpc-e500l.c: Rebuild.
648 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
649 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
650 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
651 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
652 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
653 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
654 * features/rs6000/powerpc-vsx32.c: Rebuild.
655 * features/rs6000/powerpc-vsx32l.c: Rebuild.
656 * features/rs6000/powerpc-vsx64.c: Rebuild.
657 * features/rs6000/powerpc-vsx64l.c: Rebuild.
658 * features/rs6000/rs6000.c: Rebuild.
659 * features/s390-linux32.c: Rebuild.
660 * features/s390-linux32v1.c: Rebuild.
661 * features/s390-linux32v2.c: Rebuild.
662 * features/s390-linux64.c: Rebuild.
663 * features/s390-linux64v1.c: Rebuild.
664 * features/s390-linux64v2.c: Rebuild.
665 * features/s390x-linux64.c: Rebuild.
666 * features/s390x-linux64v1.c: Rebuild.
667 * features/s390x-linux64v2.c: Rebuild.
668 * features/tic6x-c62x-linux.c: Rebuild.
669 * features/tic6x-c62x.c: Rebuild.
670 * features/tic6x-c64x-linux.c: Rebuild.
671 * features/tic6x-c64x.c: Rebuild.
672 * features/tic6x-c64xp-linux.c: Rebuild.
673 * features/tic6x-c64xp.c: Rebuild.
674
675 2012-07-27 Tom Tromey <tromey@redhat.com>
676
677 * c-exp.y (classify_name): Avoid assignment in condition.
678
679 2012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
680
681 * amd64-windows-tdep.c: Include "frame.h".
682 (amd64_windows_skip_trampoline_code): New function.
683 (amd64_windows_init_abi): Add trampoline registration.
684
685 2012-07-27 Yao Qi <yao@codesourcery.com>
686
687 * tracepoint.c (cur_traceframe_number): Remove.
688 (set_tfile_traceframe): Remove.
689 (tfile_trace_find, tfile_fetch_registers): Update callers.
690 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
691 (tfile_open, tfile_trace_find): Likewise.
692
693 2012-07-27 Yao Qi <yao@codesourcery.com>
694
695 * thread.c (switch_to_thread): Don't call registers_changed.
696
697 2012-07-26 Tom Tromey <tromey@redhat.com>
698
699 * Makefile.in (SFILES): Remove objc-exp.y.
700 (YYFILES): Remove objc-exp.c.
701 (YYOBJ): Remove objc-exp.o.
702 (local-maintainer-clean): Don't mention objc-exp.c.
703 * c-exp.y: Include objc-lang.h.
704 (%union) <class>: New field.
705 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
706 (exp): Clone subscript production for OBJC_LBRAC. Add various
707 Objective C productions.
708 (msglist, msgarglist, msgarg): New productions.
709 (array_mod, func_mod, operator): Clone productions for
710 OBJC_LBRAC.
711 (parse_string_or_char): Handle '@' strings.
712 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
713 (classify_name): Check la_name_of_this. Recognize ObjC class
714 names.
715 * objc-exp.y: Remove.
716 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
717 * objc-lang.h (objc_parse, objc_error): Don't declare.
718
719 2012-07-26 Markus Metzger <markus.t.metzger@intel.com>
720
721 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
722
723 2012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
724
725 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
726 and decrement.
727
728 2012-07-26 Tom Tromey <tromey@redhat.com>
729
730 * copying.c: Rebuild.
731 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
732 'no_class'.
733
734 2012-07-26 Tom Tromey <tromey@redhat.com>
735
736 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
737 immediate_quit.
738 (print_objfile_statistics): Likewise.
739 (maintenance_print_symbols): Likewise.
740 (maintenance_print_msymbols): Likewise.
741 (maintenance_print_objfiles): Likewise.
742 * psymtab.c (print_partial_symbols): Call QUIT.
743 (maintenance_print_psymbols): Likewise. Don't modify
744 immediate_quit.
745 * copying.c (show_copying_command): Don't modify immediate_quit.
746 (show_warranty_command): Likewise.
747 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
748
749 2012-07-26 Keith Seitz <keiths@redhat.com>
750
751 * linespec.c (linespec_lexer_lex_number): The input
752 is also a valid number if the next character is a comma
753 or colon.
754
755 2012-07-26 Joel Brobecker <brobecker@adacore.com>
756
757 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
758 configure options.
759
760 2012-07-26 Tristan Gingold <gingold@adacore.com>
761
762 * machoread.c: Include gdb_bfd.h.
763
764 2012-07-26 Tristan Gingold <gingold@adacore.com>
765
766 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
767 offset.
768
769 2012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
770
771 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
772 SIZE to size_t.
773 (dwarf2_evaluate_loc_desc): Likewise.
774 (dwarf2_loc_desc_needs_frame): Likewise.
775 (locexpr_describe_location_1): Likewise.
776 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
777 size_t.
778 (struct dwarf2_loclist_baton): Likewise.
779 * dwarf2read.c (struct dwarf_block): Likewise.
780 (dump_die_shallow): Use pulongest to print dwarf_block.size.
781 (decode_locdesc): Expand SIZE and I to size_t.
782
783 2012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
784
785 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
786
787 2012-07-25 Joel Brobecker <brobecker@adacore.com>
788
789 * doublest.c (convert_doublest_to_floatformat): If the exponent
790 is too small, treat the value as zero. If the exponent is too
791 large, treat the value as infinity.
792
793 2012-07-25 Joel Brobecker <brobecker@adacore.com>
794
795 * configure.ac: Add --enable-lmcheck configure option.
796 * configure: Regenerate.
797
798 2012-07-25 Tom Tromey <tromey@redhat.com>
799
800 * NEWS: Mention maint info bfds.
801 * gdb_bfd.c (all_bfds): New global.
802 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
803 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
804 New functions.
805
806 2012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
807
808 * configure.tgt: Add v850*-*-rtems*.
809
810 2012-07-25 Tom Tromey <tromey@redhat.com>
811
812 * macrotab.c (macro_bcache_str): Remove cast.
813
814 2012-07-25 Hui Zhu <hui_zhu@mentor.com>
815
816 * linespec.c (linespec_lexer_lex_number): Update comments,
817 change the return and add check to make sure the input is
818 the decimal numbers.
819 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
820 false, call linespec_lexer_lex_string.
821
822 2012-07-24 Tom Tromey <tromey@redhat.com>
823
824 * symfile.c (symbol_file_add): Don't open BFD twice.
825
826 2012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
827
828 * breakpoint.c (create_breakpoint): Store condition for pending
829 breakpoints.
830
831 2012-07-24 Andreas Schwab <schwab@linux-m68k.org>
832
833 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
834 (m68k_return_value): Handle complex types like structures.
835 (m68k_svr4_return_value): Likewise.
836
837 2012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
838
839 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
840 parameters to bfd_get_section_name.
841
842 2012-07-24 Yao Qi <yao@codesourcery.com>
843
844 * cli/cli-setshow.c: Handle case 'var_uinteger'
845 and 'var_zuninteger' together. Handle case 'var_integer' and
846 'var_zinteger' together.
847
848 2012-07-23 Keith Seitz <keiths@redhat.com>
849
850 * linespec.c (convert_linespec_to_sal): Don't add
851 any symbols to the result vector if symbol_to_sal
852 returns zero.
853
854 2012-07-23 Keith Seitz <keiths@redhat.com>
855
856 * linespec.c (decode_objc): Record the function name
857 in the linespec.
858
859 2012-07-23 Tom Tromey <tromey@redhat.com>
860
861 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
862 counting.
863 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
864 (map_vmap): Acquire a reference to the BFD.
865
866 2012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
867
868 * p-valprint.c (pascal_object_print_value): Replace potentially
869 unsafe alloca with xmalloc/xfree.
870 * valops.c (search_struct_method): Likewise.
871
872 2012-07-23 Tom Tromey <tromey@redhat.com>
873
874 * solib-svr4.c (enable_break): Update.
875 * bfd-target.h (target_bfd_reopen): Update documentation.
876
877 2012-07-23 Tom Tromey <tromey@redhat.com>
878
879 * symfile.c (separate_debug_file_exists): Update.
880 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
881 (reread_symbols): Update.
882 * elfread.c (build_id_verify): Update.
883 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
884 bfd_open_maybe_remote.
885
886 2012-07-23 Tom Tromey <tromey@redhat.com>
887
888 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
889
890 2012-07-23 Tom Tromey <tromey@redhat.com>
891
892 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
893 and 'abfd'.
894 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
895 and 'abfd'.
896 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
897 * machoread.c (macho_add_oso_symfile): Make a cleanup for
898 'abfd'.
899 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
900 * objfiles.c (allocate_objfile): Acquire a new reference.
901 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
902 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
903 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
904 a cleanup for 'nbfd'.
905 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
906 for 'nbfd'.
907 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
908 make a cleanup for 'abfd'.
909 (symbol_file_add): Make a BFD cleanup.
910
911 2012-07-23 Tom Tromey <tromey@redhat.com>
912
913 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
914 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
915 * corelow.c (core_open): Use gdb_bfd_fopen.
916 * dsrec.c (load_srec): Use gdb_bfd_openr.
917 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
918 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
919 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
920 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
921 (gdb_bfd_fdopenr): New functions.
922 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
923 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
924 (gdb_bfd_fdopenr): Declare.
925 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
926 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
927 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
928 gdb_bfd_openr_next_archived_file.
929 (macho_check_dsym): Use gdb_bfd_openr.
930 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
931 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
932 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
933 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
934 gdb_bfd_openr.
935 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
936 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
937 gdb_bfd_openr_next_archived_file.
938 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
939 Use gdb_bfd_openr.
940 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
941 gdb_bfd_openr.
942 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
943 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
944 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
945 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
946 (symfile_bfd_open): Use gdb_bfd_fopen.
947 (generic_load): Use gdb_bfd_openr.
948 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
949
950 2012-07-23 Tom Tromey <tromey@redhat.com>
951
952 * bfd-target.c (target_bfd_reopen): Update.
953 * cli/cli-dump.c (bfd_openr_with_cleanup)
954 (bfd_openw_with_cleanup): Update.
955 * corelow.c (core_open): Update.
956 * dsrec.c (load_srec): Update.
957 * exec.c (exec_file_attach): Update.
958 * gcore.c (create_gcore_bfd): Update.
959 * gdb_bfd.c (gdb_bfd_ref): Return void.
960 (gdb_bfd_open): Update.
961 * gdb_bfd.h (gdb_bfd_ref): Return void.
962 Update comments.
963 * jit.c (jit_bfd_try_read_symtab): Update.
964 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
965 * machoread.c (macho_symfile_read_all_oso): Update.
966 (macho_check_dsym): Update.
967 * procfs.c (insert_dbx_link_bpt_in_file): Update.
968 * remote-m32r-sdi.c (m32r_load): Update.
969 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
970 * rs6000-nat.c (add_vmap): Update.
971 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
972 Update.
973 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
974 * solib-spu.c (spu_bfd_open): Update.
975 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
976 * spu-linux-nat.c (spu_bfd_open): Update.
977 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
978 (generic_load): Update.
979 * windows-nat.c (windows_make_so): Update.
980
981 2012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
982
983 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
984
985 2012-07-20 Jeff Kenton <jkenton@tilera.com>
986
987 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
988 SIGTRAMP_FRAME unwinding.
989
990 2012-07-20 Doug Evans <dje@google.com>
991
992 * NEWS: Document new options "set/show use-deprecated-index-sections",
993 and delete reference to --use-deprecated-index-sections.
994 * symfile.h (use_deprecated_index_sections): Delete.
995 * dwarf2read.c (use_deprecated_index_sections): Make static.
996 (read_index_from_section): Update wording of how to load
997 deprecated index sections.
998 (_initialize_dwarf2_read): New options
999 "set/show use-deprecated-index-sections".
1000 * main.c (captured_main): Delete --use-deprecated-index-sections.
1001
1002 2012-07-20 Pedro Alves <palves@redhat.com>
1003
1004 PR threads/11692
1005 PR gdb/12203
1006
1007 * infrun.c (handle_inferior_event) <new thread>: Don't special
1008 case minus_one_ptid.
1009 <TARGET_WAITKIND_SPURIOUS>: Ditto.
1010 * linux-thread-db.c (thread_get_info_callback): Don't return early
1011 if the thread is zombie.
1012 (thread_from_lwp): Change return type to void. Rewrite stale
1013 comment.
1014 (attach_thread): Don't return early if the thread is zombie,
1015 instead set its "dying" flag.
1016 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
1017 (find_new_threads_callback): Don't return early if the thread is
1018 zombie.
1019
1020 2012-07-20 Pedro Alves <palves@redhat.com>
1021
1022 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
1023 * target.c (target_wait): Likewise.
1024 (str_comma_list_concat_elem, do_option, target_options_to_string):
1025 New functions.
1026 * target.h (target_options_to_string): Declare.
1027
1028 2012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1029 Tom Tromey <tromey@redhat.com>
1030
1031 * dwarf2read.c (dwarf_decode_macros)
1032 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
1033 DW_MACRO_GNU_transparent_include_alt>: New cases.
1034 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
1035 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
1036
1037 2012-07-20 Tom Tromey <tromey@redhat.com>
1038
1039 * dwarf2read.c (try_open_dwo_file): Don't call
1040 gdb_bfd_stash_filename.
1041
1042 2012-07-20 Pedro Alves <palves@redhat.com>
1043
1044 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
1045 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
1046 (i386_process_record): Tweak description comments.
1047
1048 2012-07-20 Pedro Alves <palves@redhat.com>
1049
1050 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
1051 (i386_process_record): Use record_read_memory.
1052 * record.c (record_read_memory): New function.
1053 (record_arch_list_add_mem, record_exec_insn): Use
1054 record_read_memory.
1055 * record.h (record_read_memory): Declare.
1056
1057 2012-07-20 Yao Qi <yao@codesourcery.com>
1058
1059 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
1060 NULL for xfree.
1061
1062 2012-07-19 Pedro Alves <palves@redhat.com>
1063
1064 * record.c (record_resume): Ask the target beneath to report all
1065 signals.
1066
1067 2012-07-19 Doug Evans <dje@google.com>
1068
1069 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
1070 there's no section at address zero.
1071 (dwarf2_record_block_ranges): Ditto.
1072
1073 2012-07-19 Yao Qi <yao@codesourcery.com>
1074
1075 * command.h, remote.c: Fix a typo in comment.
1076
1077 2012-07-19 Tom Tromey <tromey@redhat.com>
1078
1079 PR exp/13206:
1080 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
1081 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
1082 OP_DECLTYPE>: New cases.
1083 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
1084 (type_exp): Add new productions.
1085 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
1086 and decltype.
1087 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
1088 New case.
1089 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
1090 OP_DECLTYPE>: New case.
1091 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
1092 New case.
1093 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
1094 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
1095
1096 2012-07-19 Tom Tromey <tromey@redhat.com>
1097
1098 * c-exp.y (enum token_flags): New.
1099 (struct token) <cxx_only>: Remove.
1100 <flags>: New field.
1101 (tokentab3, tokentab2, ident_tokens): Update.
1102 (lex_one_token): Update. Handle FLAG_SHADOW.
1103
1104 2012-07-19 Tom Tromey <tromey@redhat.com>
1105
1106 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
1107 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
1108 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
1109 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
1110 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
1111 type_exp production where appropriate.
1112 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
1113 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
1114 <UNOP_MEMVAL_TYPE>: New case.
1115 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
1116 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
1117 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
1118 <UNOP_MEMVAL_TYPE>: New case.
1119 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
1120 UNOP_REINTERPRET_CAST>: Update.
1121 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
1122 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
1123 UNOP_REINTERPRET_CAST>: Update.
1124 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
1125 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
1126 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
1127 constants.
1128
1129 2012-07-19 Yao Qi <yao@codesourcery.com>
1130 Jan Kratochvil <jan.kratochvil@redhat.com>
1131
1132 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
1133 and case 'var_optional_filename' together.
1134 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
1135 instead of add_setshow_optional_filename_cmd for setshow command
1136 'args'. Set completer for 'set args'.
1137
1138 2012-07-18 Doug Evans <dje@google.com>
1139
1140 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
1141 * common/gdb_vecs.c: New file, contents from utils.c.
1142 * common/host-defs.h: New file, contents from defs.h.
1143 * utils.h: New file, contents from defs.h.
1144 * defs.h: Move all declarations of objects defined in utils.c
1145 to utils.h (except QUIT() and related).
1146 #include "utils.h", "host-defs.h".
1147 * probe.h (probe_p): Move here from gdb_vecs.h.
1148 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
1149 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
1150 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
1151 * Makefile.in (SFILES): Add common/gdb_vecs.c.
1152 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
1153 (COMMON_OBS): Add gdb_vecs.o.
1154 (gdb_vecs.o): New rule.
1155
1156 2012-07-18 Keith Seitz <keiths@redhat.com>
1157
1158 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
1159 parameter. If non-zero, use SYMNAME as the canonical name
1160 for the SaL.
1161 Update all callers.
1162 (convert_linespec_to_sals): Use add_sal_to_sals for
1163 expressions, too.
1164 (decode_line_full): No need to "fill in missing canonical names"
1165 anymore. Simply make cleanups for the allocated names.
1166
1167 2012-07-18 Keith Seitz <keiths@redhat.com>
1168
1169 * linespec.c (struct linespec): Constify expression,
1170 source_filename, function_name, and label_name.
1171 (symbol_not_found_error): Make all parameters const.
1172 (linespec_parser_delete): No need to check for NULL
1173 when using xfree. Cast const char * to char * for xfree.
1174
1175 2012-07-18 Keith Seitz <keiths@redhat.com>
1176
1177 * breakpoint.c (invalid_thread_id_error): New function.
1178 (find_condition_and_thread): Use invalid_thread_id_error.
1179 (watch_command_1): Likewise.
1180
1181 2012-07-18 Tom Tromey <tromey@redhat.com>
1182
1183 * cc-with-index.sh, cc-with-dwz.sh: Remove.
1184 * contrib/cc-with-tweaks.sh: New file.
1185
1186 2012-07-18 Tom Tromey <tromey@redhat.com>
1187
1188 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
1189 (locate_dwz_sections): Recognize .gdb_index.
1190 (create_cus_from_index_list): New function.
1191 (create_cus_from_index): Use it. Handle .dwz data.
1192 (read_index_from_section): New function, extracted from
1193 dwarf2_read_index.
1194 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
1195 if needed.
1196
1197 2012-07-18 Tom Tromey <tromey@redhat.com>
1198
1199 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
1200 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
1201 <is_dwz>: New field.
1202 (struct dwz_file): New.
1203 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
1204 (locate_dwz_sections, dwarf2_get_dwz_file)
1205 (get_abbrev_section_for_cu): New functions.
1206 (error_check_comp_unit_head, read_and_check_comp_unit_head)
1207 (read_and_check_type_unit_head): Add abbrev_section argument.
1208 (create_debug_types_hash_table): Update.
1209 (init_cutu_and_read_dies): Use proper abbrev section.
1210 (init_cutu_and_read_dies_no_follow): Likewise.
1211 (set_partial_user): Do nothing if PST==NULL.
1212 (read_comp_units_from_section): New function.
1213 (create_all_comp_units): Use it.
1214 (scan_partial_symbols, partial_die_parent_scope): Update.
1215 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
1216 (process_imported_unit_die, read_partial_die): Handle .dwz files.
1217 (find_partial_die): Add offset_in_dwz argument. Update.
1218 (guess_partial_die_structure_name, fixup_partial_die): Update.
1219 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
1220 DW_FORM_GNU_strp_alt.
1221 (read_indirect_string_from_dwz): New function.
1222 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
1223 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
1224 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
1225 (follow_die_offset): Add offset_in_dwz argument.
1226 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
1227 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
1228 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
1229 Handle new macro forms.
1230 (dwarf_decode_macros): Update.
1231 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
1232 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
1233 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
1234 (create_debug_types_hash_table): Use correct abbrev section.
1235 (get_debug_line_section): New function.
1236 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
1237 (process_full_comp_unit): Pass 'required' argument to
1238 end_symtab_get_static_block.
1239 * buildsym.h (end_symtab_get_static_block): Update.
1240 * buildsym.c (end_symtab_get_static_block): Add 'required'
1241 argument.
1242 (end_symtab, end_expandable_symtab): Update.
1243
1244 2012-07-18 Tom Tromey <tromey@redhat.com>
1245
1246 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
1247 (pagesize): Remove.
1248 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
1249 (zlib_decompress_section): Remove.
1250 (dwarf2_read_section): Use gdb_bfd_map_section.
1251 (munmap_section_buffer): Remove.
1252 (free_dwo_file, dwarf2_per_objfile_free): Don't use
1253 munmap_section_buffer.
1254 * gdb_bfd.c: Include zlib.h, sys/mman.h.
1255 (struct gdb_bfd_section_data): New.
1256 (free_one_bfd_section): New function.
1257 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
1258 (get_section_descriptor, zlib_decompress_section)
1259 (gdb_bfd_map_section): New functions.
1260 * gdb_bfd.h (gdb_bfd_map_section): Declare.
1261
1262 2012-07-18 Tom Tromey <tromey@redhat.com>
1263
1264 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
1265
1266 2012-07-18 Tom Tromey <tromey@redhat.com>
1267
1268 * gdb_bfd.c (struct gdb_bfd_data): New.
1269 (gdb_bfd_cache): New global.
1270 (struct gdb_bfd_cache_search): New.
1271 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
1272 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
1273 * gdb_bfd.h (gdb_bfd_open): Declare.
1274
1275 2012-07-18 Tom Tromey <tromey@redhat.com>
1276
1277 * utils.c (make_cleanup_bfd_unref): Rename from
1278 make_cleanup_bfd_close.
1279 * defs.h (make_cleanup_bfd_unref): Rename from
1280 make_cleanup_bfd_close.
1281 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
1282 (bfd_openw_with_cleanup): Update.
1283 * corelow.c (core_open): Update.
1284 * dsrec.c (load_srec): Update.
1285 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
1286 * remote-m32r-sdi.c (m32r_load): Update.
1287 * remote-mips.c (mips_load_srec): Update.
1288 (pmon_load_fast): Update.
1289 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1290 Update.
1291 (darwin_bfd_open): Update.
1292 * solib.c (solib_bfd_fopen): Update.
1293 * symfile-mem.c (symbol_file_add_from_memory): Update.
1294 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
1295 (symfile_bfd_open): Update.
1296 (generic_load): Update.
1297
1298 2012-07-18 Tom Tromey <tromey@redhat.com>
1299
1300 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
1301 (pmon_load_fast): Likewise.
1302 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
1303 (m32r_upload_command): Likewise.
1304 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
1305 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1306 Use make_cleanup_bfd_close.
1307
1308 2012-07-18 Tom Tromey <tromey@redhat.com>
1309
1310 * symfile.c (symfile_bfd_open): Don't copy name. Call
1311 gdb_bfd_stash_filename.
1312 (load_command): Open the new BFD before freeing the old.
1313 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
1314 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
1315 Call gdb_bfd_stash_filename.
1316 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
1317 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
1318 gdb_bfd_stash_filename.
1319 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1320 Free found_pathname.
1321 * rs6000-nat.c (add_vmap): Don't copy filename. Call
1322 gdb_bfd_stash_filename.
1323 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
1324 * machoread.c (macho_add_oso_symfile): Call
1325 gdb_bfd_stash_filename.
1326 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
1327 gdb_bfd_stash_filename.
1328 (macho_check_dsym): Don't copy filename. Call
1329 gdb_bfd_stash_filename.
1330 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
1331 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
1332 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
1333 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
1334 * exec.c (exec_close): Don't free the BFD's filename.
1335 (exec_file_attach): Don't copy the filename. Call
1336 gdb_bfd_stash_filename.
1337 * corelow.c (core_close): Don't free the BFD's filename.
1338 (core_open): Call gdb_bfd_stash_filename.
1339 * corefile.c (reopen_exec_file): Remove #if 0 code.
1340 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
1341 pathname.
1342 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
1343
1344 2012-07-18 Tom Tromey <tromey@redhat.com>
1345
1346 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
1347 gdb_bfd_unref.
1348 (free_dwo_file): Use gdb_bfd_unref.
1349 * cli/cli-dump.c: Include gdb_bfd.h.
1350 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
1351 (bfd_openr_with_cleanup): Likewise.
1352 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
1353 gdb_bfd_unref.
1354 * utils.c: Include gdb_bfd.h.
1355 (do_bfd_close_cleanup): Use gdb_bfd_unref.
1356 * symfile.c: Include gdb_bfd.h.
1357 (separate_debug_file_exists): Use gdb_bfd_unref.
1358 (bfd_open_maybe_remote): Use gdb_bfd_ref.
1359 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
1360 (generic_load): Use gdb_bfd_ref.
1361 (reread_symbols): Use gdb_bfd_unref.
1362 * symfile-mem.c: Include gdb_bfd.h.
1363 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
1364 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
1365 * solib.c: Include gdb_bfd.h.
1366 (solib_bfd_fopen): Use gdb_bfd_ref.
1367 (solib_bfd_open): Use gdb_bfd_unref.
1368 (free_so_symbols): Use gdb_bfd_unref.
1369 (reload_shared_libraries_1): Use gdb_bfd_unref.
1370 * solib-spu.c: Include gdb_bfd.h.
1371 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
1372 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
1373 gdb_bfd_unref.
1374 * solib-frv.c: Include gdb_bfd.h.
1375 (enable_break2): Use gdb_bfd_unref.
1376 * solib-dsbt.c: Include gdb_bfd.h.
1377 (enable_break2): Use gdb_bfd_unref.
1378 * solib-darwin.c: Include gdb_bfd.h.
1379 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
1380 gdb_bfd_unref.
1381 (darwin_bfd_open): Use gdb_bfd_unref.
1382 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
1383 * remote-mips.c: Include gdb_bfd.h.
1384 (mips_load_srec): Use gdb_bfd_ref.
1385 (pmon_load_fast): Use gdb_bfd_ref.
1386 * remote-m32r-sdi.c: Include gdb_bfd.h.
1387 (m32r_load): Use gdb_bfd_ref.
1388 * record.c: Include gdb_bfd.h.
1389 (record_save_cleanups): Use gdb_bfd_unref.
1390 (cmd_record_save): Use gdb_bfd_unref.
1391 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
1392 gdb_bfd_unref.
1393 * objfiles.h (gdb_bfd_close_or_warn): Remove.
1394 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
1395 * objfiles.c: Include gdb_bfd.h.
1396 (free_objfile): Use gdb_bfd_unref.
1397 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
1398 gdb_bfd.c.
1399 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
1400 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
1401 (macho_check_dsym): Likewise.
1402 * m32r-rom.c: Include gdb_bfd.h.
1403 (m32r_load): Use gdb_bfd_ref.
1404 (m32r_upload_command): Use gdb_bfd_ref.
1405 * jit.c: Include gdb_bfd.h.
1406 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
1407 * gdb_bfd.h: New file.
1408 * gdb_bfd.c: New file.
1409 * gcore.c: Include gdb_bfd.h.
1410 (create_gcore_bfd): Use gdb_bfd_ref.
1411 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
1412 (gcore_command): Use gdb_bfd_unref.
1413 * exec.c: Include gdb_bfd.h.
1414 (exec_close): Use gdb_bfd_unref.
1415 (exec_close_1): Use gdb_bfd_unref.
1416 (exec_file_attach): Use gdb_bfd_ref.
1417 * elfread.c: Include gdb_bfd.h.
1418 (build_id_verify): Use gdb_bfd_unref.
1419 * dsrec.c: Include gdb_bfd.h.
1420 (load_srec): Use gdb_bfd_ref.
1421 * corelow.c: Include gdb_bfd.h.
1422 (core_close): Use gdb_bfd_unref.
1423 (core_open): Use gdb_bfd_ref.
1424 * bfd-target.c: Include gdb_bfd.h.
1425 (target_bfd_xclose): Use gdb_bfd_unref.
1426 (target_bfd_reopen): Use gdb_bfd_ref.
1427 * Makefile.in (SFILES): Add gdb_bfd.c.
1428 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
1429 (COMMON_OBS): Add gdb_bfd.o.
1430
1431 2012-07-18 Keith Seitz <keiths@redhat.com>
1432
1433 * breakpoint.c (find_condition_and_thread): Initialize
1434 TASK and REST.
1435 (create_breakpiont): find_condition_and_thread will now
1436 initialize COND_STRING, THREAD, and REST (and TASK).
1437 (addr_string_to_sals): Likewise.
1438
1439 2012-07-18 Pedro Alves <palves@redhat.com>
1440
1441 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
1442 Pull the single step breakpoints out of the target.
1443
1444 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
1445
1446 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
1447 * stap-probe.c (compile_probe_arg): Likewise.
1448
1449 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
1450
1451 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
1452 (elf_compile_to_ax): Likewise.
1453 * infrun.c (insert_exception_resume_from_probe): Likewise.
1454 (check_exception_resume): Remove `objfile' variable.
1455 * probe.c (find_probe_by_pc): Remove `objfile' argument.
1456 (struct probe_and_objfile, probe_and_objfile_s): Delete.
1457 (collect_probes): Adjust return value to `VEC (probe_p) *'.
1458 (compare_entries): Rename to...
1459 (compare_probes): ...this. Adjust function to work with
1460 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
1461 respectively.
1462 (gen_ui_out_table_header_info): Adjust `probes' argument to be
1463 `VEC (probe_p) *'.
1464 (print_ui_out_info): Adjust argument to be `struct probe *'.
1465 (info_probes_for_ops): Adjust internal computations to use
1466 `VEC (probe_p) *'.
1467 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
1468 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
1469 gen_info_probes_table_values>: Remove `objfile' argument.
1470 (struct probe) <objfile>: New field.
1471 (find_probe_by_pc): Remove `objfile' argument.
1472 * stap-probe.c (stap_parse_probe_arguments): Likewise.
1473 (stap_get_probe_argument_count): Likewise.
1474 (stap_get_arg): Likewise.
1475 (stap_evaluate_probe_argument): Likewise.
1476 (stap_compile_to_ax): Likewise.
1477 (compile_probe_arg): Refactor not to pass `objfile' anymore.
1478 (handle_stap_probe): Fill `objfile' field from `struct probe'.
1479 (stap_gen_info_probes_table_header): Remove `objfile' argument.
1480 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
1481 sym_compile_to_ax>: Likewise.
1482
1483 2012-07-18 Terry Guo <terry.guo@arm.com>
1484
1485 PR 14329
1486 * defs.h (GDB_MI_MSG_WIDTH): New.
1487 * ser_base (ser_base_read_error_fd): New function.
1488 (do_ser_base_readchar): Poll error file descriptor as well as
1489 standard output.
1490 (generic_readchar): Refactor error handling.
1491
1492 2012-07-18 Joel Brobecker <brobecker@adacore.com>
1493
1494 * NEWS: Create a new section for the next release branch.
1495 Rename the section of the current branch, now that it has
1496 been cut.
1497
1498 2012-07-18 Joel Brobecker <brobecker@adacore.com>
1499
1500 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
1501 * version.in: Bump version to 7.5.50.20120718-cvs.
1502
1503 2012-07-17 Keith Seitz <keiths@redhat.com>
1504
1505 * linespec.c (linespec_parse_line_offset): Make parameter
1506 const.
1507
1508 2012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1509
1510 PR 11914
1511 * f-valprint.c (info_common_command): New variable frame_id.
1512 Reinitialize FI form FRAME_ID after each print_variable_and_value.
1513 * printcmd.c (print_variable_and_value): Extend function comment.
1514 Add comment for invalidated FRAME.
1515 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
1516 FI form FRAME_ID after each print_frame_local_vars.
1517 (struct print_variable_and_value_data): Change frame to frame_id.
1518 (do_print_variable_and_value): New variable frame, initialize it from
1519 p->frame_id. Add comment for invalidated FRAME.
1520 (print_frame_local_vars, print_frame_arg_vars): New function comment.
1521 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
1522 for invalidated FRAME.
1523
1524 2012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
1525 Pedro Alves <palves@redhat.com>
1526
1527 * linux-nat.c (linux_nat_detach): Don't unregister from the event
1528 loop.
1529
1530 2012-07-16 Tom Tromey <tromey@redhat.com>
1531
1532 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
1533
1534 2012-07-15 Doug Evans <dje@google.com>
1535
1536 * dwarf2read.c (stmt_list_hash): New struct.
1537 (type_unit_group): Embed "per_cu" member, remove pointer.
1538 New union member "t", move member "tus" into it, all uses updated.
1539 New member "hash", replaces member "line_offset, all uses updated.
1540 (quick_file_names): Replace member "offset" with "hash", all uses
1541 updated.
1542 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
1543 (hash_file_name_entry, eq_file_name_entry): Call them.
1544 (hash_type_unit_group, eq_type_unit_group): Ditto.
1545 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
1546 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
1547 (dw2_get_file_names): Update.
1548 (create_type_unit_group): Replace "per_cu" arg with "cu".
1549 All callers updated. Fix "quick" (.gdb_index) handling.
1550 (get_type_unit_group): Replace "per_cu" arg with "cu".
1551 All callers updated.
1552 (build_type_unit_groups): Don't reset tu_stats.
1553
1554 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
1555 "tab_cur_size". Change member "tab" to be a htab_t.
1556 (create_filename_seen_cache): Update.
1557 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
1558 (filename_seen): Update.
1559
1560 2012-07-13 Doug Evans <dje@google.com>
1561
1562 * symtab.c (filename_seen): Update comment.
1563
1564 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1565 Doug Evans <dje@google.com>
1566
1567 * buildsym.c (end_symtab_1): Split it to ...
1568 (end_symtab_get_static_block): ... this ...
1569 (end_symtab_from_static_block): ... and this function.
1570 (end_symtab, end_expandable_symtab): Call them.
1571 * buildsym.h (end_symtab_get_static_block)
1572 (end_symtab_from_static_block): New declarations.
1573 * dwarf2read.c (process_full_comp_unit): New variable static_block.
1574 Set its valid CU ranges.
1575
1576 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1577
1578 * dwarf2loc.c (disassemble_dwarf_expression): Handle
1579 DW_OP_GNU_parameter_ref.
1580
1581 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1582
1583 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
1584 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
1585
1586 2012-07-13 Doug Evans <dje@google.com>
1587
1588 * symtab.c (output_source_filename): Delete unnecessary forward decl.
1589 (filename_seen_cache): New struct.
1590 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
1591 (create_filename_seen_cache): New function.
1592 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
1593 (filename_seen): Delete arg "first". New arg "cache". All callers
1594 updated.
1595 (output_source_filename_data): New struct.
1596 (output_source_filename): Delete arg "first". New arg "data".
1597 All callers updated.
1598 (sources_info): Delete local "first". New locals "data", "cleanups".
1599 Rewrite to use filename_seen_cache.
1600 (add_partial_filename_data): Delete member "first". New member
1601 "filename_seen_cache". All uses updated.
1602 (make_source_files_completion_list): Rewrite to use
1603 filename_seen_cache.
1604
1605 2012-07-12 Doug Evans <dje@google.com>
1606
1607 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
1608
1609 2012-07-10 Doug Evans <dje@google.com>
1610
1611 PR gdb/13498
1612 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
1613 all_type_unit_groups, type_unit_groups, tu_stats.
1614 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
1615 All uses updated. Add type_unit_group to union "s".
1616 (type_unit_group): New struct.
1617 (IS_TYPE_UNIT_GROUP): New macro.
1618 (abbrev_table): Delete unused member "section".
1619 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
1620 (dw2_get_cu): Assert not used with type_unit_group.
1621 (dw2_get_primary_cu): New function.
1622 (dw2_build_type_unit_groups_reader): New function.
1623 (dw2_build_type_unit_groups): New function.
1624 (dw2_get_file_names): Assert not called on type units.
1625 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
1626 Redo loop to iterate over type unit groups instead of type units.
1627 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
1628 (read_abbrev_offset): New function.
1629 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
1630 updated.
1631 (create_partial_symtab): New function.
1632 (process_psymtab_comp_unit_reader): Assert not used with type units.
1633 Call create_partial_symtab.
1634 (process_psymtab_type_unit): Delete.
1635 (hash_type_unit_group, eq_type_unit_group): New functions.
1636 (allocate_type_unit_groups_table): New function.
1637 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
1638 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
1639 (create_type_unit_group, get_type_unit_group): New functions.
1640 (tu_abbrev_offset): New struct.
1641 (sort_tu_by_abbrev_offset): New function.
1642 (add_type_unit_group_to_table): New function.
1643 (build_type_unit_groups): New function.
1644 (build_type_psymtabs_reader): New function.
1645 (build_type_psymtab_dependencies): New function.
1646 (build_type_psymtabs): Rewrite.
1647 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
1648 is seen in a type unit.
1649 (process_queue): Move symtab expansion debugging printfs here.
1650 Call process_full_type_unit for type units.
1651 (compute_symtab_includes): Assert not called for type units.
1652 (process_cu_includes): Don't call compute_symtab_includes for
1653 type units.
1654 (process_full_type_unit): New function.
1655 (process_imported_unit_die): Flag an error if called for type units.
1656 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
1657 updated. Assert not called for type units.
1658 (read_file_scope): Call dwarf2_start_symtab.
1659 (setup_type_unit_groups): New function.
1660 (read_type_unit_scope): Rewrite.
1661 (abbrev_table_read_table): Initialize abbrev_table->offset.
1662 (abbrev_table_free_cleanup): New function.
1663 (dwarf2_start_symtab): New function.
1664 (load_full_type_unit): Assert not called for type unit groups.
1665 * buildsym.c (finish_block_internal): New arg "expandable".
1666 All callers updated.
1667 (start_symtab): Move most contents to ...
1668 (restart_symtab): ... here. New function.
1669 (reset_symtab_globals): New function.
1670 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
1671 Call reset_symtab_globals.
1672 (end_symtab, end_expandable_symtab): New functions.
1673 (set_missing_symtab, augment_type_symtab): New functions.
1674 * buildsym.h (end_expandable_symtab): Declare.
1675 (augment_type_symtab, restart_symtab): Declare.
1676 * psympriv.h (struct partial_symtab): New member "anonymous".
1677 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
1678 anonymous psymtabs.
1679 (read_psymtabs_with_filename): Ditto.
1680 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
1681 (expand_symtabs_matching_via_partial): Ditto.
1682 (dump_psymtab): Update.
1683 * dictionary.c (dict_add_pending): New function.
1684 * dictionary.h (dict_add_pending): Declare.
1685
1686 2012-07-09 Doug Evans <dje@google.com>
1687
1688 * buildsym.c (start_subfile): Remove unnecessary check for
1689 name == NULL.
1690
1691 * psymtab.c (allocate_psymtab): Use host_address_to_string.
1692
1693 * dwarf2read.c (load_full_type_unit): Simplify.
1694
1695 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
1696 to struct signatured_type **. All uses updated.
1697
1698 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
1699 All callers updated.
1700
1701 2012-07-09 Tom Tromey <tromey@redhat.com>
1702
1703 * c-exp.y (check_parameter_typelist): New function.
1704 (parameter_typelist): Call it.
1705 * eval.c (make_params): Handle '(void)' case.
1706 * gdbtypes.c (lookup_function_type_with_arguments): Handle
1707 '(void)' case.
1708
1709 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1710
1711 * common/linux-ptrace.c: Include gdb_assert.h.
1712 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
1713 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
1714 stdint.h.
1715 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
1716 functions.
1717 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
1718 * linux-nat.c (linux_child_post_attach)
1719 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
1720
1721 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1722
1723 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
1724 nptl <2.7 bug workaround for core files.
1725
1726 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1727
1728 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
1729 clearing.
1730 (save_siginfo): Remove.
1731 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
1732 call.
1733 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
1734 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
1735 * linux-nat.h (struct lwp_info): Remove field siginfo.
1736
1737 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1738
1739 Code cleanup for the next patch.
1740 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
1741 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
1742 call for it.
1743 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
1744 (ia64_linux_stopped_data_address):
1745 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
1746 the return value.
1747 * linux-nat.h (linux_nat_get_siginfo): Likewise.
1748 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
1749 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
1750 call for it.
1751
1752 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1753
1754 PR 14321
1755 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
1756 Increase buffer sizes to 2x we need, not just 2x of the previous size.
1757
1758 2012-07-06 Tom Tromey <tromey@redhat.com>
1759
1760 * c-exp.y (DOTDOTDOT): New token.
1761 (func_mod, exp): Use parameter_typelist.
1762 (parameter_typelist): New production.
1763 (tokentab3): Add "..." token.
1764 * eval.c (make_params): Handle varargs.
1765 * gdbtypes.c (lookup_function_type_with_arguments): Handle
1766 varargs.
1767
1768 2012-07-06 Tom Tromey <tromey@redhat.com>
1769
1770 PR exp/9608:
1771 * c-exp.y (%union) <tvec>: Change type.
1772 (func_mod): Now uses <tvec> type.
1773 (exp): Update for tvec change.
1774 (direct_abs_decl): Push the typelist.
1775 (func_mod): Return a typelist.
1776 (nonempty_typelist): Update for tvec change.
1777 * gdbtypes.c (lookup_function_type_with_arguments): New function.
1778 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
1779 * parse.c (pop_type_list): New function.
1780 (push_typelist): New function.
1781 (follow_types): Handle tp_function_with_arguments.
1782 * parser-defs.h (type_ptr): New typedef. Define a VEC.
1783 (enum type_pieces) <tp_function_with_arguments>: New constant.
1784 (union type_stack_elt) <typelist_val>: New field.
1785 (push_typelist): Declare.
1786
1787 2012-07-06 Tom Tromey <tromey@redhat.com>
1788
1789 * c-exp.y (%union) <type_stack>: New field.
1790 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
1791 (ptr_operator_ts): New production.
1792 (ptype): Update.
1793 * parse.c (type_stack_reserve): New function.
1794 (check_type_stack_depth): Use it.
1795 (pop_type_stack, append_type_stack, push_type_stack)
1796 (get_type_stack, type_stack_cleanup): New functions.
1797 (follow_types): Handle tp_type_stack.
1798 (_initialize_parse): Simplify initialization.
1799 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
1800 constant.
1801 (union type_stack_elt) <stack_val>: New field.
1802 (get_type_stack, append_type_stack, push_type_stack)
1803 (type_stack_cleanup): Declare.
1804
1805 2012-07-06 Tom Tromey <tromey@redhat.com>
1806
1807 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
1808 Remove.
1809 (struct type_stack): New.
1810 * parse.c (type_stack, type_stack_size, type_stack_depth):
1811 Remove.
1812 (type_stack): New global.
1813 (parse_exp_in_context, check_type_stack_depth)
1814 (insert_into_type_stack, insert_type, push_type, push_type_int)
1815 (insert_type_address_space, pop_type, pop_type_int)
1816 (_initialize_parse): Update.
1817
1818 2012-07-06 Tom Tromey <tromey@redhat.com>
1819
1820 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
1821 Remove %type.
1822
1823 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
1824
1825 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
1826
1827 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
1828 Jan Kratochvil <jan.kratochvil@redhat.com>
1829
1830 * cp-valprint.c (cp_print_value): Replace potentially unsafe
1831 alloca with xmalloc/xfree.
1832
1833 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
1834
1835 * MAINTAINERS (Write After Approval): Add myself to the list.
1836
1837 2012-07-05 Doug Evans <dje@google.com>
1838
1839 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
1840
1841 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
1842
1843 * ax-gdb.c (cli/cli-utils.h): New include.
1844 (linespec.h): Ditto.
1845 (agent_eval_command_one): New function.
1846 (agent_command_1): Ditto.
1847 (agent_command): Call function agent_command_1.
1848 (agent_eval_command): Ditto.
1849 (_initialize_ax_gdb): Change help for "maint agent"
1850 and "maint agent-eval".
1851
1852 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
1853
1854 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
1855 * cli/cli-utils.c (check_for_argument): New function.
1856 * cli/cli-utils.h (check_for_argument): Ditto.
1857
1858 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
1859
1860 * NEWS: Mention x32 ABI support.
1861
1862 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
1863
1864 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
1865 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
1866
1867 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
1868 and pc_regnum_from_eax to -1. Update SP regnum from
1869 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
1870 needed.
1871
1872 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
1873 pc_regnum_from_eax.
1874
1875 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1876
1877 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
1878 * dwarf2expr.h: Include gdbtypes.h.
1879 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
1880 these forward declarations.
1881 (cu_offset, sect_offset): Move these ...
1882 * gdbtypes.h: Remove include dwarf2expr.h.
1883 (cu_offset, sect_offset): ... here.
1884
1885 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
1886
1887 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
1888 (amd64_linux_sigtramp_code): This.
1889 (amd64_x32_linux_sigtramp_code): New.
1890 (LINUX_SIGTRAMP_LEN): Updated.
1891 (amd64_linux_sigtramp_start): Check x32 sigtramp.
1892
1893 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1894
1895 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
1896
1897 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1898
1899 * config.in: Regenerate.
1900 * configure: Regenerate.
1901 * configure.ac: Remove check for gnu/libc-version.h.
1902 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
1903 gnu/libc-version.h.
1904 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
1905 variables libc_version, libc_major and libc_minor. Replace sscanf by
1906 inferior_has_bug. Extend the comment.
1907
1908 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1909
1910 * linux-thread-db.c (inferior_has_bug): New function.
1911 (thread_db_find_new_threads_silently): Return boolean as checked by
1912 inferior_has_bug, describe it in the comments.
1913 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
1914 earlier. Abort the initialization if it returned non-zero.
1915 (thread_db_new_objfile): Exclude debug files.
1916 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
1917 if UNTIL_NO_NEW,
1918
1919 2012-07-02 Doug Evans <dje@google.com>
1920
1921 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
1922 related to queue management.
1923
1924 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
1925 instead of "debug dwarf2-die" in debugging printfs.
1926 (create_debug_info_hash_table_reader): Ditto.
1927 (create_debug_info_hash_table): Ditto.
1928 (init_dwo_file): Ditto.
1929 (init_cutu_and_read_dies): Add debugging printf.
1930 (init_cutu_and_read_dies_no_follow): Ditto.
1931 (process_psymtab_comp_unit_reader): Ditto.
1932
1933 2012-07-02 Stan Shebs <stan@codesourcery.com>
1934
1935 Add target-side support for dynamic printf.
1936 * NEWS: Mention the additional style.
1937 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
1938 (struct bp_location): New field cmd_bytecode.
1939 * breakpoint.c: Include format.h.
1940 (disconnected_dprintf): New global.
1941 (parse_cmd_to_aexpr): New function.
1942 (build_target_command_list): New function.
1943 (insert_bp_location): Call it.
1944 (remove_breakpoints_pid): Skip dprintf breakpoints.
1945 (print_one_breakpoint_location): Ditto.
1946 (dprintf_style_agent): New global.
1947 (dprintf_style_enums): Add dprintf_style_agent.
1948 (update_dprintf_command_list): Add agent case.
1949 (agent_printf_command): New function.
1950 (_initialize_breakpoint): Add new commands.
1951 * common/ax.def (printf): New bytecode.
1952 * ax.h (ax_string): Declare.
1953 * ax-gdb.h (gen_printf): Declare.
1954 * ax-gdb.c: Include cli-utils.h, format.h.
1955 (gen_printf): New function.
1956 (maint_agent_print_command): New function.
1957 (_initialize_ax_gdb): Add maint agent-printf command.
1958 * ax-general.c (ax_string): New function.
1959 (ax_print): Add printf disassembly.
1960 * Makefile.in (SFILES): Add format.c
1961 (COMMON_OBS): Add format.o.
1962 * common/format.h: New file.
1963 * common/format.c: New file.
1964 * printcmd.c: Include format.h.
1965 (ui_printf): Call parse_format_string.
1966 * remote.c (remote_state): New field breakpoint_commands.
1967 (PACKET_BreakpointCommands): New enum.
1968 (remote_breakpoint_commands_feature): New function.
1969 (remote_protocol_features): Add new BreakpointCommands entry.
1970 (remote_can_run_breakpoint_commands): New function.
1971 (remote_add_target_side_commands): New function.
1972 (remote_insert_breakpoint): Call it.
1973 (remote_insert_hw_breakpoint): Ditto.
1974 (_initialize_remote): Add new packet configuration for
1975 target-side breakpoint commands.
1976 * target.h (struct target_ops): New field
1977 to_can_run_breakpoint_commands.
1978 (target_can_run_breakpoint_commands): New macro.
1979 * target.c (update_current_target): Handle
1980 to_can_run_breakpoint_commands.
1981
1982 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1983
1984 Execute -ix and -iex only after system and user gdbinit files.
1985 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
1986 processing down after gdbinit files.
1987
1988 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1989
1990 Add fnmatch-gnu module.
1991 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
1992 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
1993 * gnulib/aclocal.m4: Regenerate.
1994 * gnulib/config.in: Regenerate.
1995 * gnulib/configure: Regenerate.
1996 * gnulib/import/dummy.c: Remove.
1997 * gnulib/import/Makefile.am: Regenerate.
1998 * gnulib/import/Makefile.in: Likewise.
1999 * gnulib/import/m4/gnulib-cache.m4: Likewise.
2000 * gnulib/import/m4/gnulib-comp.m4: Likewise.
2001 * gnulib/import/alloca.c: New file.
2002 * gnulib/import/alloca.in.h: Likewise.
2003 * gnulib/import/config.charset: Likewise.
2004 * gnulib/import/fnmatch.c: Likewise.
2005 * gnulib/import/fnmatch.in.h: Likewise.
2006 * gnulib/import/fnmatch_loop.c: Likewise.
2007 * gnulib/import/localcharset.c: Likewise.
2008 * gnulib/import/localcharset.h: Likewise.
2009 * gnulib/import/m4/alloca.m4: Likewise.
2010 * gnulib/import/m4/codeset.m4: Likewise.
2011 * gnulib/import/m4/configmake.m4: Likewise.
2012 * gnulib/import/m4/fcntl-o.m4: Likewise.
2013 * gnulib/import/m4/fnmatch.m4: Likewise.
2014 * gnulib/import/m4/glibc21.m4: Likewise.
2015 * gnulib/import/m4/localcharset.m4: Likewise.
2016 * gnulib/import/m4/locale-fr.m4: Likewise.
2017 * gnulib/import/m4/locale-ja.m4: Likewise.
2018 * gnulib/import/m4/locale-zh.m4: Likewise.
2019 * gnulib/import/m4/mbrtowc.m4: Likewise.
2020 * gnulib/import/m4/mbsinit.m4: Likewise.
2021 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
2022 * gnulib/import/m4/mbstate_t.m4: Likewise.
2023 * gnulib/import/m4/stdbool.m4: Likewise.
2024 * gnulib/import/m4/wchar_h.m4: Likewise.
2025 * gnulib/import/m4/wctype_h.m4: Likewise.
2026 * gnulib/import/m4/wint_t.m4: Likewise.
2027 * gnulib/import/mbrtowc.c: Likewise.
2028 * gnulib/import/mbsinit.c: Likewise.
2029 * gnulib/import/mbsrtowcs-impl.h: Likewise.
2030 * gnulib/import/mbsrtowcs-state.c: Likewise.
2031 * gnulib/import/mbsrtowcs.c: Likewise.
2032 * gnulib/import/ref-add.sin: Likewise.
2033 * gnulib/import/ref-del.sin: Likewise.
2034 * gnulib/import/stdbool.in.h: Likewise.
2035 * gnulib/import/streq.h: Likewise.
2036 * gnulib/import/strnlen1.c: Likewise.
2037 * gnulib/import/strnlen1.h: Likewise.
2038 * gnulib/import/verify.h: Likewise.
2039 * gnulib/import/wchar.in.h: Likewise.
2040 * gnulib/import/wctype.in.h: Likewise.
2041
2042 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2043
2044 Support shell wildcards for 'set auto-load safe-path'.
2045 * auto-load.c: Include fnmatch.h.
2046 (filename_is_in_dir): Rename to ...
2047 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
2048 it. Update function comment. Rename dir_len to pattern_len. New
2049 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
2050 messages. Use gdb_filename_fnmatch.
2051 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
2052 pattern.
2053 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
2054 * defs.h (gdb_filename_fnmatch): New declaration.
2055 * utils.c: Include fnmatch.h.
2056 (gdb_filename_fnmatch): New function.
2057
2058 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
2059
2060 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
2061 `-probe' and `-probe-stap' options.
2062
2063 2012-07-01 Yao Qi <yao@codesourcery.com>
2064
2065 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
2066 always_inserted_off, and always_inserted_enums.
2067 Change always_inserted_mode's type to 'enum auto_boolean'.
2068 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
2069 callers.
2070 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
2071 of add_setshow_enum_cmd.
2072 * infrun.c: Remove can_use_displaced_stepping_auto,
2073 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
2074 can_use_displaced_stepping_enum.
2075 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
2076 (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
2077 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
2078 add_setshow_enum_cmd.
2079
2080 2012-06-30 Doug Evans <dje@google.com>
2081
2082 * dwarf2read.c (signatured_type): Make "per_cu" member first.
2083 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
2084 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
2085
2086 2012-06-29 Doug Evans <dje@google.com>
2087
2088 * linespec.c: #include "stack.h".
2089 (decode_line_with_current_source): Moved here from symtab.c and
2090 renamed from decode_line_spec. All callers updated.
2091 (decode_line_with_last_displayed): Moved here from breakpoint.c and
2092 renamed from decode_line_spec_1. All callers updated.
2093 * linespec.h (decode_line_with_current_source): Move declaration here
2094 from symtab.h and renamed from decode_line_spec.
2095 (decode_line_with_last_displayed): Move declaration here from symtab.h
2096 and renamed from decode_line_spec_1.
2097 * macrocmd.c: #include "linespec.h".
2098 * symtab.c: Remove #include "linespec.h".
2099
2100 2012-06-28 Doug Evans <dje@google.com>
2101
2102 * dwarf2read.c (get_cu_length): New function.
2103 (offset_in_cu_p, error_check_comp_unit_head): Call it.
2104 (create_debug_types_hash_table): Ditto.
2105 (init_cutu_and_read_dies): Ditto.
2106 (init_cutu_and_read_dies_no_follow): Ditto.
2107
2108 * dwarf2read.c (dwarf2_find_base_address): Move definition.
2109
2110 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
2111 (struct abbrev_table): Define.
2112 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
2113 abbrev_table.
2114 (init_cutu_and_read_dies): Update.
2115 (abbrev_table_alloc_abbrev): New function. Replaces
2116 dwarf_alloc_abbrev. All callers updated.
2117 (abbrev_table_add_abbrev): New function.
2118 (abbrev_table_lookup_abbrev): New function. Replaces
2119 dwarf2_lookup_abbrev. All callers updated.
2120 (abbrev_table_read_table): New function. Contents moved here from
2121 dwarf2_read_abbrevs.
2122 (dwarf2_read_abbrevs): Call it.
2123 (abbrev_table_free): New function.
2124 (dwarf2_free_abbrev_table): Call it.
2125
2126 2012-06-28 Stan Shebs <stan@codesourcery.com>
2127
2128 * osdata.c (info_osdata_command): Filter out "Title" columns
2129 from non-MI uses.
2130 * common/linux-osdata.c (struct osdata_type): Add title field.
2131 (osdata_table): Add titles to each entry.
2132 (linux_command_xfer_osdata): Add a column for title data.
2133
2134 2012-06-28 Stan Shebs <stan@codesourcery.com>
2135
2136 Make logging work for MI.
2137 * NEWS: Mention it.
2138 * interps.h (interp_set_logging_ftype): New typedef.
2139 (struct interp_procs): New field set_logging_proc.
2140 (current_interp_set_logging): Declare.
2141 * interps.c (current_interp_set_logging): New function.
2142 * cli/cli-logging.c: Include interps.h.
2143 (set_logging_redirect): Call current_interp_set_logging.
2144 (pop_output_files): Ditto.
2145 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
2146 * mi/mi-console.h (mi_console_set_raw): Declare.
2147 * mi/mi-console.c (mi_console_set_raw): New function.
2148 * mi/mi-interp.c (saved_raw_stdout): New global.
2149 (mi_set_logging): New function.
2150 (_initialize_mi_interp): Add it to interp procs.
2151
2152 2012-06-28 Doug Evans <dje@google.com>
2153
2154 * symtab.c (lookup_symbol_aux_objfile): Use
2155 ALL_OBJFILE_PRIMARY_SYMTABS.
2156
2157 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
2158
2159 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2160
2161 * common/buffer.c: Include inttypes.h and stdint.h.
2162 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
2163
2164 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2165 Pedro Alves <palves@redhat.com>
2166
2167 * gdbthread.h (ALL_THREADS): New macro.
2168 (thread_list): Declare.
2169 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
2170 going, but instead fall through to the stepping handling.
2171 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
2172 the passed in signal. Adjust debug output.
2173 (resume_callback): Rename to ...
2174 (linux_nat_resume_callback): ... this. Pass the thread's last
2175 stop signal, if in "pass" state.
2176 (linux_nat_resume): Adjust to rename.
2177 (stop_wait_callback): New assertion. Don't respawn signals;
2178 instead let the LWP remain with SIGNALLED set.
2179 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
2180 * remote.c (append_pending_thread_resumptions): New.
2181 (remote_vcont_resume): Call it.
2182 * target.h (target_resume): Extend comment.
2183
2184 2012-06-28 Iain Sandoe <iain@codesourcery.com>
2185
2186 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
2187
2188 2012-06-27 Doug Evans <dje@google.com>
2189
2190 * dwarf2read.c (dwarf2_cu): Add ranges_base.
2191 Delete have_addr_base, unused. All uses updated.
2192 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
2193 (dwarf2_get_pc_bounds): Add ranges_base.
2194 (dwarf2_record_block_ranges): Ditto.
2195
2196 2012-06-27 Tom Tromey <tromey@redhat.com>
2197
2198 PR macros/7961:
2199 * varobj.c (varobj_create): Update.
2200 (varobj_set_value): Update.
2201 * tracepoint.c (validate_actionline): Update.
2202 (encode_actions_1): Update.
2203 * parse.c (parse_exp_1): Add 'pc' argument.
2204 (parse_exp_in_context): Add 'pc' argument. Change how
2205 expression_context_pc is set.
2206 (parse_expression): Update.
2207 (parse_field_expression): Update.
2208 * expression.h (parse_exp_1): Update.
2209 * eval.c (parse_to_comma_and_eval): Update.
2210 * breakpoint.c (set_breakpoint_condition): Update.
2211 (update_watchpoint): Update.
2212 (init_breakpoint_sal): Update
2213 (find_condition_and_thread): Update.
2214 (watch_command_1): Update.
2215 (update_breakpoint_locations): Update.
2216 * ada-lang.c (ada_read_renaming_var_value): Update.
2217 (create_excep_cond_exprs): Update.
2218
2219 2012-06-27 Doug Evans <dje@google.com>
2220
2221 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
2222 type units.
2223
2224 2012-06-26 Doug Evans <dje@google.com>
2225
2226 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
2227 prototype.
2228 (error_check_comp_unit_head): New arg abbrev_section. All callers
2229 updated.
2230 (read_and_check_comp_unit_head): Ditto.
2231 (read_and_check_type_unit_head): Ditto.
2232
2233 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
2234
2235 New attribute 'last' for gdb.Symtab_and_line.
2236 * NEWS (Python Scripting): Add entry about the new attribute.
2237 * python/py-symtab.c (salpy_get_last): New function which
2238 implements the get method for the 'last' attribute of
2239 gdb.Symtab_and_line.
2240 (sal_object_getset): Add entry for the 'last' attribute.
2241
2242 2012-06-26 Doug Evans <dje@google.com>
2243
2244 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
2245 (dwo_sections): Add macinfo, macro.
2246 (dwarf2_locate_dwo_sections): Watch for macro sections.
2247 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
2248 All callers updated. Handle DWO files.
2249
2250 * NEWS: Mention new options "set debug dwarf2-read" and
2251 "set debug symtab-create".
2252 * dwarf2read.c (dwarf2_read_debug): New static global.
2253 (dwarf2_build_psymtabs_hard): Add debugging printfs.
2254 (process_queue): Ditto.
2255 (process_full_comp_unit): Ditto.
2256 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
2257 * elfread.c (elf_symfile_read): Add debugging printf.
2258 * minsyms.c (install_minimal_symbols): Ditto.
2259 * psymtab.c (allocate_psymtab): Ditto.
2260 * symfile.c (allocate_symtab): Ditto.
2261 * symtab.c (symtab_create_debug): New global.
2262 (_initialize_symtab): Add new option "set debug symtab-create".
2263 * symtab.h (symtab_create_debug): Declare.
2264
2265 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
2266 (lookup_dwo_type_unit): Ditto.
2267
2268 2012-06-26 Roland McGrath <roland@hack.frob.com>
2269 H.J. Lu <hongjiu.lu@intel.com>
2270
2271 * amd64-linux-nat.c: Include <sys/user.h>.
2272 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
2273 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
2274 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
2275
2276 * configure.ac: Check if the fs_base and gs_base members of
2277 `struct user_regs_struct' exist.
2278 * config.in: Regenerated.
2279 * configure: Likewise.
2280
2281 2012-06-25 Michael Eager <eager@eagercon.com>
2282
2283 PR python/14291
2284 * python/python.c (gdbpy_write): Check for interrupted output.
2285
2286 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
2287
2288 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
2289 register as a stack alignment in ARM mode.
2290
2291 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2292
2293 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
2294 * gnulib/config.in: Regenerate.
2295 * gnulib/configure: Likewise.
2296 * gnulib/import/m4/extensions.m4: Update it.
2297 * gnulib/import/m4/gnulib-common.m4: Likewise.
2298 * gnulib/import/m4/memmem.m4: Likewise.
2299 * gnulib/import/m4/mmap-anon.m4: Likewise.
2300 * gnulib/import/m4/multiarch.m4: Likewise.
2301 * gnulib/import/stdint.in.h: Likewise.
2302
2303 2012-06-24 Yao Qi <yao@codesourcery.com>
2304
2305 * corefile.c (write_memory_with_notification): New.
2306 * gdbcore.h: Declare write_memory_with_notification.
2307 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
2308 'observer_notify_memory_changed' with 'write_memory_with_notification'.
2309 * valops.c (value_assign): Likewise.
2310 * python/py-inferior.c (infpy_write_memory): Call
2311 'write_memory_with_notification'.
2312
2313 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2314
2315 * cc-with-index.sh: Use also -ex "set auto-load no".
2316
2317 2012-06-23 Doug Evans <dje@google.com>
2318
2319 PR 14125
2320 * NEWS: Document additions to .gdb_index.
2321 * dwarf2read.c: #include "gdb/gdb-index.h".
2322 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
2323 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
2324 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
2325 (dwarf2_read_index): Recognize version 7.
2326 (dw2_do_expand_symtabs_matching): New args want_specific_block,
2327 block_kind, domain): All callers updated.
2328 (dw2_find_symbol_file): Handle new index CU values.
2329 (dw2_expand_symtabs_matching): Match symbol kind if requested.
2330 (add_index_entry): New args is_static, kind. All callers updated.
2331 (offset_type_compare, uniquify_cu_indices): New functions
2332 (symbol_kind): New function.
2333 (write_psymtabs_to_index): Remove duplicate CU values.
2334 (write_psymtabs_to_index): Write .gdb_index version 7.
2335
2336 2012-06-22 Joel Brobecker <brobecker@adacore.com>
2337
2338 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
2339 * configure: Regenerate.
2340
2341 2012-06-20 Yao Qi <yao@codesourcery.com>
2342
2343 * python/py-inferior.c: Update comments of infpy_read_memory
2344 and infpy_write_memory.
2345
2346 2012-06-19 Tom Tromey <tromey@redhat.com>
2347
2348 PR exp/9514:
2349 * parser-defs.h (insert_type, insert_type_address_space): Declare.
2350 (push_type_address_space): Remove.
2351 * parse.c (insert_into_type_stack): New function.
2352 (insert_type): Likewise.
2353 (insert_type_address_space): Rename from push_type_address_space.
2354 Insert tp_space_identifier.
2355 * c-exp.y (ptr_operator): New production.
2356 (abs_decl): Use ptr_operator.
2357 (space_identifier): Call insert_type_address_space.
2358 (ptype): Don't use const_or_volatile_or_space_identifier.
2359 (const_or_volatile_noopt): Call insert_type.
2360 (conversion_type_id, conversion_declarator): New productions.
2361 (operator): Use conversion_type_id.
2362
2363 2012-06-18 Doug Evans <dje@google.com>
2364
2365 * symtab.h (minimal_symbol): New member created_by_gdb.
2366 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
2367 created by gdb.
2368 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
2369 (search_symbols): Call it instead of lookup_symbol.
2370 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
2371
2372 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
2373 Adjust address for DW_OP_GNU_addr_index.
2374 * dwarf2expr.h (dwarf_expr_context): Update comment.
2375 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
2376 all callers updated. Handle TLS vars described with
2377 DW_OP_GNU_const_index.
2378 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
2379 and DW_OP_GNU_const_index.
2380 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
2381
2382 * block.c (find_block_in_blockvector): Make explicit the fact that we
2383 ignore GLOBAL_BLOCK.
2384
2385 2012-06-18 Tom Tromey <tromey@redhat.com>
2386
2387 * c-exp.y (operator): Remove trailing space after "delete" and
2388 "delete[]".
2389
2390 2012-06-18 Mark Kettenis <kettenis@gnu.org>
2391 Jan Kratochvil <jan.kratochvil@redhat.com>
2392
2393 Switch i386 and derived targets to ON_STACK.
2394 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
2395 (amd64_dicos_init_abi): Remove its installment.
2396 * dicos-tdep.c (dicos_init_abi): Remove the
2397 set_gdbarch_call_dummy_location call. Update the comment here.
2398 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
2399 (i386_dicos_init_abi): Remove its installment.
2400 * i386-tdep.c (i386_push_dummy_code): New function.
2401 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
2402 i386_push_dummy_code.
2403
2404 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2405
2406 Remove stale dummy frames.
2407 * breakpoint.c: Include dummy-frame.h.
2408 (longjmp_breakpoint_ops): New variable.
2409 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
2410 bp_longjmp_call_dummy.
2411 (bpstat_what, bptype_string, print_one_breakpoint_location)
2412 (init_bp_location): Support bp_longjmp_call_dummy.
2413 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
2414 (set_longjmp_breakpoint_for_call_dummy)
2415 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
2416 functions.
2417 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
2418 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
2419 FIXME comment and extend the other comment for bp_call_dummy.
2420 (set_longjmp_breakpoint_for_call_dummy)
2421 (check_longjmp_breakpoint_for_call_dummy): New declarations.
2422 * dummy-frame.c: Include gdbthread.h.
2423 (pop_dummy_frame_bpt): New function.
2424 (pop_dummy_frame): Call pop_dummy_frame_bpt.
2425 (dummy_frame_discard): New function.
2426 (cleanup_dummy_frames): Update the comment about longjmps.
2427 * dummy-frame.h (dummy_frame_discard): New declaration.
2428 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
2429 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
2430 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
2431 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
2432 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
2433 keep_going if IS_LONGJMP and there is no other reason to stop.
2434
2435 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
2436
2437 * remote-sim.c (sim_command_completer): Initialize
2438 variable 'result'.
2439
2440 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2441
2442 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
2443 * dwarf2loc.c (call_site_parameter_matches): Support
2444 CALL_SITE_PARAMETER_PARAM_OFFSET.
2445 (needs_dwarf_reg_entry_value): Push stub value.
2446 * dwarf2read.c (read_call_site_scope): New variable origin. Support
2447 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
2448 * gdbtypes.h (enum call_site_parameter_kind): New item
2449 CALL_SITE_PARAMETER_PARAM_OFFSET.
2450 (struct call_site.parameter.u): New field param_offset.
2451
2452 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2453
2454 Code cleanup: Generalize call_site.parameter key.
2455 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
2456 variable dwarf_reg. New variable kind_u. Update parameters to
2457 push_dwarf_reg_entry_value.
2458 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
2459 * dwarf2expr.h (enum call_site_parameter_kind)
2460 (union call_site_parameter_u): Forward declarations.
2461 (struct dwarf_expr_context_funcs): Update parameters and their
2462 description for push_dwarf_reg_entry_value.
2463 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
2464 * dwarf2loc.c (call_site_parameter_matches): New function.
2465 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
2466 description. Use call_site_parameter_matches.
2467 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
2468 Update parameters and their description.
2469 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
2470 New variable kind_u. Adjust the caller for updated parameters.
2471 (needs_dwarf_reg_entry_value): Update parameters.
2472 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
2473 instead of attr. Update for the changed fields of struct
2474 call_site_parameter.
2475 * gdbtypes.h: Include dwarf2expr.h.
2476 (enum call_site_parameter_kind): New.
2477 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
2478 fb_offset into new union u.
2479
2480 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
2481
2482 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
2483 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
2484 for x32.
2485
2486 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
2487
2488 * amd64-linux-nat.c (compat_x32_clock_t): New.
2489 (compat_x32_siginfo_t): Likewise.
2490 (compat_x32_siginfo_from_siginfo): Likewise.
2491 (siginfo_from_compat_x32_siginfo): Likewise.
2492 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
2493 and siginfo_from_compat_x32_siginfo for x32.
2494
2495 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
2496
2497 * tracepoint.c (tfile_xfer_partial): Add a lseek.
2498
2499 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
2500
2501 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
2502 instead of gdbarch_ptr_bit.
2503 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
2504 (amd64_supply_native_gregset): Likewise.
2505 (amd64_collect_native_gregset): Likewise.
2506 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
2507 (amd64_supply_xsave): Likewise.
2508 (amd64_collect_fxsave): Likewise.
2509 (amd64_collect_xsave): Likewise.
2510
2511 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
2512
2513 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
2514 (amd64_linux_read_description): Check DS segment register for
2515 x32 process.
2516
2517 2012-06-15 Tom Tromey <tromey@redhat.com>
2518
2519 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
2520 init_cutu_and_read_dies.
2521
2522 2012-06-15 Iain Sandoe <iain@codesourcery.com>
2523
2524 * MAINTAINERS (Write After Approval): Add myself to the list.
2525
2526 2012-06-15 Tom Tromey <tromey@redhat.com>
2527
2528 * valops.c (value_find_oload_method_list): Now static.
2529 * value.h (value_find_oload_method_list): Don't declare.
2530
2531 2012-06-15 Tom Tromey <tromey@redhat.com>
2532
2533 * valops.c (find_overload_match): Use value_ind.
2534
2535 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
2536
2537 * infrun.c (handle_inferior_event): Correct indentation.
2538
2539 2012-06-14 Doug Evans <dje@google.com>
2540
2541 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
2542 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
2543 All uses updated.
2544 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
2545 updated. Handle DEBUG_LOC_START_LENGTH.
2546 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
2547 (loclist_describe_location): Ditto.
2548
2549 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
2550
2551 PR backtrace/13866
2552 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
2553 after hiding inline functions.
2554
2555 2012-06-13 Joel Brobecker <brobecker@adacore.com>
2556
2557 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
2558 _initialize_inf_ttrace.
2559
2560 2012-06-13 Joel Brobecker <brobecker@adacore.com>
2561
2562 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
2563 _initialize_hppa_hpux_nat.
2564
2565 2012-06-13 Joel Brobecker <brobecker@adacore.com>
2566
2567 * remote-sim.c (sim_command_completer): Change type of return
2568 value to "VEC (char_ptr) *". Adjust implementation accordingly.
2569
2570 2012-06-13 Mark Kettenis <kettenis@gnu.org>
2571 Jan Kratochvil <jan.kratochvil@redhat.com>
2572
2573 PR tdep/14222
2574 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
2575 stack on a 16-byte boundary.
2576
2577 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
2578
2579 * jit.c (finalize_symtab): Set function's return type to 'void' by
2580 default.
2581
2582 2012-06-13 Mark Kettenis <kettenis@gnu.org>
2583 H.J. Lu <hongjiu.lu@intel.com>
2584
2585 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
2586 Move bits common to both the classic LP64 and the new x32 ILP32
2587 ABI here.
2588 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
2589 (amd64_x32_linux_init_abi): New function.
2590 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
2591 subtype.
2592
2593 * i386-tdep.h (i386_pseudo_register_name): New prototype.
2594 * i386-tdep.c (i386_pseudo_register_name): Make public.
2595 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
2596 * amd64-tdep.c (amd64_dword_names): Add "eip".
2597 (amd64_x32_pseudo_register_type): New function
2598 (amd64_x32_init_abi): New function.
2599
2600 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2601
2602 PR build/14003
2603 * inferior.h (struct inferior_suspend_state): Comment out.
2604 (struct inferior): Comment out the field suspend.
2605 * infrun.c (struct infcall_suspend_state): Comment out the field
2606 inferior_suspend.
2607 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
2608 out its assignment.
2609
2610 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2611
2612 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
2613 * c-exp.y (classify_inner_name): Remove caller assumptions in the
2614 function comment. Return ERROR for unresolved cases. Implement
2615 returning proper NAME.
2616 (yylex): Accept also NAME from classify_inner_name.
2617 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
2618 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
2619 LOC_TYPEDEF type.
2620 * cp-support.h (cp_lookup_nested_type): Update its declaration.
2621
2622 2012-06-13 Tom Tromey <tromey@redhat.com>
2623
2624 * breakpoint.c (condition_completer): New function.
2625 (_initialize_breakpoint): Use it.
2626 * value.c (complete_internalvar): New function.
2627 * value.h (complete_internalvar): Declare.
2628
2629 2012-06-13 Tom Tromey <tromey@redhat.com>
2630
2631 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
2632 * breakpoint.c (catch_syscall_completer): Return a VEC.
2633 * cli/cli-cmds.c (complete_command): Update.
2634 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
2635 (complete_on_enum): Likewise.
2636 * command.h: Include gdb_vecs.h.
2637 (completer_ftype): Change return type.
2638 (complete_on_cmdlist, complete_on_enum): Likewise.
2639 * completer.c (noop_completer, filename_completer)
2640 (location_completer): Return a VEC.
2641 (add_struct_fields): Remove 'nextp' argument. Change 'output'
2642 to a VEC.
2643 (expression_completer, complete_line_internal, complete_line)
2644 (command_completer): Return a VEC.
2645 (gdb_completion_word_break_characters, line_completion_function):
2646 Update.
2647 * completer.h: Include gdb_vecs.h.
2648 (complete_line, noop_completer, filename_completer)
2649 (expression_completer, location_completer, command_completer):
2650 Update.
2651 * f-lang.c (f_word_break_characters): Return a VEC.
2652 * interps.c (interpreter_completer): Return a VEC.
2653 * language.h (struct language_defn)
2654 <la_make_symbol_completion_list>: Return a VEC.
2655 * python/py-cmd.c (cmdpy_completer): Return a VEC.
2656 * symtab.c (free_completion_list): Take a VEC.
2657 (return_val_size, return_val_index): Remove.
2658 (return_val): Now a VEC.
2659 (completion_list_add_name): Update.
2660 (default_make_symbol_completion_list_break_on)
2661 (default_make_symbol_completion_list, make_symbol_completion_list)
2662 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
2663 Return a VEC.
2664 (add_filename_to_list): Update.
2665 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
2666 <list>: Now a VEC.
2667 (maybe_add_partial_symtab_filename): Update.
2668 (make_source_files_completion_list): Return a VEC.
2669 * symtab.h (default_make_symbol_completion_list_break_on)
2670 (default_make_symbol_completion_list, make_symbol_completion_list)
2671 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
2672 (make_source_files_completion_list): Update.
2673
2674 2012-06-13 Tom Tromey <tromey@redhat.com>
2675
2676 * breakpoint.c (add_catch_command): Use completer_ftype.
2677 * breakpoint.h: Include command.h.
2678 (add_catch_command): Use completer_ftype.
2679 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
2680 * cli/cli-decode.h (struct cmd_list_element) <completer>:
2681 Use completer_ftype.
2682 * command.h (completer_ftype): New typedef.
2683 (set_cmd_completer): Use it.
2684 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
2685 completer_ftype.
2686
2687 2012-06-13 Pedro Alves <palves@redhat.com>
2688
2689 Partial revert of previous change.
2690
2691 * serial.c (scb_base): New global.
2692 (serial_for_fd): New.
2693 (serial_open, serial_fdopen_ops): Link new serial in open serials
2694 chain.
2695 (do_serial_close): Unlink serial from the open serials chain.
2696
2697 2012-06-12 Pedro Alves <palves@redhat.com>
2698
2699 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
2700 threads here.
2701 (prepare_for_detach): No longer context switch here in non-stop
2702 mode.
2703 (fetch_inferior_event): Ditto.
2704 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
2705 to the event thread before removing breakpoints. Switch to the
2706 event thread before inserting breakpoints and resuming.
2707 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
2708 event thread before resuming.
2709 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
2710 Switch to the event thread before removing breakpoints.
2711
2712 2012-06-12 Eli Zaretskii <eliz@gnu.org>
2713
2714 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
2715 special characters correctly for the Windows shells. See
2716 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
2717 report.
2718 [!__MINGW32__]: Remove extra double quote character from special
2719 characters.
2720
2721 2012-06-11 Stan Shebs <stan@codesourcery.com>
2722
2723 * ui-out.h: Remove #if 0 declarations.
2724 * ui-out.c: Remove #if 0 functions.
2725
2726 2012-06-11 Pedro Alves <palves@redhat.com>
2727
2728 * ser-base.c (run_async_handler_and_reschedule): New.
2729 (fd_event, push_event): Use it.
2730 * serial.c (serial_open, serial_fdopen_ops): Set the initial
2731 reference count to 1.
2732 (do_serial_close): Set the bufp field to NULL. Use serial_unref
2733 instead of xfree.
2734 (serial_is_open, serial_ref, serial_unref): New.
2735 * serial.h (serial_open): Adjust comment.
2736 (serial_is_open): Declare.
2737 (serial_close): Adjust comment.
2738 (serial_ref, serial_unref) Declare.
2739 (struct serial): New field 'refcnt'.
2740
2741 2012-06-11 Pedro Alves <palves@redhat.com>
2742
2743 Remove #if 0'd "connect" command, and unnecessary associated
2744 refcounting and serial reuse bits.
2745
2746 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
2747 * serial.c (last_serial_opened): Delete.
2748 (scb_base): Delete.
2749 (serial_open): Adjust.
2750 (serial_for_fd): Delete.
2751 (serial_fdopen_ops, do_serial_close): Adjust.
2752 (serial_fdopen_ops): Adjust.
2753
2754 2012-06-11 Pedro Alves <palves@redhat.com>
2755
2756 * serial.c (do_serial_close): Remove early return when SCB is
2757 null.
2758
2759 2012-06-11 Tom Tromey <tromey@redhat.com>
2760
2761 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
2762
2763 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2764
2765 Fix regression by the "ambiguous linespec" series.
2766 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
2767 get_last_displayed_symtab and get_last_displayed_line and depending
2768 on CURSAL.
2769
2770 2012-06-11 Tom Tromey <tromey@redhat.com>
2771
2772 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
2773 (dw2_find_symbol_file): Use it.
2774
2775 2012-06-11 Michael Eager <eager@eagercon.com>
2776
2777 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
2778 * mips-linux-tdep.h (mips_signals): New
2779
2780 2012-06-11 Tom Tromey <tromey@redhat.com>
2781
2782 * infrun.c (handle_inferior_event)
2783 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
2784 breakpoint.
2785 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
2786 exception logic in all cases. Update comments.
2787 (insert_longjmp_resume_breakpoint): Set the exception resume
2788 breakpoint.
2789
2790 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
2791
2792 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
2793
2794 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
2795
2796 * valarith.c (binop_types_user_defined_p): Fix a typo.
2797
2798 2012-06-08 Yao Qi <yao@codesourcery.com>
2799 Chung-Lin Tang <cltang@codesourcery.com>
2800
2801 * arch-utils.c (default_return_in_first_hidden_param_p): New.
2802 * arch-utils.h: Declare.
2803 * gdbarch.sh: Add return_in_first_hidden_param_p.
2804 * gdbarch.c, gdbarch.h: Regenerated.
2805 * infcall.c (call_function_by_hand): Call
2806 gdbarch_return_in_first_hidden_param_p instead of
2807 language_pass_by_reference.
2808
2809 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
2810 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
2811 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
2812 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
2813 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
2814 `cplus_return_struct_by_reference'.
2815 (tic6x_return_value): Handle language cplusplus.
2816 (tic6x_return_in_first_hidden_param_p): New.
2817 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
2818
2819 2012-06-07 Doug Evans <dje@google.com>
2820
2821 * dwarf2read.c (dwarf2_cu): Add comment.
2822
2823 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
2824
2825 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
2826 variable.
2827 (mips_eabi_push_dummy_call): Likewise.
2828 (mips_n32n64_push_dummy_call): Likewise.
2829 (mips_o32_push_dummy_call): Likewise.
2830 (mips_o64_push_dummy_call): Likewise.
2831
2832 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
2833
2834 * mips-tdep.c (mips_convert_register_p): Correct coding style.
2835
2836 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
2837
2838 * mips-tdep.c (mips_pseudo_register_type): Use
2839 mips_float_register_p.
2840
2841 2012-06-06 Pedro Alves <palves@redhat.com>
2842
2843 * infrun.c (handle_inferior_event): Remove calls to
2844 reinit_frame_cache that follow a context_switch call.
2845
2846 2012-06-06 Pedro Alves <palves@redhat.com>
2847
2848 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
2849 context_switch and remove stale comment.
2850
2851 2012-06-06 Pedro Alves <palves@redhat.com>
2852
2853 * infrun.c (struct execution_control_state): Remove
2854 `new_thread_event' field.
2855 (handle_inferior_event): Simplify new threads handling; don't
2856 resume the inferior if we find a new thread.
2857
2858 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
2859
2860 * NEWS: Document the deprecation of SH's 'regs' command.
2861 * inferior.h (all_registers_info): Add function declaration.
2862 * sh-tdep.c (sh_show_regs): Remove variable.
2863 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
2864 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
2865 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
2866 (sh_show_regs_command): Remove functions.
2867 (sh_gdbarch_init): Don't set sh_show_regs.
2868 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
2869 'info all-registers'.
2870 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
2871 (sh64_show_regs): Remove functions.
2872 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
2873
2874 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2875
2876 * configure.ac: Move development=true below AC_INIT.
2877 * configure: Regenerate.
2878
2879 2012-06-05 Stan Shebs <stan@codesourcery.com>
2880
2881 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
2882 gdb_stdout.
2883
2884 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
2885
2886 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
2887 argument as ssize_t.
2888 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
2889 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
2890 * target.c (target_read_stack, target_write_memory)
2891 (target_write_raw_memory): Likewise.
2892 * target.h (target_read_stack, target_write_memory)
2893 (target_write_raw_memory): Likewise.
2894
2895 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2896
2897 * symfile-mem.c: Change gdb_static_assert to ssize_t.
2898 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
2899 * target.c (target_read_memory): Change LEN to ssize_t.
2900 * target.h (target_read_memory): Change LEN to ssize_t.
2901
2902 2012-06-05 Pedro Alves <palves@redhat.com>
2903
2904 PR backtrace/13866
2905
2906 * breakpoint.c (until_break_command): Only fetch the selected
2907 frame after decode_line_1.
2908
2909 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2910
2911 * solib-svr4.c (enable_break): Don't fallback to setting the solib
2912 event breakpoint at _start, __start or main if a program
2913 interpreter is not found.
2914
2915 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2916
2917 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
2918 Add declaration.
2919 * windows-tdep.c: #include "objfiles.h".
2920 (windows_iterate_over_objfiles_in_search_order): New function.
2921 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
2922 iterate_over_objfiles_in_search_order gdbarch method to
2923 windows_iterate_over_objfiles_in_search_order.
2924 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
2925
2926 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2927
2928 * gdbarch.sh: Add generation of
2929 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
2930 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
2931 (iterate_over_objfiles_in_search_order): New gdbarch method.
2932 * gdbarch.h, gdbarch.c: Regenerate.
2933 * objfiles.h (default_iterate_over_objfiles_in_search_order):
2934 Add declaration.
2935 * objfiles.c (default_iterate_over_objfiles_in_search_order):
2936 New function.
2937 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
2938 out of lookup_symbol_aux_symtabs.
2939 (lookup_symbol_aux_symtabs): Replace extracted-out code by
2940 call to lookup_symbol_aux_objfile.
2941 (struct global_sym_lookup_data): New type.
2942 (lookup_symbol_global_iterator_cb): New function.
2943 (lookup_symbol_global): Search for symbol using
2944 gdbarch_iterate_over_objfiles_in_search_order and
2945 lookup_symbol_global_iterator_cb.
2946 * findvar.c (struct minsym_lookup_data): New type.
2947 (minsym_lookup_iterator_cb): New function.
2948 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
2949 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
2950 and minsym_lookup_iterator_cb.
2951
2952 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2953
2954 Revert the following patch:
2955 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
2956 try locating the symbol in the symbol's own objfile first, before
2957 extending the search to all objfiles.
2958 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
2959 out of lookup_symbol_aux_symtabs.
2960 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
2961 Replace extracted-out code by call to lookup_symbol_aux_objfile.
2962 Do not search EXCLUDE_OBJFILE.
2963 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
2964 (lookup_symbol_global): Search for matches in the block's objfile
2965 first, before searching all other objfiles.
2966
2967 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2968
2969 * breakpoint.c (find_condition_and_thread): Stop parsing
2970 as soon as the first invalid keyword is found.
2971
2972 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2973
2974 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
2975
2976 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2977
2978 * config/djgpp/djcheck.sh: Add copyright header.
2979
2980 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2981
2982 * copyright.py (update_files, main): Fix path to update-copyright
2983 script.
2984
2985 2012-06-05 Joel Brobecker <brobecker@adacore.com>
2986
2987 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
2988 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
2989 for which a reminder to update by hand is printed.
2990
2991 2012-06-04 Doug Evans <dje@google.com>
2992
2993 * buildsym.c (make_blockvector): Add comment.
2994
2995 2012-06-04 Pedro Alves <palves@redhat.com>
2996
2997 * arch-utils.c (default_gdb_signal_from_target): Delete.
2998 * arch-utils.h (default_gdb_signal_from_target): Delete.
2999 * corelow.c (core_open) <signal mapping>: Extended comment. Check
3000 gdbarch_gdb_signal_from_target_p.
3001 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
3002 predicate).
3003 * gdbarch.h: Regenerate.
3004 * gdbarch.c: Regenerate.
3005
3006 2012-06-04 Pedro Alves <palves@redhat.com>
3007
3008 * gdbarch.sh (gdb_signal_from_target): Mention that the
3009 implementation of the method must be host independent.
3010 * gdbarch.h: Regenerate.
3011
3012 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3013
3014 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
3015 parameters.
3016 (target_read_memory_bfd): New function.
3017 (symbol_file_add_from_memory): Use it.
3018
3019 2012-06-03 Doug Evans <dje@google.com>
3020
3021 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
3022 of primary symtab.
3023 (basic_lookup_transparent_type): Ditto.
3024
3025 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
3026 (ALL_PRIMARY_SYMTABS): Use it.
3027 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
3028 * dwarf2read.c (dw2_find_symbol_file): Ditto.
3029 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
3030 * symtab.c (lookup_symbol_aux_objfile): Ditto.
3031 (basic_lookup_transparent_type): Ditto.
3032
3033 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
3034
3035 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
3036 it to optimize resolution of demangled name.
3037
3038 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3039
3040 * configure.ac (development): Define new variable.
3041 Call AC_CHECK_LIB for mcheck if $development.
3042 (ERROR_ON_WARNING): Enable it by default only if $development.
3043 * config.in: Regenerate.
3044 * configure: Regenerate.
3045
3046 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
3047
3048 * target.c (target_read_memory): Make LEN argument as size_t.
3049 * target.h (target_read_memory): Likewise.
3050
3051 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3052
3053 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
3054
3055 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
3056
3057 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
3058 BookE interface for PowerPC server processors if not available
3059 in the Linux Kernel.
3060
3061 2012-05-31 Keith Seitz <keiths@redhat.com>
3062
3063 * linespec.c (decode_objc): Add cleanup to free
3064 INFO.FILE_SYMTABS.
3065 (find_linespec_symbols): Add cleanup to free CLASSES.
3066 * symfile.c (find_separate_debug_file_by_debuglink): Add
3067 cleanup to free DEBUGLINK.
3068 * ui-out.c (clear_header_list): No need to check if
3069 HEADER_NEXT.COLHDR is NULL.
3070 Free HEADER_NEXT.COL_NAME.
3071
3072 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
3073
3074 * ada-lang.c (standard_lookup): Prevent uninitialized variable
3075 warning.
3076
3077 2012-05-30 Jeff Kenton <jkenton@tilera.com>
3078
3079 * configure.host (gdb_host_cpu): Handle tilegx*.
3080 (gdb_host): Handle tilegx-*-linux*.
3081 * tilegx-linux-nat.c: New file.
3082 * config/tilegx/linux.mh: New file.
3083
3084 2012-05-30 Jeff Kenton <jkenton@tilera.com>
3085
3086 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
3087 tilegx-linux-tdep.o.
3088 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
3089 tilegx-linux-tdep.c.
3090 * configure.tgt: Handle tilegx-*-linux*.
3091 * tilegx-tdep.h: New file.
3092 * tilegx-tdep.c: New file.
3093 * tilegx-linux-tdep.c: New file.
3094 * regformats/reg-tilegx.dat: New file.
3095
3096 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
3097
3098 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
3099 accounting of hw watchpoints on ppc.
3100
3101 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
3102
3103 * source.c (openp): Expand tilde in path entries.
3104
3105 2012-05-29 Doug Evans <dje@google.com>
3106
3107 * buildsym.c (block_compar): Fix comment.
3108 (end_symtab): Fix and clarify some comments.
3109
3110 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
3111 cleanup_undefined_types.
3112 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
3113 All callers updated.
3114
3115 2012-05-29 Tom Tromey <tromey@redhat.com>
3116
3117 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
3118 fails.
3119 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
3120 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
3121 fails.
3122 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
3123 fails.
3124
3125 2012-05-29 Tristan Gingold <gingold@adacore.com>
3126
3127 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
3128 (struct darwin_info): ... New struct.
3129 (solib_darwin_pspace_data): New variable.
3130 (darwin_pspace_data_cleanup): New function.
3131 (get_darwin_info): Likewise.
3132 (darwin_dyld_version_ok, darwin_load_image_infos)
3133 (darwin_solib_get_all_image_info_addr_at_init)
3134 (darwin_solib_read_all_image_info_addr): Add info argument.
3135 Adjust code.
3136 (darwin_current_sos): Use per pspace structure.
3137 (darwin_solib_create_inferior_hook): Likewise.
3138 (darwin_clear_solib): Likewise.
3139 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
3140
3141 2012-05-28 Pedro Alves <palves@redhat.com>
3142
3143 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
3144 block that uses them. Clear ecss before handling each event.
3145
3146 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3147
3148 * solib-svr4.c (svr4_current_sos): New comment on
3149 svr4_current_sos_via_xfer_libraries fall back.
3150
3151 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3152
3153 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
3154 it as a fallback for TYPE_IS_OPAQUE.
3155 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
3156 symbols for lookup_symbol.
3157
3158 2012-05-24 John Steele Scott <toojays@toojays.net>
3159
3160 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
3161 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
3162 (producer_is_gxx_lt_4_6): Move the checking and caching to...
3163 (check_producer): ... this new function, which also checks for ICC
3164 and caches the result.
3165 (producer_is_icc): New function.
3166 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
3167 producer was ICC.
3168
3169 2012-05-24 Pedro Alves <palves@redhat.com>
3170
3171 PR gdb/7205
3172
3173 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
3174 (default_gdb_signal_to_target): ... this. Add comment.
3175 (default_gdb_signal_from_host): Rename to ...
3176 (default_gdb_signal_from_target): ... this. Add comment.
3177 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
3178 (default_gdb_signal_to_target): ... this.
3179 (default_gdb_signal_from_host): Rename to ...
3180 (default_gdb_signal_from_target): ... this.
3181 * corelow.c (core_open): Adjust to naming change. Replace comment.
3182 * gdbarch.sh (gdb_signal_from_host): Rename to ...
3183 (gdb_signal_from_target): ... this. Adjust to
3184 default_gdb_signal_from_host naming change. Extend comment.
3185 (gdb_signal_to_host): Rename to ...
3186 (gdb_signal_to_target): ... this. Adjust to
3187 default_gdb_signal_to_host naming change.
3188 * gdbarch.h, gdbarch.c: Renegerate.
3189
3190 2012-05-24 Pedro Alves <palves@redhat.com>
3191
3192 PR gdb/7205
3193
3194 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
3195
3196 2012-05-24 Pedro Alves <palves@redhat.com>
3197
3198 PR gdb/7205
3199
3200 Replace target_signal with gdb_signal throughout.
3201
3202 2012-05-24 Pedro Alves <palves@redhat.com>
3203
3204 PR tui/14159
3205
3206 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
3207 string, instead of reusing the va_list argument.
3208
3209 2012-05-24 Tom Tromey <tromey@redhat.com>
3210
3211 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
3212 Remove.
3213
3214 2012-05-23 Doug Evans <dje@google.com>
3215
3216 * symtab.c (search_symbols): Formatting fixes.
3217 (print_symbol_info): Formatting fixes.
3218
3219 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
3220 int64_t change to leb128 API.
3221 (read_encoded_value, decode_frame_entry_1): Ditto.
3222 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
3223 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
3224 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
3225 (execute_stack_op): Ditto.
3226 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
3227 (safe_read_uleb128, safe_read_sleb128): Ditto.
3228 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
3229 (dwarf2_compile_expr_to_ax): Ditto.
3230 (locexpr_describe_location_piece): Ditto.
3231 (disassemble_dwarf_expression): Ditto.
3232 (locexpr_describe_location_1): Ditto.
3233
3234 2012-05-23 Stan Shebs <stan@codesourcery.com>
3235 Kwok Cheung Yeung <kcy@codesourcery.com>
3236
3237 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
3238 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
3239 (mi-cmd-info.o): New rule.
3240 * osdata.h (info_osdata_command): New declaration.
3241 * osdata.c (info_osdata_command): Change to non-static.
3242 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
3243 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
3244 * mi/mi-cmd-info.c: New file.
3245
3246 2012-05-23 Doug Evans <dje@google.com>
3247
3248 * symtab.c (search_symbols): Pass NULL for file_matcher to
3249 expand_symtabs_matching if there are no files to match.
3250
3251 * gdbtypes.c (lookup_typename): Simplify.
3252
3253 2012-05-23 Pedro Alves <palves@redhat.com>
3254
3255 * arch-utils.h (default_target_signal_to_host): Delete.
3256 * arch-utils.c (default_target_signal_to_host): Delete.
3257 * gdbarch.sh (target_signal_to_host): Remove.
3258 * gdbarch.h, gdbarch.c: Regenerate.
3259
3260 2012-05-22 Doug Evans <dje@google.com>
3261
3262 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
3263 "const gdb_byte *".
3264 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
3265 (execute_cfa_program): Update to match API of leb128 functions.
3266 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
3267 "const gdb_byte *".
3268 (read_unsigned_leb128, read_signed_leb128): Delete.
3269 (read_initial_length): Change type of buf argument to
3270 "const gdb_byte *".
3271 (read_encoded_value): Update to match API of leb128 functions.
3272 (decode_frame_entry): Change result to "const gdb_byte *", and
3273 similarly for "start" parameter.
3274 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
3275 (dwarf2_build_frame_info): Change local frame_ptr to
3276 "const gdb_byte *".
3277 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
3278 read_uleb128, read_sleb128. All callers updated.
3279 (safe_skip_leb128): New function.
3280 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
3281 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
3282 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
3283 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
3284 read_uleb128, read_sleb128.
3285 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
3286 (execute_stack_op): Update to match API of leb128 functions.
3287 * dwarf2expr.h: #include "leb128.h".
3288 (read_uleb128, read_sleb128): Delete.
3289 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
3290 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
3291 * dwarf2loc.c (debug_loc_kind): New enum.
3292 (decode_debug_loc_addresses): New function.
3293 (decode_debug_loc_dwo_addresses): New function.
3294 (dwarf2_find_location_expression): Rewrite.
3295 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
3296 (locexpr_describe_location_piece): Ditto.
3297 (disassemble_dwarf_expression): Ditto.
3298 (locexpr_describe_location_1): Ditto.
3299 (loclist_describe_location): Rewrite.
3300 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
3301 * dwarf2read.c (die_reader_specs): New member "buffer_end".
3302 (dwarf2_section_buffer_overflow_complaint): Renamed from
3303 dwarf2_macros_too_long_complaint. All callers updated.
3304 (skip_leb128): Delete.
3305 (init_cu_die_reader): Initialize reader->buffer_end.
3306 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
3307 (skip_form_bytes): New arg buffer_end. All callers updated.
3308 Replace call to skip_leb128 with gdb_skip_leb128.
3309 (skip_unknown_opcode): New arg mac_end. All callers updated.
3310 (fill_in_loclist_baton): Initialize baton->from_dwo.
3311
3312 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
3313
3314 * mips-linux-nat.c (mips_linux_read_description): Use a more
3315 verbose error message.
3316
3317 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
3318
3319 * NEWS: Add MIPS/Linux DSP support.
3320 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
3321 (SIGCONTEXT_DSPCTL): New macro.
3322 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
3323 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
3324 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
3325 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
3326 (N64_SIGCONTEXT_HI3): Likewise.
3327 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
3328 (N64_SIGCONTEXT_LO3): Likewise.
3329 (N64_SIGCONTEXT_DSPCTL): Likewise.
3330 (N64_SIGCONTEXT_FPCSR): Clarify definition.
3331 (mips_linux_o32_sigframe_init): Handle DSP registers.
3332 (mips_linux_n32n64_sigframe_init): Likewise.
3333
3334 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
3335
3336 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
3337 call to abort.
3338
3339 2012-05-22 Pedro Alves <palves@redhat.com>
3340
3341 * target.h (store_waitstatus): Move declaration ...
3342 * inf-child.h (store_waitstatus): ... here.
3343 * target.c: Move inclusion of gdb_wait.h, and ...
3344 (store_waitstatus): ... this ...
3345 * inf-child.c: ... here.
3346 * linux-nat.c: Include inf-child.h.
3347 * rs6000-nat.c: Include inf-child.h.
3348 * spu-linux-nat.c: Include inf-child.h.
3349
3350 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
3351
3352 * tracepoint.c (start_tracing): Add missing i18n markup.
3353 (stop_tracing, set_trace_user): Ditto.
3354 (set_trace_notes, set_trace_stop_notes): Ditto.
3355
3356 2012-05-21 Tom Tromey <tromey@redhat.com>
3357
3358 PR c++/7173:
3359 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
3360 types.
3361 * value.h (value_cast_pointers): Update.
3362 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
3363 (value_cast): Update.
3364 (update_search_result): New function.
3365 (do_search_struct_field): New, from search_struct_field. Check
3366 for ambiguous results.
3367 (search_struct_field): Rewrite.
3368 * infcall.c (value_arg_coerce): Update.
3369 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
3370 value_cast_pointers.
3371 * ada-lang.c (ada_convert_actual): Update.
3372
3373 2012-05-21 Tom Tromey <tromey@redhat.com>
3374
3375 * macroexp.c (macro_stringify): Terminate the string.
3376
3377 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3378
3379 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
3380 Describe it.
3381 * auto-load.c (auto_load_expand_dir_vars): New function.
3382 (auto_load_safe_path_vec_update): Use it, remove the
3383 substitute_path_component call thanks to it.
3384 (auto_load_objfile_script): Remove the debug_file_directory processing.
3385 Use auto_load_expand_dir_vars, remove the substitute_path_component
3386 call thanks to it.
3387 * configure: Regenerate.
3388 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
3389 path. Escape $ also for $debugdir.
3390 (--with_auto_load_safe_path): Escape $ also for $debugdir.
3391 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
3392
3393 2012-05-20 Doug Evans <dje@google.com>
3394
3395 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
3396 before use. Check for symtab->includes == NULL before scanning it.
3397
3398 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
3399
3400 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
3401
3402 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
3403
3404 * NEWS: Add microMIPS support and "set mips compression",
3405 "show mips compression" commands.
3406 * mips-tdep.h (mips_isa): New enum.
3407 (gdbarch_tdep): Add mips_isa.
3408 (mips_pc_is_mips16): Update prototype.
3409 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
3410 * mips-tdep.c (mips_compression_mips16): New variable.
3411 (mips_compression_micromips): Likewise.
3412 (mips_compression_strings): Likewise.
3413 (mips_compression_string): Likewise.
3414 (is_mips16_isa, is_micromips_isa): New functions.
3415 (is_mips16_addr): Rename to...
3416 (is_compact_addr): ... this.
3417 (unmake_mips16_addr): Likewise to...
3418 (unmake_compact_addr): ... this.
3419 (make_mips16_addr): Likewise to...
3420 (make_compact_addr): ... this.
3421 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
3422 functions.
3423 (mips_elf_make_msymbol_special): Handle microMIPS code.
3424 (msymbol_is_special): Rename to...
3425 (msymbol_is_mips16): ... this.
3426 (mips_make_symbol_special, mips_pc_is_mips16): Update
3427 accordingly.
3428 (msymbol_is_mips, msymbol_is_micromips): New functions.
3429 (mips16_to_32_reg): Rename to...
3430 (mips_reg3_to_reg): ... this.
3431 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
3432 (mips_pc_isa): Likewise.
3433 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
3434 code.
3435 (mips_fetch_instruction): Pass return status instead of printing
3436 an error message if requested. Handle microMIPS code. Bail out
3437 on an invalid ISA.
3438 (micromips_op): New macro.
3439 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
3440 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
3441 (b6s4_op, b7s3_reg): Likewise.
3442 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
3443 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
3444 (mips_insn_size): New function.
3445 (mips32_next_pc): Update mips_fetch_instruction call.
3446 (micromips_relative_offset7): New function.
3447 (micromips_relative_offset10): Likewise.
3448 (micromips_relative_offset16): Likewise.
3449 (micromips_pc_insn_size): Likewise.
3450 (micromips_bc1_pc): Likewise.
3451 (micromips_next_pc): Likewise.
3452 (unpack_mips16): Update mips_fetch_instruction call.
3453 (extended_mips16_next_pc): Update according to change to
3454 mips16_to_32_reg.
3455 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
3456 code.
3457 (mips16_scan_prologue): Update mips_fetch_instruction call.
3458 Update according to change to mips16_to_32_reg.
3459 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
3460 (mips_insn16_frame_base_sniffer): Likewise.
3461 (micromips_decode_imm9): New function.
3462 (micromips_scan_prologue): Likewise.
3463 (mips_micro_frame_cache): Likewise.
3464 (mips_micro_frame_this_id): Likewise.
3465 (mips_micro_frame_prev_register): Likewise.
3466 (mips_micro_frame_sniffer): Likewise.
3467 (mips_micro_frame_unwind): New variable.
3468 (mips_micro_frame_base_address): New function.
3469 (mips_micro_frame_base): New variable.
3470 (mips_micro_frame_base_sniffer): New function.
3471 (mips32_scan_prologue): Update mips_fetch_instruction call.
3472 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
3473 rather than for MIPS16.
3474 (mips_insn32_frame_base_sniffer): Likewise.
3475 (mips_addr_bits_remove): Handle microMIPS code.
3476 (deal_with_atomic_sequence): Rename to...
3477 (mips_deal_with_atomic_sequence): ... this. Update the type
3478 of the variable used to hold an instruction. Remove the ISA bit
3479 check. Update mips_fetch_instruction call.
3480 (micromips_deal_with_atomic_sequence): New function.
3481 (deal_with_atomic_sequence): Likewise.
3482 (mips_about_to_return): Handle microMIPS code. Update
3483 mips_fetch_instruction call.
3484 (heuristic_proc_start): Check for the standard MIPS ISA rather
3485 than for MIPS16. Update mips_pc_is_mips16 and
3486 mips_fetch_instruction calls. Handle microMIPS code.
3487 (mips_push_dummy_code): Handle microMIPS code.
3488 (mips_eabi_push_dummy_call): Likewise.
3489 (mips_o32_return_value): Update mips_pc_is_mips16 call.
3490 (mips_o64_push_dummy_call): Handle microMIPS code.
3491 (mips_o64_return_value): Update mips_pc_is_mips16 call.
3492 (is_delayed): Remove function.
3493 (mips_single_step_through_delay): Replace the call to is_delayed
3494 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
3495 Handle microMIPS code.
3496 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
3497 microMIPS code.
3498 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
3499 call.
3500 (micromips_in_function_epilogue_p): New function.
3501 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
3502 call.
3503 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
3504 Handle microMIPS.
3505 (gdb_print_insn_mips): Likewise.
3506 (mips_breakpoint_from_pc): Likewise.
3507 (mips_remote_breakpoint_from_pc): New function.
3508 (mips32_instruction_has_delay_slot): Simplify making use of the
3509 updated mips_fetch_instruction interface.
3510 (micromips_instruction_has_delay_slot): New function.
3511 (mips16_instruction_has_delay_slot): Simplify making use of the
3512 updated mips_fetch_instruction interface.
3513 (mips_adjust_breakpoint_address): Check for the standard MIPS
3514 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
3515 calls. Handle microMIPS code.
3516 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
3517 (mips_skip_trampoline_code): Handle microMIPS code.
3518 (global_mips_compression): New function.
3519 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
3520 file flags. Register the microMIPS remote breakpoint handler
3521 and heuristic frame unwinder.
3522 (show_mips_compression): New function.
3523 (_initialize_mips_tdep): Add the "set mips compression" and
3524 "show mips compression" commands.
3525
3526 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
3527
3528 * ada-lang.c:
3529 * ada-tasks.c:
3530 * ada-varobj.c:
3531 * amd64-darwin-tdep.c:
3532 * arm-symbian-tdep.c:
3533 * arm-tdep.c:
3534 * avr-tdep.c:
3535 * ax-gdb.c:
3536 * bfin-linux-tdep.c:
3537 * breakpoint.c:
3538 * c-valprint.c:
3539 * cli/cli-cmds.c:
3540 * coffread.c:
3541 * cp-support.c:
3542 * cris-tdep.c:
3543 * dwarf2-frame-tailcall.c:
3544 * dwarf2-frame.c:
3545 * dwarf2expr.c:
3546 * dwarf2loc.c:
3547 * dwarf2read.c:
3548 * elfread.c:
3549 * eval.c:
3550 * expprint.c:
3551 * f-valprint.c:
3552 * frv-tdep.c:
3553 * h8300-tdep.c:
3554 * hppa-hpux-tdep.c:
3555 * hppa-tdep.c:
3556 * hppanbsd-tdep.c:
3557 * i386-nto-tdep.c:
3558 * i386-tdep.c:
3559 * i387-tdep.c:
3560 * ia64-tdep.c:
3561 * jit.c:
3562 * linespec.c:
3563 * linux-tdep.c:
3564 * lm32-tdep.c:
3565 * m2-valprint.c:
3566 * m32c-tdep.c:
3567 * m32r-rom.c:
3568 * m32r-tdep.c:
3569 * m68k-tdep.c:
3570 * m68klinux-tdep.c:
3571 * mi/mi-main.c:
3572 * microblaze-tdep.c:
3573 * mips-linux-tdep.c:
3574 * mips-tdep.c:
3575 * mn10300-tdep.c:
3576 * p-valprint.c:
3577 * parse.c:
3578 * ppc-linux-tdep.c:
3579 * ppc-sysv-tdep.c:
3580 * printcmd.c:
3581 * python/py-finishbreakpoint.c:
3582 * python/py-inferior.c:
3583 * python/py-infthread.c:
3584 * python/py-type.c:
3585 * python/python.c:
3586 * remote-fileio.c:
3587 * remote-m32r-sdi.c:
3588 * remote-mips.c:
3589 * reverse.c:
3590 * rl78-tdep.c:
3591 * rs6000-aix-tdep.c:
3592 * rs6000-tdep.c:
3593 * s390-tdep.c:
3594 * score-tdep.c:
3595 * sh64-tdep.c:
3596 * skip.c:
3597 * solib-darwin.c:
3598 * solib-dsbt.c:
3599 * solib-frv.c:
3600 * sparc-tdep.c:
3601 * spu-multiarch.c:
3602 * spu-tdep.c:
3603 * stack.c:
3604 * symfile.c:
3605 * symtab.c:
3606 * tic6x-tdep.c:
3607 * tracepoint.c:
3608 * v850-tdep.c:
3609 * valarith.c:
3610 * valprint.c:
3611 * value.c:
3612 * xcoffread.c:
3613 * xtensa-tdep.c:
3614 * ada-lang.c:
3615 * ada-tasks.c:
3616 * ada-varobj.c:
3617 * amd64-darwin-tdep.c:
3618 * arm-symbian-tdep.c:
3619 * arm-tdep.c: Delete unused variables.
3620
3621 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3622
3623 Rename $ddir to $datadir.
3624 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
3625 * auto-load.c (auto_load_safe_path_vec_update)
3626 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
3627 * configure: Regenerate.
3628 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
3629 Likewise. Remove the 'use $ddir' help string.
3630
3631 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3632
3633 * auto-load.c (show_auto_load_safe_path): Accept any combination of
3634 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
3635
3636 2012-05-18 Tom Tromey <tromey@redhat.com>
3637
3638 PR exp/13907:
3639 * valprint.h (struct value_print_options) <symbol_print>: New
3640 field.
3641 * valprint.c (user_print_options): Add default for symbol_print.
3642 (show_symbol_print): New function.
3643 (generic_val_print): Respect symbol_print.
3644 (_initialize_valprint): Add "print symbol" setting.
3645 * f-valprint.c (f_val_print): Respect symbol_print.
3646 * c-valprint.c (c_val_print): Respect symbol_print.
3647 * NEWS: Update.
3648 * printcmd.c (print_address_symbolic): Return int. Ignore some
3649 zero-size symbols.
3650 (print_address_demangle): Return int.
3651 * defs.h: (print_address_symbolic): Return int.
3652 * value.h (print_address_demangle): Return int.
3653
3654 2012-05-18 Tom Tromey <tromey@redhat.com>
3655
3656 * valprint.c (val_print_string): Don't print leading space.
3657 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
3658 print space before string or vtbl.
3659 * m2-valprint.c (print_unpacked_pointer): Optionally print space
3660 before string.
3661 * jv-valprint.c (java_value_print): Print space before string.
3662 * go-valprint.c (print_go_string): Print space before string.
3663 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
3664 space before string.
3665 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
3666 space before string or vtbl.
3667 * auxv.c (fprint_target_auxv): Print space after address.
3668
3669 2012-05-18 Tom Tromey <tromey@redhat.com>
3670
3671 * printcmd.c (print_address_demangle): Remove special case for 0.
3672
3673 2012-05-18 Tom Tromey <tromey@redhat.com>
3674
3675 * printcmd.c (print_address_demangle): Add 'opts' argument.
3676 * p-valprint.c (pascal_val_print): Update.
3677 * jv-valprint.c (java_val_print): Update.
3678 * value.h: Update.
3679 * valprint.c (generic_val_print): Update.
3680 (print_function_pointer_address): Add 'options' argument. Remove
3681 'addressprint' argument. Update.
3682 * m2-valprint.c (print_unpacked_pointer): Update.
3683 * gnu-v3-abi.c (print_one_vtable): Update.
3684 (gnuv3_print_method_ptr): Update.
3685 * f-valprint.c (f_val_print): Update.
3686 * cp-valprint.c (cp_print_value_fields): Update.
3687 * valprint.h (print_function_pointer_address): Update.
3688 * c-valprint.c (c_val_print): Update.
3689
3690 2012-05-18 Tom Tromey <tromey@redhat.com>
3691
3692 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
3693 directly corresponding to the found psymtab.
3694 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
3695 (dw2_find_pc_sect_symtab): Use it.
3696 * block.h (blockvector_contains_pc): Declare.
3697 * block.c (find_block_in_blockvector): New function.
3698 (blockvector_for_pc_sect): Use it.
3699 (blockvector_contains_pc): New function.
3700
3701 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
3702
3703 * mips-tdep.h (mips_write_pc): New prototype.
3704 * mips-tdep.c (mips_write_pc): Make external, add description.
3705 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
3706 add description.
3707
3708 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
3709
3710 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
3711 mips_regnum->pc.
3712 (mips_unwind_pc, mips_write_pc): Likewise.
3713 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
3714 gdbarch_read_pc.
3715
3716 2012-05-17 Joel Brobecker <brobecker@adacore.com>
3717
3718 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
3719 proc_warn, proc_error, proc_get_status, proc_flags,
3720 proc_why, proc_what, proc_nsysarg, proc_sysargs,
3721 proc_set_run_on_last_close, proc_unset_run_on_last_close,
3722 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
3723 proc_stop_process, proc_wait_for_stop, proc_run_process,
3724 proc_set_traced_signals, proc_set_traced_faults,
3725 proc_set_traced_sysentry, proc_set_traced_sysexit,
3726 proc_set_held_signals, proc_get_held_signals,
3727 proc_get_traced_signals, proc_get_traced_faults,
3728 proc_get_traced_sysentry, proc_get_traced_sysexit,
3729 proc_clear_current_fault, proc_set_current_signal,
3730 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
3731 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
3732 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
3733 proc_get_current_thread, proc_get_current_thread,
3734 proc_get_current_thread, proc_update_threads,
3735 proc_update_threads, proc_update_threads, proc_update_threads,
3736 proc_iterate_over_threads, procfs_find_new_threads,
3737 procfs_pid_to_str): Make static. Remove advance declaration.
3738 (proc_cursig): Make static. Conditionalized defintion on
3739 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
3740 (proc_syscall, proc_set_kill_on_last_close,
3741 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
3742 proc_get_pending_signals, proc_get_signal_actions,
3743 proc_trace_signal, proc_ignore_signal): Delete.
3744
3745 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
3746
3747 * coffread.c (cs_section_address): Passing proper argument for
3748 `bfd_get_section_vma'.
3749 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
3750 `bfd_get_section_flags'.
3751 * remote.c (remote_trace_set_readonly_regions): Likewise, for
3752 `bfd_get_section_vma'.
3753
3754 2012-05-16 Tom Tromey <tromey@redhat.com>
3755
3756 PR macros/13205:
3757 * macrotab.h: (macro_define_special): Declare.
3758 (enum macro_special_kind): New.
3759 (struct macro_definition) <argc, replacement>: Update comments.
3760 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
3761 (macro_define_object_internal): New function.
3762 (macro_define_object): Use it.
3763 (macro_define_special): New function.
3764 (fixup_definition): New function.
3765 (macro_lookup_definition, foreach_macro_in_scope)
3766 (foreach_macro): Use fixup_definition.
3767 * macroexp.h (macro_stringify): Declare.
3768 * macroexp.c (free_buffer_return_text): New function.
3769 (stringify): Constify "arg".
3770 (macro_stringify): New function.
3771 * dwarf2read.c (macro_start_file): Call macro_define_special.
3772
3773 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
3774 Maciej W. Rozycki <macro@mips.com>
3775
3776 * breakpoint.h (bp_location): Add related_address member.
3777 * inferior.h (get_return_value): Take a pointer to struct value
3778 instead of struct type for the function requested.
3779 * value.h (using_struct_return): Likewise.
3780 * gdbarch.sh (return_value): Take a pointer to struct value
3781 instead of struct type for the function requested.
3782 * breakpoint.c (set_breakpoint_location_function): Initialize
3783 related_address for bp_gnu_ifunc_resolver breakpoints.
3784 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
3785 requested function's address to gdbarch_return_value.
3786 * eval.c (evaluate_subexp_standard): Pass the requested
3787 function's address to using_struct_return.
3788 * infcall.c (call_function_by_hand): Pass the requested
3789 function's address to using_struct_return and
3790 gdbarch_return_value.
3791 * infcmd.c (get_return_value): Take a pointer to struct value
3792 instead of struct type for the function requested.
3793 (print_return_value): Update accordingly.
3794 (finish_command_continuation): Likewise.
3795 * stack.c (return_command): Pass the requested function's
3796 address to using_struct_return and gdbarch_return_value.
3797 * value.c (using_struct_return): Take a pointer to struct value
3798 instead of struct type for the function requested. Pass the
3799 requested function's address to gdbarch_return_value.
3800 * python/py-finishbreakpoint.c (finish_breakpoint_object):
3801 New function_value member, replacing function_type.
3802 (bpfinishpy_dealloc): Update accordingly.
3803 (bpfinishpy_pre_stop_hook): Likewise.
3804 (bpfinishpy_init): Likewise. Record the requested function's
3805 address.
3806 * mips-tdep.c (mips_fval_reg): New enum.
3807 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
3808 words put in GP registers.
3809 (mips_o64_push_dummy_call): Update a comment.
3810 (mips_o32_return_value): Take a pointer to struct value instead
3811 of struct type for the function requested and use it to check if
3812 using the MIPS16 calling convention. Return the designated
3813 general purpose registers for floating-point values returned in
3814 MIPS16 mode.
3815 (mips_o64_return_value): Likewise.
3816 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
3817 (ppc_sysv_abi_broken_return_value): Likewise.
3818 (ppc64_sysv_abi_return_value): Likewise.
3819 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
3820 value instead of struct type for the function requested.
3821 * amd64-tdep.c (amd64_return_value): Likewise.
3822 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
3823 * arm-tdep.c (arm_return_value): Likewise.
3824 * avr-tdep.c (avr_return_value): Likewise.
3825 * bfin-tdep.c (bfin_return_value): Likewise.
3826 * cris-tdep.c (cris_return_value): Likewise.
3827 * frv-tdep.c (frv_return_value): Likewise.
3828 * h8300-tdep.c (h8300_return_value): Likewise.
3829 (h8300h_return_value): Likewise.
3830 * hppa-tdep.c (hppa32_return_value): Likewise.
3831 (hppa64_return_value): Likewise.
3832 * i386-tdep.c (i386_return_value): Likewise.
3833 * ia64-tdep.c (ia64_return_value): Likewise.
3834 * iq2000-tdep.c (iq2000_return_value): Likewise.
3835 * lm32-tdep.c (lm32_return_value): Likewise.
3836 * m32c-tdep.c (m32c_return_value): Likewise.
3837 * m32r-tdep.c (m32r_return_value): Likewise.
3838 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
3839 * m68k-tdep.c (m68k_return_value): Likewise.
3840 (m68k_svr4_return_value): Likewise.
3841 * m88k-tdep.c (m88k_return_value): Likewise.
3842 * mep-tdep.c (mep_return_value): Likewise.
3843 * microblaze-tdep.c (microblaze_return_value): Likewise.
3844 * mn10300-tdep.c (mn10300_return_value): Likewise.
3845 * moxie-tdep.c (moxie_return_value): Likewise.
3846 * mt-tdep.c (mt_return_value): Likewise.
3847 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
3848 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
3849 (ppc_sysv_abi_broken_return_value): Likewise.
3850 (ppc64_sysv_abi_return_value): Likewise.
3851 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
3852 * rl78-tdep.c (rl78_return_value): Likewise.
3853 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
3854 * rx-tdep.c (rx_return_value): Likewise.
3855 * s390-tdep.c (s390_return_value): Likewise.
3856 * score-tdep.c (score_return_value): Likewise.
3857 * sh-tdep.c (sh_return_value_nofpu): Likewise.
3858 (sh_return_value_fpu): Likewise.
3859 * sh64-tdep.c (sh64_return_value): Likewise.
3860 * sparc-tdep.c (sparc32_return_value): Likewise.
3861 * sparc64-tdep.c (sparc64_return_value): Likewise.
3862 * spu-tdep.c (spu_return_value): Likewise.
3863 * tic6x-tdep.c (tic6x_return_value): Likewise.
3864 * v850-tdep.c (v850_return_value): Likewise.
3865 * vax-tdep.c (vax_return_value): Likewise.
3866 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
3867 * xtensa-tdep.c (xtensa_return_value): Likewise.
3868 * gdbarch.c: Regenerate.
3869 * gdbarch.h: Regenerate.
3870
3871 2012-05-15 Tom Tromey <tromey@redhat.com>
3872
3873 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
3874
3875 2012-05-15 Joel Brobecker <brobecker@adacore.com>
3876
3877 * breakpoint.c (init_breakpoint_sal): Add quotes around part
3878 of command in two error message.
3879
3880 2012-05-15 Joel Brobecker <brobecker@adacore.com>
3881
3882 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
3883
3884 2012-05-15 Joel Brobecker <brobecker@adacore.com>
3885
3886 * breakpoint.c (find_condition_and_thread): Minor reformatting.
3887
3888 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
3889
3890 * NEWS (show auto-load scripts-directory): Add forgotten command.
3891
3892 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
3893
3894 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
3895 parameters.
3896
3897 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
3898
3899 * amd64-tdep.c: Include features/i386/x32.c and
3900 features/i386/x32-avx.c.
3901 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
3902 initialize_tdesc_x32_avx.
3903
3904 2012-05-14 Stan Shebs <stan@codesourcery.com>
3905
3906 Add dynamic printf.
3907 * breakpoint.h (enum bptype): New type bp_dprintf.
3908 (struct breakpoint): New field extra_string.
3909 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
3910 (create_breakpoint): Add extra_string arg.
3911 * breakpoint.c (dprintf_breakpoint_ops): New.
3912 (is_breakpoint): Add bp_dprintf.
3913 (bpstat_what): Add dprintf case.
3914 (bptype_string): Ditto.
3915 (print_one_breakpoint_location): Ditto.
3916 (init_bp_location): Ditto.
3917 (bkpt_print_mention): Ditto.
3918 (dprintf_style_enums): New array.
3919 (dprintf_style): New global.
3920 (dprintf_function): New global.
3921 (dprintf_channel): New global.
3922 (update_dprintf_command_list): New function.
3923 (update_dprintf_commands): New function.
3924 (init_breakpoint_sal): Add extra_string argument, handle it.
3925 (create_breakpoint_sal): Add extra_string argument.
3926 (create_breakpoints_sal): Add extra_string argument, update callers.
3927 (find_condition_and_thread): Add extra argument.
3928 (create_breakpoint): Add extra_string argument, record it.
3929 (dprintf_command): New function.
3930 (break_command_1): Add arg to create_breakpoint call.
3931 (handle_gnu_v3_exceptions): Ditto.
3932 (trace_command): Ditto.
3933 (ftrace_command): Ditto.
3934 (strace_command): Ditto.
3935 (bkpt_print_mention): Add dprintf case.
3936 (create_breakpoint_sal_default): Add extra_string argument.
3937 (_initialize_breakpoint): Add new commands.
3938 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
3939 * python/py-breakpoint.c (bppy_init): Ditto.
3940 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
3941
3942 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
3943
3944 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
3945
3946 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
3947
3948 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
3949 unsigned long long.
3950
3951 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
3952
3953 Add a new function gdb.find_pc_line to the Python API.
3954 * NEWS (Python Scripting): Add entry about the new function.
3955 * python/python.c (gdbpy_find_pc_line): New function which
3956 implements gdb.find_pc_line.
3957 (GdbMethods): Add entry for the new function.
3958
3959 2012-05-12 Pedro Alves <palves@redhat.com>
3960
3961 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
3962 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
3963
3964 2012-05-12 Eli Zaretskii <eliz@gnu.org>
3965
3966 * inferior.c: Include completer.h
3967 (initialize_inferiors): Set completer of add-inferior to
3968 filename_completer.
3969
3970 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
3971
3972 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
3973 gdbarch_ptr_bit for x32 core dump.
3974
3975 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
3976
3977 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
3978 and features/i386/x32-avx-linux.c.
3979
3980 2012-05-11 Stan Shebs <stan@codesourcery.com>
3981 Kwok Cheung Yeung <kcy@codesourcery.com>
3982
3983 * NEWS: Describe new info os commands.
3984 * common/linux-osdata.c (PID_T, TIME_T): Define.
3985 (MAX_PID_T_STRLEN): New.
3986 (linux_common_core_of_thread): Add comment. Change to use PID_T and
3987 MAX_PID_T_STRLEN.
3988 (command_from_pid): Add comment. Change to use PID_T.
3989 (commandline_from_pid): Change to use PID_T.
3990 (user_from_pid): Add comment.
3991 (get_process_owner): Add comment. Change to use PID_T and
3992 MAX_PID_T_STRLEN.
3993 (get_number_of_cpu_cores): Add comment.
3994 (get_cores_used_by_process): Add comment. Change to use PID_T and
3995 MAX_PID_T_STRLEN.
3996 (linux_xfer_osdata_processes): Change to use PID_T and
3997 MAX_PID_T_STRLEN.
3998 (compare_processes): New function.
3999 (linux_xfer_osdata_processgroups): New function.
4000 (linux_xfer_osdata_threads): Change to use PID_T.
4001 (linux_xfer_osdata_fds): New function.
4002 (format_socket_state, print_sockets): New functions.
4003 (union socket_addr): New union.
4004 (linux_xfer_osdata_isockets): New function.
4005 (time_from_time_t, group_from_gid): New functions.
4006 (linux_xfer_osdata_shm): New function.
4007 (linux_xfer_osdata_sem): New function.
4008 (linux_xfer_osdata_msg): New function.
4009 (linux_xfer_osdata_modules): New function.
4010 (osdata_table): Add new entries.
4011 * common/buffer.c (buffer_xml_printf): Add support for long and
4012 long long format specifiers.
4013
4014 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
4015
4016 * amd64-linux-tdep.h (tdesc_x32_linux): New.
4017 (tdesc_x32_avx_linux): Likewise.
4018
4019 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4020
4021 Implement multi-component --with-auto-load-dir.
4022 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
4023 entries.
4024 (--with-auto-load-safe-path): Update the default value description.
4025 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
4026 New.
4027 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
4028 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
4029 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
4030 (_initialize_auto_load): Initialize also auto_load_dir. Install new
4031 "set auto-load scripts-directory".
4032 * config.in: Regenerate.
4033 * configure: Regenerate.
4034 * configure.ac (--with-auto-load-dir): New configure option.
4035 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
4036
4037 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4038
4039 Provide $ddir substitution for --with-auto-load-safe-path.
4040 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
4041 entries.
4042 * auto-load.c: Include observer.h.
4043 (auto_load_safe_path_vec_update): Call substitute_path_component for
4044 each component. New variable ddir_subst.
4045 (auto_load_gdb_datadir_changed): New function.
4046 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
4047 AUTO_LOAD_SAFE_PATH. New comment.
4048 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
4049 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
4050 * config.in: Regenerate.
4051 * configure: Regenerate.
4052 * configure.ac (--auto-load-safe-path): Rename
4053 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
4054 GDB_DATADIR/auto-load.
4055 * defs.h (substitute_path_component): New declaration.
4056 * top.c: Include observer.h.
4057 (set_gdb_datadir): New function.
4058 (init_main): Install it for "set data-directory".
4059 * utils.c (substitute_path_component): New function.
4060
4061 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4062
4063 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
4064 * auto-load.c (auto_load_objfile_script): Remove check for NULL
4065 DEBUG_FILE_DIRECTORY. Handle multiple components of
4066 DEBUG_FILE_DIRECTORY.
4067
4068 2012-05-10 Tom Tromey <tromey@redhat.com>
4069
4070 * dwarf2read.c (recursively_write_psymbols): New function.
4071 (write_psymtabs_to_index): Use it.
4072
4073 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
4074 field.
4075 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
4076 (load_partial_comp_unit): Update.
4077 (queue_comp_unit): Add argument 'pretend_language'.
4078 (process_queue): Update.
4079 (psymtab_to_symtab_1): Skip dependencies that have a user.
4080 (load_partial_comp_unit_reader): Give meaning to the 'data'
4081 argument.
4082 (load_full_comp_unit): Add 'pretend_language' argument.
4083 (process_full_comp_unit): Add 'pretend_language' argument. Set
4084 language on CU.
4085 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
4086 Update.
4087 (maybe_queue_comp_unit): Add 'pretend_language' argument.
4088 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
4089 Update.
4090 (prepare_one_comp_unit): Add 'pretend_language' argument.
4091
4092 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
4093 (struct dwarf2_per_objfile) <just_read_cus>: New field.
4094 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
4095 (dw2_do_instantiate_symtab): Check whether symtab was read in
4096 before queueing.
4097 (dw2_instantiate_symtab): Add assertion. Call
4098 process_cu_includes.
4099 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
4100 (partial_symtab_p): New typedef.
4101 (set_partial_user): New function.
4102 (dwarf2_build_psymtabs_hard): Use set_partial_user.
4103 (scan_partial_symbols): Add imported CU to imported_symtabs.
4104 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
4105 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
4106 (get_symtab, recursively_compute_inclusions)
4107 (compute_symtab_includes, process_cu_includes)
4108 (process_imported_unit_die): New functions.
4109 (process_die) <DW_TAG_imported_unit>: New case.
4110 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
4111
4112 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
4113 comment.
4114 (struct partial_die_info) <locdesc>: Remove.
4115 <d>: New field.
4116 (process_psymtab_comp_unit): Add 'read_partial' argument.
4117 Update.
4118 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
4119 (scan_partial_symbols): Handle DW_TAG_imported_unit.
4120 (add_partial_symbol): Update.
4121 (process_die): Handle DW_TAG_partial_unit.
4122 (read_file_scope): Update comment.
4123 (load_partial_dies): Handle DW_TAG_imported_unit.
4124 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
4125 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
4126
4127 2012-05-10 Tom Tromey <tromey@redhat.com>
4128
4129 * cc-with-dwz.sh: New file.
4130
4131 2012-05-10 Tom Tromey <tromey@redhat.com>
4132
4133 * symtab.h (struct symtab) <includes, user>: New fields.
4134 * block.h (struct block_iterator) <d, idx, which>: New fields.
4135 * block.c (initialize_block_iterator, find_iterator_symtab)
4136 (block_iterator_step, block_iter_name_step)
4137 (block_iter_match_step): New functions.
4138 (block_iterator_first, block_iterator_next)
4139 (block_iter_name_first, block_iter_name_next)
4140 (block_iter_match_first, block_iter_match_next): Rewrite.
4141 (get_block_symtab): New function.
4142
4143 2012-05-10 Tom Tromey <tromey@redhat.com>
4144
4145 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
4146 set_block_symtab.
4147 * jit.c (finalize_symtab): Use allocate_global_block,
4148 set_block_symtab.
4149 * buildsym.c (finish_block_internal): New function, from old
4150 finish_block.
4151 (finish_block): Rewrite.
4152 (end_symtab): Use finish_block_internal, set_block_symtab.
4153 * block.h (struct global_block): New.
4154 (allocate_global_block, set_block_symtab): Declare.
4155 * block.c (allocate_global_block, set_block_symtab): New
4156 functions.
4157
4158 2012-05-10 Tom Tromey <tromey@redhat.com>
4159
4160 * psymtab.c (partial_map_expand_apply): Add assertion.
4161 (partial_map_symtabs_matching_filename): Skip included psymtabs.
4162 (psymtab_to_symtab): Find unshared psymtab.
4163 (dump_psymtab): Print including psymtabs.
4164 (recursively_search_psymtabs): New function.
4165 (expand_symtabs_matching_via_partial): Use it.
4166 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
4167 fields.
4168 (enum psymtab_search_status): New.
4169
4170 2012-05-10 Tom Tromey <tromey@redhat.com>
4171
4172 * tracepoint.c (scope_info): Update.
4173 * symtab.c (lookup_block_symbol, iterate_over_symbols)
4174 (find_pc_sect_symtab, search_symbols)
4175 (default_make_symbol_completion_list_break_on)
4176 (make_file_symbol_completion_list): Update.
4177 * symmisc.c (dump_symtab_1): Update.
4178 * stack.c (print_frame_args, iterate_over_block_locals)
4179 (print_frame_labels, iterate_over_block_arg_vars): Update.
4180 * python/py-block.c (block_object) <dict>: Remove.
4181 <block>: New field.
4182 <iter>: Change type.
4183 (blpy_iter): Update.
4184 (blpy_block_syms_iternext): Update.
4185 * psymtab.c (map_block): Use block iterators.
4186 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
4187 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
4188 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
4189 * infrun.c (check_exception_resume): Update.
4190 * cp-support.c (make_symbol_overload_list_block): Update.
4191 * coffread.c (patch_opaque_types): Update.
4192 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
4193 * block.h (struct block_iterator): New.
4194 (block_iterator_first, block_iterator_next, block_iter_name_first)
4195 (block_iter_name_next, block_iter_match_first)
4196 (block_iter_match_next): Declare.
4197 (ALL_BLOCK_SYMBOLS): Redefine.
4198 * block.c (block_iterator_first, block_iterator_next)
4199 (block_iter_name_first, block_iter_name_next)
4200 (block_iter_match_first, block_iter_match_next): New functions.
4201 * ada-lang.c (ada_add_block_symbols)
4202 (ada_make_symbol_completion_list): Use block iterator.
4203
4204 2012-05-10 Tom Tromey <tromey@redhat.com>
4205
4206 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
4207 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
4208 (lookup_partial_symbol, find_last_source_symtab_from_partial)
4209 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
4210 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
4211 Update.
4212
4213 2012-05-10 Joel Brobecker <brobecker@adacore.com>
4214
4215 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
4216 print-file-var-lib2.c, print-file-var-main.c and
4217 print-file-var.exp (located in gdb/testsuite/gdb.base).
4218
4219 2012-05-10 Joel Brobecker <brobecker@adacore.com>
4220
4221 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
4222 try locating the symbol in the symbol's own objfile first, before
4223 extending the search to all objfiles.
4224 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4225 out of lookup_symbol_aux_symtabs.
4226 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
4227 Replace extracted-out code by call to lookup_symbol_aux_objfile.
4228 Do not search EXCLUDE_OBJFILE.
4229 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
4230 (lookup_symbol_global): Search for matches in the block's objfile
4231 first, before searching all other objfiles.
4232
4233 2012-05-10 Tristan Gingold <gingold@adacore.com>
4234
4235 * printcmd.c (set_command): Add pre/post inc/dec.
4236
4237 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
4238
4239 * gdb.1: Document -ex option.
4240
4241 2012-05-09 Joel Brobecker <brobecker@adacore.com>
4242
4243 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
4244 * inferior.h (AT_SYMBOL): Delete.
4245
4246 2012-05-09 Joel Brobecker <brobecker@adacore.com>
4247
4248 * mips-tdep.c (mips_push_dummy_code): New function.
4249 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
4250 ON_STACK and install mips_push_dummy_code as our gdbarch
4251 push_dummy_code routine.
4252
4253 2012-05-09 Pedro Alves <palves@redhat.com>
4254
4255 * target.c (set_maintenance_target_async_permitted): Rename to ...
4256 (set_target_async_command): ... this.
4257 (show_maintenance_target_async_permitted): Rename to ...
4258 (show_target_async_command): ... this.
4259 (initialize_targets): Adjust.
4260
4261 2012-05-08 Doug Evans <dje@google.com>
4262
4263 * go-exp.y (classify_name): Add missing assignment of fields of
4264 yylval.ssym.
4265
4266 2012-05-08 Eli Zaretskii <eliz@gnu.org>
4267
4268 Display the ">" prompt in interactive mode while reading canned
4269 commands, even when the current interpreter is MI.
4270
4271 * interps.c (interp_set_temp): New function.
4272
4273 * interps.h (interp_set_temp): Add prototype.
4274
4275 * cli/cli-script.c (restore_interp): New cleanup function.
4276 (read_command_lines): Temporarily override the current interpreter
4277 with CLI and arrange for restoring the original one.
4278
4279 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
4280
4281 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
4282
4283 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
4284
4285 * probe.c (parse_probes): Move conditional to check for
4286 debuginfo files from here...
4287 * stap-probe.c (stap_get_probes): ... to here.
4288
4289 2012-05-07 Mark Kettenis <kettenis@gnu.org>
4290 H.J. Lu <hongjiu.lu@intel.com>
4291
4292 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
4293 `movl %esp, %ebp' for the X32 ABI.
4294
4295 2012-05-07 Tom Tromey <tromey@redhat.com>
4296
4297 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
4298 get_DW_TAG_name.
4299 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
4300 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
4301 (dwarf_stack_op_name): Remove.
4302 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
4303 (decode_locdesc): Use get_DW_OP_name.
4304 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
4305 (dwarf2_compile_expr_to_ax): Likewise.
4306 (disassemble_dwarf_expression): Likewise.
4307 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
4308
4309 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
4310
4311 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
4312 (sh_linux_sigtramp_cache): New function.
4313 (sh_linux_sigreturn_init): New function.
4314 (sh_linux_rt_sigreturn_init): New function.
4315 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
4316 patterns.
4317 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
4318 syscall codes.
4319 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
4320 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
4321 (sh_linux_init_abi): Add init calls to register new tramp_frame
4322 definitions under 32-bit SH, update comments.
4323
4324 2012-05-07 Pedro Alves <palves@redhat.com>
4325
4326 PR gdb/10952
4327
4328 * amd64-linux-tdep.c: Include glibc-tdep.h.
4329 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
4330 gdbarch_skip_solib_resolver callback.
4331
4332 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4333
4334 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
4335 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
4336 (show_auto_load_safe_path): Check any-directory by comparison with "/".
4337 (add_auto_load_safe_path): Change the error message.
4338 (_initialize_auto_load): Change the "safe-path" help text.
4339 * configure: Regenerate
4340 * configure.ac (--without-auto-load-safe-path): Set
4341 WITH_AUTO_LOAD_SAFE_PATH to /.
4342
4343 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
4344
4345 * stap-probe.h: Do not include unecessary `probe.h'.
4346
4347 2012-05-05 Alan Modra <amodra@gmail.com>
4348
4349 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
4350 bfd_und_section_ptr.
4351 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
4352 and bfd_com_section_ptr.
4353
4354 2012-05-04 Joel Brobecker <brobecker@adacore.com>
4355
4356 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
4357
4358 2012-05-04 Joel Brobecker <brobecker@adacore.com>
4359
4360 * windows-nat.h (segment_register_p_ftype): New typedef.
4361 (windows_set_segment_register_p): Add declaration.
4362 * windows-nat.c (segment_register_p): New static global.
4363 (windows_set_segment_register_p): New function.
4364 (do_windows_fetch_inferior_registers): Add special handling
4365 for segment registers.
4366 * amd64-windows-nat.c: #include "amd64-tdep.h".
4367 (amd64_windows_segment_register_p): New function.
4368 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
4369 * i386-windows-nat.c: #include "i386-tdep.h".
4370 (i386_windows_segment_register_p): New function.
4371 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
4372
4373 2012-05-04 Tristan Gingold <gingold@adacore.com>
4374
4375 * printcmd.c (set_command): Emit a warning if the expression is not
4376 an assignment.
4377
4378 2012-05-03 Joel Brobecker <brobecker@adacore.com>
4379
4380 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
4381 Make static.
4382
4383 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
4384
4385 * stap-probe.c (stap_is_operator): Change declaration.
4386 (stap_get_opcode): Change return value.
4387 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
4388 `stap_parse_argument_1'.
4389
4390 2012-05-03 Pedro Alves <pedro@codesourcery.com>
4391
4392 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
4393 debug log.
4394
4395 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
4396
4397 Add two new methods global_block and static_block to gdb.Symtab
4398 objects.
4399 * NEWS (Python scripting): Add entry about the new methods.
4400 * python/py-symtab.c (stpy_global_block): New function which
4401 implements the gdb.Symtab.global_block() method.
4402 (stpy_static_block): New function which implements the
4403 gdb.Symtab.static_block() method.
4404 (symtab_object_methods): Add entries for the two new methods.
4405
4406 2012-05-03 Doug Evans <dje@google.com>
4407
4408 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
4409 files.
4410
4411 2012-05-03 Yao Qi <yao@codesourcery.com>
4412
4413 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
4414 space.
4415 (i386_process_record): Ditto.
4416
4417 2012-05-02 Joel Brobecker <brobecker@adacore.com>
4418
4419 * infcall.c (unwind_on_signal_p): Make static.
4420
4421 2012-05-02 Joel Brobecker <brobecker@adacore.com>
4422
4423 * sol-thread.c (solaris_pid_to_str): Make static.
4424 (_initialize_sol_thread): Add prototype.
4425
4426 2012-05-02 Joel Brobecker <brobecker@adacore.com>
4427
4428 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
4429
4430 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
4431
4432 * MAINTAINERS: Remove myself.
4433
4434 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4435
4436 Fix --without-auto-load-safe-path for MS-Windows host platform.
4437 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
4438
4439 2012-05-02 Eli Zaretskii <eliz@gnu.org>
4440
4441 * gdb_curses.h: Undefine KEY_EVENT before including curses
4442 headers. Move "#undef MOUSE_MOVED" before any curses header
4443 inclusion.
4444
4445 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
4446
4447 * features/i386/i386-mmx-linux.c: Regenerate.
4448 * features/rs6000/powerpc-32.c: Likewise.
4449 * features/rs6000/powerpc-32l.c: Likewise.
4450 * features/rs6000/powerpc-403.c: Likewise.
4451 * features/rs6000/powerpc-403gc.c: Likewise.
4452 * features/rs6000/powerpc-405.c: Likewise.
4453 * features/rs6000/powerpc-505.c: Likewise.
4454 * features/rs6000/powerpc-601.c: Likewise.
4455 * features/rs6000/powerpc-602.c: Likewise.
4456 * features/rs6000/powerpc-603.c: Likewise.
4457 * features/rs6000/powerpc-604.c: Likewise.
4458 * features/rs6000/powerpc-64.c: Likewise.
4459 * features/rs6000/powerpc-64l.c: Likewise.
4460 * features/rs6000/powerpc-750.c: Likewise.
4461 * features/rs6000/powerpc-860.c: Likewise.
4462 * features/rs6000/powerpc-e500.c: Likewise.
4463 * features/rs6000/powerpc-e500l.c: Likewise.
4464 * features/rs6000/powerpc-isa205-32l.c: Likewise.
4465 * features/rs6000/powerpc-isa205-64l.c: Likewise.
4466 * features/rs6000/rs6000.c: Likewise.
4467
4468 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
4469
4470 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
4471 variable.
4472 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
4473 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
4474 (stap_parse_argument) <e>: Likewise.
4475 (handle_stap_probe) <byte_order>: Likewise.
4476
4477 2012-04-30 Doug Evans <dje@google.com>
4478
4479 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
4480 init_and_read_dies_worker. All callers updated.
4481 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
4482 replaced with init_cutu_and_read_dies.
4483 (load_partial_comp_unit): Pass 1 for use_existing_cu.
4484 (find_partial_die): Remove FIXME. Don't free current CU.
4485
4486 2012-04-30 Sterling Augustine <saugustine@google.com>
4487
4488 * contrib: New directory.
4489 * contrib/test_pubnames_and_indexes.py: New file.
4490
4491 2012-04-30 Doug Evans <dje@google.com>
4492
4493 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
4494 All callers updated.
4495 (init_cu_die_reader): Verify the section is non-empty.
4496 (dwarf_decode_line_header): Don't dereference section->asection
4497 until we know the section is present.
4498
4499 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
4500
4501 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
4502 probes.
4503
4504 2012-04-29 Yao Qi <yao@codesourcery.com>
4505
4506 * gdb-code-style.el: New hook gdb-markup-hook
4507 and gdb-comment-hook.
4508
4509 2012-04-28 Doug Evans <dje@google.com>
4510
4511 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
4512 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
4513 objfile->obfd.
4514 * symfile.h (dwarf2_debug_sections): New member addr.
4515 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
4516 (ctx_no_get_addr_index): New function.
4517 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
4518 (ctx_no_get_addr_index): Declare.
4519 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
4520 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
4521 (dwarf_expr_ctx_funcs): Update.
4522 (needs_get_addr_index): New function.
4523 (needs_frame_ctx_funcs): Update.
4524 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
4525 * dwarf2read.c: #include "gdbcore.h".
4526 (dwarf2_per_objfile): New members addr, dwo_files.
4527 (dwarf2_elf_names): Add entry for addr.
4528 (struct dwo_section_names): New type.
4529 (dwo_section_names): New static global.
4530 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
4531 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
4532 old debug_types_section member updated to use this.
4533 Rename member debug_types_section to info_or_types_section,
4534 all uses updated.
4535 (signatured_type): Rename member type_offset to type_offset_in_tu,
4536 all uses updated. New member type_offset_in_section.
4537 (struct dwo_sections): New type.
4538 (struct dwo_unit): New type.
4539 (struct dwo_file): New type.
4540 (die_reader_specs): New member dwo_file.
4541 (dwarf2_locate_sections): Watch for .debug_addr.
4542 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
4543 (dwarf2_read_section): Get bfd of section from bfd's asection,
4544 instead of objfile.
4545 (create_cus_from_index): Initialize the_cu->info_or_types_section.
4546 (create_signatured_type_table_from_index): Initialize
4547 sig_type->info_or_types_section.
4548 (dw2_get_file_names): Statement lists for type units with DWO files
4549 live in the DWO file.
4550 (create_debug_types_hash_table): New function.
4551 (create_all_type_units): Rewrite.
4552 (init_cu_die_reader): New arg dwo_file, all callers updated.
4553 (init_and_read_dies_worker): Get section from
4554 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
4555 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
4556 continue reading the CU/TU from there.
4557 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
4558 updated. Get section from this_cu->info_or_types_section.
4559 (create_all_comp_units): Initialize this_cu->info_or_types_section.
4560 (skip_one_die): New cases DW_FORM_GNU_addr_index,
4561 DW_FORM_GNU_str_index.
4562 (hash_dwo_file, eq_dwo_file): New functions.
4563 (allocate_dwo_file_hash_table): New function.
4564 (hash_dwo_unit, eq_dwo_unit): New functions.
4565 (allocate_dwo_unit_table): New function.
4566 (dwarf2_locate_dwo_sections): New function.
4567 (struct create_dwo_info_table_data): New type.
4568 (create_debug_info_hash_table_reader): New function.
4569 (create_debug_info_hash_table): New function.
4570 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
4571 (lookup_dwo_file): New function.
4572 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
4573 (free_dwo_file, free_dwo_file_cleanup): New functions.
4574 (free_dwo_file_from_slot, free_dwo_files): New functions.
4575 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
4576 (dwarf2_record_block_ranges): Ditto.
4577 (read_partial_die): Ditto.
4578 (process_enumeration_scope): Update to use type_offset_in_section.
4579 (read_full_die_1): New function.
4580 (read_full_die): Rewrite.
4581 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
4582 DW_FORM_GNU_str_index.
4583 (read_addr_index_1, read_addr_index): New functions.
4584 (read_addr_index_from_leb128): New function.
4585 (struct dwarf2_read_addr_index_data): New type.
4586 (dwarf2_read_addr_index_reader): New function.
4587 (dwarf2_read_addr_index): New function.
4588 (read_str_index): New function.
4589 (leb128_size): New function.
4590 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
4591 If processing a type unit from a DWO file, get the line section
4592 from the DWO file.
4593 (var_decode_location): Watch for DW_OP_GNU_addr_index.
4594 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
4595 DW_FORM_GNU_str_index.
4596 (lookup_die_type): Check whether section offset of type's die is
4597 known before looking it up. Remove assert. Condition can
4598 legimately happen for inter-cu type references.
4599 (dwarf_attr_name): Handle Fission attributes.
4600 (dwarf_form_name): Handle Fission forms.
4601 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
4602 DW_FORM_GNU_str_index.
4603 (follow_die_sig): Update to use type_offset_in_section.
4604 (decode_locdesc): New case DW_OP_GNU_addr_index.
4605 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
4606 DW_FORM_GNU_str_index.
4607 (cu_debug_loc_section): New function.
4608 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
4609 (dwarf2_per_objfile_free): Unmap .debug_addr section.
4610 Free DWO files if present.
4611 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
4612
4613 Refactor DIE reading.
4614 * dwarf2read.c (dwarf2_per_objfile): Replace members
4615 debug_info_type_hash and debug_types_type_hash with die_type_hash.
4616 (die_reader_specs): New member "die_section". Temporarily make
4617 member "buffer" non-const, pending constifying all info_ptr uses.
4618 (die_reader_func_ftype): New typedef.
4619 (dw2_get_file_names_reader): New function.
4620 (dw2_get_file_names): Rewrite.
4621 (read_and_check_type_unit_head): Rename arg type_offset to
4622 type_offset_in_tu.
4623 (create_all_type_units): Improve debugging message.
4624 Improve dummy type unit check.
4625 (init_cu_die_reader): New arg "section". All callers updated.
4626 (init_and_read_dies_worker): New function.
4627 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
4628 (init_cutu_and_read_dies_no_follow): New function.
4629 (init_cutu_and_read_dies_simple): New function.
4630 (process_psymtab_comp_unit_reader): New function.
4631 (process_psymtab_comp_unit): Delete args section,
4632 is_debug_types_section. Rewrite. All callers updated.
4633 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
4634 All callers updated. Rewrite.
4635 (load_partial_comp_unit_reader): New function.
4636 (load_partial_comp_unit): Rewrite.
4637 (skip_children): New arg reader. Delete args buffer, cu.
4638 All callers updated.
4639 (skip_one_die): New arg reader. Delete args buffer, cu.
4640 All callers updated.
4641 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
4642 All callers updated.
4643 (load_full_comp_unit_reader): New function.
4644 (load_full_comp_unit): Rewrite.
4645 (read_comp_unit): Delete.
4646 (read_die_and_children_1): Delete, contents moved ...
4647 (read_die_and_children): ... here.
4648 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
4649 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
4650 All callers updated.
4651 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
4652 All callers updated.
4653 (find_partial_die): Rewrite load_all_dies support.
4654 (read_attribute_value): New arg reader. Delete args abfd, cu.
4655 All callers updated.
4656 (read_attribute): New arg reader. Delete args abfd, cu.
4657 All callers updated.
4658 (load_full_type_unit): Add assert.
4659 (read_signatured_type_reader): New function.
4660 (read_signatured_type): Rewrite.
4661 (free_stack_comp_unit): Remove call to age_cached_comp_units.
4662 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
4663 All callers updated. Set per_cu->cu = NULL after freeing it.
4664 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
4665 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
4666 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
4667 (set_die_type): Update.
4668 (get_die_type_at_offset): Update.
4669 (read_file_scope): Call prepare_one_comp_unit.
4670 (read_type_unit_scope): Ditto.
4671 (prepare_one_comp_unit): Set producer if present.
4672
4673 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
4674
4675 * probe.c (compile_rx_or_error): Silence ARI warning about missing
4676 gettext function on `error'.
4677
4678 2012-04-27 Doug Evans <dje@google.com>
4679
4680 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
4681 is empty.
4682
4683 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
4684 Tom Tromey <tromey@redhat.com>
4685
4686 * breakpoint.c (struct breakpoint_objfile_data)
4687 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
4688 <exception_probes>: New fields.
4689 (free_breakpoint_probes): New function.
4690 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
4691 `_Unwind_DebugHook'.
4692 (create_exception_master_breakpoint): Likewise.
4693 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
4694 * infrun.c: Including necessary header files for handling SystemTap
4695 probes.
4696 (handle_inferior_event): Handling longjmp breakpoint and exceptions
4697 via SystemTap probes.
4698 (check_exception_resume): Remove `func' argument. Handle exception
4699 unwinding breakpoint set via a SystemTap probe.
4700 (insert_exception_resume_from_probe): New function.
4701
4702 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
4703 Tom Tromey <tromey@redhat.com>
4704 Jan Kratochvil <jan.kratochvil@redhat.com>
4705
4706 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
4707 (COMMON_OBS): Likewise.
4708 (HFILES_NO_SRCDIR): Add `probe'.
4709 * NEWS: Mention support for static and SystemTap probes.
4710 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
4711 SystemTap probes' arguments parser.
4712 * arm-linux-tdep.c: Including headers needed to perform the parsing
4713 of SystemTap probes' arguments.
4714 (arm_stap_is_single_operand): New function.
4715 (arm_stap_parse_special_token): Likewise.
4716 (arm_linux_init_abi): Initializing proper fields used by SystemTap
4717 probes' arguments parser.
4718 * ax-gdb.c (require_rvalue): Removing static declaration.
4719 (gen_expr): Likewise.
4720 * ax-gdb.h (gen_expr): Declaring function.
4721 (require_rvalue): Likewise.
4722 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
4723 (bkpt_probe_breakpoint_ops): New variable.
4724 (momentary_breakpoint_from_master): Set the `probe' value.
4725 (add_location_to_breakpoint): Likewise.
4726 (break_command_1): Using proper breakpoint_ops according to the
4727 argument passed by the user in the command line.
4728 (bkpt_probe_insert_location): New function.
4729 (bkpt_probe_remove_location): Likewise.
4730 (bkpt_probe_create_sals_from_address): Likewise.
4731 (bkpt_probe_decode_linespec): Likewise.
4732 (tracepoint_probe_create_sals_from_address): Likewise.
4733 (tracepoint_probe_decode_linespec): Likewise.
4734 (tracepoint_probe_breakpoint_ops): New variable.
4735 (trace_command): Using proper breakpoint_ops according to the
4736 argument passed by the user in the command line.
4737 (initialize_breakpoint_ops): Initializing breakpoint_ops for
4738 static probes on breakpoints and tracepoints.
4739 * breakpoint.h (struct bp_location) <probe>: New field.
4740 * cli-utils.c (skip_spaces_const): New function.
4741 (extract_arg): Likewise.
4742 * cli-utils.h (skip_spaces_const): Likewise.
4743 (extract_arg): Likewise.
4744 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
4745 * configure.ac: Append `stap-probe.o' to be generated when ELF
4746 support is present.
4747 * configure: Regenerate.
4748 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
4749 * elfread.c: Include `probe.h' and `arch-utils.h'.
4750 (probe_key): New variable.
4751 (elf_get_probes): New function.
4752 (elf_get_probe_argument_count): Likewise.
4753 (elf_evaluate_probe_argument): Likewise.
4754 (elf_compile_to_ax): Likewise.
4755 (elf_symfile_relocate_probe): Likewise.
4756 (stap_probe_key_free): Likewise.
4757 (elf_probe_fns): New variable.
4758 (elf_sym_fns): Add `sym_probe_fns' value.
4759 (elf_sym_fns_lazy_psyms): Likewise.
4760 (elf_sym_fns_gdb_index): Likewise.
4761 (_initialize_elfread): Initialize objfile cache for static
4762 probes.
4763 * gdb_vecs.h (struct probe): New forward declaration.
4764 (probe_p): New VEC declaration.
4765 * gdbarch.c: Regenerate.
4766 * gdbarch.h: Regenerate.
4767 * gdbarch.sh (stap_integer_prefix): New variable.
4768 (stap_integer_suffix): Likewise.
4769 (stap_register_prefix): Likewise.
4770 (stap_register_suffix): Likewise.
4771 (stap_register_indirection_prefix): Likewise.
4772 (stap_register_indirection_suffix): Likewise.
4773 (stap_gdb_register_prefix): Likewise.
4774 (stap_gdb_register_suffix): Likewise.
4775 (stap_is_single_operand): New function.
4776 (stap_parse_special_token): Likewise.
4777 (struct stap_parse_info): Forward declaration.
4778 * i386-tdep.c: Including headers needed to perform the parsing
4779 of SystemTap probes' arguments.
4780 (i386_stap_is_single_operand): New function.
4781 (i386_stap_parse_special_token): Likewise.
4782 (i386_elf_init_abi): Initializing proper fields used by SystemTap
4783 probes' arguments parser.
4784 * i386-tdep.h (i386_stap_is_single_operand): New function.
4785 (i386_stap_parse_special_token): Likewise.
4786 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
4787 * mipsread.c (ecoff_sym_fns): Likewise.
4788 * objfiles.c (objfile_relocate1): Support relocation for static
4789 probes.
4790 * parse.c (prefixify_expression): Remove static declaration.
4791 (initialize_expout): Likewise.
4792 (reallocate_expout): Likewise.
4793 * parser-defs.h (initialize_expout): Declare function.
4794 (reallocate_expout): Likewise.
4795 (prefixify_expression): Likewise.
4796 * ppc-linux-tdep.c: Including headers needed to perform the parsing
4797 of SystemTap probes' arguments.
4798 (ppc_stap_is_single_operand): New function.
4799 (ppc_stap_parse_special_token): Likewise.
4800 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
4801 probes' arguments parser.
4802 * probe.c: New file, for generic statically defined probe support.
4803 * probe.h: Likewise.
4804 * s390-tdep.c: Including headers needed to perform the parsing of
4805 SystemTap probes' arguments.
4806 (s390_stap_is_single_operand): New function.
4807 (s390_gdbarch_init): Initializing proper fields used by SystemTap
4808 probes' arguments parser.
4809 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
4810 * stap-probe.c: New file, for SystemTap probe support.
4811 * stap-probe.h: Likewise.
4812 * symfile.h: Include `gdb_vecs.h'.
4813 (struct sym_probe_fns): New struct.
4814 (struct sym_fns) <sym_probe_fns>: New field.
4815 * symtab.c (init_sal): Initialize `probe' field.
4816 * symtab.h (struct probe): Forward declaration.
4817 (struct symtab_and_line) <probe>: New field.
4818 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
4819 locations.
4820 (stop_tracing): Likewise.
4821 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
4822
4823 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
4824 Tom Tromey <tromey@redhat.com>
4825
4826 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
4827 and to compile agent expressions.
4828 * infrun.c (siginfo_make_value): New argument `ignore'.
4829 (siginfo_funcs): New struct.
4830 (_initialize_infrun): New argument when calling
4831 `create_internalvar_type_lazy'.
4832 * thread.c (thread_id_make_value): New argument `ignore'.
4833 (thread_funcs): New struct.
4834 (_initialize_thread): New argument when calling
4835 `create_internalvar_type_lazy'.
4836 * tracepoint.c (sdata_make_value): New argument `ignore'.
4837 (sdata_funcs): New struct.
4838 (_initialize_tracepoint): New argument when calling
4839 `create_internalvar_type_lazy'.
4840 * value.c (make_value): New struct.
4841 (create_internalvar_type_lazy): New argument `data'.
4842 (compile_internalvar_to_ax): New function.
4843 (value_of_internalvar): Properly handling `make_value' case.
4844 (clear_internalvar): Likewise.
4845 (show_convenience): Adding `TRY_CATCH' block.
4846 * value.h (internalvar_make_value): Delete, replace by...
4847 (struct internalvar_funcs): ... this.
4848 (create_internalvar_type_lazy) <fun>: Delete argument.
4849 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
4850 (compile_internalvar_to_ax): New function.
4851 * windows-tdep.c (tlb_make_value): New argument `ignore'.
4852 (tlb_funcs): New struct.
4853 (_initialize_windows_tdep): New argument when calling
4854 `create_internalvar_type_lazy'.
4855
4856 2012-04-27 Mark Wielaard <mjw@redhat.com>
4857
4858 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
4859 see whether it is an address or a constant offset from DW_AT_low_pc.
4860 (dwarf2_record_block_ranges): Likewise.
4861 (read_partial_die): Likewise.
4862
4863 2012-04-26 Mark Wielaard <mjw@redhat.com>
4864
4865 * MAINTAINERS (Write After Approval): Add myself to the list.
4866
4867 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
4868
4869 * proc-utils.h (proc_prettyprint_signalset): New prototype.
4870 (proc_prettyprint_signal): Likewise.
4871 (proc_prettyprint_faultset): Likewise.
4872 (proc_prettyprint_fault): Likewise.
4873 (proc_prettyprint_actionset): Likewise.
4874 (proc_prettyprint_flags): Move to new proc-flags.c section.
4875 (proc_prettyfprint_flags): New prototype.
4876 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
4877 (proc_syscall, proc_cursig): Likewise.
4878 (proc_set_kill_on_last_close): Likewise.
4879 (proc_unset_kill_on_last_close): Likewise.
4880 (proc_set_watchpoint): Make static.
4881 (proc_delete_dead_threads): Likewise.
4882 (procfs_set_watchpoint): Likewise.
4883 (_initialize_procfs): Add prototype.
4884 * proc-events.c: Include proc-utils.h.
4885 (init_syscall_table): Make static.
4886 * proc-api.c (_initialize_proc_api): Add prototype.
4887 * proc-flags.c: Include proc-utils.h.
4888
4889 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
4890
4891 * configure.ac: Add AC_ARG_PROGRAM.
4892 * configure: Regenerate.
4893
4894 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
4895
4896 Fix DW_AT_lower_bound defaults for DWARF-4+.
4897 * dwarf2read.c (read_subrange_type): Remove initialization of low and
4898 high. New variable low_default_is_valid. Implement DWARF-4+
4899 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
4900 no default by the DWARF standard.
4901
4902 2012-04-26 Maciej W. Rozycki <macro@mips.com>
4903 Maciej W. Rozycki <macro@codesourcery.com>
4904
4905 * infrun.c (handle_inferior_event): Move the check for return
4906 trampolines ahead of the check for function trampolines.
4907 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
4908 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
4909 (mips_str_mips16_ret_stub): Likewise.
4910 (mips_str_call_fp_stub): Likewise.
4911 (mips_str_call_stub): Likewise.
4912 (mips_str_fn_stub): Likewise.
4913 (mips_str_pic): Likewise.
4914 (mips_in_frame_stub): New function.
4915 (mips_unwind_pc): Return the return address rather than the PC
4916 if the PC of an intermediate frame is inside a call thunk.
4917 (mips_is_stub_suffix): New function.
4918 (mips_is_stub_mode): Likewise.
4919 (mips_get_mips16_fn_stub_pc): Likewise.
4920 (mips_skip_mips16_trampoline_code): Update to handle all the
4921 currently generated stub types. Don't recurse into __fn_stub
4922 thunks. Remove heuristics to handle stubs beyond etext/_etext.
4923 Use cooked register accesses.
4924 (mips_in_return_stub): Reintroduce function.
4925 (mips_skip_trampoline_code): Traverse trampolines recursively.
4926 (mips_gdbarch_init): Handle MIPS16 return trampolines.
4927
4928 2012-04-26 Joel Brobecker <brobecker@adacore.com>
4929
4930 GDB 7.4.1 released.
4931
4932 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
4933
4934 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
4935 * features/arm-with-m-vfp-d16.xml: New file. Describes
4936 Cortex-M with VFPv4-sp-d16 FPU register layout.
4937 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
4938 * features/arm-with-m-vfp-d16.c: New. Generated from above.
4939 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
4940 (arm-register_g_packet_guesses): Add vfp-d16 guess.
4941 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
4942
4943 2012-04-25 Doug Evans <dje@google.com>
4944
4945 * cli/cli-decode.c (print_doc_line): Use stream instead of
4946 current_uiout.
4947
4948 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
4949
4950 * features/arm-with-iwmmxt.c: Regenerate.
4951 * features/arm-with-m-fpa-layout.c: Likewise.
4952 * features/arm-with-m.c: Likewise.
4953 * features/arm-with-neon.c: Likewise.
4954 * features/arm-with-vfpv2.c: Likewise.
4955 * features/arm-with-vfpv3.c: Likewise.
4956 * features/mips-dsp-linux.c: Likewise.
4957 * features/mips-linux.c: Likewise.
4958 * features/mips64-dsp-linux.c: Likewise.
4959 * features/mips64-linux.c: Likewise.
4960 * features/s390-linux32.c: Likewise.
4961 * features/s390-linux32v1.c: Likewise.
4962 * features/s390-linux32v2.c: Likewise.
4963 * features/s390-linux64.c: Likewise.
4964 * features/s390-linux64v1.c: Likewise.
4965 * features/s390-linux64v2.c: Likewise.
4966 * features/s390x-linux64.c: Likewise.
4967 * features/s390x-linux64v1.c: Likewise.
4968 * features/s390x-linux64v2.c: Likewise.
4969 * features/tic6x-c62x-linux.c: Likewise.
4970 * features/tic6x-c62x.c: Likewise.
4971 * features/tic6x-c64x-linux.c: Likewise.
4972 * features/tic6x-c64x.c: Likewise.
4973 * features/tic6x-c64xp-linux.c: Likewise.
4974 * features/tic6x-c64xp.c: Likewise.
4975 * target-descriptions.c: Only generate `field_type' and `type'
4976 variables when needed.
4977
4978 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
4979
4980 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
4981
4982 2012-04-25 Doug Evans <dje@google.com>
4983
4984 Initial pass at Go language support.
4985 * NEWS: Mention Go.
4986 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
4987 go-valprint.c.
4988 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
4989 (YYFILES): Add go-exp.c.
4990 (YYOBJ): Add go-exp.o.
4991 (local-maintainer-clean): Delete go-exp.c.
4992 * defs.h (enum language): Add language_go.
4993 * dwarf2read.c: #include "go-lang.h".
4994 (fixup_go_packaging): New function.
4995 (process_full_comp_unit): Call it when processing Go CUs.
4996 (dwarf2_physname): Add Go support.
4997 (read_file_scope): Handle missing language spec for GNU Go.
4998 (set_cu_language): Handle DW_LANG_Go.
4999 * go-exp.y: New file.
5000 * go-lang.h: New file.
5001 * go-lang.c: New file.
5002 * go-typeprint.c: New file.
5003 * go-valprint.c: New file.
5004 * symtab.c: #include "go-lang.h".
5005 (symbol_set_language): Handle language_go.
5006 (symbol_find_demangled_name, symbol_set_names): Ditto.
5007 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
5008
5009 2012-04-24 Jim Meyering <meyering@redhat.com>
5010
5011 avoid a few strncpy-induced buffer overruns
5012 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
5013 fname and psargs before trying to concatenate.
5014 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
5015 "name" before applying strchr.
5016
5017 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
5018
5019 * CONTRIBUTE: Use unified diff instead of context diff when
5020 generating patches.
5021
5022 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
5023
5024 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
5025 code. Handle JR.HB correctly.
5026
5027 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
5028
5029 * mips-tdep.c
5030 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
5031 with the other MIPS16 helpers.
5032
5033 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
5034
5035 * observer.sh: Conditionally declare `args', thus cleaning up
5036 unused instances of this variable.
5037
5038 2012-04-24 Yao Qi <yao@codesourcery.com>
5039
5040 Revert this patch to allow breakpoint always-inserted
5041 in record target.
5042 2011-12-05 Pedro Alves <pedro@codesourcery.com>
5043 * breakpoint.c: Include record.h.
5044 (breakpoints_always_inserted_mode): Return false when the record
5045 target is in use.
5046
5047 * breakpoint.c (iterate_over_bp_locations): New.
5048 * breakpoint.h: Declare.
5049 New typedef walk_bp_location_callback.
5050 * record.c (record_open): Call record_init_record_breakpoints.
5051 (record_sync_record_breakpoints): New.
5052 (record_init_record_breakpoints): New.
5053 * NEWS: Mention supporting breakpoint always-inserted mode in
5054 record target.
5055
5056 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
5057
5058 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
5059 any thread.
5060
5061 2012-04-24 Yao Qi <yao@codesourcery.com>
5062
5063 * breakpoint.c (ep_is_catchpoint): Renamed to ...
5064 (is_catchpoint): ... it.
5065 (print_one_breakpoint_location): Caller update.
5066 * breakpoint.h: Update declaration.
5067
5068 2012-04-23 David S. Miller <davem@davemloft.net>
5069
5070 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
5071
5072 2012-04-23 Tom Tromey <tromey@redhat.com>
5073
5074 * buildsym.c (add_free_pendings): Remove.
5075 * buildsym.h (add_free_pendings): Remove.
5076
5077 2012-04-23 Doug Evans <dje@google.com>
5078
5079 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
5080 attr.u.unsnd instead of attr.u.addr.
5081 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
5082 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
5083 DW_FORM_ref_udata.
5084 (dump_die_shallow): Update cases DW_FORM_ref_addr,
5085 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
5086 DW_FORM_ref_udata.
5087 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
5088
5089 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
5090
5091 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
5092 (mips_o32_return_value): Likewise.
5093 (mips_o64_return_value): Likewise.
5094
5095 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
5096
5097 * ada-lang.c (ada_evaluate_subexp): Add cases for
5098 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
5099 their treatment in eval.c.
5100
5101 2012-04-21 David S. Miller <davem@davemloft.net>
5102
5103 * sparc-tdep.c (X_DISP10): Define.
5104 (sparc_analyze_control_transfer): Handle compare-and-branch.
5105
5106 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
5107
5108 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
5109 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
5110
5111 2012-04-20 Nigel Stephens <nigel@mips.com>
5112 Maciej W. Rozycki <macro@codesourcery.com>
5113
5114 * mips-tdep.c (mips_float_register_p): New function.
5115 (mips_convert_register_float_case_p): Use mips_float_register_p.
5116 (mips_register_type): Likewise.
5117 (mips_print_register): Likewise.
5118 (print_gp_register_row): Likewise.
5119 (mips_print_registers_info): Likewise.
5120
5121 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
5122
5123 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
5124 of mips16 symbols.
5125
5126 2012-04-20 Andrew Pinski <apinski@cavium.com>
5127
5128 * MAINTAINERS (Write After Approval): Add myself to the list.
5129
5130 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
5131
5132 * MAINTAINERS: Update my e-mail address.
5133
5134 2012-04-20 Pedro Alves <palves@redhat.com>
5135
5136 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
5137 $srcdir.
5138 * configure: Regenerate.
5139
5140 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
5141
5142 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
5143 declaration.
5144 * gdb_vecs.h: Declare `const_char_ptr' VEC.
5145
5146 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5147
5148 Fix compilation compatibility with python-2.4
5149 * python/py-type.c (convert_field): Cast ADDRSTRING for
5150 PyObject_SetAttrString as non-const. New comment.
5151
5152 2012-04-19 Tom Tromey <tromey@redhat.com>
5153
5154 * top.c (quit_target): Use all_cleanups.
5155 * main.c (captured_command_loop): Use all_cleanups.
5156 * exceptions.c (throw_exception): Use all_cleanups.
5157
5158 2012-04-19 Pedro Alves <palves@redhat.com>
5159
5160 * Makefile.in (GNULIB_BUILDDIR): New.
5161 (LIBGNU, INCGNU, GNULIB_H): Adjust.
5162 (SUBDIRS): Add $(GNULIB_BUILDDIR).
5163 (CLEANDIRS). Remove gnulib/import.
5164 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
5165 (all-lib): Ditto.
5166 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
5167 (gnulib/import/Makefile): Replace gnulib/import with
5168 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
5169 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
5170 (aclocal_m4_deps): Remove the gnulib dependencies. Add
5171 acx_configure_dir.m4.
5172 * acinclude.m4: Include acx_configure_dir.m4.
5173 * acx_configure_dir.m4: New file.
5174 * aclocal.m4: Regenerate.
5175 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
5176 calls. Configure gnulib using ACX_CONFIGURE_DIR.
5177 (GNULIB): New variable.
5178 (GNULIB_STDINT_H): Adjust.
5179 (AC_OUTPUT): Don't output gnulib/Makefile.
5180 * gdb/defs.h: Include build-gnulib/config.h.
5181 * aclocal.m4: Regenerate.
5182 * config.in: Regenerate.
5183 * configure: Regenerate.
5184
5185 * gnulib/Makefile.in: New file.
5186 * gnulib/configure.ac: New file.
5187 * gnulib/aclocal.m4: New file.
5188 * gnulib/config.in: New file.
5189 * gnulib/configure: New file.
5190 * gnulib/: Re-run gnulib-tool to adjust.
5191
5192 2012-04-19 Doug Evans <dje@google.com>
5193
5194 * cleanups.h (struct cleanup): Move to cleanups.c.
5195 (make_cleanup_dtor_ftype): New typedef.
5196 (make_cleanup_dtor): Use it.
5197 (ALL_CLEANUPS): Replace with ...
5198 (all_cleanups): ... this. Declare. All uses updated.
5199 * cleanups.c: #include "gdb_assert.h".
5200 (sentinel_cleanup): New static global.
5201 (SENTINEL_CLEANUP): Define.
5202 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
5203 (make_my_cleanup2): Assert result is non-NULL.
5204 (all_cleanups): New function.
5205 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
5206 of NULL.
5207
5208 2012-04-19 Pedro Alves <palves@redhat.com>
5209
5210 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
5211 Adjust paths to gnulib imported files.
5212
5213 2012-04-19 Pedro Alves <palves@redhat.com>
5214
5215 * gnulib/: Move whole directory ...
5216 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
5217 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
5218 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
5219 (aclocal_m4_deps): Adjust.
5220 * aclocal.m4: Regenerate.
5221 * configure: Regenerate.
5222 * configure.ac: Adjust AC_OUTPUT output.
5223
5224 2012-04-19 Yao Qi <yao@codesourcery.com>
5225
5226 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
5227 (vec.o): New rule.
5228 * vec.c: Move it ...
5229 * common/vec.c: ... here.
5230 * vec.h: Move it ...
5231 * common/vec.h: ... here.
5232
5233 2012-04-19 Yao Qi <yao@codesourcery.com>
5234
5235 * gdb-code-style.el: New.
5236
5237 2012-04-18 Pedro Alves <palves@redhat.com>
5238
5239 Update gnulib from latest git.
5240 (639ea5ae15e39fe48d43e04864b2997301e4b969)
5241
5242 * gnulib/Makefile.am: Update.
5243 * gnulib/dummy.c: Update.
5244 * gnulib/extra/arg-nonnull.h: Update.
5245 * gnulib/extra/c++defs.h: Update.
5246 * gnulib/extra/update-copyright: Update.
5247 * gnulib/extra/warn-on-use.h: Update.
5248 * gnulib/inttypes.in.h: Update.
5249 * gnulib/m4/00gnulib.m4: Update.
5250 * gnulib/m4/extensions.m4: Update.
5251 * gnulib/m4/gnulib-cache.m4: Update.
5252 * gnulib/m4/gnulib-common.m4: Update.
5253 * gnulib/m4/gnulib-comp.m4: Update.
5254 * gnulib/m4/gnulib-tool.m4: Update.
5255 * gnulib/m4/include_next.m4: Update.
5256 * gnulib/m4/inttypes-pri.m4: Update.
5257 * gnulib/m4/inttypes.m4: Update.
5258 * gnulib/m4/longlong.m4: Update.
5259 * gnulib/m4/memchr.m4: Update.
5260 * gnulib/m4/memmem.m4: Update.
5261 * gnulib/m4/mmap-anon.m4: Update.
5262 * gnulib/m4/multiarch.m4: Update.
5263 * gnulib/m4/onceonly.m4: Update.
5264 * gnulib/m4/stddef_h.m4: Update.
5265 * gnulib/m4/stdint.m4: Update.
5266 * gnulib/m4/string_h.m4: Update.
5267 * gnulib/m4/warn-on-use.m4: Update.
5268 * gnulib/m4/wchar_h.m4: Update.
5269 * gnulib/m4/wchar_t.m4: Update.
5270 * gnulib/m4/wint_t.m4: Update.
5271 * gnulib/memchr.c: Update.
5272 * gnulib/memmem.c: Update.
5273 * gnulib/stddef.in.h: Update.
5274 * gnulib/stdint.in.h: Update.
5275 * gnulib/str-two-way.h: Update.
5276 * gnulib/string.in.h: Update.
5277 * gnulib/wchar.in.h: Update.
5278
5279 * gnulib/extra/arg-nonnull.h: Delete.
5280 * gnulib/extra/c++defs.h: Delete.
5281 * gnulib/extra/warn-on-use.h: Delete.
5282 * gnulib/m4/wchar_h.m4: Delete.
5283 * gnulib/m4/wint_t.m4: Delete.
5284 * gnulib/wchar.in.h: Delete.
5285
5286 * gnulib/extra/snippets/arg-nonnull.h: New.
5287 * gnulib/extra/snippets/c++defs.h: New.
5288 * gnulib/extra/snippets/warn-on-use.h: New.
5289
5290 * aclocal.m4: Regenerate.
5291 * config.in: Regenerate.
5292 * configure: Regenerate.
5293 * gnulib/Makefile.in: Regenerate.
5294
5295 2012-04-18 Pedro Alves <palves@redhat.com>
5296
5297 Reimport the update-copyright module from gnulib
5298 (250b80067c1e1d8faa0c42fb572f721975b929c5).
5299
5300 * configure: Regenerate.
5301 * gnulib/Makefile.am: Update.
5302 * gnulib/Makefile.in: Regenerate.
5303 * gnulib/extra/update-copyright: Update.
5304 * gnulib/m4/gnulib-cache.m4: Update.
5305 * gnulib/m4/gnulib-comp.m4: Update.
5306
5307 2012-04-18 Tristan Gingold <gingold@adacore.com>
5308
5309 * configure.ac (aix): Put -lpthread into libs.
5310 * configure: Regenerate.
5311
5312 2012-04-18 Tom Tromey <tromey@redhat.com>
5313
5314 * linespec.c (convert_linespec_to_sals): Don't use
5315 SYMBOL_OBJ_SECTION.
5316 (compare_msymbols): Arguments are minsym_and_objfile, not
5317 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
5318
5319 2012-04-18 Pedro Alves <palves@redhat.com>
5320
5321 Revert gnulib/ part of:
5322 2011-01-01 Joel Brobecker <brobecker@adacore.com>
5323 Copyright year update in most files (performed by copyright.sh).
5324
5325 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5326
5327 Fix 64-bit constants on 32-bit hosts.
5328 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
5329 from unsigned long to ULONGEST.
5330 (read_signed_leb128): Change declaration return type from long to
5331 LONGEST.
5332 (dwarf2_const_value_attr): Change declaration parameter value from long
5333 to LONGEST.
5334 (dwarf2_compute_name): Change variable value from long to LONGEST.
5335 (read_unsigned_leb128): Change return type, variable result and some
5336 casts from unsigned long to ULONGEST.
5337 (read_signed_leb128): Change return type, variable result and some
5338 casts from long to LONGEST.
5339 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
5340 value from long to LONGEST.
5341 (dwarf2_const_value): Change variable value from long to LONGEST.
5342 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
5343 plongest and hex_string.
5344 * symtab.h (struct general_symbol_info): Change ivalue from long to
5345 LONGEST, remove the comment.
5346 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
5347 Change SYMBOL_VALUE format strings to use plongest and hex_string.
5348
5349 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
5350
5351 PR symtab/7259:
5352 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
5353 * ada-lang.c (ada_discrete_type_high_bound)
5354 (ada_discrete_type_low_bound): Fix function comment. Use
5355 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
5356 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
5357 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
5358 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
5359 Use TYPE_FIELD_ENUMVAL.
5360 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
5361 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
5362 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
5363 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
5364 TYPE_CODE_ENUM.
5365 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
5366 * dwarf2read.c (process_enumeration_scope): Likewise.
5367 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
5368 field.bitpos.
5369 (class StructMainTypePrettyPrinter): Support also
5370 FIELD_LOC_KIND_ENUMVAL.
5371 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
5372 TYPE_CODE_ENUM.
5373 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
5374 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
5375 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
5376 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
5377 field enumval.
5378 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
5379 accommodate enumval.
5380 (struct call_site): Adjust loc_kind to accommodate enumval.
5381 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
5382 (TYPE_FIELD_ENUMVAL): New macros.
5383 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
5384 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
5385 TYPE_CODE_ENUM.
5386 * p-typeprint.c (pascal_type_print_base): Likewise.
5387 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
5388 enumval.
5389 * python/lib/gdb/types.py (make_enum_dict): Likewise.
5390 * python/py-type.c (convert_field): New variable addrstring. Use
5391 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
5392 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
5393 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
5394 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
5395 TYPE_CODE_ENUM.
5396 * valprint.c (generic_val_print): Likewise.
5397
5398 2012-04-17 Doug Evans <dje@google.com>
5399
5400 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
5401
5402 * dwarf2read.c: Whitespace fixes.
5403 (lookup_signatured_type): Tweak comment.
5404 (get_die_type_at_offset): Fix comment.
5405
5406 2012-04-17 Joel Brobecker <brobecker@adacore.com>
5407
5408 * xcoffread.c (xcoff_secnum_to_sections): New function.
5409 (secnum_to_section, secnum_to_bfd_section): Reimplement
5410 using xcoff_secnum_to_sections. Rename "secnum" parameter
5411 into "n_scnum".
5412 (RECORD_MINIMAL_SYMBOL): Delete.
5413 (record_minimal_symbol): New function.
5414 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
5415 by call to record_minimal_symbol and set misc_func_recorded
5416 to 1. Set last_csect_sec to the XCOFF section index instead
5417 of GDB's section_offset index. Update calls to
5418 prim_record_minimal_symbol_and_info to pass the BFD section
5419 as well.
5420
5421 2012-04-17 Joel Brobecker <brobecker@adacore.com>
5422
5423 * xcoffread.c (read_xcoff_symtab): Delete variables
5424 last_csect_val and last_csect_sec and associated code.
5425
5426 2012-04-17 Doug Evans <dje@google.com>
5427
5428 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
5429 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
5430 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
5431 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
5432
5433 * cleanups.h: New file.
5434 * cleanups.c: New file.
5435 * Makefile.in (SFILES): Add cleanups.c.
5436 (HFILES_NO_SRCDIR): Add cleanups.h.
5437 (COMMON_OBS): Add cleanups.o.
5438 * defs.h (struct cleanup): Moved to cleanups.h.
5439 (do_cleanups,do_final_cleanups): Ditto.
5440 (discard_cleanups,discard_final_cleanups): Ditto
5441 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
5442 (save_cleanups,save_final_cleanups): Ditto.
5443 (restore_cleanups,restore_final_cleanups): Ditto.
5444 (null_cleanup): Ditto.
5445 (make_my_cleanup,make_my_cleanup2): Ditto.
5446 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
5447 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
5448 (do_cleanups,do_final_cleanups): Ditto.
5449 (discard_cleanups,discard_final_cleanups): Ditto
5450 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
5451 (save_cleanups,save_final_cleanups): Ditto.
5452 (restore_cleanups,restore_final_cleanups): Ditto.
5453 (null_cleanup): Ditto.
5454 (make_my_cleanup,make_my_cleanup2): Ditto.
5455 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
5456
5457 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
5458 make_my_cleanup.
5459 (make_cleanup_dyn_string_delete): Ditto.
5460 (make_cleanup_ui_file_delete): Ditto.
5461 (make_cleanup_ui_out_redirect_pop): Ditto.
5462 (make_cleanup_free_section_addr_info): Ditto.
5463 (make_cleanup_restore_integer): Ditto.
5464 (make_cleanup_unpush_target): Ditto.
5465 (make_cleanup_value_free_to_mark): Ditto.
5466 (make_cleanup_value_free): Ditto.
5467 (make_cleanup_free_so): Ditto.
5468
5469 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5470
5471 New option "set debug auto-load".
5472 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
5473 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
5474 (auto_load_safe_path_vec_update)
5475 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
5476 if DEBUG_AUTO_LOAD.
5477 (file_is_auto_load_safe): New parameters debug_fmt and ....
5478 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
5479 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
5480 caller by explanatory string.
5481 (_initialize_auto_load): Register "set debug auto-load".
5482 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
5483 and ....
5484 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
5485 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
5486 by explanatory string.
5487 * main.c (captured_main): Likewise.
5488 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
5489 (source_section_scripts): Likewise.
5490
5491 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5492
5493 New option "set auto-load safe-path".
5494 * NEWS: New commands "set auto-load safe-path"
5495 and "show auto-load safe-path".
5496 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
5497 (auto_load_safe_path, auto_load_safe_path_vec)
5498 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
5499 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
5500 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
5501 (source_gdb_script_for_objfile): New variable is_safe. Call
5502 file_is_auto_load_safe. Return if it is not.
5503 (struct loaded_script): New field loaded.
5504 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
5505 (print_script): Use LOADED indicator instead of FULL_PATH. Change
5506 output "Missing" to "No".
5507 (_initialize_auto_load): New variable cmd. Initialize
5508 auto_load_safe_path. Register "set auto-load safe-path",
5509 "show auto-load safe-path" and "add-auto-load-safe-path".
5510 * auto-load.h (maybe_add_script): Add parameter loaded.
5511 (file_is_auto_load_safe): New declaration.
5512 * config.in: Regenerate.
5513 * configure: Regenerate.
5514 * configure.ac: New parameters --with-auto-load-safe-path
5515 and --without-auto-load-safe-path.
5516 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
5517 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
5518 * main.c (captured_main): Check file_is_auto_load_safe for
5519 LOCAL_GDBINIT.
5520 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
5521 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
5522 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
5523 not.
5524
5525 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5526
5527 auto-load: Implementation.
5528 * NEWS: New descriptions for "info auto-load",
5529 "info auto-load gdb-scripts", "info auto-load python-scripts",
5530 "info auto-load local-gdbinit" and "info auto-load libthread-db".
5531 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
5532 and "show auto-load-scripts". New description for "set auto-load",
5533 "show auto-load", "set auto-load gdb-scripts",
5534 "show auto-load gdb-scripts", "set auto-load python-scripts",
5535 "show auto-load python-scripts", "set auto-load local-gdbinit",
5536 "show auto-load local-gdbinit", "set auto-load libthread-db" and
5537 "show auto-load libthread-db".
5538 * auto-load.c: Remove include python/python-internal.h. Add includes
5539 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
5540 cli/cli-setshow.h.
5541 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
5542 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
5543 (gdbpy_global_auto_load): Rename to ...
5544 (global_auto_load): ... here.
5545 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
5546 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
5547 (script_language_gdb, source_gdb_script_for_objfile): New.
5548 (struct loaded_script): New field language.
5549 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
5550 LANGUAGE.
5551 (maybe_add_script): Add parameter language. Drop redundant
5552 entry.full_path initialization. Initialize entry.language and
5553 (*slot)->language.
5554 (auto_load_objfile_script): Change parameter suffix to language.
5555 Remove the call of maybe_add_script.
5556 Call language->source_script_for_objfile.
5557 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
5558 New.
5559 (collect_matching_scripts): Adjust it for
5560 struct collect_matching_scripts_data.
5561 (auto_load_info_scripts_pattern_nl): New variable.
5562 (info_auto_load_scripts): Rename to ...
5563 (auto_load_info_scripts): ... here, add parameter language. Adjust it
5564 for struct collect_matching_scripts_data.
5565 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
5566 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
5567 (auto_load_show_cmdlist_get, info_auto_load_cmd)
5568 (auto_load_info_cmdlist_get): New.
5569 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
5570 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
5571 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
5572 "info auto-load local-gdbinit".
5573 * auto-load.h (struct script_language): New.
5574 (gdbpy_global_auto_load): Rename to ...
5575 (global_auto_load): ... here.
5576 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
5577 (auto_load_local_gdbinit_loaded): New declarations.
5578 (maybe_add_script): New parameter language.
5579 (auto_load_objfile_script): Change parameter suffix to language.
5580 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
5581 (auto_load_info_scripts, auto_load_set_cmdlist_get)
5582 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
5583 declarations.
5584 * linux-thread-db.c: Include auto-load.h and ctype.h.
5585 (auto_load_thread_db, show_auto_load_thread_db): New.
5586 (struct thread_db_info): New field filename.
5587 (delete_thread_db_info): Call xfree for FILENAME.
5588 (try_thread_db_load): Initialize FILENAME.
5589 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
5590 if !AUTO_LOAD_THREAD_DB.
5591 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
5592 (_initialize_thread_db): Install auto_load_thread_db
5593 as "set auto-load libthread-db" and install info_auto_load_libthread_db
5594 as "info auto-load libthread-db".
5595 * main.c (captured_main): Rename gdbpy_global_auto_load to
5596 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
5597 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
5598 (print_gdb_help): Extend the help for 'local init file'.
5599 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
5600 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
5601 (auto_load_scripts): Rename to ...
5602 (auto_load_python_scripts): ... here, update the comment.
5603 (gdbpy_load_auto_script_for_objfile): New declaration.
5604 (show_auto_load_python_scripts, script_language_python)
5605 (gdbpy_load_auto_script_for_objfile): New.
5606 (source_section_scripts): Refactor the code.
5607 (load_auto_scripts_for_objfile): Rename to ...
5608 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
5609 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
5610 (info_auto_load_python_scripts): New.
5611 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
5612 Rename "set auto-load-scripts" to "set auto-load python-scripts".
5613 Register "set auto-load-scripts" as its deprecated alias. Register
5614 "info auto-load python-scripts". Register "info auto-load-scripts" as
5615 its deprecated alias.
5616 (load_auto_scripts_for_objfile): Rename to ...
5617 (gdbpy_load_auto_scripts_for_objfile): ... here.
5618 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
5619 (gdbpy_load_auto_scripts_for_objfile): ... here.
5620
5621 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5622
5623 auto-load: Move files.
5624 * Makefile.in (SFILES): Add auto-load.c.
5625 (HFILES_NO_SRCDIR): Add auto-load.h.
5626 (COMMON_OBS): Add auto-load.o.
5627 (distclean): Change .gdbinit for gdb-gdb.gdb.
5628 * auto-load.c: New file, with parts from python/py-auto-load.c.
5629 * auto-load.h: New file, with parts from python/python.h.
5630 * configure: Regenerate.
5631 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
5632 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
5633 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
5634 * main.c: Include auto-load.h.
5635 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
5636 command.h, observer.h and progspace.h to auto-load.c. Add include
5637 auto-load.h.
5638 (gdbpy_global_auto_load, struct auto_load_pspace_info)
5639 (struct loaded_script, auto_load_pspace_data)
5640 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
5641 (hash_loaded_script_entry, eq_loaded_script_entry)
5642 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
5643 (maybe_add_script): Move to auto-load.c.
5644 (source_section_scripts): Change maybe_add_script parameters passing,
5645 use script_not_found_warning_print.
5646 (clear_section_scripts, auto_load_objfile_script)
5647 (auto_load_new_objfile, loaded_script_ptr)
5648 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
5649 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
5650 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
5651 auto_load_new_objfile and info_auto_load_scripts initizations to
5652 auto-load.c.
5653 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
5654
5655 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5656
5657 Code cleanup.
5658 * charset.c (find_charset_names): Remove variables ix and elt.
5659 Use free_char_ptr_vec.
5660 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
5661 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
5662 debugdir_end. New variable debugdir_len.
5663 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
5664 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
5665 declarations.
5666 * progspace.c (clear_program_space_solib_cache): Remove variables ix
5667 and elt. Use free_char_ptr_vec.
5668 * source.c (add_path): Remove variables argv, arg and argv_index.
5669 New variables dir_vec, back_to, ix and name.
5670 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
5671 make_cleanup_freeargv. Remove variable separator. Simplify the code
5672 no longer expecting DIRNAME_SEPARATOR.
5673 (openp): Remove variable p, p1 and len. New variables dir_vec,
5674 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
5675 no longer expecting DIRNAME_SEPARATOR.
5676 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
5677 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
5678 debugdir_end.
5679 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
5680 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
5681 (dirnames_to_char_ptr_vec): New functions.
5682
5683 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5684
5685 Code cleanup.
5686 * source.c (add_path): Remove always true conditional 'p == 0' and
5687 unindent its code block.
5688
5689 2012-04-17 Pedro Alves <palves@redhat.com>
5690
5691 * gdbtypes.h (FIELD_BITPOS): Rename to ...
5692 (FIELD_BITPOS_LVAL): ... this.
5693 (FIELD_BITPOS): New.
5694 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
5695 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
5696 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
5697 SET_FIELD_BITPOS.
5698 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
5699 SET_FIELD_BITPOS.
5700 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
5701 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
5702 * target-descriptions.c (tdesc_gdb_type): Adjust to use
5703 SET_FIELD_BITPOS.
5704
5705 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5706
5707 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
5708 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
5709 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
5710 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
5711 * jv-lang.c (java_link_class_type): Likewise, once.
5712 * stabsread.c (read_enum_type): Likewise.
5713
5714 2012-04-16 Yao Qi <yao@codesourcery.com>
5715
5716 * common/agent.c (agent_run_command): Add one more parameter `len'.
5717 Update callers.
5718 * common/agent.h: Update declaration.
5719 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
5720 Update.
5721 (linux_child_static_tracepoint_markers_by_strid): Ditto.
5722
5723 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
5724
5725 PR mi/13393
5726 * value.c (value_actual_type): New function.
5727 * value.h (value_actual_type): New declaration.
5728 * varobj.c (update_type_if_necessary): New function.
5729 (varobj_create): Call value_actual_type instead of
5730 value_type.
5731 (install_dynamic_child): distinct changed and type changed MI variable
5732 objects.
5733 (update_dynamic_varobj_children): Updated for install_dynamic_child
5734 change. All callers updated.
5735 (varobj_update): Support for MI variable object type change if
5736 the value changed and RTTI is used to determine the type.
5737 (create_child_with_value): Call value_actual_type instead of
5738 value_type.
5739 (adjust_value_for_child_access): Extended with a new parameter which
5740 specify whether the given value should be casted to enclosing type.
5741 All callers updated.
5742
5743 2012-04-14 Yao Qi <yao@codesourcery.com>
5744
5745 Import gnulib module inttypes from git
5746 (250b80067c1e1d8faa0c42fb572f721975b929c5)
5747 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
5748 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
5749 gnulib/m4/inttypes-pri.m4
5750 * aclocal.m4, config.in, configure: Regenerated.
5751 * gnulib/Makefile.am: Update.
5752 * gnulib/Makefile.in: Update.
5753 * gnulib/m4/gnulib-cache.m4: Update.
5754 * gnulib/m4/gnulib-comp.m4: Update.
5755 * gnulib/inttypes.in.h: New.
5756 * gnulib/m4/inttypes-pri.m4: New.
5757 * gnulib/m4/inttypes.m4: New.
5758
5759 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
5760
5761 * infrun.c (resume): Update PC address to the real PC after
5762 preparing to do displaced stepping.
5763
5764 2012-04-12 Doug Evans <dje@google.com>
5765
5766 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
5767 All callers updated.
5768
5769 2012-04-12 Mark Kettenis <kettenis@gnu.org>
5770
5771 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
5772
5773 2012-04-12 Doug Evans <dje@google.com>
5774
5775 * dwarf2read.c (create_all_type_units): Renamed from
5776 create_debug_types_hash_table. All callers updated.
5777
5778 * dwarf2read.c (create_signatured_type_table_from_index): Rename
5779 local type_sig to sig_type, type_offset to type_offset_in_tu.
5780 (hash_signatured_type): Renamed from hash_type_signature,
5781 all callers updated.
5782 (eq_signatured_type): Renamed from eq_type_signature,
5783 all callers updated.
5784 (create_debug_types_hash_table): Rename local type_sig to sig_type.
5785 (process_enumeration_scope): Ditto.
5786 (lookup_signatured_type_at_offset): Ditto.
5787 (load_full_type_unit, read_signatured_type): Ditto.
5788
5789 2012-04-12 Yao Qi <yao@codesourcery.com>
5790
5791 * remote.c (async_remote_interrupt): Correct function name in
5792 debug message.
5793 (async_remote_interrupt_twice): Ditto.
5794
5795 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
5796
5797 * source.c (find_and_open_source): Consistently pass resulting
5798 full path through xfullpath.
5799
5800 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5801
5802 Provide more specific displaced-stepping memory error message.
5803 * infrun.c (displaced_step_prepare): New variable status. Call
5804 target_read_memory instead of read_memory, provide more specific
5805 error message.
5806
5807 2012-04-11 Tristan Gingold <gingold@adacore.com>
5808
5809 PR gdb/13901
5810 * darwin-nat.c (darwin_execvp): Revert previous patch.
5811
5812 2012-04-11 Tristan Gingold <gingold@adacore.com>
5813
5814 PR gdb/13901
5815 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
5816 in case of change.
5817
5818 2012-04-11 Tristan Gingold <gingold@adacore.com>
5819
5820 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
5821 warning.
5822
5823 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
5824
5825 New command 'explore' which helps explore values and types in
5826 scope.
5827 * NEWS: Add an entry about the new 'explore' command.
5828 * data-directory/Makefile.in: Add gdb/command/explore.py
5829 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
5830 command using the GDB Python API.
5831
5832 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
5833
5834 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
5835 extension in jump target calculation.
5836
5837 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
5838
5839 * mips-tdep.c (mips32_next_pc): Handle JALX.
5840
5841 2012-04-10 Yao Qi <yao@codesourcery.com>
5842
5843 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
5844
5845 2012-04-10 Yao Qi <yao@codesourcery.com>
5846
5847 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
5848 and gnulib/m4/gnulib-tool.m4.
5849
5850 2012-04-10 Doug Evans <dje@google.com>
5851
5852 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
5853 (load_partial_dies): Clarify comment.
5854 (find_partial_die): Support rereading type units.
5855 Clarify CU handling, if we know offset is in CU, don't search for the
5856 containing CU. Add comment regarding memory waste.
5857
5858 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
5859
5860 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
5861 i386/x32-avx and i386/x32-avx-linux.
5862 (i386/x32-expedite): New.
5863 (i386/x32-linux-expedite): Likewise.
5864 (i386/x32-avx-expedite): Likewise.
5865 (i386/x32-avx-linux-expedite): Likewise.
5866 ($(outdir)/i386/x32.dat): Likewise.
5867 ($(outdir)/i386/x32-linux.dat): Likewise.
5868 ($(outdir)/i386/x32-avx.dat): Likewise.
5869 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
5870
5871 * features/i386/x32-avx-linux.xml: New file.
5872 * features/i386/x32-avx.xml: Likewise.
5873 * features/i386/x32-core.xml: Likewise.
5874 * features/i386/x32-linux.xml: Likewise.
5875 * features/i386/x32.xml: Likewise.
5876
5877 * features/i386/x32-avx-linux.c: New. Generated.
5878 * features/i386/x32-avx.c: Likewise.
5879 * features/i386/x32-linux.c: Likewise.
5880 * features/i386/x32.c: Likewise.
5881 * regformats/i386/x32-avx-linux.dat: Likewise.
5882 * regformats/i386/x32-avx.dat: Likewise.
5883 * regformats/i386/x32-linux.dat: Likewise.
5884 * regformats/i386/x32.dat: Likewise.
5885
5886 2012-04-10 Tristan Gingold <gingold@adacore.com>
5887
5888 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
5889 code to kill the inferior.
5890
5891 2012-04-09 Mark Kettenis <kettenis@gnu.org>
5892
5893 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
5894 defines.
5895 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
5896 defines.
5897 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
5898 (yyvsp): New defines.
5899 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
5900 defines.
5901 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
5902 defines.
5903 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
5904 defines.
5905 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
5906 defines.
5907 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
5908 defines.
5909
5910 2012-04-09 Mark Kettenis <kettenis@gnu.org>
5911
5912 * sparc64-tdep.c (sparc64_store_arguments)
5913 (sparc64_store_arguments): Fix coding style.
5914
5915 2012-04-07 Mark Kettenis <kettenis@gnu.org>
5916
5917 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
5918 complex floats, adjust some related comments and tighten a related
5919 assertion.
5920 (sparc64_extract_return_value): Handle complex floats.
5921
5922 2012-04-07 Doug Evans <dje@google.com>
5923
5924 * dwarf2read.c (load_partial_dies): Change condition to assert.
5925
5926 2012-04-06 Doug Evans <dje@google.com>
5927
5928 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
5929 "mov %rsp,%rbp".
5930
5931 2012-04-05 Kevin Buettner <kevinb@redhat.com>
5932
5933 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
5934 fencepost error.
5935 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
5936 (v850_gdbarch_init): Set `num_regs' as appropriate for the
5937 architecture.
5938
5939 2012-04-05 Keith Seitz <keiths@redhat.com>
5940
5941 * linespec.c (decode_compound): Remove.
5942 (enum offset_relative_sign): New enum.
5943 (struct line_offset): New struct.
5944 (struct linespec): New struct.
5945 (struct linespec_state): Move file_symtabs,
5946 user_filename, and user_function into struct linespec.
5947 Make result an anonymous struct holding vectors of
5948 symbolp and minsym_and_objfile_d.
5949 Add language member.
5950 (enum ls_token_type): New enum.
5951 (linespec_keywords): New array.
5952 (struct ls_token): New struct.
5953 (struct ls_parser): New struct.
5954 (linespec_lexer_lex_number): New function.
5955 (linespec_lexer_lex_keyword): New function.
5956 (is_ada_operator): New function.
5957 (skip_quote_char): New function.
5958 (copy_token_string): New function.
5959 (is_closing_quote_enclosed): New function.
5960 (find_parameter_list_end): New function.
5961 (linespec_lexer_lex_string): New function.
5962 (linespec_lexer_lex_one): New function.
5963 (linespec_lexer_consume_token): New function.
5964 (linespec_lexer_peek_token): New function.
5965 (cplusplus_error): Remove unused function.
5966 (find_methods): Update comment.
5967 (find_toplevel_char): Return const.
5968 (is_objc_method_format): Remove unused function.
5969 (find_toplevel_string): New function.
5970 (is_linespec_boundary): Remove.
5971 (symbol_not_found_error): New function.
5972 (find_method_overload_end): Remove function.
5973 (unexpected_linespec_error): New function.
5974 (keep_name_info): Remove.
5975 (linespec_parse_line_offset): New function.
5976 (linespec_parse_basic): New function.
5977 (canonicalize_linespec): New function.
5978 (decode_line_internal): Remove.
5979 (create_sals_line_offset): New function adapted from
5980 decode_all_digits.
5981 (convert_linespec_to_sals): New function.
5982 (parse_linespec): New function.
5983 (linespec_parser_new): New function.
5984 (linespec_state_destructor): Change parameter type to
5985 struct linespec_state *.
5986 Add language parameter.
5987 Remove freeing of moved members.
5988 (linespec_parser_delete): New function.
5989 (decode_line_full): Use parse_linespec and linespec_parser_new.
5990 (decode_line_1): Likewise.
5991 (decode_indirect): Rename to ...
5992 (linespec_expression_to_pc): ... this and rewrite
5993 to simply find CORE_ADDR, storing this result for later
5994 conversion to SALs.
5995 (locate_first_half): Remove.
5996 (deocde_objc): Add parameter LS.
5997 Initialize new struct collect_info members.
5998 Handle minimal symbols, too.
5999 (decode_compound): Delete.
6000 (lookup_prefix_sym): Rewrite.
6001 (compare_msymbols): New function.
6002 (find_method): Rewrite.
6003 Do not call cplusplus_error.
6004 (symtabs_from_filename): Rewrite.
6005 (collect_function_symbols): Delete.
6006 (find_function_symbols): Rewrite without ARGPTR-style
6007 processing.
6008 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
6009 (decode_dollar): Adapted and renamed to ...
6010 (linespec_parse_variable): ... this.
6011 (find_linespec_symbols): New function.
6012 (decode_label): Adapted and renamed to ...
6013 (find_label_symbols): ... this.
6014 (decode_digits_list_mode): Add and use LS argument.
6015 (decode_digits_ordinary): Likewise.
6016 (collect_symbols): Do not collect SALs, just symbols and msymbols.
6017 If in list mode, allow any symbol class. Otherwise, only
6018 permit LOC_BLOCK symbols.
6019 (minsym_found): Update comments.
6020 (search_minsyms_for_name): Do not convert the matching symbol
6021 into a SAL. Simply push the symbol and objfile into the
6022 result vector.
6023 (decode_variable): Delete. Contents adapted into
6024 find_linespec_symbols.
6025
6026 * cp-support.c (SKIP_SPACE): Remove.
6027 (operator_tokens): Remove unused global.
6028 (cp_validate_operator): Remove.
6029 * cp-support.h (cp_validate_operator): Remove declaration.
6030
6031 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6032
6033 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
6034 for TYPE_VPTR_FIELDNO.
6035 * valprint.c (valprint_check_validity): Make it global, move the
6036 function comment ...
6037 * value.h (valprint_check_validity): ... to this new declaration.
6038
6039 2012-04-02 Tristan Gingold <gingold@adacore.com>
6040
6041 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
6042 the STATE32 api for i386 state.
6043 (i386_darwin_store_inferior_registers): Likewise.
6044
6045 2012-04-02 Tristan Gingold <gingold@adacore.com>
6046
6047 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
6048 SS offset.
6049 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
6050 format_string.
6051
6052 2012-04-02 Tristan Gingold <gingold@adacore.com>
6053
6054 PR gdb/13901
6055 * darwin-nat.c (darwin_execvp): Set binary preference.
6056
6057 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6058
6059 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
6060
6061 2012-03-30 Tom Tromey <tromey@redhat.com>
6062
6063 * python/python.c (gdbpy_decode_line): Move cleanup creation out
6064 of TRY_CATCH. Fix error handling.
6065 * python/py-value.c (convert_value_from_python): Move 'old'
6066 declaration to innermost scope.
6067
6068 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6069 Andrey Smirnov <andrew.smirnov@gmail.com>
6070
6071 -Wshadow warning fix.
6072 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
6073 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
6074 Adjust code accordingly.
6075
6076 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6077
6078 * ada-lang.c (symbol_completion_add): Rename parameter
6079 "encoded" into "encoded_p". Ajust code and documentation
6080 accordingly.
6081
6082 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6083 Andrey Smirnov <andrew.smirnov@gmail.com>
6084
6085 -Wshadow warning fix.
6086 * ada-lang.c (symbol_completion_add): Rename parameter
6087 "wild_match" into wild_match_p. Update code and documentation
6088 accordingly.
6089
6090 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6091
6092 * ada-lang.c (symbol_completion_match): Rename parameter
6093 "encoded" into "encoded_p". Ajust code and documentation
6094 accordingly.
6095
6096 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6097 Andrey Smirnov <andrew.smirnov@gmail.com>
6098
6099 -Wshadow warning fix.
6100 * ada-lang.c (symbol_completion_match): Rename parameter
6101 "wild_match" into "wild_match_p". Adjust code and function
6102 documentation accordingly.
6103
6104 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6105 Andrey Smirnov <andrew.smirnov@gmail.com>
6106
6107 -Wshadow warning fix.
6108 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
6109 "symbol_info" into "info". Adjust code accordingly.
6110 (ada_lookup_symbol): Likewise.
6111
6112 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6113
6114 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
6115 of this function's documentation.
6116
6117 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6118 Andrey Smirnov <andrew.smirnov@gmail.com>
6119
6120 -Wshadow warning fix.
6121 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
6122 variable into "wild_match_p". Adjust code accordingly.
6123
6124 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6125 Andrey Smirnov <andrew.smirnov@gmail.com>
6126
6127 -Wshadow warning fix.
6128 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
6129 parameter into "wild_match_p". Adjust code accordingly.
6130 Document this parameter in the function description.
6131
6132 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6133 Andrey Smirnov <andrew.smirnov@gmail.com>
6134
6135 -Wshadow warning fix.
6136 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
6137 "wild_match" parameter to "wild_match_p" (-Wshadow).
6138
6139 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6140
6141 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
6142 in function documentation.
6143
6144 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6145 Andrey Smirnov <andrew.smirnov@gmail.com>
6146
6147 -Wshadow warning fix.
6148 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
6149 variable into wild_match_p. Adjust code accordingly.
6150
6151 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6152 Andrey Smirnov <andrew.smirnov@gmail.com>
6153
6154 * ada-valprint.c (ada_val_print_1): Move the code handling
6155 TYPE_CODE_ENUM inside its own lexical block. Declare
6156 variables len and val there, instead of in the function's
6157 top level block. Avoid declaring deref_val again in a way
6158 that shadows another variable of the same name declared
6159 in one of the up-level blocks. Just re-use the up-level
6160 variable instead.
6161
6162 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6163
6164 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
6165 Replace block_found argument by symbol_info. Adjust
6166 implementation accordingly. Add function documentation.
6167 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
6168 Fix documentation.
6169 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
6170 * ada-exp.y (write_object_renaming): Adjust to new
6171 ada_lookup_encoded_symbol API.
6172
6173 2012-03-29 Joel Brobecker <brobecker@adacore.com>
6174
6175 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
6176 documentation.
6177
6178 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
6179
6180 * v850-tdep.c: Add the enum values for mpu and fpu registers.
6181 (v850_register_name): Add the mpu and fpu register names.
6182 (v850e_register_name): Add the mpu and fpu register names.
6183 (v850e2_register_name): New function.
6184 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
6185 bfd_mach_v850e2v3.
6186
6187 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6188
6189 * NEWS: Add entry for Ada varobj support.
6190
6191 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6192
6193 * varobj.c (default_value_is_changeable_p): New function,
6194 extracted from varobj_value_is_changeable_p. Add declaration.
6195 (ada_value_is_changeable_p): New function, extracted from
6196 varobj_value_is_changeable_p. Add declaration.
6197 (struct language_specific): New field "value_is_changeable_p".
6198 (languages): Add entries for new field.
6199 (varobj_create): Set language before calling install_new_value.
6200 (varobj_value_is_changeable_p): Reimplement to call the varobj's
6201 "value_is_changeable_p" language callback.
6202
6203 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6204
6205 * ada-varobj.h, ada-varobj.c: New files.
6206 * Makefile.in (SFILES): Add ada-varobj.c.
6207 (HFILES_NO_SRCDIR): Add ada-varobj.h.
6208 (COMMON_OBS): Add ada-varobj.o.
6209
6210 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6211
6212 * varobj.c (ada_value_has_mutated): Add declaration. New function.
6213 (struct language_specific): New field "value_has_mutated".
6214 (languages): Set field "value_has_mutated" in each entry of array.
6215 (varobj_value_has_mutated): New function.
6216 (varobj_udpdate): Add handling of type mutation.
6217 (value_of_root): Add handling of type mutation.
6218 (ada_value_has_mutated): New function.
6219
6220 2012-03-28 Pedro Alves <palves@redhat.com>
6221
6222 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
6223 Always supply $fr0 as 0.0 and $fr1 as 1.0.
6224
6225 2012-03-28 Tom Tromey <tromey@redhat.com>
6226
6227 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
6228 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
6229 before returning.
6230
6231 2012-03-28 Tom Tromey <tromey@redhat.com>
6232
6233 * .dir-locals.el: New file.
6234
6235 2012-03-28 Pedro Alves <palves@redhat.com>
6236
6237 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
6238
6239 2012-03-28 Joel Brobecker <brobecker@adacore.com>
6240
6241 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
6242 handling for r0.
6243
6244 2012-03-27 Pedro Alves <palves@redhat.com>
6245
6246 Eliminate struct ui_stream.
6247
6248 * ui-out.h (struct ui_stream): Delete.
6249 (ui_out_field_stream): Adjust prototype.
6250 (ui_out_stream_new, ui_out_stream_delete)
6251 (make_cleanup_ui_out_stream_delete): Delete declarations.
6252 * ui-out.c (ui_out_field_stream): Change prototype to take a
6253 ui_file instead of a ui_stream. Adjust.
6254 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
6255 (make_cleanup_ui_out_stream_delete): Delete.
6256 * breakpoint.c (print_breakpoint_location)
6257 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
6258 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
6259 * disasm.c (dump_insns): Ditto.
6260 (do_mixed_source_and_assembly, do_assembly_only): Adjust
6261 prototype.
6262 (gdb_disassembly): Use ui_file/mem_fileopen instead of
6263 ui_stream/ui_out_stream_new.
6264 * infcmd.c (print_return_value): Ditto.
6265 * osdata.c (info_osdata_command): Don't allocate a local
6266 ui_stream.
6267 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
6268 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
6269 * tracepoint.c (print_one_static_tracepoint_marker): Don't
6270 allocate a local ui_stream.
6271 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
6272 instead of ui_stream/ui_out_stream_new.
6273 (list_args_or_locals): Don't allocate a local ui_stream.
6274 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
6275 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
6276 ui_stream/ui_out_stream_new.
6277 * cli/cli-setshow.c (do_setshow_command): Ditto.
6278
6279 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
6280
6281 * arm-linux-tdep.c (arm_linux_init_abi): Call
6282 set_gdbarch_process_record. Initialize `arm_swi_record' field.
6283 * arm-tdep.c (arm_process_record): New function.
6284 (deallocate_reg_mem): New function.
6285 (decode_insn): New function.
6286 (thumb_record_branch): New function.
6287 (thumb_record_ldm_stm_swi(): New function.
6288 (thumb_record_misc): New function.
6289 (thumb_record_ld_st_stack): New function.
6290 (thumb_record_ld_st_imm_offset): New function.
6291 (thumb_record_ld_st_reg_offset(): New function.
6292 (thumb_record_add_sub_cmp_mov): New function.
6293 (thumb_record_shift_add_sub): New function.
6294 (arm_record_coproc_data_proc): New function.
6295 (arm_record_coproc): New function.
6296 (arm_record_b_bl): New function.
6297 (arm_record_ld_st_multiple): New function.
6298 (arm_record_ld_st_reg_offset): New function.
6299 (arm_record_ld_st_imm_offset): New function.
6300 (arm_record_data_proc_imm): New function.
6301 (arm_record_data_proc_misc_ld_str): New function.
6302 (arm_record_extension_space): New function.
6303 (arm_record_strx): New function.
6304 (sbo_sbz): New function.
6305 (struct insn_decode_record): New structure for arm insn record.
6306 (REG_ALLOC): New macro for reg allocations.
6307 (MEM_ALLOC): New macro for memory allocations.
6308 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
6309
6310 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
6311
6312 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
6313 (store_register): Likewise.
6314
6315 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
6316
6317 * MAINTAINERS (Write After Approval): Add myself to the list.
6318
6319 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
6320
6321 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
6322 Describe also the option "auto".
6323
6324 2012-03-22 Richard Henderson <rth@redhat.com>
6325
6326 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
6327 * sparc-nat.c (sparc_xfer_wcookie): Make static.
6328
6329 2012-03-22 Richard Henderson <rth@redhat.com>
6330
6331 * jit.c (jit_read_code_entry): Compute alignment and offset of
6332 int64_t member before computing entry_size.
6333
6334 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
6335
6336 Python scripting: Add new method Value.referenced_value to
6337 gdb.Value which can dereference pointer as well as reference
6338 values.
6339 * NEWS: Add entry under 'Python scripting' about the new method
6340 Value.referenced_value on gdb.Value objects.
6341 * python/py-value.c (valpy_referenced_value): New function
6342 defining a new method on gdb.Value objects which can dereference
6343 pointer and reference values.
6344
6345 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
6346
6347 * MAINTAINERS (Write After Approval): Add myself to the list.
6348
6349 2012-03-21 Kevin Buettner <kevinb@redhat.com>
6350
6351 * symtab.c (skip_prologue_sal): Change test to check for "main()"
6352 in addition to "main".
6353
6354 2012-03-21 Joel Brobecker <brobecker@adacore.com>
6355
6356 * expression.h (op_name): Add declaration.
6357 * expprint.c (op_name): Remove declaration. Make non-static.
6358 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
6359
6360 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
6361
6362 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
6363 of struct siginfo.
6364 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
6365 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
6366 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
6367 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
6368 (linux_nat_get_siginfo): Likewise.
6369 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
6370 (linux_nat_get_siginfo): Likewise.
6371 * linux-tdep.c (linux_get_siginfo_type): Likewise.
6372 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
6373 * procfs.c (gdb_siginfo_t): Likewise.
6374
6375 2012-03-21 Mike Frysinger <vapier@gentoo.org>
6376
6377 * .gitignore: Ignore more files.
6378
6379 2012-03-20 Pedro Alves <palves@redhat.com>
6380
6381 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
6382 returns.
6383
6384 2012-03-20 Yao Qi <yao@codesourcery.com>
6385
6386 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
6387 comment.
6388
6389 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
6390
6391 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
6392 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
6393 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
6394 sect_offset.
6395 * dwarf2expr.h (cu_offset, sect_offset): New types.
6396 (struct dwarf_expr_context_funcs) <dwarf_call>
6397 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
6398 sect_offset.
6399 (struct dwarf_expr_context) <len>: Improve the comment.
6400 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
6401 cu_offset and sect_offset.
6402 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
6403 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
6404 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
6405 * dwarf2loc.h: Include dwarf2expr.h.
6406 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
6407 and sect_offset.
6408 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
6409 Improve the comment.
6410 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
6411 (struct signatured_type, struct line_header, struct partial_die_info)
6412 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
6413 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
6414 (get_die_type_at_offset, create_cus_from_index)
6415 (create_signatured_type_table_from_index, dw2_get_file_names)
6416 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
6417 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
6418 (create_debug_types_hash_table, process_psymtab_comp_unit)
6419 (load_partial_comp_unit, create_all_comp_units)
6420 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
6421 (load_full_comp_unit, dwarf2_physname, read_import_statement)
6422 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
6423 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
6424 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
6425 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
6426 (find_partial_die, read_attribute_value, lookup_die_type)
6427 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
6428 (is_ref_attr): New function comment.
6429 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
6430 Use cu_offset and sect_offset.
6431 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
6432 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
6433 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
6434 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
6435 (offset_and_type_hash, offset_and_type_eq, set_die_type)
6436 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
6437 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
6438 sect_offset.
6439
6440 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
6441
6442 Code cleanup.
6443 * python/py-auto-load.c (source_section_scripts): New variable back_to.
6444 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
6445 with xfree.
6446 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
6447
6448 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
6449
6450 * NEWS: Describe new options --init-command=FILE, -ix and
6451 --init-eval-command=COMMAND, -iex.
6452 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
6453 CMDARG_INIT_COMMAND.
6454 (captured_main): New enum items OPT_IX and OPT_IEX. Add
6455 "init-command", "init-eval-command", "ix" and "iex" to the variable
6456 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
6457 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
6458 (print_gdb_help): Describe --init-command=FILE, -ix and
6459 --init-eval-command=COMMAND, -iex.
6460
6461 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
6462
6463 Code cleanup.
6464 * main.c (struct cmdarg): Move it here from main. Add more comments.
6465 (cmdarg_s, VEC (cmdarg_s)): New.
6466 (main): Move struct cmdarg from here. New variables cmdarg_vec and
6467 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
6468 Install cleanup for cmdarg_vec. Update filling for options 'x' and
6469 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
6470 of CMDARG.
6471
6472 2012-03-19 Tom Tromey <tromey@redhat.com>
6473
6474 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
6475
6476 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
6477
6478 PR symtab/13777
6479 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
6480 GCC >=4.5.
6481
6482 2012-03-16 Chris January <chris.january@allinea.com>
6483
6484 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
6485 of clear.
6486
6487 2012-03-16 Chris January <chris.january@allinea.com>
6488
6489 * source.c (add_path): Use memmove instead of strcpy because the
6490 strings overlap.
6491
6492 2012-03-16 Joel Brobecker <brobecker@adacore.com>
6493
6494 * value.h (set_value_parent): Add declaration.
6495 * value.c (set_value_parent): New function.
6496 (value_address): If VALUE->PARENT is not NULL, then use it as
6497 the base address instead of VALUE->LOCATION.address.
6498 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
6499 the same as OBJ's address. Adjust V's offset accordingly.
6500 Set V's parent.
6501
6502 2012-03-16 Gary Benson <gbenson@redhat.com>
6503
6504 PR breakpoints/10738
6505 * dwarf2read.c (use_deprecated_index_sections): New global.
6506 (struct partial_die_info): New member may_be_inlined.
6507 (read_partial_die): Set may_be_inlined where appropriate.
6508 (add_partial_subprogram): Add partial symbols for partial
6509 DIEs that may be inlined.
6510 (new_symbol_full): Add inlined subroutines to the current
6511 scope.
6512 (write_psymtabs_to_index): Bump version number.
6513 (dwarf2_read_index): Read only version 6 indices unless
6514 use_deprecated_index_sections is set.
6515 * linespec.c (symbol_and_data_callback): New structure.
6516 (iterate_inline_only): New function.
6517 (iterate_over_all_matching_symtabs): New argument
6518 "include_inline". If nonzero, also call the callback for
6519 symbols representing inlined subroutines.
6520 (lookup_prefix_sym): Pass extra argument to the above.
6521 (find_function_symbols): Likewise.
6522 (add_matching_symbols_to_info): Likewise.
6523 * NEWS: Mention that GDB can now set breakpoints on inlined
6524 functions.
6525
6526 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
6527
6528 * p-typeprint.c (pascal_type_print_method_args):
6529 Fix display of parameter of methods.
6530
6531 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
6532
6533 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
6534 Add missing prototype.
6535
6536 2012-03-16 Yao Qi <yao@codesourcery.com>
6537 Jan Kratochvil <jan.kratochvil@redhat.com>
6538
6539 Fix false compilation warning.
6540 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
6541
6542 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
6543 Pedro Alves <pedro@codesourcery.com>
6544
6545 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
6546 (arm_register_g_packet_guesses): New function.
6547 (arm_gdbarch_init): Don't force a target description with
6548 registers when the executable is detected as M-profile. Instead
6549 set gdbarch->tdep->is_m. Register `g' packet guesses.
6550 (_initialize_arm_tdep): Initialize the new target description.
6551 * features/arm-with-m-fpa-layout.xml: New description.
6552 * features/arm-with-m-fpa-layout.c: New, generated.
6553
6554 2012-03-15 Joel Brobecker <brobecker@adacore.com>
6555
6556 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
6557 Update function description.
6558 (insert_bp_location): Do not wipe bl->target_info out.
6559 * mem-break.c: #include "gdb_string.h".
6560 (default_memory_insert_breakpoint): Do not call target_read_memory
6561 with a pointer to the breakpoint's shadow_contents buffer. Use
6562 a local buffer instead.
6563 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
6564
6565 2012-03-15 Tom Tromey <tromey@redhat.com>
6566
6567 * NEWS: Mention "info vtbl", not "info vtable".
6568 * cp-support.c (info_vtbl_command): Fix comment.
6569 (_initialize_cp_support): Fix text.
6570
6571 2012-03-15 Tom Tromey <tromey@redhat.com>
6572
6573 * cp-valprint.c (cp_print_value_fields): Use
6574 print_function_pointer_address for vtable slot.
6575
6576 2012-03-15 Tom Tromey <tromey@redhat.com>
6577
6578 * gnu-v3-abi.c (struct value_and_voffset): New.
6579 (hash_value_and_voffset, eq_value_and_voffset)
6580 (compare_value_and_voffset, compute_vtable_size)
6581 (print_one_vtable, gnuv3_print_vtable): New functions.
6582 (init_gnuv3_ops): Initialize 'print_vtable' field.
6583 * cp-support.c (info_vtbl_command): New function.
6584 (_initialize_cp_support): Add "info vtbl".
6585 * cp-abi.h (cplus_print_vtable): Declare.
6586 (struct cp_abi_ops) <print_vtable>: New field.
6587 * cp-abi.c (cplus_print_vtable): New function.
6588 * NEWS: Update.
6589
6590 2012-03-15 Tom Tromey <tromey@redhat.com>
6591
6592 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
6593 iterate_over_symbols.
6594
6595 2012-03-14 Doug Evans <dje@google.com>
6596
6597 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
6598 DW_OP_GNU_parameter_ref.
6599
6600 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6601
6602 Fix double prompt of 'interpreter-exec mi'.
6603 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
6604 (mi_interpreter_resume): use it.
6605 (mi_execute_command_input_handler): New function.
6606 * mi/mi-main.c (mi_execute_command): Move prompt printing to
6607 mi_execute_command_input_handler.
6608
6609 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
6610
6611 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
6612 prototype.
6613 (darwin_debug_port_info): Make static.
6614 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
6615 * machoread.c (_initialize_machoread): Add prototype.
6616 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
6617 (i386_darwin_set_control, i386_darwin_get_control)
6618 i386_darwin_dr_set_addr, i386_darwin_get_addr)
6619 i386_darwin_get_status, i386_darwin_get_control):
6620 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
6621
6622 2012-03-13 Joel Brobecker <brobecker@adacore.com>
6623
6624 * ax-gdb.c (gen_usual_unary): Remove special handling of
6625 enum and bool types.
6626
6627 2012-03-13 Joel Brobecker <brobecker@adacore.com>
6628
6629 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
6630
6631 2012-03-13 Joel Brobecker <brobecker@adacore.com>
6632
6633 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
6634
6635 2012-03-13 Chris January <chris.january@allinea.com>
6636
6637 * aix-thread.c (fill_sprs): Store the floating point registers
6638 at the correct offsets into vals.
6639
6640 2012-03-13 Doug Evans <dje@google.com>
6641
6642 * NEWS: Mention symbol-reloading has been deleted.
6643 * symfile.c (symbol_reloading): Delete.
6644 (show_symbol_reloading): Delete.
6645 (_initialize_symfile): Delete set/show symbol-reloading.
6646
6647 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
6648 read_in_chain until we have successfully read it in.
6649 (load_full_comp_unit): Ditto.
6650 (read_signatured_type): Add comment.
6651
6652 2012-03-13 Chris January <chris.january@allinea.com>
6653
6654 * stabsread.c (fix_common_block): Change type of valu argument
6655 to CORE_ADDR.
6656
6657 2012-03-13 Chris January <chris.january@allinea.com>
6658
6659 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
6660 instruction.
6661
6662 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
6663
6664 * common/linux-procfs.c (linux_proc_get_int): New, from
6665 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
6666 field.
6667 (linux_proc_get_tgid): Only call linux_proc_get_int.
6668 (linux_proc_get_tracerpid): New.
6669 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
6670 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
6671 linux_proc_pid_has_state.
6672 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
6673 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
6674 (linux_ptrace_attach_warnings): New.
6675 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
6676 New declaration.
6677 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
6678 (linux_nat_attach): New variables ex, buffer, message and message_s.
6679 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
6680
6681 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
6682
6683 * Makefile.in (linux-ptrace.o): New.
6684 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
6685 from linux-nat.c.
6686 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
6687 * common/linux-ptrace.c: New file.
6688 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
6689 * config/arm/linux.mh: Likewise.
6690 * config/i386/linux.mh: Likewise.
6691 * config/i386/linux64.mh: Likewise.
6692 * config/ia64/linux.mh: Likewise.
6693 * config/m32r/linux.mh: Likewise.
6694 * config/m68k/linux.mh: Likewise.
6695 * config/mips/linux.mh: Likewise.
6696 * config/pa/linux.mh: Likewise.
6697 * config/powerpc/linux.mh: Likewise.
6698 * config/powerpc/ppc64-linux.mh: Likewise.
6699 * config/powerpc/spu-linux.mh: Likewise.
6700 * config/s390/s390.mh: Likewise.
6701 * config/sparc/linux.mh: Likewise.
6702 * config/sparc/linux64.mh: Likewise.
6703 * config/xtensa/linux.mh: Likewise.
6704 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
6705 common/linux-procfs.c.
6706 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
6707
6708 2012-03-13 Hui Zhu <teawater@gmail.com>
6709 Pedro Alves <palves@redhat.com>
6710
6711 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
6712 CREATE_BREAKPOINT_FLAGS_INSERTED.
6713 (create_breakpoint_sal, create_breakpoints_sal)
6714 (base_breakpoint_create_breakpoints_sal)
6715 (tracepoint_create_breakpoints_sal)
6716 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
6717 down.
6718 (break_command_1, handle_gnu_v3_exceptions, trace_command)
6719 (ftrace_command, strace_command): Adjust.
6720 (create_tracepoint_from_upload): Pass
6721 CREATE_BREAKPOINT_FLAGS_INSERTED.
6722 * breakpoint.h (enum breakpoint_create_flags): New.
6723 (create_breakpoint): New flags parameter.
6724 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
6725 * python/py-breakpoint.c (bppy_init): Adjust.
6726 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
6727 * spu-tdep.c (spu_catch_start): Adjust.
6728
6729 2012-03-13 Pedro Alves <palves@redhat.com>
6730 Hui Zhu <teawater@gmail.com>
6731 Yao Qi <yao@codesourcery.com>
6732
6733 * remote.c (struct remote_state): New field `starting_up'.
6734 (remote_start_remote): Set and clear it.
6735 (remote_can_download_tracepoint): If starting up, return false.
6736
6737 2012-03-13 Yao Qi <yao@codesourcery.com>
6738
6739 * inferior.h (struct inferior): Remove fields any_syscall_count,
6740 syscalls_counts and total_syscalls_count. Move them to new
6741 struct catch_syscall_inferior_data in breakpoint.c.
6742 * breakpoint.c: Call DEF_VEC_I(int).
6743 (struct catch_syscall_inferior_data): New.
6744 (get_catch_syscall_inferior_data): New.
6745 (catch_syscall_inferior_data_cleanup): New.
6746 (insert_catch_syscall): Update to access data in
6747 struct catch_syscall_inferior_data.
6748 (insert_catch_syscall): Likewise.
6749 (remove_catch_syscall): Likewise.
6750 (remove_catch_syscall): Likewise.
6751 (is_syscall_catchpoint_enabled): Likewise.
6752 (add_catch_command): Likewise.
6753 (_initialize_breakpoint): Register cleanup.
6754 * breakpoint.h: Removed DEF_VEC_I(int).
6755 * dwarf2loc.c: Call DEF_VEC_I(int).
6756 * mi/mi-main.c: Likewise.
6757
6758 2012-03-12 Mark Kettenis <kettenis@gnu.org>
6759
6760 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
6761
6762 2012-03-12 Chris January <chris.january@allinea.com>
6763
6764 * aix-thread.c (_initialize_aix_thread): Add prototype.
6765 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
6766 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
6767
6768 2012-03-12 Joel Brobecker <brobecker@adacore.com>
6769
6770 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
6771 include of "amd64-nat.h".
6772
6773 2012-03-12 Tom Tromey <tromey@redhat.com>
6774
6775 * buildsym.c (record_pending_block): Now static.
6776 * buildsym.h: (record_pending_block): Remove.
6777
6778 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
6779
6780 * amd64bsd-nat.c: Include amd64bsd-nat.h.
6781
6782 2012-03-09 Tom Tromey <tromey@redhat.com>
6783
6784 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
6785 producer_is_gxx_lt_4_6>: New fields.
6786 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
6787
6788 2012-03-09 Tom Tromey <tromey@redhat.com>
6789
6790 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
6791
6792 2012-03-08 Joel Brobecker <brobecker@adacore.com>
6793
6794 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
6795 prototype.
6796
6797 2012-03-08 Joel Brobecker <brobecker@adacore.com>
6798
6799 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
6800
6801 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6802
6803 Fix -Wmissing-prototypes build.
6804 * arm-linux-nat.c (get_thread_id): Make it static.
6805 * xtensa-linux-nat.c (get_thread_id): Likewise.
6806
6807 2012-03-08 Joel Brobecker <brobecker@adacore.com>
6808
6809 * server.c (process_point_options): If a conditional expression
6810 is found, only print a message if remote_debug is nonzero.
6811
6812 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
6813
6814 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
6815 of internal error for unknown/unsupported types.
6816
6817 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6818
6819 Fix CU relative vs. absolute DIE offsets.
6820 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
6821 offset to offset_in_cu.
6822 * dwarf2read.c (process_enumeration_scope): Add CU offset to
6823 TYPE_OFFSET.
6824 (dwarf2_fetch_die_location_block): Rename parameter offset to
6825 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
6826
6827 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6828
6829 * libunwind-frame.c: Rename to ...
6830 * ia64-libunwind-tdep.c: ... here.
6831 * libunwind-frame.h: Rename to ...
6832 * ia64-libunwind-tdep.h: ... here.
6833 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
6834 ia64-libunwind-tdep.h.
6835 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
6836 * README (--with-libunwind): Rename to ...
6837 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
6838 * config.in: Regenerate.
6839 * configure: Regenerate.
6840 * configure.ac: New option --with-libunwind-ia64, make the
6841 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
6842 Remove AC_DEFINE for HAVE_LIBUNWIND.
6843 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
6844 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
6845 Rename libunwind-frame in the general comment.
6846 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
6847 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
6848 Move forward declarations inside #ifndef. Rename libunwind-frame in
6849 the general comment.
6850 * ia64-tdep.c: Rename libunwind-frame.h #include to
6851 ia64-libunwind-tdep.h.
6852 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
6853 (ia64_libunwind_descr): Rename libunwind-frame to
6854 ia64-libunwind-tdep in these function comments.
6855 * ia64-tdep.h: Rename libunwind-frame.h #include to
6856 ia64-libunwind-tdep.h.
6857 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
6858 ia64-libunwind-tdep in that data comment.
6859
6860 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6861
6862 * libunwind-frame.h (struct frame_unwind): New declaration.
6863
6864 2012-03-08 Joel Brobecker <brobecker@adacore.com>
6865
6866 * breakpoint.c (_initialize_breakpoint): Fix error in help of
6867 "set breakpoint condition-evaluation" command.
6868
6869 2012-03-08 Tristan Gingold <gingold@adacore.com>
6870
6871 * sparc-stub.c: Move to stubs/
6872 * sh-stub.c: Likewise.
6873 * m68k-stub.c: Likewise.
6874 * m32r-stub.c: Likewise.
6875 * i386-stub.c: Likewise.
6876
6877 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
6878
6879 * m68klinux-tdep.c (m68k_linux_init_abi): Register
6880 linux_get_siginfo_type.
6881
6882 * m68klinux-nat.c: Include "gdb_proc_service.h".
6883 (PTRACE_GET_THREAD_AREA): Define.
6884 (ps_get_thread_area): New function.
6885
6886 2012-03-08 Yao Qi <yao@codesourcery.com>
6887
6888 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
6889 `xsnprintf'.
6890 (remote_query_attached): Likewise.
6891 (remote_static_tracepoint_marker_at): Likewise.
6892 (remote_set_permissions): Likewise.
6893 (remote_detach_1, extended_remote_attach_1): Likewise.
6894 (send_g_packet, remote_vkill): Likewise.
6895 (extended_remote_disable_randomization): Likewise.
6896 (remote_add_target_side_condition): Likewise.
6897 (remote_insert_breakpoint): Likewise.
6898 (remote_remove_breakpoint): Likewise.
6899 (remote_insert_watchpoint): Likewise.
6900 (remote_remove_watchpoint): Likewise.
6901 (remote_insert_hw_breakpoint): Likewise.
6902 (remote_insert_hw_breakpoint): Likewise.
6903 (remote_remove_hw_breakpoint): Likewise.
6904 (remote_download_command_source): Likewise.
6905 (remote_download_tracepoint): Likewise.
6906 (remote_download_trace_state_variable): Likewise.
6907 (remote_disable_tracepoint): Likewise.
6908 (remote_trace_set_readonly_regions): Likewise.
6909 (remote_get_tracepoint_status): Likewise.
6910 (remote_trace_find): Likewise.
6911 (remote_get_trace_state_variable_value): Likewise.
6912 (remote_set_disconnected_tracing): Likewise.
6913 (remote_set_circular_trace_buffer): Likewise.
6914 (remote_get_min_fast_tracepoint_insn_len): Likewise.
6915 (remote_use_agent): Likewise.
6916 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
6917 Update callers.
6918
6919 2012-03-07 Pedro Alves <palves@redhat.com>
6920
6921 * NEWS: Mention QProgramSignals.
6922 * inferior.h (update_signals_program_target): Declare.
6923 * infrun.c: (update_signals_program_target): New.
6924 (handle_command): Update the target of the new program signals
6925 array changes.
6926 * remote.c (PACKET_QProgramSignals): New enum.
6927 (last_program_signals_packet): New global.
6928 (remote_program_signals): New.
6929 (remote_start_remote): Update the target with the program signals
6930 list.
6931 (remote_protocol_features): Add entry for QPassSignals.
6932 (remote_open_1): Free anc clear last_program_signals_packet.
6933 (init_remote_ops): Install remote_program_signals.
6934 * target.c (update_current_target): Adjust.
6935 (target_program_signals): New.
6936 * target.h (struct target_ops) <to_program_signals>: New field.
6937 (target_program_signals): Declare.
6938
6939 2012-03-07 Pedro Alves <palves@redhat.com>
6940
6941 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
6942 extensions.
6943
6944 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
6945
6946 * m68klinux-nat.c (getregs_supplies): Make static.
6947 (getfpregs_supplies): Likewise.
6948 (have_ptrace_getregs): Likewise.
6949
6950 2012-03-06 Joel Brobecker <brobecker@adacore.com>
6951
6952 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
6953 in call to get_die_type_at_offset.
6954
6955 2012-03-06 Stan Shebs <stan@codesourcery.com>
6956
6957 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
6958 * mi/mi-cmd-disas.c: Ditto.
6959 * mi/mi-cmd-env.c: Ditto.
6960 * mi/mi-cmd-file.c: Ditto.
6961 * mi/mi-cmd-stack.c: Ditto.
6962 * mi/mi-cmd-target.c: Ditto.
6963 * mi/mi-cmd-var.c: Ditto.
6964 * mi/mi-cmds.c: Ditto.
6965 * mi/mi-cmds.h: Ditto.
6966 * mi/mi-console.c: Ditto.
6967 * mi/mi-getopt.c: Ditto.
6968 * mi/mi-getopt.h: Ditto.
6969 * mi/mi-interp.c: Ditto.
6970 * mi/mi-main.c: Ditto.
6971 * mi/mi-out.c: Ditto.
6972 * mi/mi-parse.c: Ditto.
6973 * mi/mi-parse.h: Ditto.
6974 * mi/mi-symbol-cmds.c: Ditto.
6975
6976 * mi/mi-getopt.h: Move mi_opt struct up.
6977 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
6978 return.
6979 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
6980
6981 2012-03-06 Tom Tromey <tromey@redhat.com>
6982
6983 * proc-service.c (ps_pglobal_lookup): Set the current program
6984 space.
6985
6986 2012-03-06 Pedro Alves <palves@redhat.com>
6987
6988 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
6989
6990 2012-03-05 Joel Brobecker <brobecker@adacore.com>
6991
6992 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
6993
6994 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6995
6996 Code cleanup.
6997 * common/linux-osdata.c (linux_common_core_of_thread): New function
6998 comment.
6999 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
7000 call by linux_common_core_of_thread.
7001 (linux_nat_core_of_thread_1): Remove.
7002 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
7003 * linux-thread-db.c: Include linux-osdata.h.
7004 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
7005 linux_common_core_of_thread.
7006
7007 2012-03-05 Tom Tromey <tromey@redhat.com>
7008
7009 * value.c (value_primitive_field): Don't fetch contents for
7010 non-virtual bases.
7011
7012 2012-03-05 Tom Tromey <tromey@redhat.com>
7013
7014 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
7015
7016 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
7017
7018 * s390-nat.c: Include "gregset.h".
7019
7020 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7021
7022 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
7023 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
7024 (libunwind_load): New variable so_error, use it for dlerror. Try to
7025 load also LIBUNWIND_SO_7.
7026
7027 2012-03-05 Pedro Alves <palves@redhat.com>
7028
7029 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
7030 is not NULL, and remove resulting dead code.
7031
7032 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
7033
7034 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
7035 prologue to sh_analyze_prologue.
7036 (sh_analyze_prologue): Make better use of such an upper limit, and
7037 generally be more cautious about accessing memory.
7038
7039 2012-03-05 Tom Tromey <tromey@redhat.com>
7040
7041 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
7042 _initialize_ia64_hpux_tdep.
7043
7044 2012-03-05 Pedro Alves <palves@redhat.com>
7045
7046 PR gdb/13766
7047
7048 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
7049 the register state is clear, supply explicit zero, instead of
7050 marking the register unavailable.
7051
7052 2012-03-05 Tristan Gingold <gingold@adacore.com>
7053
7054 * NEWS: Mention OpenVMS ia64 new target.
7055
7056 2012-03-05 Tristan Gingold <gingold@adacore.com>
7057
7058 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
7059 (ia64_unw_accessors, ia64_unw_rse_accessors)
7060 (ia64_libunwind_descr): Declare.
7061 * ia64-vms-tdep.c: New file.
7062 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
7063 (ia64_libunwind_descr): Make them public.
7064 * configure.tgt: Add ia64-*-*vms*.
7065 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
7066 (ALLDEPFILES): Add ia64-vms-tdep.c
7067
7068 2012-03-05 Tristan Gingold <gingold@adacore.com>
7069
7070 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
7071 * remote.c (PACKET_qXfer_uib): New enum value.
7072 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
7073 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
7074 (_initialize_remote): Call add_packet_config_cmd for
7075 xfer:uib packet.
7076
7077 2012-03-05 Tristan Gingold <gingold@adacore.com>
7078
7079 * osabi.c (gdb_osabi_names): Add OpenVMS.
7080 (generic_elf_osabi_sniffer): Likewise.
7081 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
7082
7083 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7084
7085 Removed unused code.
7086 * libunwind-frame.c (libunwind_frame_unwind)
7087 (libunwind_frame_base_address): Remove.
7088 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
7089
7090 2012-03-04 Yao Qi <yao@codesourcery.com>
7091
7092 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
7093 remove trailing new line.
7094 (agent_run_command, agent_run_command): Add _ markup.
7095 (agent_capability_check): Likewise.
7096
7097 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7098
7099 * breakpoint.c (set_condition_evaluation_mode): Set
7100 CONDITION_EVALUATION_MODE unconditionally.
7101
7102 2012-03-03 Yao Qi <yao@codesourcery.com>
7103
7104 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
7105 * common/agent.h: Update declaration.
7106 * inf-child.c (inf_child_use_agent): New.
7107 (inf_child_can_use_agent): New.
7108 (inf_child_target): Initialize fields `to_use_agent'
7109 and `to_can_use_agent'.
7110 * agent.c (agent_new_objfile): New.
7111 (_initialize_agent): Add agent_new_objfile to new_objfile
7112 observer.
7113
7114 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
7115 New.
7116 (linux_target_install_ops): Initialize field
7117 `to_static_tracepoint_markers_by_strid'.
7118 * remote.c (free_current_marker): Move it to ...
7119 * tracepoint.c (free_current_marker): ... here. New.
7120 (cleanup_target_stop): New.
7121 * tracepoint.h: Declare free_current_marker.
7122 * NEWS: Add one entry about `info static-tracepoint-marker'.
7123
7124 2012-03-03 Yao Qi <yao@codesourcery.com>
7125
7126 * common/agent.c (agent_loaded_p): New.
7127 (agent_look_up_symbols): New global.
7128 * common/agent.h: Declare agent_loaded_p.
7129
7130 2012-03-03 Yao Qi <yao@codesourcery.com>
7131
7132 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
7133 (agent_capability_check, agent_capability_invalidate): New.
7134 (symbol_list): New array element.
7135 * common/agent.h (enum agent_capa): New.
7136 * target.c (target_pre_inferior): Call agent_capability_invalidate.
7137
7138 2012-03-03 Yao Qi <yao@codesourcery.com>
7139
7140 * target.h (struct target_ops) <to_use_agent>: New field.
7141 (struct target_ops) <to_can_use_agent>: New field.
7142 (target_use_agent, target_can_use_agent): New macro.
7143 * target.c (update_current_target): Update.
7144 * remote.c: New enum `PACKET_QAgent'.
7145 (remote_protocol_features): Add a new element.
7146 (remote_use_agent, remote_can_use_agent): New.
7147 (init_remote_ops): Initialize field `can_use_agent' with
7148 remote_can_use_agent. Intiailize field `use_agent' with
7149 remote_use_agent.
7150 * common/agent.c (use_agent): New global.
7151 * common/agent.h: Declare it.
7152 * tracepoint.c (info_static_tracepoint_markers_command): Add
7153 comment.
7154 * Makefile.in (SFILES): Add common/agent.c and agent.c.
7155 (COMMON_OBS): Add common/agent.o and agent.o
7156 (common-agent.o): New rule.
7157 * agent.c: New.
7158
7159 2012-03-03 Yao Qi <yao@codesourcery.com>
7160
7161 * common/agent.c: New.
7162 * common/agent.h: New.
7163 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
7164 AC_CHECK_HEADERS.
7165 * configure, configh.in: Regenerated.
7166
7167 2012-03-02 Kevin Buettner <kevinb@redhat.com>
7168
7169 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
7170 unless it exists for this architecture.
7171
7172 2012-03-02 Joel Brobecker <brobecker@adacore.com>
7173
7174 * language.h (struct language_defn): New "method" la_read_var_value.
7175 * findvar.c: #include "language.h".
7176 (default_read_var_value): Renames read_var_value. Rewrite
7177 function description.
7178 (read_var_value): New function.
7179 * value.h (default_read_var_value): Add prototype.
7180 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
7181 New functions.
7182 (ada_language_defn): Add entry for la_read_var_value.
7183 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
7184 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
7185 language_defn structures to add entry for new la_read_var_value
7186 field.
7187
7188 2012-03-02 Tom Tromey <tromey@redhat.com>
7189 Pedro Alves <palves@redhat.com>
7190
7191 PR breakpoints/13776:
7192 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
7193 breakpoints.
7194 (delete_longjmp_breakpoint_at_next_stop): New.
7195 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
7196 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
7197 before deleting the inferior. Add comments.
7198 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
7199 breakpoints immediately, but only on next stop. Move that code
7200 next to where we mark other breakpoints for deletion.
7201
7202 2012-03-02 Joel Brobecker <brobecker@adacore.com>
7203
7204 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
7205 marker.
7206 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
7207 violation.
7208
7209 2012-03-02 Pedro Alves <palves@redhat.com>
7210
7211 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
7212
7213 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
7214
7215 Fix -Wmissing-prototypes build.
7216 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
7217 * remote-sim.c (gdbsim_has_all_memory): Likewise.
7218 (gdbsim_has_memory): Likewise.
7219
7220 2012-03-02 Yao Qi <yao@codesourcery.com>
7221
7222 Fix -Wmissing-prototypes build.
7223 * charset.c (phony_iconv_open): Make static.
7224 (phony_iconv_close, phony_iconv): Likewise.
7225 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
7226 * i386-windows-nat.c (_initialize_i386_windows_nat): New
7227 prototype.
7228 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
7229 * ser-mingw.c (create_select_thread): Make static.
7230 * windows-termcap.c (tgetent): New prototype.
7231 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
7232
7233 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
7234
7235 Fix -Wmissing-prototypes build.
7236 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
7237 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
7238 (_initialize_loadable): New prototypes.
7239
7240 2012-03-02 Doug Evans <dje@google.com>
7241
7242 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
7243 abbrev table, read_comp_unit will do it.
7244
7245 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7246
7247 Fix -Wmissing-prototypes build.
7248 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
7249 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
7250 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
7251 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
7252 (_initialize_arm_symbian_tdep): New prototype.
7253 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
7254 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
7255 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
7256 static.
7257 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
7258 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
7259 prototype.
7260 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
7261 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
7262 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
7263 static.
7264 * moxie-tdep.c (moxie_process_record): Likewise.
7265 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
7266 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
7267 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
7268 (_initialize_rl78_tdep): New prototype.
7269 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
7270 (_initialize_rx_tdep): New prototype.
7271 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
7272 (_initialize_darwin_solib): New prototype.
7273 * solib-spu.c: Include solib-spu.h.
7274 (_initialize_spu_solib): New prototype.
7275 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
7276 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
7277 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
7278 (tic6x_software_single_step): Make it static.
7279 (_initialize_tic6x_tdep): New prototype.
7280
7281 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7282
7283 Fix -Wmissing-prototypes build.
7284 * cris-tdep.c (cris_can_use_hardware_watchpoint)
7285 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
7286
7287 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7288
7289 Fix -Wmissing-prototypes build.
7290 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
7291 (frv_have_stopped_data_address): Remove.
7292
7293 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7294
7295 Fix -Wmissing-prototypes build.
7296 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
7297 * sh-tdep.c: Include sh64-tdep.h.
7298 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
7299 * sh64-tdep.c: Include sh64-tdep.h.
7300 * sh64-tdep.h: New file.
7301
7302 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
7303
7304 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
7305
7306 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
7307
7308 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
7309 sp_regnum once the gdbarch_init_osabi hook has been called.
7310
7311 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
7312
7313 * mips-tdep.c (mips32_bc1_pc): New function.
7314 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
7315 BPOSGE32 and BPOSGE64 instructions.
7316 (deal_with_atomic_sequence): Likewise.
7317 (mips32_instruction_has_delay_slot): Likewise.
7318
7319 2012-03-01 Maciej W. Rozycki <macro@mips.com>
7320 Chris Dearman <chris@mips.com>
7321 Maciej W. Rozycki <macro@codesourcery.com>
7322 Joseph Myers <joseph@codesourcery.com>
7323
7324 * features/mips-dsp.xml: New file.
7325 * features/mips64-dsp.xml: New file.
7326 * features/mips-dsp-linux.xml: New file.
7327 * features/mips64-dsp-linux.xml: New file.
7328 * features/Makefile (WHICH): Add mips-dsp-linux and
7329 mips64-dsp-linux.
7330 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
7331 * features/mips-dsp-linux.c: New file.
7332 * features/mips64-dsp-linux.c: New file.
7333 * regformats/mips-dsp-linux.dat: New file.
7334 * regformats/mips64-dsp-linux.dat: New file.
7335 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
7336 registers.
7337 (mips64_linux_register_addr): Likewise.
7338 (mips64_linux_regsets_fetch_registers): Likewise.
7339 (mips64_linux_regsets_store_registers): Likewise.
7340 (mips64_linux_fetch_registers): Update call to
7341 mips64_linux_regsets_fetch_registers.
7342 (mips64_linux_store_registers): Update call to
7343 mips64_linux_regsets_store_registers.
7344 (mips_linux_read_description): Probe for DSP registers.
7345 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
7346 and initialize_tdesc_mips64_dsp_linux.
7347 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
7348 Remove padding of no longer used embedded register slots.
7349 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
7350 (MIPS_RESTART_REGNUM): Redefine enum value.
7351 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
7352 strings.
7353 (mips_tx39_reg_names): Likewise.
7354 (mips_linux_reg_names): New array of register names for Linux
7355 targets.
7356 (mips_register_name): Check for a null pointer in
7357 mips_processor_reg_names and return an empty string.
7358 (mips_register_type): Exclude embedded registers for the IRIX
7359 and Linux ABIs.
7360 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
7361 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
7362 DSP registers.
7363 (mips_stab_reg_to_regnum): Handle DSP accumulators.
7364 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
7365 (mips_gdbarch_init): Likewise. Initialize internal register
7366 indices for the Linux ABI. Use dynamic numbers to refer to
7367 registers, as applicable, while parsing the target description.
7368 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
7369
7370 2012-03-01 Joel Brobecker <brobecker@adacore.com>
7371
7372 * frame.h (read_frame_register_unsigned): Fix typo in function
7373 description.
7374
7375 2012-03-01 Pedro Alves <palves@redhat.com>
7376
7377 * jit-reader.in [!__cplusplus]
7378 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
7379
7380 2012-03-01 Pedro Alves <palves@redhat.com>
7381
7382 * configure.ac (build_warnings): Add -Wmissing-prototypes.
7383 * configure: Regenerate.
7384
7385 2012-03-01 Pedro Alves <palves@redhat.com>
7386
7387 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
7388 * breakpoint.c (create_exception_master_breakpoint, trace_command)
7389 (ftrace_command, strace_command): Make static.
7390 * d-lang.c (_initialize_d_language): Declare.
7391 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
7392 * dwarf2loc.c (_initialize_dwarf2loc):
7393 * dwarf2read.c (process_psymtab_comp_unit): Make static.
7394 * exec.c (exec_get_section_table): Make static.
7395 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
7396 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
7397 * inferior.c (remove_inferior_command, add_inferior_command)
7398 (clone_inferior_command): Make static.
7399 * linux-nat.c (linux_nat_thread_address_space)
7400 (linux_nat_core_of_thread): Make static.
7401 * linux-tdep.c (_initialize_linux_tdep): Declare.
7402 * objc-lang.c (_initialize_objc_lang): Declare.
7403 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
7404 Make static.
7405 (_initialize_opencl_language): Declare.
7406 * record.c (_initialize_record): Declare.
7407 * remote.c (demand_private_info, remote_get_tib_address)
7408 (remote_supports_cond_tracepoints)
7409 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
7410 Make static.
7411 * skip.c (_initialize_step_skip): Declare.
7412 * symtab.c (skip_prologue_using_lineinfo): Make static.
7413 * tracepoint.c (delete_trace_state_variable)
7414 (trace_variable_command, delete_trace_variable_command)
7415 (get_uploaded_tsv, find_matching_tracepoint_location)
7416 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
7417 Make static.
7418 * value.c (pack_unsigned_long): Make static.
7419 * varobj.c (varobj_ensure_python_env): Make static.
7420 * windows-tdep.c (_initialize_windows_tdep): Declare.
7421 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
7422
7423 2012-03-01 Pedro Alves <palves@redhat.com>
7424
7425 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
7426 gdbarch parameter.
7427 (linux_init_abi): Install it as has_shared_address_space gdbarch
7428 callback.
7429
7430 2012-03-01 Pedro Alves <palves@redhat.com>
7431
7432 * observer.c (observer_test_first_notification_function)
7433 (observer_test_second_notification_function)
7434 (observer_test_third_notification_function): Add declarations.
7435
7436 2012-03-01 Pedro Alves <palves@redhat.com>
7437
7438 * common/signals.c (default_target_signal_to_host)
7439 (default_target_signal_from_host): Move ...
7440 * arch-utils.c: ... here.
7441 * arch-utils.h (default_target_signal_to_host)
7442 (default_target_signal_from_host): Declare.
7443
7444 * common/signals.c (target_signal_from_command): Move ...
7445 * infrun.c: ... here.
7446 * inferior.h (target_signal_from_command): Declare.
7447 * target.h (target_signal_from_command)
7448 (default_target_signal_from_host, default_target_signal_to_host):
7449 Delete declarations.
7450
7451 * common/signals.c (_initialize_signals): Delete.
7452
7453 2012-03-01 Pedro Alves <palves@redhat.com>
7454
7455 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
7456 both __cplusplus and !__cplusplus.
7457
7458 2012-03-01 Pedro Alves <palves@redhat.com>
7459
7460 * psymtab.c (find_and_open_source): Delete declaration.
7461 * source.c (find_and_open_source): Move comment ...
7462 * source.h (find_and_open_source): ... to this new declaration.
7463
7464 2012-03-01 Pedro Alves <palves@redhat.com>
7465
7466 * inline-frame.c: Include inline-frame.h.
7467
7468 2012-03-01 Pedro Alves <palves@redhat.com>
7469
7470 * tui/tui-data.c (set_gen_win_origin): Delete.
7471 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
7472 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
7473
7474 2012-03-01 Pedro Alves <palves@redhat.com>
7475
7476 * remote.c (encode_actions): Delete declaration.
7477 * tracepoint.c (encode_actions): Make extern.
7478 * tracepoint.h (encode_actions): Declare.
7479
7480 2012-03-01 Pedro Alves <palves@redhat.com>
7481
7482 * python/py-breakpoint.c: Include python.h.
7483 * python/py-continueevent.c (create_continue_event_object): Make
7484 static.
7485 * python/py-lazy-string.c (stpy_get_type): Make static.
7486 * python/py-newobjfileevent.c (create_new_objfile_event_object):
7487 Make static.
7488 * python/py-utils.c (unicode_to_target_python_string): Make
7489 static.
7490 * python/py-value.c: Include python.h.
7491
7492 2012-03-01 Pedro Alves <palves@redhat.com>
7493
7494 * inferior.c (delete_threads_of_inferior): Delete.
7495
7496 2012-03-01 Pedro Alves <palves@redhat.com>
7497
7498 Import fallback definitions from glibc.
7499
7500 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
7501 ps_prochandle): Forward declare.
7502 (ps_err_e): Use glibc's comments.
7503 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
7504 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
7505 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
7506 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
7507 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
7508 (struct ps_prochandle): Adjust comment.
7509
7510 2012-03-01 Pedro Alves <palves@redhat.com>
7511
7512 * ada-lang.c (ada_modulus_from_name): Delete.
7513 * ada-lex.l (lexer_init): Make static.
7514
7515 2012-03-01 Pedro Alves <palves@redhat.com>
7516
7517 PR gdb/13767
7518
7519 * frame.c (read_frame_register_unsigned): New.
7520 * frame.h (read_frame_register_unsigned): Declare.
7521 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
7522 Handle it.
7523 (print_i387_control_word): New parameter `control_p'. Handle it.
7524 (i387_print_float_info): Handle unavailable float registers.
7525
7526 2012-03-01 Keith Seitz <keiths@redhat.com>
7527
7528 * linespec.c (decode_line_2): Sort the list of methods
7529 alphabetically before presenting the user with a selection
7530 menu.
7531
7532 2012-03-01 Doug Evans <dje@google.com>
7533
7534 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
7535 has_namespace_info.
7536 (dwarf2_read_abbrevs): Remove corresponding initialization.
7537
7538 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
7539
7540 * NEWS: Mention new python command class gdb.COMMAND_USER.
7541 * cli/cli-cmds.c (show_user): Print error when used on a python
7542 command.
7543 (init_cli_cmds): Update documentation strings for "show user" and
7544 "set/show max-user-call-depth" to clarify that it does not apply to
7545 python commands.
7546 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
7547 error check.
7548 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
7549 gdb python api.
7550 * top.c (execute_command): Only execute a user-defined command as a
7551 legacy macro if c->user_commands is set.
7552
7553 2012-03-01 Tom Tromey <tromey@redhat.com>
7554
7555 * valprint.h (struct generic_val_print_decorations): New.
7556 (generic_val_print): Declare.
7557 * valprint.c (generic_val_print): New function.
7558 * p-valprint.c (p_decorations): New global.
7559 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
7560 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
7561 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
7562 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
7563 * m2-valprint.c (m2_decorations): New global.
7564 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
7565 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
7566 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
7567 TYPE_CODE_ERROR>: Call generic_val_print.
7568 * f-valprint.c (f_decorations): New global.
7569 (f_val_print): Use print_function_pointer_address.
7570 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
7571 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
7572 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
7573 generic_val_print.
7574 * c-valprint.c (c_decorations): New global.
7575 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
7576 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
7577 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
7578 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
7579 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
7580 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
7581 case.
7582
7583 2012-03-01 Tom Tromey <tromey@redhat.com>
7584
7585 * valprint.c (val_print): Update.
7586 * p-valprint (pascal_val_print): Return void.
7587 * p-lang.h (pascal_val_print): Return void.
7588 * m2-valprint.c (m2_val_print): Return void.
7589 * m2-lang.h (m2_val_print): Return void.
7590 * language.h (struct language_defn) <la_val_print>: Return void.
7591 * language.c (unk_lang_val_print): Return void.
7592 * jv-valprint.c (java_val_print): Return void.
7593 * jv-lang.h (java_val_print): Return void.
7594 * f-valprint.c (f_val_print): Return void.
7595 * f-lang.h (f_val_print): Return void.
7596 * d-valprint.c (d_val_print): Return void.
7597 (dynamic_array_type): Update.
7598 * d-lang.h (d_val_print): Return void.
7599 * c-valprint.c (c_val_print): Return void.
7600 * c-lang.h (c_val_print): Return void.
7601 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
7602 void.
7603 * ada-lang.h (ada_val_print): Return void.
7604
7605 2012-03-01 Tom Tromey <tromey@redhat.com>
7606
7607 * value.h (val_print): Return void.
7608 * valprint.c (val_print): Return void.
7609
7610 2012-03-01 Tom Tromey <tromey@redhat.com>
7611
7612 * value.h (common_val_print): Return void.
7613 * valprint.c (common_val_print): Return void.
7614
7615 2012-03-01 Tom Tromey <tromey@redhat.com>
7616
7617 * value.h (value_print): Return void.
7618 * valprint.c (value_print): Return void.
7619 * p-valprint.c (pascal_value_print): Return void.
7620 * p-lang.h (pascal_value_print): Return void.
7621 * language.h (struct language_defn) <la_value_print>: Return
7622 void.
7623 * language.c (unk_lang_value_print): Return void.
7624 * jv-valprint.c (java_value_print): Return void.
7625 * jv-lang.h (java_value_print): Return void.
7626 * f-valprint.c (c_value_print): Don't declare.
7627 Include c-lang.h.
7628 * c-valprint.c (c_value_print): Return void.
7629 * c-lang.h (c_value_print): Return void.
7630 * ada-valprint.c (ada_value_print): Return void.
7631 * ada-lang.h (ada_value_print): Return void.
7632
7633 2012-03-01 Tom Tromey <tromey@redhat.com>
7634
7635 * value.c (value_primitive_field): Handle virtual base classes.
7636
7637 2012-03-01 Tom Tromey <tromey@redhat.com>
7638
7639 * gdbtypes.h (struct vbase): Remove.
7640
7641 2012-03-01 Tom Tromey <tromey@redhat.com>
7642
7643 * c-valprint.c (print_function_pointer_address): Move...
7644 * valprint.c: ... here. Make non-static.
7645 * m2-valprint.c (print_function_pointer_address): Remove.
7646 * valprint.h (print_function_pointer_address): Declare.
7647
7648 2012-03-01 Joel Brobecker <brobecker@adacore.com>
7649
7650 * NEWS: Document the fact that one can provide a condition when
7651 creating an Ada exception catchpoint.
7652
7653 2012-03-01 Tom Tromey <tromey@redhat.com>
7654
7655 * valprint.c (val_print_type_code_flags): Fix placement of
7656 trailing brace.
7657
7658 2012-03-01 Joel Brobecker <brobecker@adacore.com>
7659
7660 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
7661 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
7662 environment variable before calling update-copyright.
7663
7664 2012-03-01 Joel Brobecker <brobecker@adacore.com>
7665
7666 * gnulib/extra/update-copyright: Update to the latest from
7667 gnulib's git repository.
7668 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
7669 variable to 2 instead of 1.
7670
7671 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7672
7673 * varobj.c (c_value_of_variable): Remove dead code.
7674
7675 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7676
7677 * ada-lex.p (processId): Do not modify already encoded IDs.
7678 Update function documentation.
7679
7680 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7681
7682 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
7683 "name" with "struct symbol *name_sym".
7684 * ada-exp.y (write_var_or_type): Update call to
7685 ada_find_renaming_symbol.
7686 "name" with "struct symbol *name_sym". Adjust Implementation
7687 accordingly. Adjust the function documentation.
7688
7689 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7690
7691 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
7692 * ada-lang.c (ada_find_any_type): Add advance declaration.
7693 Make static. Replace ada_find_any_symbol by
7694 ada_find_any_type_symbol.
7695 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
7696 Improve function description. Make static.
7697 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
7698 Replace ada_find_any_symbol by ada_find_any_type_symbol.
7699
7700 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7701
7702 * ada-lang.c (struct tag_args): Delete.
7703 (ada_get_tsd_type): Function body moved up in source file.
7704 (ada_tag_name_1, ada_tag_name_2): Delete.
7705 (ada_get_tsd_from_tag): New function.
7706 (ada_tag_name_from_tsd): New function.
7707 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
7708 to determine the tag name.
7709
7710 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7711
7712 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
7713 declaration.
7714 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
7715 function.
7716
7717 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7718
7719 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
7720
7721 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7722
7723 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
7724 full searches.
7725
7726 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7727
7728 * ada-lang.c (constrained_packed_array_type): If there is a
7729 parallel XA type, use it to determine the array index type.
7730
7731 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7732
7733 * ada-valprint.c (ada_val_print_1): If our value is a reference
7734 to an array descriptor, dereference it before converting it
7735 to a simple array.
7736
7737 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7738
7739 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
7740 creating fixed value.
7741 (ada_value_ind, ada_coerce_ref, assign_component)
7742 (ada_evaluate_subexp): Remove call to unwrap_value before
7743 call to ada_to_fixed_value.
7744
7745 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7746
7747 * ada-lang.c (to_fixed_array_type): Set result's type name.
7748
7749 2012-02-29 Joel Brobecker <brobecker@adacore.com>
7750
7751 * ada-lang.c (catch_ada_exception_command_split): Add new
7752 argument cond_string. Add support for condition at end of
7753 "catch exception" commands.
7754 (ada_decode_exception_location): Add new argument cond_string.
7755 Update call to catch_ada_exception_command_split.
7756 (create_ada_exception_catchpoint): Add new argument cond_string.
7757 Set the breakpoint condition if needed.
7758 (catch_ada_exception_command): Update call to
7759 ada_decode_exception_location.
7760 (ada_decode_assert_location): Add function documentation.
7761 Add support for condition at end of "catch assert" command.
7762 (catch_assert_command): Update calls to ada_decode_assert_location
7763 and create_ada_exception_catchpoint.
7764
7765 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
7766
7767 Fix disp-step-syscall.exp: fork: single step over fork.
7768 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
7769 (i386_linux_get_syscall_number_from_regcache): ... here, new function
7770 comment, change parameters gdbarch and ptid to regcache. Remove
7771 parameter regcache, initialize gdbarch from regcache here.
7772 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
7773 New functions.
7774 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
7775 instead.
7776 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
7777 'syscall'. Make the 'int' check more strict.
7778
7779 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
7780
7781 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
7782 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
7783 (i386_linux_intx80_sysenter_syscall_record): ... here.
7784 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
7785 Use the renamed function name.
7786
7787 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
7788
7789 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
7790 * breakpoint.c (until_break_command): Likewise.
7791 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
7792 * infcall.c (call_function_by_hand): Likewise.
7793 * infcmd.c (finish_forward): Likewise.
7794 * infrun.c (insert_exception_resume_breakpoint): Likewise.
7795
7796 2012-02-28 Tristan Gingold <gingold@adacore.com>
7797
7798 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
7799 avoid variable assignments inside condition.
7800
7801 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
7802
7803 Fix static analysis issue found by cppcheck.
7804 * microblaze-tdep.c (microblaze_extract_return_value): Fix
7805 uninitialized BUF for size 2.
7806
7807 2012-02-27 Chris Dearman <chris@mips.com>
7808 Nathan Froyd <froydnj@codesourcery.com>
7809 Maciej W. Rozycki <macro@codesourcery.com>
7810
7811 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
7812 (mips16_instruction_has_delay_slot): Likewise.
7813 (mips_segment_boundary): Likewise.
7814 (mips_adjust_breakpoint_address): Likewise.
7815 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
7816
7817 2012-02-27 Maciej W. Rozycki <macro@mips.com>
7818 Maciej W. Rozycki <macro@codesourcery.com>
7819
7820 * infrun.c (handle_inferior_event): Don't proceed through
7821 shared library trampolines if stepping at the machine
7822 instruction level.
7823
7824 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
7825
7826 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
7827 too.
7828
7829 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
7830
7831 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
7832 (sh_stub_unwind_sniffer): New functions.
7833 (sh_stub_unwind): New variable.
7834 (sh_gdbarch_init): Wire everything.
7835
7836 2012-02-27 Pedro Alves <palves@redhat.com>
7837
7838 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
7839 (linux_nat_post_attach_wait): Adjust to use
7840 linux_proc_pid_is_stopped.
7841 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
7842 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
7843 based on pid_is_stopped from both linux-nat.c and
7844 gdbserver/linux-low.c, and renamed.
7845
7846 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
7847
7848 * remote.c (remote_watchpoint_addr_within_range): New function.
7849 (init_remote_ops): Use it.
7850
7851 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
7852
7853 * target.h (target_watchpoint_addr_within_range): Document macro.
7854
7855 2012-02-24 Pedro Alves <palves@redhat.com>
7856
7857 * stack.c (set_last_displayed_sal): Issue internal_error instead
7858 of warning, and issue it after clearing the last displayed sal.
7859
7860 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
7861 Pedro Alves <palves@redhat.com>
7862
7863 * breakpoint.c (until_break_command): Install breakpoints after
7864 all frame manipulations.
7865
7866 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
7867
7868 * remote.c (remote_supports_cond_breakpoints): New forward
7869 declaration.
7870 (remote_add_target_side_condition): New function.
7871 (remote_insert_breakpoint): Add target-side breakpoint
7872 conditional if supported.
7873 (remote_insert_hw_breakpoint): Likewise.
7874 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
7875 hook.
7876
7877 * target.c (update_current_target): Inherit
7878 to_supports_evaluation_of_breakpoint_conditions.
7879 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
7880
7881 * target.h (struct target_ops)
7882 <to_supports_evaluation_of_breakpoint_conditions>: New field.
7883 (target_supports_evaluation_of_breakpoint_conditions): New #define.
7884
7885 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
7886 (condition_evaluation_both, condition_evaluation_auto,
7887 condition_evaluation_host, condition_evaluation_target,
7888 condition_evaluation_enums, condition_evaluation_mode_1,
7889 condition_evaluation_mode): New static globals.
7890 (translate_condition_evaluation_mode): New function.
7891 (breakpoint_condition_evaluation_mode): New function.
7892 (gdb_evaluates_breakpoint_condition_p): New function.
7893 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
7894 (mark_breakpoint_modified): New function.
7895 (mark_breakpoint_location_modified): New function.
7896 (set_condition_evaluation_mode): New function.
7897 (show_condition_evaluation_mode): New function.
7898 (bp_location_compare_addrs): New function.
7899 (get_first_location_gte_addr): New helper function.
7900 (set_breakpoint_condition): Free condition bytecode if locations
7901 has become unconditional. Call mark_breakpoint_modified (...).
7902 (condition_command): Call update_global_location_list (1) for
7903 breakpoints.
7904 (breakpoint_xfer_memory): Use is_breakpoint (...).
7905 (is_breakpoint): New function.
7906 (parse_cond_to_aexpr): New function.
7907 (build_target_condition_list): New function.
7908 (insert_bp_location): Handle target-side conditional
7909 breakpoints and call build_target_condition_list (...).
7910 (update_inserted_breakpoint_locations): New function.
7911 (insert_breakpoint_locations): Handle target-side conditional
7912 breakpoints.
7913 (bpstat_check_breakpoint_conditions): Add comment.
7914 (bp_condition_evaluator): New function.
7915 (bp_location_condition_evaluator): New function.
7916 (print_breakpoint_location): Print information on where the condition
7917 will be evaluated.
7918 (print_one_breakpoint_location): Likewise.
7919 (init_bp_location): Call mark_breakpoint_location_modified (...) for
7920 breakpoint location.
7921 (force_breakpoint_reinsertion): New functions.
7922 (update_global_location_list): Handle target-side breakpoint
7923 conditions.
7924 Reinsert locations that are already inserted if conditions have
7925 changed.
7926 (bp_location_dtor): Free agent expression bytecode.
7927 (disable_breakpoint): Call mark_breakpoint_modified (...).
7928 Call update_global_location_list (...) with parameter 1 for breakpoints.
7929 (disable_command): Call mark_breakpoint_location_modified (...).
7930 Call update_global_location_list (...) with parameter 1 for breakpoints.
7931 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
7932 (enable_command): mark_breakpoint_location_modified (...).
7933 (_initialize_breakpoint): Update documentation and add
7934 condition-evaluation breakpoint subcommand.
7935
7936 * breakpoint.h: Include ax.h.
7937 (condition_list): New data structure.
7938 (condition_status): New enum.
7939 (bp_target_info) <cond_list>: New field.
7940 (bp_location) <condition_changed, cond_bytecode>: New fields.
7941 (is_breakpoint): New prototype.
7942
7943 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
7944
7945 * remote.c (remote_state) <cond_breakpoints>: New field.
7946 (PACKET_ConditionalBreakpoints): New enum.
7947 (remote_cond_breakpoint_feature): New function.
7948 (remote_protocol_features): Add new ConditionalBreakpoints entry.
7949 (remote_supports_cond_breakpoints): New function.
7950 (_initialize_remote): Add new packet configuration for
7951 target-side conditional breakpoints.
7952
7953 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
7954
7955 * NEWS: Mention target-side conditional breakpoint support,
7956 new condition-evaluation breakpoint subcommand and remote
7957 packet extensions.
7958
7959 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
7960
7961 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
7962 number.
7963
7964 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
7965
7966 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
7967 (after_prologue): Remove.
7968
7969 2012-02-23 Tom Tromey <tromey@redhat.com>
7970
7971 * jv-valprint.c (java_val_print): Remove dead code.
7972
7973 2012-02-23 Tristan Gingold <gingold@adacore.com>
7974
7975 * ada-tasks.c (struct ada_tasks_inferior_data): Add
7976 known_tasks_element and known_tasks_length fields.
7977 (read_known_tasks_array): Change argument type. Use pointer type
7978 and number of elements from DATA. Adjust.
7979 (read_known_tasks_list): Likewise.
7980 (get_known_tasks_addr): Remove.
7981 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
7982 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
7983 type and array length. Merge former get_known_tasks_addr code.
7984
7985 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
7986
7987 PR backtrace/13716
7988 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
7989 it after set_momentary_breakpoint.
7990
7991 2012-02-22 Sterling Augustine <saugustine@google.com>
7992
7993 PR 13689:
7994 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
7995
7996 2012-02-22 Gary Benson <gbenson@redhat.com>
7997
7998 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
7999 (find_slot_in_mapped_hash): Likewise.
8000
8001 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8002
8003 PR build/13638
8004 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
8005 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
8006 * configure: Regenerate.
8007
8008 2012-02-21 Tristan Gingold <gingold@adacore.com>
8009 Pedro Alves <palves@redhat.com>
8010
8011 * ia64-tdep.c: Do not include libunwind-ia64.h.
8012 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
8013 Include libunwind-ia64.h instead of libunwind.h.
8014 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
8015 for libunwind.h existence.
8016 * configure, config.in: Regenerate.
8017
8018 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
8019
8020 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
8021 instead of value_rtti_target_type.
8022 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
8023 instead of value_rtti_target_type.
8024 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
8025 value_rtti_target_type.
8026 * valops.c (value_ind): Extract function readjust_indirect_value_type.
8027 (value_rtti_target_type): Rename to ...
8028 (value_rtti_indirect_type): ... here and make it indirect. Update
8029 function comment.
8030 * value.c (readjust_indirect_value_type): New function.
8031 (coerce_ref): Support for enclosing type setting for references
8032 with readjust_indirect_value_type.
8033 * value.h (readjust_value_type): New declaration.
8034 (value_rtti_target_type): Rename to ...
8035 (value_rtti_indirect_type): ... here.
8036
8037 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
8038
8039 * MAINTAINERS (Write After Approval): Add myself to the list.
8040
8041 2012-02-20 Doug Evans <dje@google.com>
8042
8043 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
8044 Rename objfile_p_char parameter to objfilep.
8045 (build_objfile_section_table): Result is now void. All callers
8046 updated.
8047 * objfiles.h (struct objfile): Tweak comments, whitespace.
8048 (build_objfile_section_table): Update.
8049
8050 * elfread.c (elf_symfile_segments): Fix warning text.
8051
8052 2012-02-20 Tom Tromey <tromey@redhat.com>
8053
8054 PR gdb/13498:
8055 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
8056 particular set of file names once.
8057 (dw2_map_symbol_filenames): Likewise.
8058
8059 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8060
8061 Code cleanup.
8062 * main.c (write_files): Remove the declaration.
8063 (external_editor_command): Move the declaration ...
8064 [GDBTK] (external_editor_command): ... here. Fix the comment.
8065
8066 2012-02-20 Tom Tromey <tromey@redhat.com>
8067
8068 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
8069 extraneous block.
8070
8071 2012-02-20 Tristan Gingold <gingold@adacore.com>
8072
8073 * darwin-nat.h (enum darwin_msg_state): Add comments.
8074
8075 2012-02-20 Tristan Gingold <gingold@adacore.com>
8076
8077 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
8078 value.
8079
8080 2012-20-18 Joel Brobecker <brobecker@adacore.com>
8081
8082 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
8083 between function description and implementation.
8084
8085 2012-02-17 Tom Tromey <tromey@redhat.com>
8086
8087 PR python/12070:
8088 * python/py-event.c (event_object_getset): New global.
8089 (event_object_type): Reference it.
8090 * python/py-type.c (field_object_getset): New global.
8091 (field_object_type): Reference it.
8092 * python/python-internal.h (gdb_py_generic_dict): Declare.
8093 * python/py-utils.c (gdb_py_generic_dict): New function.
8094
8095 2012-02-17 Tristan Gingold <gingold@adacore.com>
8096
8097 * solib-darwin.c (darwin_current_sos): Check magic and filetype
8098
8099 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
8100
8101 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
8102 TYPE_CALLING_CONVENTION annotation.
8103
8104 2012-02-16 Kevin Buettner <kevinb@redhat.com>
8105
8106 * MAINTAINERS: Add rx to target ISA section.
8107 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
8108 (ALLDEPFILES): Add rx-tdep.c.
8109
8110 2012-02-16 Tom Tromey <tromey@redhat.com>
8111
8112 * symfile.c (symbol_file_add_main_1): Use inferior's
8113 symfile_flags.
8114 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
8115 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
8116 inferior.
8117 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
8118 inferior.
8119 (follow_exec): Use inferior's symfile_flags.
8120 * inferior.h (struct inferior) <symfile_flags>: New field.
8121
8122 2012-02-16 Mike Frysinger <vapier@gentoo.org>
8123
8124 PR gdb/9734:
8125 * remote-sim.c (gdbsim_create_inferior): Call error() when
8126 sim_create_inferior() fails.
8127
8128 2012-02-16 Josh Matthews <josh@joshmatthews.net>
8129
8130 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
8131
8132 2012-02-16 Tom Tromey <tromey@redhat.com>
8133
8134 PR c++/13653:
8135 * thread.c (struct current_thread_cleanup) <was_removable>: New
8136 field.
8137 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
8138 (make_cleanup_restore_current_thread): Initialize new field.
8139
8140 2012-02-15 Kevin Buettner <kevinb@redhat.com>
8141
8142 * MAINTAINERS: Add rl78 to target ISA section.
8143 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
8144 (ALLDEPFILES): Add rl78-tdep.c.
8145 * NEWS: Mention rl78 as a new target.
8146
8147 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
8148
8149 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
8150 data.
8151 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
8152
8153 2012-02-15 Tom Tromey <tromey@redhat.com>
8154
8155 PR gdb/12659:
8156 * infcmd.c (registers_info): Print just the current register's
8157 name.
8158
8159 2012-02-15 Tom Tromey <tromey@redhat.com>
8160
8161 * python/py-symbol.c (sympy_value): Use _().
8162
8163 2012-02-15 Pedro Alves <palves@redhat.com>
8164
8165 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
8166 output to be like native targets'.
8167 (remote_pid_to_str): Special case the null ptid.
8168
8169 2012-02-14 Stan Shebs <stan@codesourcery.com>
8170
8171 * NEWS: Mention enable count command.
8172 * breakpoint.h (struct breakpoint): New field enable_count.
8173 * breakpoint.c (enable_breakpoint_disp): Add count argument.
8174 (enable_breakpoint): Add arg to call.
8175 (struct disp_data): New struct.
8176 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
8177 (do_map_enable_once_breakpoint): Create a struct and pass it.
8178 (do_map_enable_delete_breakpoint): Ditto.
8179 (do_map_enable_count_breakpoint): New function.
8180 (enable_count_command): New function.
8181 (bpstat_stop_status): Decrement enable_count.
8182 (print_one_breakpoint_location): Report enable count.
8183 (_initialize_breakpoint): Add enable count command.
8184
8185 2012-02-14 Kevin Buettner <kevinb@redhat.com>
8186
8187 * rl78-tdep.c (reggroups.h): Include.
8188 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
8189 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
8190 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
8191 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
8192 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
8193 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
8194 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
8195 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
8196 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
8197 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
8198 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
8199 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
8200 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
8201 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
8202 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
8203 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
8204 beginning of register list.
8205 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
8206 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
8207 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
8208 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
8209 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
8210 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
8211 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
8212 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
8213 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
8214 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
8215 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
8216 the pseudo registers. Rearrange other pseudo registers too so
8217 that the bank registers appear at the end.
8218 (rl78_register_type): Account for the fact that the byte sized
8219 bank registers are now pseudo-registers.
8220 (rl78_register_name): Rearrange the register name array. Make
8221 initial set of raw banked registers inaccessible.
8222 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
8223 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
8224 case for copying bytes back and forth between raw and pseudo
8225 versions of the banked registers. Update other cases to reflect
8226 the changed names.
8227 (rl78_return_value): Update to account for changed names of
8228 raw registers.
8229 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
8230 rl78_register_sim_regno().
8231
8232 2012-02-14 Kevin Buettner <kevinb@redhat.com>
8233
8234 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
8235 the name parameter being passed to find_pc_partial_function().
8236
8237 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8238
8239 * MAINTAINERS: Step down from being ia64 target maintainer.
8240
8241 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8242
8243 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
8244 compilation warning.
8245
8246 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8247
8248 Fix crash on loaded shlibs without loaded exec_bfd.
8249 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
8250 (set_section_command): Replace exec_bfd by p->bfd.
8251
8252 2012-02-10 Tom Tromey <tromey@redhat.com>
8253
8254 * linespec.c (decode_line_internal): Skip symtabs_from_filename
8255 when we have a C++ qualified name.
8256
8257 2012-02-10 Pedro Alves <palves@redhat.com>
8258
8259 * inferior.c (inferior_pid_to_str): New.
8260 (print_inferior, inferior_command): Use it.
8261
8262 2012-02-10 Pedro Alves <palves@redhat.com>
8263
8264 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
8265 the test CFLAGS.
8266 * configure: Regenerate.
8267
8268 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8269
8270 * linespec.c (decode_line_internal): Fix comment correctness.
8271
8272 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
8273
8274 PR gdb/12953
8275 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
8276 * amd64bsd-nat.c: Add support for debug registers (adapted from
8277 i386bsd-nat.c).
8278 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
8279 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
8280 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
8281 (amd64bsd_dr_get_control): New functions.
8282 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
8283 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
8284 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
8285 watchpoints initialization.
8286 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
8287
8288 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
8289
8290 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
8291 flds_bnds.fields.
8292 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
8293
8294 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
8295
8296 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
8297
8298 2012-02-08 Joel Brobecker <brobecker@adacore.com>
8299
8300 * language.h (symbol_name_cmp_ftype): Renames
8301 symbol_name_match_p_ftype.
8302 (struct language_defn)[la_get_symbol_name_cmp]: Renames
8303 la_get_symbol_name_match_p.
8304 * ada-lang.c (ada_get_symbol_name_cmp): Renames
8305 ada_get_symbol_name_match_p. Update comment.
8306 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
8307 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
8308 Renames symbol_name_match_p. Update field type.
8309 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
8310 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
8311 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
8312 "la_get_symbol_name_cmp" in comments.
8313 * language.c: Likewise.
8314
8315 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
8316
8317 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
8318 %eflags offset.
8319 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
8320 (amd64_sol2_gregset32_reg_offs): Likewise.
8321
8322 2012-02-08 Joel Brobecker <brobecker@adacore.com>
8323
8324 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
8325 of the returned BFD is allocated by GDB.
8326
8327 2012-02-07 Tom Tromey <tromey@redhat.com>
8328
8329 PR python/12027:
8330 * python/python-internal.h (frame_object_type): Declare.
8331 * python/py-symbol.c (sympy_needs_frame): New function.
8332 (sympy_value): New function.
8333 (symbol_object_getset): Add "needs_frame".
8334 (symbol_object_methods): Add "value".
8335 * python/py-frame.c (frame_object_type): No longer static.
8336
8337 2012-02-07 Tom Tromey <tromey@redhat.com>
8338
8339 PR python/13599:
8340 * python/py-symbol.c (sympy_line): New function.
8341 (symbol_object_getset): Add "line".
8342
8343 2012-02-07 Tom Tromey <tromey@redhat.com>
8344
8345 * charset.c (find_charset_names): Check 'in' against NULL.
8346
8347 2012-02-06 Doug Evans <dje@google.com>
8348
8349 * gdbtypes.h (struct main_type): Change type of name,tag_name,
8350 and fields.name members from char * to const char *. All uses updated.
8351 (struct cplus_struct_type): Change type of fn_fieldlists.name member
8352 from char * to const char *. All uses updated.
8353 (type_name_no_tag): Update.
8354 (lookup_unsigned_typename, lookup_signed_typename): Update.
8355 * gdbtypes.c (type_name_no_tag): Change result type
8356 from char * to const char *. All callers updated.
8357 (lookup_unsigned_typename, lookup_signed_typename): Change type of
8358 name parameter from char * to const char *.
8359 * symtab.h (struct cplus_specific): Change type of demangled_name
8360 member from char * to const char *. All uses updated.
8361 (struct general_symbol_info): Change type of name and
8362 mangled_lang.demangled_name members from char * to const char *.
8363 All uses updated.
8364 (symbol_get_demangled_name, symbol_natural_name): Update.
8365 (symbol_demangled_name, symbol_search_name): Update.
8366 * symtab.c (symbol_get_demangled_name): Change result type
8367 from char * to const char *. All callers updated.
8368 (symbol_natural_name, symbol_demangled_name): Ditto.
8369 (symbol_search_name): Ditto.
8370 (completion_list_add_name): Change type of symname,sym_text,
8371 text,word parameters from char * to const char *.
8372 (completion_list_objc_symbol): Change type of sym_text,
8373 text,word parameters from char * to const char *.
8374 * ada-lang.c (find_struct_field): Change type of name parameter
8375 from char * to const char *.
8376 (encoded_ordered_before): Similarly for N0,N1 parameters.
8377 (old_renaming_is_invisible): Similarly for function_name parameter.
8378 (ada_type_name): Change result type from char * to const char *.
8379 All callers updated.
8380 * ada-lang.h (ada_type_name): Update.
8381 * buildsym.c (hashname): Change type of name parameter
8382 from char * to const char *.
8383 * buildsym.h (hashname): Update.
8384 * dbxread.c (end_psymtab): Change type of include_list parameter
8385 from char ** to const char **.
8386 * dwarf2read.c (determine_prefix): Change result type
8387 from char * to const char *. All callers updated.
8388 * f-lang.c (find_common_for_function): Change type of name, funcname
8389 parameters from char * to const char *.
8390 * f-lang.c (find_common_for_function): Update.
8391 * f-valprint.c (list_all_visible_commons): Change type of funcname
8392 parameters from char * to const char *.
8393 * gdbarch.sh (static_transform_name): Change type of name parameter
8394 and result from char * to const char *.
8395 * gdbarch.c: Regenerate.
8396 * gdbarch.h: Regenerate.
8397 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
8398 of name parameter from char * to const char *.
8399 * jv-lang.c (java_primitive_type_from_name): Ditto.
8400 (java_demangled_signature_length): Similarly for signature parameter.
8401 (java_demangled_signature_copy): Ditto.
8402 (java_demangle_type_signature): Ditto.
8403 * jv-lang.h (java_primitive_type_from_name): Update.
8404 (java_demangle_type_signature): Update.
8405 * objc-lang.c (specialcmp): Change type of a,b parameters
8406 from char * to const char *.
8407 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
8408 from char * to const char *. All callers updated.
8409 * p-lang.h (is_pascal_string_type): Update.
8410 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
8411 of name parameter from char * to const char *.
8412 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
8413 * utils.c (fprintf_symbol_filtered): Ditto.
8414 * defs.h (fprintf_symbol_filtered): Update.
8415 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
8416 * stabsread.h (end_psymtab): Update.
8417 * stack.c (find_frame_funname): Change type of funname parameter
8418 from char ** to const char **.
8419 * stack.h (find_frame_funname): Update.
8420 * typeprint.c (type_print): Change type of varstring parameter
8421 from char * to const char *.
8422 * value.h (type_print): Update.
8423 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
8424 from char * to const char *. All callers updated.
8425 (xcoff_end_psymtab): Change type of include_list parameter
8426 from char ** to const char **. All callers updated.
8427 (swap_sym): Similarly for name parameter. All callers updated.
8428 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
8429 Use xstrdup.
8430 (process_coff_symbol): Use xstrdup.
8431 * stabsread.c (stabs_method_name_from_physname): Renamed from
8432 update_method_name_from_physname. Change result type from void
8433 to char *. All callers updated.
8434 (read_member_functions): In has_destructor case, store name in objfile
8435 obstack instead of malloc space. In !has_stub case, fix mem leak.
8436
8437 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
8438
8439 * configure: Rebuild.
8440 * configure.ac: Put -L../bfd and -L../libiberty at the front of
8441 LDFLAGS.
8442
8443 2012-02-03 Kevin Buettner <kevinb@redhat.com>
8444
8445 * configure.tgt (rl78-*-elf): New target.
8446 * rl78-tdep.c: New file.
8447
8448 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8449
8450 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
8451 and continue the loop. Add QUIT statement.
8452
8453 2012-02-03 Tom Tromey <tromey@redhat.com>
8454
8455 PR gdb/13596:
8456 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
8457 bfd_lookup_symbol_from_symtab.
8458 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
8459 gdb_bfd_lookup_symbol_from_symtab.
8460
8461 2012-02-03 Joel Brobecker <brobecker@adacore.com>
8462
8463 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
8464 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
8465 symbol. Add assertion that sym2 is never NULL.
8466
8467 2012-02-02 Doug Evans <dje@google.com>
8468
8469 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
8470 "name" parameter to const char ** from char **. All callers updated.
8471 (find_pc_partial_function): Ditto.
8472 (cache_pc_function_name): Change type to const char * from char *.
8473 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
8474 (find_pc_partial_function): Update.
8475 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
8476 type of "name" parameter to const char * from char *.
8477 All uses updated.
8478 * arch-utils.c (generic_in_solib_return_trampoline): Change
8479 type of "name" parameter to const char * from char *.
8480 * arch-utils.h (generic_in_solib_return_trampoline): Update.
8481 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
8482 type of "name" parameter to const char * from char *.
8483 * gdbarch.sh (in_solib_return_trampoline): Ditto.
8484 * gdbarch.c: Regenerate.
8485 * gdbarch.h: Regenerate.
8486 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
8487 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
8488 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
8489 type of "name" parameter to const char * from char *.
8490 * skip.c (skip_function_pc): Ditto.
8491 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
8492 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
8493 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
8494 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
8495 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
8496 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
8497 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
8498 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
8499 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
8500
8501 2012-02-02 Pedro Alves <palves@redhat.com>
8502
8503 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
8504 the current inferior has no execution. Make sure the current
8505 remote process matches gdb's current inferior.
8506
8507 2012-02-02 Tom Tromey <tromey@redhat.com>
8508
8509 PR gdb/13405:
8510 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
8511 read-only memory.
8512
8513 2012-02-02 Tom Tromey <tromey@redhat.com>
8514
8515 PR gdb/9307:
8516 * symtab.c (lookup_language_this): Set block_found.
8517
8518 2012-02-01 Tom Tromey <tromey@redhat.com>
8519
8520 PR gdb/13431:
8521 * jit.c (struct jit_inferior_data): Rewrite.
8522 (struct jit_objfile_data): New.
8523 (get_jit_objfile_data): New function.
8524 (add_objfile_entry): Update.
8525 (jit_read_descriptor): Return int. Replace descriptor_addr
8526 argument with inf_data. Update. Don't call error.
8527 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
8528 descriptor here.
8529 (jit_inferior_init): Don't look up descriptor. Don't call error.
8530 (jit_reset_inferior_data_and_breakpoints)
8531 (jit_inferior_created_observer): Remove.
8532 (jit_inferior_exit_hook): Update.
8533 (jit_executable_changed_observer): Remove.
8534 (jit_event_handler): Update.
8535 (free_objfile_data): Reset inferior data if needed.
8536 (_initialize_jit): Update.
8537
8538 2012-02-01 Tom Tromey <tromey@redhat.com>
8539
8540 * jit.c (bfd_open_from_target_memory): Move higher in file.
8541
8542 2012-02-01 Tristan Gingold <gingold@adacore.com>
8543
8544 * libunwind-frame.c (libunwind_load): Display message if dlopen
8545 failed.
8546
8547 2012-02-01 Gary Benson <gbenson@redhat.com>
8548
8549 * symtab.h (symbol_found_callback_ftype): New typedef.
8550 (iterate_over_symbols): Use the above.
8551 * symtab.c (iterate_over_symbols): Likewise.
8552 * language.h (language_defn->la_iterate_over_symbols): Likewise.
8553 * ada-lang.c (ada_iterate_over_symbols): Likewise.
8554 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
8555 (iterate_name_matcher): Document return values.
8556 (collect_one_symbol): Likewise.
8557 (collect_function_symbols): Likewise.
8558 (collect_symbols): Likewise.
8559
8560 2012-02-01 Tom Tromey <tromey@redhat.com>
8561
8562 * ada-lang.c (resolve_subexp): Update.
8563 (ada_lookup_symbol_list): Add 'full_search' argument.
8564 (ada_iterate_over_symbols): Pass 0 as full_search argument to
8565 ada_lookup_symbol_list.
8566 (ada_lookup_encoded_symbol): Update.
8567 (get_var_value): Update.
8568 * ada-exp.y (block_lookup): Update.
8569 (write_var_or_type): Update.
8570 (write_name_assoc): Update.
8571 * ada-lang.h (ada_lookup_symbol_list): Update.
8572
8573 2012-01-31 Tom Tromey <tromey@redhat.com>
8574
8575 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
8576 comment.
8577
8578 2012-01-31 Doug Evans <dje@google.com>
8579
8580 * symtab.h: Remove outdated comment.
8581 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
8582
8583 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
8584
8585 Fix build error in Darwin port.
8586 * i386-darwin-nat.c: Include i386-nat.h.
8587
8588 2012-01-30 Tom Tromey <tromey@redhat.com>
8589
8590 PR breakpoints/13568:
8591 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
8592 argument. Check for recursive includes.
8593 (dwarf_decode_macros): Create an include hash.
8594
8595 2012-01-30 Michael Eager <eager@eagercon.com>
8596
8597 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
8598 * ppc-linux-tdep.c: Include glibc-tdep.h.
8599 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
8600 (powerpc_linux_in_plt_stub): New function.
8601 (powerpc_linux_in_dynsym_resolve_code): New function.
8602 (ppc_skip_trampoline_code): New function.
8603 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
8604 Use glibc_skip_solib_resolver.
8605
8606 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
8607
8608 Code cleanup: Make 1440 bytes of data segment read-only.
8609 * arch-utils.c (endian_enum): Make it const char *const [].
8610 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
8611 Likewise.
8612 * breakpoint.c (always_inserted_enums): Likewise.
8613 * cli/cli-cmds.c (script_ext_enums): Likewise.
8614 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
8615 enumlist parameter const char *const *.
8616 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
8617 const char *const *.
8618 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
8619 parameter const char *const *.
8620 * cris-tdep.c (cris_modes): Make it const char *const [].
8621 * filesystem.c (target_file_system_kinds): Likewise.
8622 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
8623 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
8624 (can_use_displaced_stepping_enum, scheduler_enums)
8625 (exec_direction_names): Likewise.
8626 * language.c (_initialize_language): Make the type_or_range_names and
8627 case_sensitive_names variables const char *const [].
8628 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
8629 * python/python.c (python_excp_enums): Likewise.
8630 * remote.c (interrupt_sequence_modes): Likewise.
8631 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
8632 * serial.c (logbase_enums): Likewise.
8633 * sh-tdep.c (sh_cc_enum): Likewise.
8634 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
8635 Likewise.
8636 * symtab.c (multiple_symbols_modes): Likewise.
8637 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
8638 Likewise.
8639 * utils.c (internal_problem_modes): Likewise.
8640
8641 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
8642
8643 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
8644 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
8645 result.
8646
8647 2012-01-27 Doug Evans <dje@google.com>
8648
8649 * configure.ac (with_python): Fix absolute path handling for win32.
8650 * configure: Regenerate.
8651
8652 2012-01-26 Doug Evans <dje@google.com>
8653
8654 * symtab.c: Whitespace cleanup, no code changes.
8655
8656 * symtab.c (lookup_symbol_in_language): Improve comment.
8657 (lookup_symbol_aux): Fix comment.
8658
8659 * psymtab.c (add_psymbol_to_list): Result is now "void".
8660 * psympriv.h (add_psymbol_to_list): Update.
8661
8662 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
8663
8664 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
8665
8666 Do not open script filenames twice.
8667 * cli/cli-cmds.c (source_script_from_stream): Pass to
8668 source_python_script also STREAM.
8669 * python/py-auto-load.c (source_section_scripts): Pass to
8670 source_python_script_for_objfile also STREAM.
8671 (auto_load_objfile_script): Pass to source_python_script_for_objfile
8672 also INPUT.
8673 * python/python-internal.h (source_python_script_for_objfile): New
8674 parameter file, rename parameter file to filename.
8675 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
8676 instead if !_WIN32. Update the function comment.
8677 (source_python_script, source_python_script_for_objfile)
8678 (source_python_script): New parameter file, rename parameter file to
8679 filename. Pass FILENAME to python_run_simple_file.
8680 * python/python.h (source_python_script): New parameter file, rename
8681 parameter file to filename.
8682
8683 2012-01-26 Pedro Alves <palves@redhat.com>
8684
8685 * corelow.c (core_has_fake_pid): Delete.
8686 (core_close): Delete references to `core_has_fake_pid'.
8687 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
8688 (core_open): Delete references to `core_has_fake_pid'.
8689 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
8690 the removed global.
8691
8692 2012-01-26 Joel Brobecker <brobecker@adacore.com>
8693
8694 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
8695 Remove language parameter from name_matcher. Adjust the comment.
8696 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
8697 Remove language parameter.
8698 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
8699 * linespec.c (iterate_name_matcher): Likewise.
8700 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
8701 name_matcher. Adjust call accordingly.
8702 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
8703 (maintenance_check_symtabs): Adjust type of parameter "fun".
8704 * psymtab.h (maintenance_check_symtabs): Likewise.
8705
8706 2012-01-26 Joel Brobecker <brobecker@adacore.com>
8707
8708 * language.h (symbol_name_match_p_ftype): New typedef.
8709 (struct language_defn): Replace field la_symbol_name_compare
8710 by la_get_symbol_name_match_p.
8711 * ada-lang.c (ada_get_symbol_name_match_p): New function.
8712 (ada_language_defn): Use it.
8713 * linespec.c (struct symbol_matcher_data): New type.
8714 (iterate_name_matcher): Rewrite.
8715 (iterate_over_all_matching_symtabs): Pass a pointer to
8716 a symbol_matcher_data struct to expand_symtabs_matching
8717 instead of just the lookup name.
8718 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
8719 opencl-lang.c, p-lang.c, language.c: Delete field
8720 la_symbol_name_compare, and replace by NULL for new field
8721 la_get_symbol_name_match_p.
8722 * symfile.h (struct quick_symbol_functions): Update comment.
8723
8724 2012-01-25 Tom Tromey <tromey@redhat.com>
8725
8726 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
8727 dereferencing.
8728
8729 2012-01-24 Tom Tromey <tromey@redhat.com>
8730
8731 PR symtab/12406:
8732 * solib.c (update_solib_list): Update the program space's
8733 added_solibs and deleted_solibs fields.
8734 * progspace.h (struct program_space) <added_solibs,
8735 deleted_solibs>: New fields.
8736 (clear_program_space_solib_cache): Declare.
8737 * progspace.c (release_program_space): Call
8738 clear_program_space_solib_cache.
8739 (clear_program_space_solib_cache): New function.
8740 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
8741 bpstat_stop_status. Use handle_solib_event.
8742 * breakpoint.c: Include gdb_regex.h.
8743 (print_solib_event): New function.
8744 (bpstat_print): Use print_solib_event.
8745 (bpstat_stop_status): Add special case for bp_shlib_event.
8746 (handle_solib_event): New function.
8747 (bpstat_what): Use handle_solib_event.
8748 (struct solib_catchpoint): New.
8749 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
8750 (breakpoint_hit_catch_solib, check_status_catch_solib)
8751 (print_it_catch_solib, print_one_catch_solib)
8752 (print_mention_catch_solib, print_recreate_catch_solib): New
8753 functions.
8754 (catch_solib_breakpoint_ops): New global.
8755 (catch_load_or_unload, catch_load_command_1)
8756 (catch_unload_command_1): New functions.
8757 (internal_bkpt_check_status): Add special case for
8758 bp_shlib_event.
8759 (internal_bkpt_print_it): Use print_solib_event.
8760 (initialize_breakpoint_ops): Initialize
8761 catch_solib_breakpoint_ops.
8762 (_initialize_breakpoint): Register "catch load" and "catch
8763 unload".
8764 * breakpoint.h (handle_solib_event): Declare.
8765 * NEWS: Add entry for "catch load" and "catch unload".
8766
8767 2012-01-24 Tom Tromey <tromey@redhat.com>
8768
8769 * ada-lang.c: Include gdb_vecs.h.
8770 * charset.c: Include gdb_vecs.h.
8771 * tracepoint.h: Include gdb_vecs.h.
8772 * gdb_vecs.h: New file.
8773
8774 2012-01-24 Pedro Alves <pedro@codesourcery.com>
8775
8776 * breakpoint.c (breakpoint_hit_catch_fork)
8777 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
8778 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
8779 * infrun.c (inferior_has_forked, inferior_has_vforked)
8780 (inferior_has_execd, inferior_has_called_syscall): Delete.
8781 (handle_syscall_event): Get syscall_number from the execution
8782 control state's wait status.
8783 (wait_for_inferior): Don't clear syscall_number.
8784
8785 2012-01-24 Pedro Alves <palves@redhat.com>
8786
8787 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
8788 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
8789 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
8790 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
8791 `ws' parameter.
8792 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
8793 false for events other than TARGET_SIGNAL_TRAP.
8794 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
8795 Add `ws' parameter.
8796 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
8797 events other than TARGET_SIGNAL_TRAP.
8798 (tracepoint_breakpoint_hit): Add `ws' parameter.
8799 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
8800 parameter.
8801 (bpstat_stop_status): Same.
8802 (pc_at_non_inline_function): Same.
8803 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
8804 to pass the current event's waitstatus to bpstat_stop_status
8805 and pc_at_non_inline_function.
8806
8807 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
8808
8809 Code cleanup.
8810 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
8811 Update the function comment for it.
8812 (source_script_with_search): Call make_cleanup_fclose for STREAM.
8813 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
8814 for STREAM.
8815
8816 2012-01-24 Pedro Alves <palves@redhat.com>
8817
8818 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
8819 outside `bs->stop' block.
8820 (bpstat_what): Rework bp_shlib_event handling.
8821 (internal_bkpt_check_status): If the breakpoint is a
8822 bp_shlib_event, then set bs->stop and bs->print if
8823 stop_on_solib_events is set.
8824
8825 2012-01-24 Gary Benson <gbenson@redhat.com>
8826
8827 Delete #if 0'd out code.
8828 * stack.c (print_frame_label_vars): Remove.
8829 (catch_info): Likewise.
8830 (_initialize_stack): Remove "info catch" command.
8831 * NEWS: Mention the above.
8832
8833 2012-01-24 Pedro Alves <palves@redhat.com>
8834
8835 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
8836 it.
8837 (remote_notice_new_inferior): If the remote end doesn't support
8838 the multiprocess extensions, then the PID is fake.
8839 (add_current_inferior_and_thread): New.
8840 (remote_start_remote): Use it.
8841 (extended_remote_attach_1): Adjust.
8842 (extended_remote_create_inferior_1): Use
8843 add_current_inferior_and_thread.
8844
8845 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
8846
8847 Fix watchpoints to be specific for each inferior.
8848 * breakpoint.c (watchpoint_in_thread_scope): Verify also
8849 current_program_space.
8850 * i386-nat.c (i386_inferior_data_cleanup): New.
8851 (i386_inferior_data_get): Replace variable inf_data_local by an
8852 inferior_data call.
8853 (i386_use_watchpoints): Initialize i386_inferior_data.
8854 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
8855 specific iterate_over_lwps.
8856
8857 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
8858
8859 Fix watchpoints across inferior fork.
8860 * amd64-linux-nat.c (update_debug_registers_callback): Update the
8861 comment for linux_nat_iterate_watchpoint_lwps.
8862 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
8863 linux_nat_iterate_watchpoint_lwps.
8864 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
8865 * i386-linux-nat.c (update_debug_registers_callback): Update the
8866 comment for linux_nat_iterate_watchpoint_lwps.
8867 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
8868 linux_nat_iterate_watchpoint_lwps.
8869 (i386_linux_prepare_to_resume): New comment on Linux kernel.
8870 * i386-nat.c: Include inferior.h.
8871 (dr_mirror): Remove.
8872 (i386_inferior_data, struct i386_inferior_data)
8873 (i386_inferior_data_get): New.
8874 (i386_debug_reg_state): Use i386_inferior_data_get.
8875 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
8876 (i386_insert_watchpoint, i386_remove_watchpoint)
8877 (i386_stopped_data_address, i386_insert_hw_breakpoint)
8878 (i386_remove_hw_breakpoint): New variable state, use
8879 i386_debug_reg_state instead of DR_MIRROR.
8880 * linux-nat.c (delete_lwp): New declaration.
8881 (num_lwps): Move here from downwards.
8882 (delete_lwp_cleanup): New.
8883 (linux_child_follow_fork): Create new child_lp, call
8884 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
8885 PTRACE_DETACH.
8886 (num_lwps): Move upwards.
8887 (linux_nat_iterate_watchpoint_lwps): New.
8888 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
8889 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
8890
8891 2012-01-24 Joel Brobecker <brobecker@adacore.com>
8892
8893 GDB 7.4 released.
8894
8895 2012-01-23 Pedro Alves <palves@redhat.com>
8896
8897 * top.c (caution): Rename to ...
8898 (confirm): ... this.
8899 (show_caution): Rename to ...
8900 (show_confirm): ... this.
8901 (quit_cover): Adjust.
8902 (init_main): Adjust.
8903 * top.h (caution): Rename to ...
8904 (confirm): ... this.
8905 * utils.c (internal_vproblem, defaulted_query): Adjust.
8906
8907 2012-01-23 Pedro Alves <palves@redhat.com>
8908
8909 * top.c (caution): Update comment.
8910 (execute_command): Don't consider the current value of `caution'.
8911
8912 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
8913
8914 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
8915
8916 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
8917
8918 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
8919 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
8920 * target.c (target_fileio_pwrite): Remove buffer address from
8921 debug output.
8922 (target_fileio_pread): Likewise.
8923
8924 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
8925
8926 * NEWS: Document remote "info proc" and "generate-core-file".
8927
8928 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
8929
8930 * gdbarch.sh (find_memory_regions): New callback.
8931 * gdbarch.c, gdbarch.h: Regenerate.
8932
8933 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
8934 callback before falling back to target method.
8935
8936 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
8937 (linux_target_install_ops): No longer install it.
8938
8939 * linux-tdep.c (linux_find_memory_regions): New function.
8940 (linux_init_abi): Install it.
8941
8942 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
8943
8944 * gdbarch.sh (make_corefile_notes): New architecture callback.
8945 * gdbarch.c: Regenerate.
8946 * gdbarch.h: Likewise.
8947
8948 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
8949 before target_make_corefile_notes. If NULL is returned, the
8950 target does not support core file generation.
8951
8952 * linux-nat.c: Include "linux-tdep.h".
8953 (find_signalled_thread, find_stop_signal): Remove.
8954 (linux_nat_do_thread_registers): Likewise.
8955 (struct linux_nat_corefile_thread_data): Likewise.
8956 (linux_nat_corefile_thread_callback): Likewise.
8957 (iterate_over_spus): Likewise.
8958 (struct linux_spu_corefile_data): Likewise.
8959 (linux_spu_corefile_callback): Likewise.
8960 (linux_spu_make_corefile_notes): Likewise.
8961 (linux_nat_collect_thread_registers): New function.
8962 (linux_nat_make_corefile_notes): Replace contents by call to
8963 linux_make_corefile_notes passing linux_nat_collect_thread_registers
8964 as native-only callback.
8965
8966 * linux-tdep.h: Include "bfd.h".
8967 (struct regcache): Add forward declaration.
8968 (linux_collect_thread_registers_ftype): New typedef.
8969 (linux_make_corefile_notes): Add prototype.
8970 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
8971 "regset.h", and "elf-bfd.h".
8972 (find_signalled_thread, find_stop_signal): New functions.
8973 (linux_spu_make_corefile_notes): Likewise.
8974 (linux_collect_thread_registers): Likewise.
8975 (struct linux_corefile_thread_data): New data structure.
8976 (linux_corefile_thread_callback): New funcion.
8977 (linux_make_corefile_notes): Likewise.
8978 (linux_make_corefile_notes_1): Likewise.
8979 (linux_init_abi): Install it.
8980
8981 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
8982
8983 * gdbarch.sh (info_proc): New callback.
8984 * gdbarch.c, gdbarch.h: Regenerate.
8985
8986 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
8987 before falling back to the target info_proc callback.
8988
8989 * linux-nat.c: Do not include "cli/cli-utils.h".
8990 (linux_nat_info_proc): Remove.
8991 (linux_target_install_ops): No longer install it.
8992
8993 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
8994 (read_mapping): New function.
8995 (linux_info_proc): Likewise.
8996 (linux_init_abi): Install it.
8997
8998 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
8999
9000 * defs.h (enum info_proc_what): Moved here from linux-nat.c
9001 * infcmd.c: (info_proc_cmd_1): New function.
9002 (info_proc_cmd): New function, moved here from equivalent routine
9003 orignally in linux-nat.c.
9004 (info_proc_cmd_mappings): Likewise.
9005 (info_proc_cmd_stat): Likewise.
9006 (info_proc_cmd_status): Likewise.
9007 (info_proc_cmd_cwd): Likewise.
9008 (info_proc_cmd_cmdline): Likewise.
9009 (info_proc_cmd_exe): Likewise.
9010 (info_proc_cmd_all): Likewise.
9011 (_initialize_infcmd): Install "info proc" command and subcommands.
9012
9013 * target.h (struct target_ops): Add to_info_proc.
9014 (target_info_proc): Add prototype.
9015 * target.c (target_info_proc): New function.
9016
9017 * procfs.c (procfs_info_proc): Add prototype.
9018 (info_proc_cmd): Rename into ...
9019 (procfs_info_proc): ... this. Update argument types as appropriate
9020 for a to_info_proc implementation. Handle "what" argument.
9021 (procfs_target): Install procfs_info_proc.
9022 (_initialize_procfs): No longer install "info proc" command.
9023
9024 * linux-nat.c: (enum info_proc_what): Remove.
9025 (linux_nat_info_proc_cmd_1): Rename into ...
9026 (linux_nat_info_proc): ... this. Update argument types as appropriate
9027 for a to_info_proc implementation.
9028 (linux_nat_info_proc_cmd): Remove.
9029 (linux_nat_info_proc_cmd_mappings): Likewise.
9030 (linux_nat_info_proc_cmd_stat): Likewise.
9031 (linux_nat_info_proc_cmd_status): Likewise.
9032 (linux_nat_info_proc_cmd_cwd): Likewise.
9033 (linux_nat_info_proc_cmd_cmdline): Likewise.
9034 (linux_nat_info_proc_cmd_exe): Likewise.
9035 (linux_nat_info_proc_cmd_all): Likewise.
9036 (linux_target_install_ops): Install linux_nat_info_proc.
9037 (_initialize_linux_nat): No longer install "info proc" command
9038 and subcommands.
9039
9040 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
9041
9042 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
9043 * config.in, configure: Regenerate.
9044
9045 * target.h (struct target_ops): Add to_fileio_readlink.
9046 (target_fileio_readlink): Add prototype.
9047 * target.c (target_fileio_readlink): New function.
9048
9049 * inf-child.c: Conditionally include <sys/param.h>.
9050 (inf_child_fileio_readlink): New function.
9051 (inf_child_target): Install it.
9052
9053 * remote.c (PACKET_vFile_readlink): New enum value.
9054 (remote_hostio_readlink): New function.
9055 (init_remote_ops): Install it.
9056 (_initialize_remote): Handle vFile:readlink packet type.
9057
9058 2012-01-20 Pedro Alves <palves@redhat.com>
9059 Ulrich Weigand <ulrich.weigand@linaro.org>
9060
9061 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
9062 * config.in, configure: Regenerate.
9063
9064 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
9065 to_fileio_pread, to_fileio_close, to_fileio_unlink.
9066 (target_fileio_open): Add prototype.
9067 (target_fileio_pwrite): Likewise.
9068 (target_fileio_pread): Likewise.
9069 (target_fileio_close): Likewise.
9070 (target_fileio_unlink): Likewise.
9071 (target_fileio_read_alloc): Likewise.
9072 (target_fileio_read_stralloc): Likewise.
9073
9074 * target.c: Include "gdb/fileio.h".
9075 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
9076 (default_fileio_target): New function.
9077 (target_fileio_open): Likewise.
9078 (target_fileio_pwrite): Likewise.
9079 (target_fileio_pread): Likewise.
9080 (target_fileio_close): Likewise.
9081 (target_fileio_unlink): Likewise.
9082 (target_fileio_close_cleanup): Likewise.
9083 (target_fileio_read_alloc_1): Likewise.
9084 (target_fileio_read_alloc): Likewise.
9085 (target_fileio_read_stralloc): Likewise.
9086
9087 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
9088 <fcntl.h>, and <unistd.h>.
9089 (inf_child_fileio_open_flags_to_host): New function.
9090 (inf_child_errno_to_fileio_error): Likewise.
9091 (inf_child_fileio_open): Likewise.
9092 (inf_child_fileio_pwrite): Likewise.
9093 (inf_child_fileio_pread): Likewise.
9094 (inf_child_fileio_close): Likewise.
9095 (inf_child_fileio_unlink): Likewise.
9096 (inf_child_target): Install to_fileio routines.
9097
9098 * remote.c (init_remote_ops): Install to_fileio routines.
9099
9100 2012-01-20 Pedro Alves <palves@redhat.com>
9101 Ulrich Weigand <ulrich.weigand@linaro.org>
9102
9103 * remote.c (remote_multi_process_p): Only check for multi-process
9104 protocol feature, do not check for extended protocol.
9105 (remote_supports_multi_process): Check for extended protocol here.
9106 (set_general_process): Likewise.
9107 (extended_remote_kill): Likewise.
9108 (remote_pid_to_str): Likewise.
9109 (remote_query_supported): Always query multiprocess mode.
9110
9111 2012-01-20 Pedro Alves <palves@redhat.com>
9112 Ulrich Weigand <ulrich.weigand@linaro.org>
9113
9114 * inferior.h (struct inferior): Add fake_pid_p.
9115 * inferior.c (exit_inferior_1): Clear fake_pid_p.
9116 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
9117 magic_null_ptid since the remote side doesn't provide a real PID.
9118
9119 2012-01-19 Tom Tromey <tromey@redhat.com>
9120
9121 * NEWS: Combine the two Python sections.
9122
9123 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9124
9125 * target.h (target_close): Update comment on the target's unpush state.
9126
9127 2012-01-19 Pedro Alves <palves@redhat.com>
9128
9129 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
9130 linux_nat_async directly instead of going through the target
9131 vector.
9132 * target.c (unpush_target): Close target after unpushing it, not
9133 before.
9134
9135 2012-01-19 Gary Benson <gbenson@redhat.com>
9136
9137 * mdebugread.c (sort_blocks): Replace integer constants with ones
9138 derived from FIRST_LOCAL_BLOCK.
9139
9140 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
9141 Jan Kratochvil <jan.kratochvil@redhat.com>
9142
9143 PR gdb/9538
9144 * symfile.c (find_separate_debug_file): New function.
9145 (terminate_after_last_dir_separator): Likewise.
9146 (find_separate_debug_file_by_debuglink): Also try realpath.
9147 * configure.ac (AC_CHECK_FUNCS): Add lstat.
9148 * configure: Regenerate.
9149 * config.in: Regenerate.
9150
9151 2012-01-18 Doug Evans <dje@google.com>
9152
9153 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
9154 (main.o): Remove rule.
9155 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
9156 (--with-sysroot): Rewrite.
9157 * configure: Regenerate.
9158 * config.in: Regenerate.
9159
9160 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
9161
9162 * parse.c (initialize_expout): New function.
9163 (reallocate_expout): Likewise.
9164 (parse_exp_in_context): Use `initialize_expout' and
9165 `reallocate_expout' when appropriate.
9166
9167 2012-01-18 Pedro Alves <palves@redhat.com>
9168
9169 * record.c (struct record_breakpoint, record_breakpoint_p)
9170 (record_breakpoints): New.
9171 (record_insert_breakpoint, record_remove_breakpoint): Manage
9172 record breakpoints list. Only remove breakpoints from the
9173 inferior if they had been inserted there in the first place.
9174
9175 2012-01-17 Doug Evans <dje@google.com>
9176
9177 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
9178 if we know we don't have a file name to look for.
9179
9180 2012-01-17 Pedro Alves <palves@redhat.com>
9181
9182 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
9183 the frame's stop reason is UNWIND_UNAVAILABLE.
9184
9185 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9186
9187 Fix compilation error.
9188 * m2-exp.y (yyerror): Use ANSI C prototype.
9189
9190 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
9191
9192 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
9193 (growbuf_by_size): Likewise.
9194 (yyerror): Likewise.
9195 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
9196 (modblock): Remove variable (was #if 0'ed).
9197 (parse_number): Convert prototype from K&R to ANSI C.
9198 (yyerror): Likewise.
9199 * objc-exp.y (parse_number): Likewise.
9200 (yyerror): Likewise.
9201 (yylex): Remove #if 0'ed code.
9202 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
9203 (yyerror): Likewise.
9204
9205 2012-01-16 Tom Tromey <tromey@redhat.com>
9206
9207 * NEWS: Add item.
9208 * symtab.h (compare_filenames_for_search): Declare.
9209 * symtab.c (compare_filenames_for_search): New function.
9210 (iterate_over_some_symtabs): Use it.
9211 * symfile.h (struct quick_symbol_functions)
9212 <map_symtabs_matching_filename>: Change spec.
9213 * psymtab.c (partial_map_symtabs_matching_filename): Use
9214 compare_filenames_for_search. Update for new spec.
9215 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
9216 compare_filenames_for_search. Update for new spec.
9217 * breakpoint.c (clear_command): Use compare_filenames_for_search.
9218
9219 2012-01-16 Tom Tromey <tromey@redhat.com>
9220
9221 PR python/13281:
9222 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
9223 (struct main_type) <flag_flag_enum>: New field.
9224 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
9225 * NEWS: Add entries.
9226 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
9227 enums.
9228 * python/lib/gdb/printing.py (_EnumInstance): New class.
9229 (FlagEnumerationPrinter): Likewise.
9230
9231 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
9232
9233 * breakpoint.c (create_sals_from_address_default): New function.
9234 (create_breakpoints_sal_default): Likewise.
9235 (decode_linespec_default): Likewise.
9236 (is_marker_spec): Removed.
9237 (strace_marker_p): New function.
9238 (init_breakpoint_sal): Using `strace_marker_p' instead of
9239 `is_marker_spec'.
9240 (create_breakpoint): Call method `create_sals_from_address' from
9241 breakpoint_ops, replacing code that created SALs conditionally
9242 on the type of the breakpoint. Call method `create_breakpoints_sal',
9243 replacing code that created breakpoints conditionally on the type
9244 wanted.
9245 (base_breakpoint_create_sals_from_address): New function.
9246 (base_breakpoint_create_breakpoints_sal): Likewise.
9247 (base_breakpoint_decode_linespec): Likewise.
9248 (base_breakpoint_ops): Add methods
9249 `base_breakpoint_create_sals_from_address',
9250 `base_breakpoint_create_breakpoints_sal' and
9251 `base_breakpoint_decode_linespec'.
9252 (bkpt_create_sals_from_address): New function.
9253 (bkpt_create_breakpoints_sal): Likewise.
9254 (bkpt_decode_linespec): Likewise.
9255 (tracepoint_create_sals_from_address): Likewise.
9256 (tracepoint_create_breakpoints_sal): Likewise.
9257 (tracepoint_decode_linespec): Likewise.
9258 (strace_marker_create_sals_from_address): Likewise.
9259 (strace_marker_create_breakpoints_sal): Likewise.
9260 (strace_marker_decode_linespec): Likewise.
9261 (strace_marker_breakpoint_ops): New variable.
9262 (addr_string_to_sals): Remove `marker_spec'. Call method
9263 `decode_linespec' from breakpoint_ops, replacing code that decoded
9264 an address string into a SAL. Use `strace_marker_p' instead of
9265 `marker_spec'.
9266 (strace_command): Decide whether we are dealing with a static
9267 tracepoint with marker or not. Use the appropriate breakpoint_ops.
9268 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
9269 * breakpoint.h (linespec_result, linespec_sals): New forward
9270 declarations.
9271 (breakpoint_ops) <create_sals_from_address>,
9272 <create_breakpoints_sal>, <decode_linespec>: New methods.
9273
9274 2012-01-14 Doug Evans <dje@google.com>
9275
9276 * NEWS: Update text for "maint set python print-stack".
9277 It is deprecated in gdb 7.4 and deleted in 7.5.
9278
9279 2012-01-13 Eli Zaretskii <eliz@gnu.org>
9280
9281 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
9282 including curses.h.
9283
9284 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9285
9286 * configure: Regenerate.
9287 * config.in: Regenerate.
9288
9289 2012-01-12 Keith Seitz <keiths@redhat.com>
9290
9291 PR mi/10586
9292 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
9293 (ANONYMOUS_UNION_NAME): Define.
9294 (is_path_expr_parent): New function.
9295 (get_path_expr_parent): New function.
9296 (is_anonymous_child): New function.
9297 (create_child_with_value): If the child is anonymous and without
9298 a name, assign an object name to it.
9299 (c_describe_child): Use get_path_expr_parent to determine
9300 the parent expression.
9301 If there field represents an anonymous struct or union and
9302 has no name, set an appropriate display name and expression.
9303 (cplus_describe_child): Likewise.
9304
9305 2012-01-12 Pedro Alves <palves@redhat.com>
9306
9307 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
9308 available when %ebp is found to be zero (outermost).
9309
9310 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
9311
9312 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
9313 an internal gdb_static_assert.
9314 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
9315
9316 2012-01-11 Tom Tromey <tromey@redhat.com>
9317
9318 PR gdb/9598:
9319 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
9320 catch" and "catch throw".
9321
9322 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
9323
9324 * blockframe.c (block_innermost_frame): Start search from selected
9325 frame, if present, or otherwise the current frame.
9326
9327 * c-exp.y (variable): Update innermost_block for
9328 'block COLONCOLON NAME' clause.
9329 * m2-exp.y (variable): Ditto.
9330 * objc-exp.y (variable): Ditto.
9331
9332 2012-01-10 Tom Tromey <tromey@redhat.com>
9333
9334 PR python/13199:
9335 * python/python.c (finish_python_initialization): Set sys.argv.
9336
9337 2012-01-10 Doug Evans <dje@google.com>
9338
9339 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
9340 "want_line_info". All callers updated.
9341 (dwarf_decode_lines_1): New function.
9342 (handle_DW_AT_stmt_list): Add function comment.
9343 New arg "want_line_info". All callers updated.
9344 (read_file_scope,read_type_unit_scope): Move comment from
9345 handle_DW_AT_stmt_list to here.
9346
9347 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9348
9349 Fix regression after libiberty/ update for GCC PR 6057 and others.
9350 * c-exp.y (operator) <OPERATOR DELETE>
9351 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
9352 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
9353 (make_builtin_type, make_name): New variable i, add gdb_assert.
9354 (operator) <OPERATOR NEW>: Update ARGS to 3.
9355 (operator) <OPERATOR DELETE>: Add trailing space.
9356 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
9357 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
9358 * cp-support.c (cp_canonicalize_string): Check NULL from
9359 cp_comp_to_string, call warning and return.
9360
9361 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9362
9363 Fix duplicate .o files after omitting libbfd.a.
9364 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
9365 (SFILES): Add corelow.c.
9366 (COMMON_OBS): Add corelow.o.
9367 (ALLDEPFILES): Remove corelow.c.
9368 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
9369 * config/alpha/alpha-osf3.mh: Likewise.
9370 * config/alpha/fbsd.mh: Likewise.
9371 * config/arm/nbsdaout.mh: Likewise.
9372 * config/arm/nbsdelf.mh: Likewise.
9373 * config/i386/i386gnu.mh: Likewise.
9374 * config/ia64/hpux.mh: Likewise.
9375 * config/ia64/linux.mh: Likewise.
9376 * config/m32r/linux.mh: Likewise.
9377 * config/m68k/linux.mh: Likewise.
9378 * config/mips/irix5.mh: Likewise.
9379 * config/mips/irix6.mh: Likewise.
9380 * config/pa/hpux.mh: Likewise.
9381 * config/pa/linux.mh: Likewise.
9382 * config/powerpc/aix.mh: Likewise.
9383 * config/sparc/linux.mh: Likewise.
9384 * config/sparc/linux64.mh: Likewise.
9385 * config/sparc/sol2.mh: Likewise.
9386 * config/vax/vax.mh: Likewise.
9387 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
9388 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
9389 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
9390 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
9391 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
9392 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
9393 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
9394 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
9395 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
9396 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
9397 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
9398 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
9399 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
9400 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
9401 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
9402 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
9403 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
9404 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
9405 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
9406 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
9407 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
9408 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
9409 corelow.o from gdb_target_obs.
9410 * corefile.c (core_target): Update the comment on NULL value.
9411 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
9412 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
9413 MATCHES. Drop YUMMY set on NULL.
9414 (core_close): Do not call exit_inferior_silent on zero PID. Do not
9415 reclaim CORE_DATA if it is already NULL.
9416
9417 2012-01-09 Doug Evans <dje@google.com>
9418
9419 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
9420 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
9421
9422 2012-01-09 Keith Seitz <keiths@redhat.com>
9423
9424 * breakpoint.c (wrapper.h): Don't include.
9425
9426 2012-01-09 Keith Seitz <keiths@redhat.com>
9427
9428 * Makefile.in (SFILES): Remove wrapper.c.
9429 (HFILES_NO_SRCDIR): Remove wrapper.h.
9430 (COMMON_OBS): Remove wrapper.o.
9431 * cli/cli-interp.c: Don't inlude wrapper.h.
9432 * corelow.c: Likewise.
9433 (core_open): Replace gdb_target_find_new_threads with
9434 TRY_CATCH around target_find_new_threads.
9435 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
9436 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
9437 * varobj.c (varobj_create): Likewise for parse_exp_1 and
9438 evaluate_expression.
9439 (varobj_set_value): Likewise for evaluate_expression and
9440 value_assign.
9441 (install_new_variable): Likewise for value_fetch_lazy.
9442 (adjust_value_for_child_access): Likewise for value_ind.
9443 (c_describe_child): Likewise for value_subscript and
9444 value_ind.
9445 (c_value_of_root): Likewise for evaluate_expression.
9446 * wrapper.c: Remove.
9447 * wrapper.h: Remove.
9448
9449 2012-01-09 Doug Evans <dje@google.com>
9450
9451 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
9452 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
9453 "abfd" args with "section". All callers updated.
9454 Error checking code moved ...
9455 (error_check_comp_unit_head): ... here. New function.
9456 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
9457 Delete arg "abfd". New arg "type_offset". All callers updated.
9458 (create_debug_types_hash_table): Simplify by using
9459 read_and_check_type_unit_head.
9460
9461 * parser-defs.h (namecopy): Delete.
9462 * parse.c (namecopy, namecopy_size): Move into copy_name.
9463
9464 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
9465
9466 Partially fix duplicate .o files after omitting libbfd.a.
9467 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
9468 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
9469 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
9470 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
9471 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
9472 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
9473 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
9474
9475 2012-01-09 Pedro Alves <palves@redhat.com>
9476
9477 * MAINTAINERS: Update my email address.
9478
9479 2012-01-08 Doug Evans <dje@google.com>
9480
9481 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
9482 n_type_units. Rename type_comp_units to all_type_units.
9483 All uses updated.
9484 (add_signatured_type_cu_to_table): Renamed from
9485 add_signatured_type_cu_to_list. All callers updated.
9486
9487 * gdbtypes.h (struct cplus_struct_type): Delete member
9488 nfn_fields_total. All uses removed.
9489
9490 2012-01-06 Doug Evans <dje@google.com>
9491
9492 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
9493 to top of file.
9494 (dwarf2_find_comp_unit): Delete.
9495 (process_psymtab_comp_unit): Make result "void".
9496 Delete args buffer, info_ptr, buffer_size, and replace with
9497 "section". All callers updated.
9498 (dwarf2_build_psymtabs_hard): Simplify.
9499
9500 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
9501 Thiago Jung Bauermann <bauerman@br.ibm.com>
9502
9503 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
9504 before `struct gdb_exception'.
9505 * breakpoint.c (update_global_location_list_nothrow)
9506 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
9507 * cp-abi.c (value_rtti_type): Likewise.
9508 * cp-support.c (cp_validate_operator): Likewise.
9509 * infrun.c (insert_exception_resume_breakpoint)
9510 (check_exception_resume, keep_going): Likewise.
9511 * mi-interp.c (mi_breakpoint_created)
9512 (mi_breakpoint_modified): Likewise.
9513 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
9514 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
9515 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
9516
9517 2012-01-05 Doug Evans <dje@google.com>
9518
9519 * dwarf2read.c (statement_prologue): Delete, unused.
9520
9521 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
9522 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
9523
9524 * dwarf2read.c (comp_unit_header): Delete, unused.
9525
9526 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
9527
9528 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
9529 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
9530
9531 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
9532
9533 * infrun.c (normal_stop): Don't skip calling the normal_stop
9534 observers if the thread was doing a multi-step, but stopped for
9535 some reason other than stepping.
9536
9537 2012-01-05 Pedro Alves <alves.ped@gmail.com>
9538
9539 * cli/cli-decode.h: Add comments.
9540 (CMD_LIST_AMBIGUOUS): Moved to command.h
9541 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
9542 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
9543 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
9544 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
9545 (add_com, add_com_alias, add_info, add_info_alias)
9546 (complete_on_cmdlist, complete_on_enum, help_list): Remove
9547 declarations.
9548 * command.h: Add and adjust comments.
9549 (CMD_LIST_AMBIGUOUS): Moved here.
9550 (help_cmd, help_cmd_list): Delete declarations.
9551
9552 2012-01-04 Doug Evans <dje@google.com>
9553
9554 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
9555 All callers updated.
9556 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
9557 Replace all arguments with "per_cu". All callers updated.
9558
9559 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
9560
9561 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
9562 New arg "per_cu". All callers updated.
9563
9564 Delete #if 0'd out code.
9565 * language.c (binop_result_type): Delete.
9566 (simple_type, ordered_type, same_type, integral_type): Delete.
9567 (numeric_type, character_type, string_type, boolean_type): Delete.
9568 (float_type, structured_type): Delete.
9569 * language.h: Update.
9570
9571 2012-01-04 Tom Tromey <tromey@redhat.com>
9572
9573 * python/py-value.c (valpy_binop): Initialize 'res_val'.
9574
9575 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9576
9577 * corefile.c (close_exec_file): Delete.
9578 (reopen_exec_file): Remove commented out code that seems related
9579 to close_exec_file, which is being deleted here.
9580 * inferior.h (close_exec_file): Delete.
9581 * fork-child.c (fork_inferior): Remove call to fork_inferior.
9582
9583 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9584
9585 * ada-lang.c: #include "cli/cli-utils.h".
9586 (get_selections): Use skip_spaces.
9587 (ada_get_next_arg): Use skip_spaces and skip_to_space.
9588 (catch_ada_exception_command_split): Use skip_spaces.
9589 (ada_decode_assert_location): Likewise.
9590
9591 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9592
9593 * linespec.c (decode_line_internal): Check for C++ or Java
9594 compound constructs only if the current language is C, C++
9595 or Java.
9596
9597 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9598
9599 Revert:
9600 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9601 Joel Brobecker <brobecker@adacore.com>
9602 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
9603 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
9604 3 times.
9605 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
9606 fall through into AT_ENTRY_POINT.
9607 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
9608 DUMMY_ADDR with it.
9609 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
9610 PPC_INSN_SIZE skip to 3 times.
9611
9612 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9613
9614 * linespec.c (add_minsym): Preserve function descriptors.
9615
9616 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
9617
9618 * breakpoint.c (all_locations_are_pending): Consider locations
9619 in program spaces executing during startup pending as well.
9620
9621 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9622
9623 Copyright year update in most files of the GDB Project.
9624
9625 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9626
9627 * copyright.sh: Delete.
9628 * copyright.py: Rewrite.
9629
9630 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9631
9632 * gnulib/extra/update-copyright: New file, imported from gnulib.
9633
9634 2012-01-04 Joel Brobecker <brobecker@adacore.com>
9635
9636 * README (Copyright and License Notices): New section.
9637
9638 2012-01-03 Tom Tromey <tromey@redhat.com>
9639
9640 PR python/12533:
9641 * python/py-value.c (valpy_dereference, valpy_get_address
9642 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
9643 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
9644 (valpy_absolute, valpy_richcompare): Free intermediate values.
9645
9646 2011-01-03 Joel Brobecker <brobecker@adacore.com>
9647
9648 * ada-lang.c: Reformat the copyright notice.
9649
9650 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9651
9652 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
9653 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
9654 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
9655 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
9656 Revert this part of:
9657 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9658 Build gdb directly from *.o files not using libgdb.a.
9659 * Makefile.in (COMMON_OBS): Remove solib-target.o.
9660
9661 2012-01-02 Joel Brobecker <brobecker@adacore.com>
9662
9663 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
9664 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
9665 Reformat the copyright header.
9666
9667 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9668
9669 Revert this part of:
9670 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9671 Remove the gdbtui binary.
9672 * gdb.c (main): Remove args.interpreter_p initialization.
9673 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
9674 * main.h (struct captured_main_args): Remove interpreter_p.
9675
9676 2012-01-02 Joel Brobecker <brobecker@adacore.com>
9677
9678 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
9679
9680 2012-01-02 Joel Brobecker <brobecker@adacore.com>
9681
9682 * top.c (print_gdb_version): Update copyright year.
9683
9684 2012-01-02 Yao Qi <yao@codesourcery.com>
9685
9686 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
9687
9688 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9689 Joel Brobecker <brobecker@adacore.com>
9690
9691 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
9692 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
9693 3 times.
9694 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
9695 fall through into AT_ENTRY_POINT.
9696 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
9697 DUMMY_ADDR with it.
9698 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
9699 PPC_INSN_SIZE skip to 3 times.
9700
9701 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9702
9703 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
9704 the return value.
9705 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
9706
9707 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9708
9709 Build gdb directly from *.o files not using libgdb.a.
9710 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
9711 (COMMON_OBS): Remove solib-target.o.
9712 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
9713 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
9714 (LIBGDB_OBS, libgdb.a): Move it above.
9715 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
9716 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
9717 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
9718 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
9719 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
9720 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
9721 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
9722 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
9723 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
9724 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
9725 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
9726 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
9727 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
9728 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
9729 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
9730 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
9731 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
9732 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
9733 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
9734 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
9735 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
9736 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
9737 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
9738 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
9739 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
9740 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
9741 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
9742
9743 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9744
9745 Remove the gdbtui binary.
9746 * .gitignore (/gdbtui): Remove.
9747 * Makefile.in (TUI): Remove.
9748 (SUBDIR_TUI_OBS): Remove tui-main.o.
9749 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
9750 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
9751 (tui-main.o): Remove.
9752 (all_object_files): Remove tui-main.o.
9753 * NEWS: New note for the gdbtui removal.
9754 * configure: Rebuilt.
9755 * configure.ac: No longer add all-tui, clean-tui, install-tui and
9756 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
9757 CONFIG_UNINSTALL respectively.
9758 * gdb.c (main): Remove args.interpreter_p initialization.
9759 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
9760 * main.h (struct captured_main_args): Remove interpreter_p.
9761 * tui/tui-main.c: Remove.
9762
9763 2012-01-01 Doug Evans <dje@google.com>
9764
9765 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
9766 (dwarf2_physname, read_import_statement): Ditto.
9767 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
9768 (process_structure_scope read_subroutine_type): Ditto.
9769 (read_typedef, load_partial_dies, read_partial_die): Ditto.
9770 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
9771 (dwarf2_fetch_die_location_block): Ditto.
9772 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
9773
9774 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
9775 All callers updated.
9776 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
9777 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
9778 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
9779
9780 * dwarf2read.c (load_cu): Move assert to more useful location.
9781
9782 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
9783 All callers updated.
9784
9785 * dwarf2read.c (dwarf2_per_objfile): Add comment.
9786 (dwarf2_elf_names): Minor reformat.
9787 (dwarf2_per_cu_data): Tweak comment.
9788 (dwarf2_read_section): Fix comment.
9789 (create_all_comp_units): Fix comment.
9790 (load_full_comp_unit): Fix comment.
9791 (process_full_comp_unit): Fix comment.
9792 (read_signatured_type): Fix comment.
9793
9794 For older changes see ChangeLog-2011.
9795 \f
9796 Local Variables:
9797 mode: change-log
9798 left-margin: 8
9799 fill-column: 74
9800 version-control: never
9801 coding: utf-8
9802 End:
This page took 0.232778 seconds and 4 git commands to generate.