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