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