b77946cdda54b0b657718f5d67efcddb0d876ac7
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-10-22 Ali Anwar <ali_anwar@codesourcery.com>
2
3 * gdbarch.sh (function_list): Use 'pstring' when printing
4 a variable which could return NULL.
5 * gdbarch.c: Regenerate.
6
7 2012-10-10 Joel Brobecker <brobecker@adacore.com>
8 Tom Tromey <tromey@redhat.com>
9
10 * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
11 inneffective if condition by gdb assertion. Add function
12 description comment.
13
14 2012-10-19 Joel Brobecker <brobecker@adacore.com>
15
16 * parser-defs.h (struct exp_descriptor): Document constraint
17 on return value for "op_name" callbacks.
18
19 2012-10-18 Tom Tromey <tromey@redhat.com>
20
21 * tracepoint.c (print_one_static_tracepoint_marker): Constify.
22 * symtab.c (iterate_over_some_symtabs): Constify.
23 * source.h (symtab_to_fullname): Return 'const char *'.
24 * source.c (symtab_to_fullname): Return 'const char *'.
25 * python/py-symtab.c (stpy_fullname): Constify.
26 * cli/cli-cmds.c (edit_command): Constify.
27 * breakpoint.c (print_breakpoint_location)
28 (update_static_tracepoint): Constify.
29
30 2012-10-18 Tom Tromey <tromey@redhat.com>
31
32 * breakpoint.c (compare_breakpoints): Fix comparison.
33
34 2012-10-18 Tom Tromey <tromey@redhat.com>
35
36 * valprint.c (generic_emit_char, generic_printstr): Pass size of
37 gdb_wchar_t to convert_between_encodings.
38
39 2012-10-17 Yao Qi <yao@codesourcery.com>
40
41 * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
42 more parameter 'inferior'.
43 * corefile.c (write_memory_with_notification): Caller update.
44
45 * mi/mi-cmd-var.c: Include "mi-main.h".
46 (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
47 to 1 and restore it later.
48 * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
49 and "data-write-memory-bytes.
50 * mi/mi-interp.c: Include objfiles.h.
51 (mi_interpreter_init): Call observer_attach_memory_changed.
52 (mi_memory_changed): New.
53 * mi/mi-main.h (struct mi_suppress_notification) <memory>:
54 New field.
55
56 * NEWS: Mention new MI notification "memory-changed".
57
58 2012-10-16 Jan Kratochvil <jan.kratochvil@redhat.com>
59
60 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
61
62 2012-10-15 Doug Evans <dje@google.com>
63
64 New option -nh: inhibit loading of ~/.gdbinit.
65 * NEWS: Mention -nh.
66 * main.c (captured_main): Recognize and process -nh.
67 (print_gdb_help): Mention -nh.
68 * gdb.1: Mention -nh. Remove erroneous docs on -nx behavior.
69
70 2012-10-15 H.J. Lu <hongjiu.lu@intel.com>
71
72 PR backtrace/14646
73 PR gdb/14647
74 * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
75 pc_regnum_from_eax.
76 * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
77 nor pc_regnum_from_eax.
78 * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
79 nor pc_regnum_from_eax.
80
81 2012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com>
82
83 Fix entry values resolving in inlined frames.
84 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
85 gdbarch and caller_frame initialization later. Skip INLINE_FRAME
86 entries of FRAME.
87
88 2012-10-15 Joel Brobecker <brobecker@adacore.com>
89
90 * configure.ac: Build with -DMS_WIN64 if building with Python
91 enabled using GCC on amd64-windows.
92 * configure: Regenerate.
93
94 2012-10-15 Tom Tromey <tromey@redhat.com>
95
96 PR python/14635:
97 * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
98 to Py_None.
99
100 2012-10-15 Tom Tromey <tromey@redhat.com>
101
102 PR python/14634:
103 * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
104
105 2012-10-11 Andrew Burgess <aburgess@broadcom.com>
106
107 * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
108 reset thread numbering back to 1.
109
110 2012-10-11 Doug Evans <dje@google.com>
111
112 PR breakpoints/14643.
113 * linespec.c (struct ls_parser): New member keyword_ok.
114 (linespec_lexer_lex_string): Add comment.
115 (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
116 for one.
117 (parse_linespec): Set keyword_ok.
118
119 2012-10-10 Doug Evans <dje@google.com>
120
121 * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
122 "0x" prefix on address in log message.
123
124 * dwarf2read.c (read_1_byte): Add const to buf parameter.
125 (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
126 (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
127 (lookup_dwo_file): Add const to dwo_name parameter.
128 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
129
130 2012-10-06 Jan Kratochvil <jan.kratochvil@redhat.com>
131
132 Fix crash during stepping on ppc32.
133 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
134 SYM.
135
136 2012-10-03 Doug Evans <dje@google.com>
137
138 PR symtab/14601
139 * buildsym.c (buildsym_init): Reset using_directives to NULL.
140
141 2012-10-02 Andrew Burgess <aburgess@broadcom.com>
142
143 * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
144 output and use uint32_t not long to ensure 4 byte size.
145
146 2012-10-02 Joel Brobecker <brobecker@adacore.com>
147
148 * rs6000-nat.c (add_vmap): Set "last" to "next" after having
149 unref'ed it.
150
151 2012-10-01 Andrew Burgess <aburgess@broadcom.com>
152
153 * target.c (simple_search_memory): Include access length in
154 warning message.
155
156 2012-09-28 Nathan Miller <nathanm2@us.ibm.com>
157 Edjunior Machado <emachado@linux.vnet.ibm.com>
158
159 PR gdb/13989
160 * solib.c (solib_find): Prevent GDB from loading native libraries when
161 debugging a cross-target corefile.
162
163 2012-09-28 selven <pcthegreat@gmail.com>
164
165 Make definition match declaration.
166
167 * regcache.c (regcache_register_status): Change return type to
168 enum register_status.
169
170 2012-09-28 Yao Qi <yao@codesourcery.com>
171
172 * mi/mi-main.c (mi_cmd_data_write_memory): Call
173 write_memory_with_notification instead of write_memory.
174 (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
175 instead of target_write_memory.
176
177 2012-09-28 Yao Qi <yao@codesourcery.com>
178
179 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
180 when the length of content is not an even number.
181
182 2012-09-27 Tom Tromey <tromey@redhat.com>
183
184 Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
185 * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
186
187 2012-09-27 Joel Brobecker <brobecker@adacore.com>
188
189 * sol-thread.c (sol_thread_fetch_registers)
190 (sol_thread_store_registers): Delete commented out code.
191
192 2012-09-27 Joel Brobecker <brobecker@adacore.com>
193
194 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
195 Move these functions to sparc-sol-thread.c.
196 * sparc-sol-thread.c: New file.
197 * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
198 sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
199 configurations.
200 * configure: Regenerate.
201
202 2012-09-27 Joel Brobecker <brobecker@adacore.com>
203
204 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
205 Remove commented-out code.
206
207 2012-09-27 Joel Brobecker <brobecker@adacore.com>
208
209 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
210 Enable this code for sparc hosts only.
211
212 2012-09-27 Joel Brobecker <brobecker@adacore.com>
213
214 * procfs.h (procfs_find_LDT_entry): Add declaration.
215 * sol-thread.c (ps_lgetLDT): Delete local declaration of
216 function procfs_find_LDT_entry.
217
218 2012-09-27 Joel Brobecker <brobecker@adacore.com>
219
220 * procfs.c (proc_get_LDT_entry): Make static.
221
222 2012-09-27 Joel Brobecker <brobecker@adacore.com>
223
224 * procfs.c (proc_find_memory_regions): Fix declaration.
225
226 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
227
228 * amd64-tdep.c (amd64_return_value): Revert previous change
229 that used TYPE_LENGTH directly.
230 * bfin-tdep.c (bfin_extract_return_value): Likewise.
231 (bfin_store_return_value): Likewise.
232 * cris-tdep.c (cris_store_return_value): Likewise.
233 (cris_extract_return_value): Likewise.
234 * h8300-tdep.c (h8300_extract_return_value): Likewise.
235 * hppa-tdep.c (hppa64_return_value): Likewise.
236 * lm32-tdep.c (lm32_store_return_value): Likewise.
237 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
238 * spu-tdep.c (spu_value_from_register): Likewise.
239 * vax-tdep.c (vax_return_value): Likewise.
240
241 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
242
243 * gdbtypes.c (lookup_array_range_type): Expand parameters
244 LOW_BOUND and HIGH_BOUND to LONGEST.
245 (lookup_string_range_type): Likewise.
246 * gdbtypes.h (lookup_array_range_type): Likewise.
247 (lookup_string_range_type): Likewise.
248 * valops.c (value_cstring): Expand parameter LEN to ssize_t.
249 Expand HIGHBOUND to ssize_t.
250 (value_string): Likewise.
251 * value.h (value_cstring): Expand parameter LEN to ssize_t.
252 (value_string): Likewise.
253
254 2012-09-27 Yao Qi <yao@codesourcery.com>
255
256 PR breakpoints/13898
257 * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
258 * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
259 per breakpoint type.
260
261 2012-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
262
263 * procfs.c: Add gdb_bfd header.
264 * rs6000-nat.c: Likewise.
265 * solib-pa64.c: Likewise.
266 * spu-linux-nat.c: Likewise.
267 * windows-nat.c: Likewise.
268
269 2012-09-26 Tom Tromey <tromey@redhat.com>
270
271 * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
272
273 2012-09-26 Tom Tromey <tromey@redhat.com>
274
275 * dwarf2read.c (mark_common_block_symbol_computed): New function.
276 (read_common_block): Handle child DIEs with
277 DW_AT_data_member_location.
278 (new_symbol_full): Add special case for common blocks.
279
280 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
281 Tom Tromey <tromey@redhat.com>
282
283 * dwarf2read.c (read_common_block): Rewrite.
284 (new_symbol_full): Handle DW_TAG_common_block.
285 * f-lang.c (head_common_list, find_common_for_function):
286 Remove.
287 * f-lang.h (struct common_entry, struct saved_f77_common,
288 SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
289 COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
290 BLANK_COMMON_NAME_LOCAL): Remove.
291 (struct common_block): New.
292 * f-valprint.c (list_all_visible_commons): Remove.
293 (info_common_command_for_block): New function.
294 (info_common_command): Use it.
295 * stack.c (iterate_over_block_locals): Special case for
296 COMMON_BLOCK_DOMAIN.
297 * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
298 constant.
299 (struct general_symbol_info) <value.common_block>: New field.
300 (SYMBOL_VALUE_COMMON_BLOCK): New define.
301
302 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
303 Tom Tromey <tromey@redhat.com>
304
305 * f-lang.c (allocate_saved_bf_node,
306 allocate_saved_function_node, allocate_saved_f77_common_node,
307 allocate_common_entry_node, tail_common_list, current_common,
308 saved_bf_list, saved_bf_list_end, current_head_bf_list,
309 tmp_bf_ptr, add_common_block, add_common_entry,
310 find_first_common_named, patch_common_entries,
311 patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
312 global_remote_debug, get_bf_for_fcn, saved_function_list,
313 saved_function_list_end, clear_function_list, struct saved_fcn,
314 struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
315 SAVED_BF, SAVED_BF_PTR): Remove.
316 * f-lang.h (tail_common_list, current_common,
317 UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
318 BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
319 DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
320 real_main_c_value): Remove.
321 * f-valprint.c (there_is_a_visible_common_named): Remove.
322
323 2012-09-26 Andrew Burgess <aburgess@broadcom.com>
324
325 * breakpoint.c (update_global_location_list): Ignore previous
326 duplicate status of a breakpoint when starting a new scan for
327 duplicate breakpoints.
328
329 2012-09-26 Karthik Bhat <kv.bhat@samsung.com>
330 PR breakpoints/14419
331 * arm-tdep.c (arm_skip_prologue): Extending producer check to
332 support LLVM compiler.
333
334 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
335
336 * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
337 * bfin-tdep.c (bfin_extract_return_value): Likewise.
338 (bfin_store_return_value): Likewise.
339 * cris-tdep.c (cris_store_return_value): Likewise.
340 (cris_extract_return_value): Likewise.
341 * h8300-tdep.c (h8300_extract_return_value): Likewise.
342 * hppa-tdep.c (hppa64_return_value): Likewise.
343 * lm32-tdep.c (lm32_store_return_value): Likewise.
344 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
345 * spu-tdep.c (spu_value_from_register): Likewise.
346 * vax-tdep.c (vax_return_value): Likewise.
347
348 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
349
350 * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
351 parameter LEN to ssize_t.
352
353 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
354
355 * ada-valprint.c (ada_val_print_1): Eliminate single-use
356 variable LEN.
357 * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
358 directly.
359 (alpha_store_return_value): Likewise.
360 * amd64-tdep.c (amd64_classify_aggregate): Likewise.
361 (amd64_push_arguments): Likewise.
362 * ax-gdb.c (gen_trace_static_fields): Likewise.
363 (gen_traced_pop): Likewise.
364 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
365 * breakpoint.c (update_watchpoint): Likewise.
366 * findcmd.c (parse_find_args): Use local variable for type
367 instead of length.
368 * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
369 * h8300-tdep.c (h8300h_extract_return_value): Likewise.
370 (h8300_store_return_value): Likewise.
371 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
372 Use i386_darwin_arg_type_alignment directly.
373 * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
374 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
375 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
376 (m68hc11_extract_return_value): Likewise.
377 * mep-tdep.c (mep_push_dummy_call): Likewise.
378 * printcmd.c (float_type_from_length): Likewise.
379 * s390-tdep.c (s390_value_from_register): Likewise.
380 * stack.c (read_frame_arg): Likewise.
381 * tracepoint.c (encode_actions_1): Likewise.
382 * valops.c (value_fetch_lazy): Use local variable for type
383 instead of length. Use TYPE_LENGTH directly.
384 * value.c (value_contents_equal): Use TYPE_LENGTH directly.
385
386 2012-09-25 Joel Brobecker <brobecker@adacore.com>
387
388 * symtab.c (skip_prologue_sal): Fix typo in comment.
389
390 2012-09-25 Joel Brobecker <brobecker@adacore.com>
391
392 * linespec.c (create_sals_line_offset): Fix typo in comment.
393
394 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
395
396 * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
397 use plongest to print the array size.
398
399 2012-09-24 Siddhesh Poyarekar <siddhesh@redhat.com>
400
401 * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
402 * p-valprint.c (pascal_type_print_base): Likewise.
403
404 2012-09-22 Yao Qi <yao@codesourcery.com>
405
406 * remote.c (remote_get_trace_status): Remove setting default
407 values of fields of 'ts'.
408
409 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
410
411 Fix internal error on canonicalization of clang types.
412 * cp-name-parser.y (operator): New comment at make_operator call for
413 new, delete, new[] and delete[].
414 (exp): Use "sizeof ". Add new comment at make_operator call.
415
416 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
417
418 Fix disassemble without parameters in tailcall frame.
419 * cli/cli-cmds.c (disassemble_current_function): Use
420 get_frame_address_in_block.
421
422 2012-09-21 Tom Tromey <tromey@redhat.com>
423
424 * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
425 TYPE_CODE_UNION>: Unify, removing a goto.
426
427 2012-09-21 Tom Tromey <tromey@redhat.com>
428
429 * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
430
431 2012-09-21 Andrew Burgess <aburgess@broadcom.com>
432
433 * findvar.c (read_frame_register_value): Mark the result value as
434 optimized out if any of the input registers have been optimized out.
435
436 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
437
438 * python/python.c (finalize_python): Only define if HAVE_PYTHON.
439
440 2012-09-21 Siddhesh Poyarekar <siddhesh@redhat.com>
441
442 * eval.c (evaluate_subexp_standard): Eliminate single-use
443 variable LOWER.
444
445 2012-09-21 Yao Qi <yao@codesourcery.com>
446
447 * mi/mi-interp.c: Declare mi_record_changed.
448 (mi_interpreter_init): Call observer_attach_record_changed.
449 (mi_record_changed): New.
450 * record.c (record_open): Call observer_notify_record_changed.
451 (cmd_record_stop): Call observer_notify_record_changed.
452 * NEWS: Mention it.
453
454 2012-09-20 Tom Tromey <tromey@redhat.com>
455
456 * NEWS: Update.
457 * python/python.c (finalize_python): New function.
458 (_initialize_python): Make a final cleanup.
459
460 2012-09-19 Doug Evans <dje@google.com>
461
462 * buildsym.h (param_symbols): Delete, unused.
463 (context_stack): Delete member "params", unused.
464 * buildsym.c (push_context): Update.
465 * dwarf2read.c (read_func_scope): Update.
466
467 2012-09-19 Thomas Schwinge <thomas@codesourcery.com>
468
469 * sh-tdep.c (sh_register_convert_to_virtual)
470 (sh_register_convert_to_raw): Add a gdbarch parameter. Update
471 all callers. Just do a memcpy if not the little-endian case.
472
473 * h8300-tdep.c (h8300_gdbarch_init): Invoke
474 set_gdbarch_double_format and set_gdbarch_long_double_format.
475 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
476 set_gdbarch_double_format.
477 * sh-tdep.c (sh_gdbarch_init): Likewise.
478
479 * NEWS: Document the removal of SH's 'regs' command.
480 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
481 command.
482
483 2012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
484
485 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
486 `jump'.
487
488 2012-09-18 Joel Brobecker <brobecker@adacore.com>
489
490 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
491 language when iterating over symbols.
492
493 2012-09-18 Yao Qi <yao@codesourcery.com>
494
495 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
496 (mi_interpreter_init): Call observer_attach_tsv_created and
497 observer_attach_tsv_deleted.
498 (mi_tsv_created, mi_tsv_deleted): New.
499 * tracepoint.c (delete_trace_state_variable): Call
500 observer_notify_tsv_deleted.
501 (trace_variable_command): Call observer_notify_tsv_created.
502 (delete_trace_variable_command): Call
503 observer_notify_tsv_deleted.
504 (create_tsv_from_upload): Call observer_notify_tsv_created.
505 * NEWS: Mention it.
506
507 2012-09-18 Yao Qi <yao@codesourcery.com>
508
509 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
510 if traceframe changed.
511 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
512 "trace-find".
513 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
514 (mi_interpreter_init): Hook mi_traceframe_changed to observer
515 'traceframe_changed'.
516 (mi_traceframe_changed): New.
517 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
518 New field.
519 * NEWS: Mention the new MI notification.
520
521 2012-09-17 Mike Wrighton <wrighton@codesourcery.com>
522
523 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
524
525 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
526
527 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
528 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
529 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
530 Extend code also for PaX support. Convert all gdb_assert to warning
531 calls.
532
533 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
534
535 Implement auto-load user conveniences suggested by Doug Evans.
536 * auto-load.c: Include top.h.
537 (file_is_auto_load_safe): New variable advice_printed. Print advice.
538 (_initialize_auto_load): New variable scripts_directory_help. Mention
539 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
540 scripts-directory. Document in online help one can use also files for
541 set auto-load safe-path.
542 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
543 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
544
545 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
546
547 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
548 of LEN.
549
550 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
551
552 * m2-valprint.c (m2_print_array_contents): Eliminate variable
553 ELTLEN and use TYPE_LENGTH directly.
554 (m2_val_print): Likewise.
555 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
556 variable LEN and use TYPE_LENGTH directly.
557 (m68k_svr4_store_return_value): Likewise.
558 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
559 ARGLEN and use TYPE_LENGTH directly.
560 (mips_o64_push_dummy_call): Likewise.
561 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
562 variable LENGTH and use TYPE_LENGTH directly.
563 (s390_function_arg_float): Likewise.
564 (s390_function_arg_integer): Likewise.
565 (s390_push_dummy_call): Likewise.
566 (s390_return_value_convention): Likewise.
567 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
568 TYPE_LENGTH directly.
569
570 2012-09-17 Yao Qi <yao@codesourcery.com>
571
572 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
573 Update comment to add_setshow_integer_cmd.
574 * cli/cli-setshow.c (do_set_command): Handle case
575 'var_zuinteger_unlimited'.
576 (do_show_command): Likewise.
577 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
578 for command 'remotetimeout'.
579 * command.h (enum var_types): New zuinteger_unlimited. Update comment
580 to var_integer.
581 * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
582 for command 'set listsize'.
583
584 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
585
586 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
587 variable LEN.
588
589 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
590
591 PR 14119
592 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
593 (frame_pop): Drop also TAILCALL_FRAME frames.
594 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
595
596 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
597 Pedro Alves <palves@redhat.com>
598
599 PR 14548
600 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
601 function start if we are already at function start. Both for
602 reverse-next and for reverse-step into function without line number
603 info.
604
605 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
606
607 Code cleanup - rename 'inline' depth to 'artificial' depth.
608 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
609 frame_id_artificial_p, extend the comment.
610 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
611 * frame.c (fprint_frame_id): Rename at a user, change debug output
612 text to "artificial=".
613 (skip_inlined_frames): Rename to ...
614 (skip_artificial_frames): ... here. Extend the comment.
615 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
616 (frame_id_inlined_p): Rename to ...
617 (frame_id_artificial_p): ... here. Rename at a user.
618 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
619 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
620 at a user.
621 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
622 Extend the comment.
623 (frame_id_inlined_p): Rename to ...
624 (frame_id_artificial_p): ... here.
625 * inline-frame.c (inline_frame_this_id): Rename at a user.
626
627 2012-09-14 Andrew Burgess <aburgess@broadcom.com>
628
629 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
630 vector variables using vector_size syntax rather than array
631 syntax.
632
633 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
634
635 * valarith.c (value_concat): Replace unsafe ALLOCA with
636 XMALLOC/XFREE.
637
638 2012-09-14 Pedro Alves <palves@redhat.com>
639
640 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
641
642 2012-09-14 Khoo Yit Phang <khooyp@cs.umd.edu>
643
644 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
645 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
646 data-directory as appropriate.
647
648 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
649
650 * printcmd.c (ui_printf): Eliminate single-use variable
651 PARAM_LEN.
652
653 2012-09-14 Yao Qi <yao@codesourcery.com>
654 Pedro Alves <palves@redhat.com>
655
656 * valops.c (value_assign): Move observer_notify_target_changed
657 below to replace reinit_frame_cache.
658
659 2012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu>
660
661 Refactor Python "gdb" module into a proper Python package, by
662 introducing a new "_gdb" module for code implemented in C, and
663 using reload/__import__ instead of exec.
664 * python/lib/gdb/__init__.py: Import * from _gdb.
665 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
666 prompt_hook, sys.argv): Moved from finish_python_initialization.
667 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
668 (packages, auto_load_packages): New list and function replacing
669 module_dict and auto-loading code, using __file__ instead of
670 gdb.PYTHONDIR and reload/__import__ instead of exec.
671 (GdbSetPythonDirectory): Replacing function of the same name
672 from finish_python_initialization, using reload/__import__ instead
673 of exec, as well as call auto_load_packages.
674 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
675 gdb_python_module and not gdb_module.
676 * python/python-internal.h (gdb_python_module): Declare.
677 * python/python.c (gdb_python_module): New global.
678 (before_prompt_hook): Check gdb_python_module and not gdb_module.
679 (_initialize_python): Rename gdb module to _gdb.
680 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
681 (finish_python_initialization): Move Python code to
682 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
683 __main__.
684
685 2012-09-13 Pedro Alves <palves@redhat.com>
686
687 * Makefile.in (COMMON_OBS): Add registry.o.
688 * registry.c: New file.
689 * registry.h (struct registry_container): Declare.
690 (registry_data_callback): New typedef.
691 (struct registry_data, struct registry_data_registration, struct
692 registry_data_registry): New type.
693 (register_data_with_cleanup, registry_alloc_data)
694 (registry_callback_adaptor, registry_clear_data)
695 (registry_container_free_data, registry_set_data, registry_data):
696 Declare.
697 (DEFINE_REGISTRY): Refactor structures and functions as shims over
698 the new common structures and functions.
699 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
700 callback typedefs.
701
702 2012-09-12 Mike Wrighton <wrighton@codesourcery.com>
703
704 * remote.c (remote_insert_hw_breakpoint): Throw exception if
705 there is an error inserting hardware breakpoints and use the
706 error message from the target.
707
708 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
709 Catch this exception and print the error message contained within. Do not
710 print the default hardware error breakpoint message in this case.
711
712 2012-09-12 Doug Evans <dje@google.com>
713
714 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
715 cu == NULL.
716
717 2012-09-11 Doug Evans <dje@google.com>
718
719 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
720 .gdb_index symbol attributes if there are none.
721
722 2012-09-11 Joel Brobecker <brobecker@adacore.com>
723
724 * symtab.h (struct minimal_symbol) [has_size]: New field.
725 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
726 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
727 * printcmd.c (build_address_symbolic): Only filter out zero-sized
728 minimal symbols if the symbol's size is actually known.
729 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
730 of msymbol's size field. Add comment.
731 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
732 SET_MSYMBOL_SIZE to set the minimal symbol size.
733
734 2012-09-11 Joel Brobecker <brobecker@adacore.com>
735
736 * minsyms.c (install_minimal_symbols): Use memset to fill entire
737 minimal_symbol struct object, rather than setting some of its
738 fields one by one.
739
740 2012-09-11 Andrew Burgess <aburgess@broadcom.com>
741
742 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
743 passed_a_ptr flag when displaying typedef types.
744
745 2012-09-10 Joel Brobecker <brobecker@adacore.com>
746
747 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
748 the optimized_out flag is preserved.
749
750 2012-09-10 Anthony Green <green@moxielogic.com>
751
752 * moxie-tdep.c (moxie_analyze_prologue): Update for function
753 prologue changes in GCC.
754
755 2012-09-10 Keith Seitz <keiths@redhat.com>
756
757 PR gdb/13483
758 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
759 (BOOL_CONVERSION_BADNESS): ... this.
760 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
761 (rank_one_type): Allow all boolean conversions
762 permitted by the standard.
763
764 2012-09-06 Tom Tromey <tromey@redhat.com>
765
766 * python/py-newobjfileevent.c (create_new_objfile_event_object):
767 Don't decref py_objfile.
768
769 2012-09-02 Khoo Yit Phang <khooyp@cs.umd.edu>
770
771 Do not enable -lmcheck by default when Python is enabled with
772 threading support.
773 * configure.ac: (python_has_threads) New variable, by testing
774 if WITH_THREAD is defined in Python.h.
775 Move --enable-lmcheck after --with-python.
776 Do not enable -lmcheck by default if python_has_threads=yes.
777 Warn if --enable-lmcheck and python_has_threads=yes.
778 * configure: Regenerate.
779
780 2012-08-31 Yao Qi <yao@codesourcery.com>
781
782 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
783 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
784 Update some commands.
785 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
786 * mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->suppress_notification'
787 to 1.
788
789 2012-08-31 Yao Qi <yao@codesourcery.com>
790
791 * mi/mi-cmds.c (mi_cmds): Add 'static'.
792
793 2012-08-30 Khoo Yit Phang <khooyp@cs.umd.edu>
794
795 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
796
797 2012-08-29 Doug Evans <dje@google.com>
798
799 * main.c (print_gdb_help): Remove reference to
800 --use-deprecated-index-sections.
801
802 2012-08-28 Yao Qi <yao@codesourcery.com>
803
804 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
805 (init_cmds): Call add_setshow_uinteger_cmd for command
806 'max-user-call-depth'.
807 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
808 declaration of 'max_user_call_depth'.
809 * frame.c (backtrace_limit): Add 'unsigned'.
810 (_initialize_frame): Call add_setshow_uinteger_cmd for command
811 'limit'.
812 * remote.c (remoteaddresssize): Add 'unsigned'.
813 (remote_address_masked): Change local var 'address_size' to
814 'unsigned'.
815 (_initialize_remote): Call add_setshow_uinteger_cmd for
816 'remoteaddresssize'.
817 * top.c (history_size): Add 'unsigned'.
818 (show_commands): Change local variables to 'unsigned'.
819 (set_history_size_command): Don't check history_size is negative.
820 Adjust the condition to call unstifle_history and set history_size
821 to UNIT_MAX.
822
823 2012-08-28 Pedro Alves <palves@redhat.com>
824
825 PR gdb/14428
826
827 * infcmd.c (default_print_one_register_info): New, factored out
828 from default_print_registers_info.
829 (default_print_registers_info): Use it. Mark value unavailable if
830 necessary.
831 (registers_info): Print user registers with
832 default_print_one_register_info.
833
834 2010-08-27 H.J. Lu <hongjiu.lu@intel.com>
835
836 PR tui/14486
837 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
838 is not NULL before referencing it.
839
840 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
841
842 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
843 variable pc. Call find_pc_line instead of find_pc_overlay, restore
844 original PC for it.
845
846 2012-08-27 Eli Zaretskii <eliz@gnu.org>
847 Jan Kratochvil <jan.kratochvil@redhat.com>
848
849 * auto-load.c (auto_load_objfile_script): Rename to ...
850 (auto_load_objfile_script_1): ... here, change variable realname to
851 parameter realname, document it, add return value, add variable retval.
852 (auto_load_objfile_script): New function.
853
854 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
855
856 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
857 followed by a whitespace.
858
859 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
860
861 PR gdb/14494.
862 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
863 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
864 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
865 here.
866
867 2012-08-27 Wei-cheng Wang <cole945@gmail.com>
868
869 * memattr.c (create_mem_region): Fix memory region overlapping
870 checking.
871
872 2012-08-24 Siddhesh Poyarekar <siddhesh@redhat.com>
873
874 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
875 with xmalloc/cleanup.
876 * mt-tdep.c (mt_push_dummy_call): Likewise.
877 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
878 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
879
880 2012-08-24 Yao Qi <yao@codesourcery.com>
881
882 * jv-exp.y (push_expression_name): Add "." at the end of error
883 message.
884
885 2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
886
887 Document how to return from "python-interactive" to GDB.
888 * python/python.c (_initialize_python): Update documentation.
889
890 2012-08-23 Pedro Alves <palves@redhat.com>
891
892 * infrun.c (_initialize_infrun) <handle command help text>:
893 Mention that multiple signals are supported.
894
895 2012-08-23 Pedro Alves <palves@redhat.com>
896
897 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
898 string.
899
900 2012-08-23 Yao Qi <yao@codesourcery.com>
901
902 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
903 (tfind_1): Don't call registers_changed, set_traceframe_num,
904 and clear_traceframe_info.
905 Call set_current_traceframe.
906 (set_current_traceframe): call set_traceframe_num.
907
908 2012-08-22 Sergio Durigan Junior <sergiodj@redhat.com>
909
910 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
911 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
912
913 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
914
915 Enable readline in Python in a GDB-specific way and block the
916 standard Python readline module to prevent conflicts with GDB.
917 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
918 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
919 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
920 * python/py-gdb-readline.c: New file.
921 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
922 prototype.
923 * python/python.c (_initialize_python): Call
924 gdbpy_initialize_gdb_readline.
925
926 2012-08-22 Keith Seitz <keiths@redhat.com>
927
928 * defs.h: Include build-gnulib/config.h
929
930 2012-08-22 Joseph Myers <joseph@codesourcery.com>
931
932 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
933 and blx pc.
934
935 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
936
937 Add a new "python-interactive" command that starts a standard
938 Python interactive prompt with "pi" as alias, and add "py" as
939 an alias to "python".
940 * NEWS: Mention the new commands.
941 * python/python.c (eval_python_command): New function.
942 (python_interactive_command): For "python-interactive" with
943 arguments, call eval_python_command. For "python-interactive"
944 without arguments, call PyRun_InteractiveLoop.
945 (_initialize_python): Add "python-interactive" command with
946 "pi" as alias, and add "py" as an alias to "python".
947
948 2012-08-22 Tom Tromey <tromey@redhat.com>
949
950 * defs.h (quit_flag): Don't declare.
951 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
952 (QUIT): Use new functions.
953 * event-top.c (command_handler): Use clear_quit_flag.
954 (handle_sigint): Use set_quit_flag.
955 (async_request_quit): Use check_quit_flag. Don't check
956 immediate_quit.
957 * exceptions.c (throw_exception): Use clear_quit_flag.
958 * main.c (captured_main): Use clear_quit_flag.
959 * python/python.c (clear_quit_flag, set_quit_flag)
960 (check_quit_flag): New functions.
961 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
962 clear_quit_flag.
963 * remote.c (remote_wait_as): Use check_quit_flag,
964 clear_quit_flag.
965 (remote_start_remote): Call QUIT.
966 * symfile.c (load_progress): Use check_quit_flag.
967 * top.c (command_loop): Use clear_quit_flag.
968 (command_line_input): Call QUIT.
969 * utils.c (quit_flag): Conditionally define.
970 (clear_quit_flag, check_quit_flag, set_quit_flag): New
971 functions.
972 (prompt_for_continue): Call QUIT. Use quit, not
973 async_request_quit.
974 * remote-mips.c (mips_expect_timeout): Call QUIT.
975 * monitor.c (monitor_expect): Call QUIT.
976
977 2012-08-22 Tom Tromey <tromey@redhat.com>
978
979 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
980 (async_init_signals): Update.
981 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
982 (SIGWINCH_HANDLER_BODY): Remove.
983
984 2012-08-22 Tom Tromey <tromey@redhat.com>
985
986 * jit.c (jit_object_close_impl): Don't malloc the objfile
987 name.
988 * objfiles.c (allocate_objfile): Don't malloc the objfile
989 name.
990 (free_objfile): Don't free the objfile name.
991 * objfiles.h (struct objfile) <name>: Update comment.
992 * symfile.c (reread_symbols): Fix reference counting. Don't
993 malloc objfile name.
994
995 2012-08-22 Tom Tromey <tromey@redhat.com>
996
997 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
998 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
999 (symfile_bfd_open): Likewise.
1000 (generic_load): Likewise.
1001 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
1002 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
1003 gdb_bfd_open.
1004 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1005 Use gdb_bfd_open.
1006 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
1007 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
1008 (pmon_load_fast): Likewise.
1009 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
1010 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
1011 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
1012 (macho_check_dsym): Likewise.
1013 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
1014 (m32r_upload_command): Likewise.
1015 * gdb_bfd.h (gdb_bfd_cache): Declare.
1016 * gdb_bfd.c (struct gdb_bfd_data): New.
1017 (gdb_bfd_cache): New global.
1018 (struct gdb_bfd_cache_search): New.
1019 (hash_bfd): New function.
1020 (eq_bfd): Likewise.
1021 (gdb_bfd_open): Likewise.
1022 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
1023 (gdb_bfd_unref): Remove closed BFD from cache. Update for
1024 gdb_bfd_data.
1025 * exec.c (exec_file_attach): Use gdb_bfd_open.
1026 * dsrec.c (load_srec): Use gdb_bfd_open.
1027
1028 2012-08-22 Tom Tromey <tromey@redhat.com>
1029
1030 * dwarf2read.c (macro_start_file): Update.
1031 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
1032 (free_objfile_per_bfd_storage): Destroy macro_cache.
1033 (allocate_objfile, free_objfile): Update.
1034 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
1035 New field.
1036 (struct objfile) <macro_cache>: Remove.
1037 * symfile.c (reread_symbols): Update.
1038 * symmisc.c (print_symbol_bcache_statistics): Update.
1039 (print_objfile_statistics): Update.
1040
1041 2012-08-22 Tom Tromey <tromey@redhat.com>
1042
1043 * elfread.c (elf_symtab_read): Update.
1044 * objfiles.c (objfiles_bfd_data): New global.
1045 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
1046 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
1047 (allocate_objfile, free_objfile): Update.
1048 (_initialize_objfiles): Initialize objfiles_bfd_data.
1049 * objfiles.h (struct objfile_per_bfd_storage): New.
1050 (struct objfile) <per_bfd>: New field.
1051 <filename_cache>: Remove.
1052 (set_objfile_per_bfd): Declare.
1053 * symfile.c (reread_symbols): Update. Call
1054 set_objfile_per_bfd.
1055 (allocate_symtab): Update.
1056 * symmisc.c (print_symbol_bcache_statistics): Update.
1057 (print_objfile_statistics): Print the size of the BFD obstack.
1058
1059 2012-08-22 Tom Tromey <tromey@redhat.com>
1060
1061 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
1062 * gdb_bfd.c: Use DEFINE_REGISTRY.
1063 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
1064 (gdb_bfd_ref): Call bfd_alloc_data.
1065 (gdb_bfd_unref): Call bfd_free_data.
1066
1067 2012-08-22 Tom Tromey <tromey@redhat.com>
1068
1069 * registry.h (struct registry_fields): New.
1070 (REGISTRY_FIELDS): Redefine.
1071 (REGISTRY_ACCESS_FIELD): New macro.
1072 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
1073 functions.
1074
1075 2012-08-22 Tom Tromey <tromey@redhat.com>
1076
1077 * auto-load.c (_initialize_auto_load): Update.
1078 * solib-svr4.c (_initialize_svr4_solib): Update
1079 * solib-dsbt.c (_initialize_dsbt_solib): Update.
1080 * solib-darwin.c (_initialize_darwin_solib): Update.
1081 * registry.h: New file.
1082 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
1083 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
1084 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
1085 (register_program_space_data_with_cleanup)
1086 (register_program_space_data, program_space_alloc_data)
1087 (clear_program_space_data, set_program_space_data)
1088 (program_space_data): Don't declare.
1089 * progspace.c: Use DEFINE_REGISTRY.
1090 (struct program_space_data, struct
1091 program_space_data_registration, struct
1092 program_space_data_registry, program_space_data_registry)
1093 (register_program_space_data_with_cleanup)
1094 (register_program_space_data, program_space_alloc_data)
1095 (program_space_free_data, clear_program_space_data)
1096 (set_program_space_data, program_space_data): Remove.
1097 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
1098 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
1099 (register_objfile_data_with_cleanup, register_objfile_data)
1100 (clear_objfile_data, set_objfile_data, objfile_data): Don't
1101 declare.
1102 * objfiles.c: Use DEFINE_REGISTRY.
1103 (struct objfile_data, struct objfile_data_registration, struct
1104 objfile_data_registry, objfile_data_registry)
1105 (register_objfile_data_with_cleanup, register_objfile_data)
1106 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
1107 (set_objfile_data, objfile_data): Remove.
1108 (_initialize_objfiles): Update.
1109 * jit.c (_initialize_jit): Update.
1110 * inflow.c (_initialize_inflow): Update.
1111 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
1112 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
1113 (register_inferior_data_with_cleanup, register_inferior_data)
1114 (clear_inferior_data, set_inferior_data, inferior_data): Don't
1115 declare.
1116 * inferior.c: Use DEFINE_REGISTRY.
1117 (struct inferior_data, struct inferior_data_registration, struct
1118 inferior_data_registry, inferior_data_registry)
1119 (register_inferior_data_with_cleanup, register_inferior_data)
1120 (inferior_alloc_data, inferior_free_data clear_inferior_data)
1121 (set_inferior_data, inferior_data): Remove.
1122 * auxv.c (_initialize_auxv): Update.
1123 * ada-lang.c (_initialize_ada_language): Update.
1124 * breakpoint.c (_initialize_breakpoint): Update.
1125 * i386-nat.c (i386_use_watchpoints): Update.
1126
1127 2012-08-22 Tom Tromey <tromey@redhat.com>
1128
1129 * exec.c (exec_close, exec_file_attach): Update.
1130 (add_to_section_table): Initialize 'key' field.
1131 (add_target_sections, remove_target_sections): Add 'key' argument.
1132 * exec.h (add_target_sections, remove_target_sections): Add
1133 'key' argument.
1134 * solib.c (solib_map_sections, update_solib_list, clear_solib)
1135 (reload_shared_libraries_1): Update.
1136 * target.h (struct target_section) <key>: New field.
1137
1138 2012-08-22 Tom Tromey <tromey@redhat.com>
1139
1140 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
1141
1142 2012-08-21 Pierre Muller <muller@ics.u-strasbg.fr>
1143
1144 * symfile.c (allocate_symtab): Use host_address_to_string
1145 function instead of cast of pointer to long which is not
1146 compatible with x86_64-w64-mingw32 build.
1147
1148 2012-08-19 Andrew Pinski <apinski@cavium.com>
1149
1150 * mips-tdep.c (is_octeon): New function.
1151 (is_octeon_bbit_op): New function.
1152 (mips32_next_pc): Handle Octeon's bbit instructions.
1153 (mips32_instruction_has_delay_slot): Likewise.
1154
1155 2012-08-19 Andrew Pinski <apinski@cavium.com>
1156
1157 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
1158 before the function.
1159
1160 2012-08-19 Andrew Pinski <apinski@cavium.com>
1161
1162 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
1163
1164 2012-08-19 Keith Seitz <keiths@redhat.com>
1165
1166 PR c++/14365
1167 * c-typeprint.c (c_type_print_varspec_prefix): Pass
1168 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
1169
1170 2012-08-18 Eli Zaretskii <eliz@gnu.org>
1171
1172 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
1173 The typo broke "make TAGS".
1174
1175 2012-08-17 Joel Brobecker <brobecker@adacore.com>
1176
1177 GDB 7.5 released.
1178
1179 2012-08-17 Keith Seitz <keiths@redhat.com>
1180
1181 PR c++/13356
1182 * gdbtypes.c (strict_type_checking): New variable.
1183 (show_strict_type_checking): New function.
1184 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
1185 if strict type checking is disabled.
1186 (_initialize_gdbtypes): Add "check type" subcommand.
1187 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
1188
1189 2012-08-17 Keith Seitz <keiths@redhat.com>
1190
1191 * language.h (type_mode): Remove.
1192 (type_check): Remove.
1193 (struct language_defn): Remove la_type_check.
1194 (STRICT_TYPE): Remove unused macro.
1195 (type_error): Remove.
1196 * language.c (set_type_range_case): Renamed to ...
1197 (set_range_case): ... this. Update all callers.
1198 Remove type_mode/type_check.
1199 (type_mode): Remove.
1200 (type_check): Remove.
1201 (show_type_command): Remove.
1202 (set_type_command): Remove.
1203 (language_info): Remove type checking output.
1204 (type_error): Remove unused function.
1205 (range_error): Update comment.
1206 (unknown_language_defn): Remove la_type_check.
1207 (auto_language_defn): Likewise.
1208 (local_language_defn): Likewise.
1209 (_initialize_language): Remove "check type" subcommand.
1210 * ada-lang.c (ada_language_defn): Remove la_type_check.
1211 * c-lang.c (c_language_defn): Likewise.
1212 (cplus_language_defn): Likewise.
1213 (asm_language_defn): Likewise.
1214 (minimal_language_defn): Likewise.
1215 * d-lang.c (d_language_defn): Likewise.
1216 * f-lang.c (f_language_defn): Likewise.
1217 * go-lang.c (go_language_defn): Likewise.
1218 * jv-lang.c (java_language_defn): Likewise.
1219 * m2-lang.c (m2_language_defn): Likewise.
1220 * objc-lang.c (objc_language_defn): Likewise.
1221 * opencl-lang.c (opencl_language_defn): Likewise.
1222 * p-lang.c (pascal_language_defn): Likewise.
1223
1224 2012-08-16 Mike Frysinger <vapier@gentoo.org>
1225
1226 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
1227
1228 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1229
1230 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
1231 New function.
1232 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
1233 using the regache. Use ia64_hpux_get_register_from_save_state_t
1234 to access the bsp and bspstore registers if not.
1235
1236 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1237
1238 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
1239 * breakpoint.c (detach_breakpoints): Change pid parameter into
1240 a ptid. Adjust code accordingly.
1241 * infrun.c (handle_inferior_event): Delete variable child_pid.
1242 Update call to detach_breakpoints to pass the child ptid for
1243 fork events.
1244 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
1245 assert that inferior_ptid's lwp is zero.
1246 (linux_handle_extended_wait): Update call to detach_breakpoints.
1247 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
1248 detach_breakpoints.
1249
1250 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1251
1252 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
1253 parent, only call detach_breakpoints if tts.tts_event ==
1254 TTEVT_VFORK.
1255
1256 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1257
1258 * dwarf2-frame.c (dwarf2_frame_cache): Use
1259 get_frame_address_in_block instead of get_frame_pc as
1260 the bound for executing the frame's FDE.
1261
1262 2012-08-16 Yao Qi <yao@codesourcery.com>
1263
1264 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
1265 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
1266 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
1267 (c_type_print_varspec_suffix): Likewise.
1268 * eval.c (evaluate_subexp_standard): Likewise.
1269 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
1270 (f_type_print_varspec_suffix): Likewise.
1271 * gdbtypes.c (is_scalar_type): Likewise.
1272 (recursive_dump_type): Likewise.
1273 * infcall.c (value_arg_coerce): Likewise.
1274 * m2-valprint.c (m2_val_print): Likewise.
1275 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
1276 (pascal_type_print_varspec_suffix): Likewise.
1277 (pascal_type_print_base): Likewise.
1278 * p-valprint.c (pascal_val_print): Likewise.
1279 (pascal_val_print): Likewise.
1280 * valops.c (value_slice): Likewise.
1281 * valprint.c (scalar_type_p): Likewise.
1282 * valarith.c (value_bitstring_subscript): Remove.
1283 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
1284 Remove comment on TYPE_CODE_BITSTRING.
1285
1286 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
1287 TYPE_CODE_BITSTRING.
1288
1289 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
1290 slot 0.
1291
1292 2012-08-16 Yao Qi <yao@codesourcery.com>
1293
1294 * tracepoint.c (trace_find_none_command): Remove.
1295 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
1296
1297 2012-08-16 Yao Qi <yao@codesourcery.com>
1298
1299 * remote.c (handle_notification): Remove parameter 'length'.
1300 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
1301
1302 2012-08-15 Keith Seitz <keiths@redhat.com>
1303
1304 * gdbtypes.c (opaque_type_resolution): Make static.
1305 Add missing comment.
1306 (overload_debug): Add missing comment.
1307 (show_opaque_type_resolution): Likewise.
1308 (show_overload_debug): Likewise.
1309 (print_bit_vector): Remove unnecessary forward declaration.
1310 (print_arg_types): Likewise.
1311 (dump_fn_fieldlists): Likewise.
1312 (print_cplus_stuff): Likewise.
1313
1314 2012-08-15 Tom Tromey <tromey@redhat.com>
1315
1316 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
1317 (gdb_bfd_ref): Initialize new field.
1318 (gdb_bfd_unref): Unref the archive BFD.
1319 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
1320 parent archive.
1321
1322 2012-08-15 Tom Tromey <tromey@redhat.com>
1323
1324 PR python/14387:
1325 * python/py-bpevent.c (create_breakpoint_event_object): Update
1326 comment.
1327 * python/py-event.c (evpy_add_attribute): Update comment.
1328 * python/py-exitedevent.c (create_exited_event_object): Fix
1329 reference counting and error handling.
1330 * python/py-newobjfileevent.c (create_new_objfile_event_object):
1331 Fix reference counting.
1332 * python/py-signalevent.c (create_signal_event_object): Fix
1333 reference counting and error handling.
1334 * python/py-stopevent.c (emit_stop_event): Fix reference
1335 counting.
1336 * python/py-threadevent.c (get_event_thread): Return a
1337 borrowed reference.
1338 * python/py-type.c (convert_field): Fix reference counting.
1339
1340 2012-08-15 Tom Tromey <tromey@redhat.com>
1341
1342 * dwarf2read.c (dwarf_decode_macro_bytes)
1343 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
1344 as hash key.
1345
1346 2012-08-14 Mike Frysinger <vapier@gentoo.org>
1347
1348 * infcmd.c (_initialize_infcmd): Update help text for the signal,
1349 stepi, nexti, finish, next, step, jump, and continue commands.
1350 * infrun.c (_initialize_infrun): Update help text for the handle
1351 command.
1352
1353 2012-08-14 Doug Evans <dje@google.com>
1354
1355 * gdbtypes.c (struct extra): Delete, unused.
1356
1357 * gdbtypes.c: Whitespace cleanup.
1358 (address_space_name_to_int): Remove "extern" from definition.
1359 (_initialize_gdbtypes): Declare with initialize_file_ftype.
1360
1361 * gdbtypes.c (make_pointer_type): Remove redundant setting of
1362 TYPE_POINTER_TYPE (type).
1363
1364 2012-08-14 Gary Benson <gbenson@redhat.com>
1365
1366 * solib-svr4.c (svr4_free_library_list): Use free_so.
1367
1368 2012-08-13 Mike Frysinger <vapier@gentoo.org>
1369
1370 * .gitignore: Add go-exp.c.
1371
1372 2012-08-13 Doug Evans <dje@google.com>
1373
1374 * value.c (show_convenience): Tweak comment.
1375 (_initialize_values): Mention convenience functions in the help text
1376 for "show convenience".
1377
1378 2012-08-13 Yao Qi <yao@codesourcery.com>
1379
1380 * std-operator.def: Remove TERNOP_SLICE_COUNT.
1381 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
1382 TERNOP_SLICE_COUNT.
1383 * eval.c (evaluate_subexp_standard): Likewise.
1384 * expprint.c (print_subexp_standard): Likewise.
1385 (dump_subexp_body_standard): Likewise.
1386 * parse.c (operator_length_standard): Likewise.
1387
1388 2012-08-13 Yao Qi <yao@codesourcery.com>
1389
1390 * std-operator.def: Remove OP_BITSTRING.
1391 * breakpoint.c (watchpoint_exp_is_const): Update.
1392 * eval.c (evaluate_subexp_standard): Remove handling to
1393 OP_BITSTRING.
1394 * expprint.c (print_subexp_standard): Likewise.
1395 (dump_subexp_body_standard): Likewise.
1396 * parse.c (operator_length_standard): Likewise.
1397 * valops.c (value_bitstring): Remove.
1398 * value.h: Remove the declaration of 'value_bitstring'.
1399
1400 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
1401
1402 * linespec.c (find_methods): Remove unused variables `i1' and
1403 `name_len'.
1404 (decode_line_full): Likewise for `arg_start'.
1405
1406 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
1407
1408 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
1409 (zlib_decompress_section): Likewise for `section_data'.
1410 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
1411
1412 2012-08-10 Doug Evans <dje@google.com>
1413
1414 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
1415 * NEWS: Document them.
1416 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
1417 function/strfns.py.
1418 * python/py-type.c (typy_array_1): New function.
1419 (typy_array): Call it.
1420 (typy_vector): New function.
1421 (type_object_methods): Add "vector".
1422 * python/lib/gdb/function/__init__.py: New file.
1423 * python/lib/gdb/function/strfns.py: New file.
1424
1425 2012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
1426
1427 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
1428 for TYPE_FIELD_BITPOS.
1429 (typy_get_sizeof): Likewise for TYPE_LENGTH.
1430
1431 2012-08-10 Mike Frysinger <vapier@gentoo.org>
1432
1433 PR cli/10436:
1434 * common/vec.h (VEC_merge): Define.
1435 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
1436 (DEF_VEC_ALLOC_FUNC_P): Likewise.
1437 (DEF_VEC_ALLOC_FUNC_O): Likewise.
1438 * completer.c: Include gdb_signals.h.
1439 (signal_completer): Define.
1440 * completer.h (signal_completer): Add prototype.
1441 * infcmd.c (_initialize_infcmd): Assign the command
1442 completer for "signal" to handle_completer.
1443 * infrun.c: Include completer.h.
1444 (handle_completer): Define.
1445 (_initialize_infrun): Declare a new local variable c. Store the
1446 result of add_com("handle") to it. Assign the command
1447 completer for "handle" to handle_completer.
1448
1449 2012-08-09 Yao Qi <yao@codesourcery.com>
1450
1451 * cli/cli-decode.c (set_cmd_prefix): New.
1452 (lookup_cmd_for_prefixlist): New.
1453 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
1454 of each cmd_list_element in *prefixlist.
1455 (add_setshow_cmd_full): set_cmd_prefix.
1456 (add_alias_cmd): Likewise.
1457 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
1458 Declare 'auto_boolean_enums'.
1459 * cli/cli-setshow.c: Include "observer.h".
1460 (notify_command_param_changed_p): New.
1461 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
1462 Remove 'static'.
1463 (do_setshow_command): Split it to ...
1464 (do_set_command, do_show_command): ... them. New.
1465 (do_set_command): Call observer_notify_command_param_changed if
1466 notify_command_param_changed_p returns true.
1467 (cmd_show_list): Caller update.
1468 * auto-load.c (set_auto_load_cmd): Likewise.
1469 * remote.c (show_remote_cmd): Likewise.
1470 * cli/cli-setshow.h: Update declarations.
1471 * top.c (execute_command): Call do_set_command and do_show_command.
1472
1473 * NEWS: Mention new MI notification.
1474 * mi/mi-interp.c: Declare mi_command_param_changed.
1475 (mi_interpreter_init): Attach mi_command_param_changed to
1476 observer command_param_changed.
1477 (mi_command_param_changed): New.
1478 Remove mi_suppress_breakpoint_notifications.
1479 Define global variable mi_suppress_notification.
1480 (mi_breakpoint_created): Update.
1481 (mi_breakpoint_deleted): Likewise.
1482 (mi_breakpoint_modified): Likewise.
1483 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
1484 'gdb-set' and set mi_suppress_notification.
1485 * mi/mi-main.h: (mi_suppress_notification): New struct.
1486
1487 2012-08-09 Andreas Tobler <andreast@fgznet.ch>
1488 Jan Kratochvil <jan.kratochvil@redhat.com>
1489
1490 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
1491
1492 2012-08-09 Yao Qi <yao@codesourcery.com>
1493
1494 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
1495 (skiplist): Move it to skip.c.
1496 (init_cmd_lists): Remove code setting enablebreaklist and
1497 skiplist to NULL.
1498 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
1499 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
1500 skiplist.
1501 * gdbcmd.h: Likewise.
1502 * skip.c (_initialize_step_skip): Move 'skiplist' from
1503 cli/cli-cmds.c.
1504
1505 2012-08-09 Yao Qi <yao@codesourcery.com>
1506
1507 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
1508 * gnu-nat.c, symfile.c: Likewise.
1509
1510 2012-08-08 Aaron Gamble <agamble@google.com>
1511
1512 * utils.c (prompt_for_continue_wait_time): New static global.
1513 (make_command_stats_cleanup): Initialize it.
1514 (report_command_stats): Subtract time waiting for user.
1515 (prompt_for_continue): Track time waiting for user.
1516 (defaulted_query): Track time waiting for user.
1517
1518 2012-08-08 Doug Evans <dje@google.com>
1519
1520 * eval.c (evaluate_subexp_standard): Fix thinko in handling
1521 UNOP_MEMVAL_TYPE.
1522 * expprint.c (print_subexp_standard, case OP_TYPE): New.
1523 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
1524 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
1525 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
1526 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
1527 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
1528 elt.
1529 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
1530 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
1531 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
1532 (dump_prefix_expression): Handle OP_TYPE.
1533
1534 2012-08-08 Keith Seitz <keiths@redhat.com>
1535
1536 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
1537 addr_start.
1538
1539 2012-08-08 Doug Evans <dje@google.com>
1540
1541 * linux-thread-db.c: #include "gdb_vecs.h".
1542 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
1543 updated.
1544 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
1545 (thread_db_load_search): Use a vector to iterate over path elements.
1546 Handle text appearing after "$pdir".
1547
1548 * gdb_string.h: Moved to ...
1549 * common/gdb_string.h: ... here.
1550 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
1551 gdb_string.h and gdb_assert.h.
1552
1553 2012-08-08 Yao Qi <yao@codesourcery.com>
1554
1555 * tic6x-tdep.c (tic6x_register_to_value): Remove.
1556 (tic6x_value_to_register): Likewise.
1557 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
1558 and set_gdbarch_value_to_register.
1559
1560 2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1561 Jean-Marc Saffroy <saffroy@gmail.com>
1562
1563 PR 11804
1564 * defs.h (find_memory_region_ftype): New comment. New arg modified.
1565 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
1566 * gcore.c (gcore_create_callback): New function comment. Add modified
1567 parameter. Only write modified regions. Set SEC_READONLY exactly
1568 according to MODIFIED.
1569 (objfile_find_memory_regions): Ignore separate debug info files. Ass
1570 the passed modified value to FUNC.
1571 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
1572 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
1573 first. New variables modified and has_anonymous. Parse the lines of
1574 smaps file. Add the passed MODIFIED value to FUNC.
1575 * procfs.c (find_memory_regions_callback): Add the passed modified
1576 value.
1577
1578 2012-08-06 Tom Tromey <tromey@redhat.com>
1579
1580 * dwarf2-frame.c (clear_pointer_cleanup): New function.
1581 (dwarf2_frame_cache): Use it.
1582 * frame-unwind.h (frame_sniffer_ftype): Document prologue
1583 cache initialization constraint.
1584
1585 2012-08-06 Tom Tromey <tromey@redhat.com>
1586
1587 PR python/14386:
1588 * varobj.c (update_dynamic_varobj_children): Don't call
1589 PyIter_Check.
1590
1591 2012-08-06 Tom Tromey <tromey@redhat.com>
1592
1593 PR cli/14392:
1594 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
1595
1596 2012-08-06 Nathaniel Flath <flat0103@gmail.com>
1597
1598 * NEWS: New entry for 'cd' default parameters.
1599 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
1600
1601 2012-08-03 Tom Tromey <tromey@redhat.com>
1602
1603 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
1604 return.
1605
1606 2012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
1607
1608 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
1609 to attempting lseek/write.
1610 (inf_child_fileio_pread): Likewise for pread.
1611
1612 2012-08-02 Yao Qi <yao@codesourcery.com>
1613
1614 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
1615 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
1616 add_setshow_zinteger_cmd.
1617 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
1618 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
1619 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
1620 instead of add_setshow_zinteger_cmd.
1621 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
1622 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
1623 instead of add_setshow_zinteger_cmd.
1624 * frame.c (frame_debug): Add 'unsigned'.
1625 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
1626 add_setshow_zinteger_cmd.
1627 * frame.h: Update the declaration of 'frame_debug'.
1628 * gdbtypes.c (overload_debug): Add 'unsigned'.
1629 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
1630 add_setshow_zinteger_cmd.
1631 * inferior.h: Update declaration of 'debug_infrun'.
1632 * infrun.c (debug_infrun): Add 'unsigned'.
1633 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
1634 add_setshow_zinteger_cmd.
1635 * jit.c (jit_debug): Add 'unsigned'.
1636 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
1637 add_setshow_zinteger_cmd.
1638 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
1639 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
1640 instead of add_setshow_zinteger_cmd.
1641 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
1642 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
1643 add_setshow_zinteger_cmd.
1644 * machoread.c (mach_o_debug_level): Add 'unsigned'.
1645 (_initialize_machoread): Call add_setshow_zuinteger_cmd
1646 instead of add_setshow_zinteger_cmd.
1647 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
1648 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
1649 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
1650 intead of add_setshow_zinteger_cmd.
1651 * mips-tdep.c (mips_debug): Add 'unsigned'.
1652 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
1653 instead of add_setshow_zinteger_cmd.
1654 * monitor.c (monitor_debug): Add 'unsigned'.
1655 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
1656 add_setshow_zinteger_cmd.
1657 * observer.c (observer_debug): Add 'unsigned'.
1658 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
1659 add_setshow_zinteger_cmd.
1660 * parse.c (expressiondebug): Add 'unsigned'.
1661 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
1662 add_setshow_zinteger_cmd.
1663 * record.c (record_debug): Add 'unsigned'.
1664 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
1665 add_setshow_zinteger_cmd.
1666 * record.h: Update the declaration of 'record_debug'.
1667 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
1668 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
1669 add_setshow_zinteger_cmd.
1670 * serial.c (global_serial_debug_p): Add 'unsigned'.
1671 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
1672 add_setshow_zinteger_cmd.
1673 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
1674 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
1675 add_setshow_zinteger_cmd.
1676 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
1677 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
1678 add_setshow_zinteger_cmd.
1679 * target.c (targetdebug): Add 'unsigned'.
1680 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
1681 add_setshow_zinteger_cmd.
1682 * valops.c (overload_debug): Add 'unsigned'.
1683 * varobj.c (varobjdebug): Add 'unsigned'.
1684 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
1685 add_setshow_zinteger_cmd.
1686 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
1687 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
1688 instead of add_setshow_zinteger_cmd.
1689
1690 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
1691 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
1692 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
1693 instead of add_setshow_zinteger_cmd.
1694 * gdbarch.c, gdbarch.h: Re-generated.
1695
1696 2012-08-02 Yao Qi <yao@codesourcery.com>
1697
1698 * nto-tdep.c: Don't include cli/cli-decode.h and
1699 cli/cli-cmds.h.
1700 (_initialize_nto_tdep): Remove.
1701 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
1702 Remove field.
1703 Remove macro nto_internal_debugging.
1704
1705 2012-08-01 Richard Henderson <rth@redhat.com>
1706
1707 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
1708 (mep-*-*) [gdb_target_obs]: Likewise.
1709
1710 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
1711
1712 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
1713 linux_get_siginfo_type.
1714
1715 2012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1716
1717 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
1718 AT_ENTRY_POINT.
1719 (call_function_by_hand) <ON_STACK>: Call write_memory with
1720 gdbarch_breakpoint_from_pc, if possible.
1721 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
1722 here.
1723
1724 2012-07-31 Yao Qi <yao@codesourcery.com>
1725
1726 * tracepoint.c: Add 'static' for some variables.
1727
1728 2012-07-31 Yao Qi <yao@codesourcery.com>
1729
1730 * go32-nat.c: Declare _initialize_go32_nat.
1731 * ser-go32.c: Declare _initialize_ser_dos.
1732 * top.c (do_chdir_cleanup): Add 'static'.
1733
1734 2012-07-30 Keith Seitz <keiths@redhat.com>
1735
1736 * linespec.c (linespec_lex_number): A number followed
1737 by quotes is a valid number, too.
1738
1739 2012-07-30 Tom Tromey <tromey@redhat.com>
1740
1741 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
1742
1743 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
1744
1745 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
1746 attempt to 4-byte-align HW breakpoint addresses for Thumb.
1747
1748 2012-07-30 Andrew Burgess <aburgess@broadcom.com>
1749
1750 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
1751 invalid or reevaluated to prevent prevent references to possibly
1752 delete'd type objects being left in the varobj.
1753
1754 2012-07-27 Tom Tromey <tromey@redhat.com>
1755 Jan Kratochvil <jan.kratochvil@redhat.com>
1756
1757 * copying.awk: Print buffer-read-only and vi ro markers.
1758 * copying.c: Rebuild.
1759 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
1760 * gdbarch.c, gdbarch.h: Rebuild.
1761 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
1762 buffer-read-only and vi ro markers.
1763 * features/arm-with-iwmmxt.c: Rebuild.
1764 * features/arm-with-m-fpa-layout.c: Rebuild.
1765 * features/arm-with-m-vfp-d16.c: Rebuild.
1766 * features/arm-with-m.c: Rebuild.
1767 * features/arm-with-neon.c: Rebuild.
1768 * features/arm-with-vfpv2.c: Rebuild.
1769 * features/arm-with-vfpv3.c: Rebuild.
1770 * features/i386/amd64-avx-linux.c: Rebuild.
1771 * features/i386/amd64-avx.c: Rebuild.
1772 * features/i386/amd64-linux.c: Rebuild.
1773 * features/i386/amd64.c: Rebuild.
1774 * features/i386/i386-avx-linux.c: Rebuild.
1775 * features/i386/i386-avx.c: Rebuild.
1776 * features/i386/i386-linux.c: Rebuild.
1777 * features/i386/i386-mmx-linux.c: Rebuild.
1778 * features/i386/i386-mmx.c: Rebuild.
1779 * features/i386/i386.c: Rebuild.
1780 * features/i386/x32-avx-linux.c: Rebuild.
1781 * features/i386/x32-avx.c: Rebuild.
1782 * features/i386/x32-linux.c: Rebuild.
1783 * features/i386/x32.c: Rebuild.
1784 * features/mips-dsp-linux.c: Rebuild.
1785 * features/mips-linux.c: Rebuild.
1786 * features/mips64-dsp-linux.c: Rebuild.
1787 * features/mips64-linux.c: Rebuild.
1788 * features/rs6000/powerpc-32.c: Rebuild.
1789 * features/rs6000/powerpc-32l.c: Rebuild.
1790 * features/rs6000/powerpc-403.c: Rebuild.
1791 * features/rs6000/powerpc-403gc.c: Rebuild.
1792 * features/rs6000/powerpc-405.c: Rebuild.
1793 * features/rs6000/powerpc-505.c: Rebuild.
1794 * features/rs6000/powerpc-601.c: Rebuild.
1795 * features/rs6000/powerpc-602.c: Rebuild.
1796 * features/rs6000/powerpc-603.c: Rebuild.
1797 * features/rs6000/powerpc-604.c: Rebuild.
1798 * features/rs6000/powerpc-64.c: Rebuild.
1799 * features/rs6000/powerpc-64l.c: Rebuild.
1800 * features/rs6000/powerpc-7400.c: Rebuild.
1801 * features/rs6000/powerpc-750.c: Rebuild.
1802 * features/rs6000/powerpc-860.c: Rebuild.
1803 * features/rs6000/powerpc-altivec32.c: Rebuild.
1804 * features/rs6000/powerpc-altivec32l.c: Rebuild.
1805 * features/rs6000/powerpc-altivec64.c: Rebuild.
1806 * features/rs6000/powerpc-altivec64l.c: Rebuild.
1807 * features/rs6000/powerpc-cell32l.c: Rebuild.
1808 * features/rs6000/powerpc-cell64l.c: Rebuild.
1809 * features/rs6000/powerpc-e500.c: Rebuild.
1810 * features/rs6000/powerpc-e500l.c: Rebuild.
1811 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
1812 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
1813 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
1814 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
1815 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
1816 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
1817 * features/rs6000/powerpc-vsx32.c: Rebuild.
1818 * features/rs6000/powerpc-vsx32l.c: Rebuild.
1819 * features/rs6000/powerpc-vsx64.c: Rebuild.
1820 * features/rs6000/powerpc-vsx64l.c: Rebuild.
1821 * features/rs6000/rs6000.c: Rebuild.
1822 * features/s390-linux32.c: Rebuild.
1823 * features/s390-linux32v1.c: Rebuild.
1824 * features/s390-linux32v2.c: Rebuild.
1825 * features/s390-linux64.c: Rebuild.
1826 * features/s390-linux64v1.c: Rebuild.
1827 * features/s390-linux64v2.c: Rebuild.
1828 * features/s390x-linux64.c: Rebuild.
1829 * features/s390x-linux64v1.c: Rebuild.
1830 * features/s390x-linux64v2.c: Rebuild.
1831 * features/tic6x-c62x-linux.c: Rebuild.
1832 * features/tic6x-c62x.c: Rebuild.
1833 * features/tic6x-c64x-linux.c: Rebuild.
1834 * features/tic6x-c64x.c: Rebuild.
1835 * features/tic6x-c64xp-linux.c: Rebuild.
1836 * features/tic6x-c64xp.c: Rebuild.
1837
1838 2012-07-27 Tom Tromey <tromey@redhat.com>
1839
1840 * c-exp.y (classify_name): Avoid assignment in condition.
1841
1842 2012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
1843
1844 * amd64-windows-tdep.c: Include "frame.h".
1845 (amd64_windows_skip_trampoline_code): New function.
1846 (amd64_windows_init_abi): Add trampoline registration.
1847
1848 2012-07-27 Yao Qi <yao@codesourcery.com>
1849
1850 * tracepoint.c (cur_traceframe_number): Remove.
1851 (set_tfile_traceframe): Remove.
1852 (tfile_trace_find, tfile_fetch_registers): Update callers.
1853 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
1854 (tfile_open, tfile_trace_find): Likewise.
1855
1856 2012-07-27 Yao Qi <yao@codesourcery.com>
1857
1858 * thread.c (switch_to_thread): Don't call registers_changed.
1859
1860 2012-07-26 Tom Tromey <tromey@redhat.com>
1861
1862 * Makefile.in (SFILES): Remove objc-exp.y.
1863 (YYFILES): Remove objc-exp.c.
1864 (YYOBJ): Remove objc-exp.o.
1865 (local-maintainer-clean): Don't mention objc-exp.c.
1866 * c-exp.y: Include objc-lang.h.
1867 (%union) <class>: New field.
1868 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
1869 (exp): Clone subscript production for OBJC_LBRAC. Add various
1870 Objective C productions.
1871 (msglist, msgarglist, msgarg): New productions.
1872 (array_mod, func_mod, operator): Clone productions for
1873 OBJC_LBRAC.
1874 (parse_string_or_char): Handle '@' strings.
1875 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
1876 (classify_name): Check la_name_of_this. Recognize ObjC class
1877 names.
1878 * objc-exp.y: Remove.
1879 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
1880 * objc-lang.h (objc_parse, objc_error): Don't declare.
1881
1882 2012-07-26 Markus Metzger <markus.t.metzger@intel.com>
1883
1884 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
1885
1886 2012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1887
1888 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
1889 and decrement.
1890
1891 2012-07-26 Tom Tromey <tromey@redhat.com>
1892
1893 * copying.c: Rebuild.
1894 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
1895 'no_class'.
1896
1897 2012-07-26 Tom Tromey <tromey@redhat.com>
1898
1899 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
1900 immediate_quit.
1901 (print_objfile_statistics): Likewise.
1902 (maintenance_print_symbols): Likewise.
1903 (maintenance_print_msymbols): Likewise.
1904 (maintenance_print_objfiles): Likewise.
1905 * psymtab.c (print_partial_symbols): Call QUIT.
1906 (maintenance_print_psymbols): Likewise. Don't modify
1907 immediate_quit.
1908 * copying.c (show_copying_command): Don't modify immediate_quit.
1909 (show_warranty_command): Likewise.
1910 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
1911
1912 2012-07-26 Keith Seitz <keiths@redhat.com>
1913
1914 * linespec.c (linespec_lexer_lex_number): The input
1915 is also a valid number if the next character is a comma
1916 or colon.
1917
1918 2012-07-26 Joel Brobecker <brobecker@adacore.com>
1919
1920 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
1921 configure options.
1922
1923 2012-07-26 Tristan Gingold <gingold@adacore.com>
1924
1925 * machoread.c: Include gdb_bfd.h.
1926
1927 2012-07-26 Tristan Gingold <gingold@adacore.com>
1928
1929 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
1930 offset.
1931
1932 2012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
1933
1934 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
1935 SIZE to size_t.
1936 (dwarf2_evaluate_loc_desc): Likewise.
1937 (dwarf2_loc_desc_needs_frame): Likewise.
1938 (locexpr_describe_location_1): Likewise.
1939 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
1940 size_t.
1941 (struct dwarf2_loclist_baton): Likewise.
1942 * dwarf2read.c (struct dwarf_block): Likewise.
1943 (dump_die_shallow): Use pulongest to print dwarf_block.size.
1944 (decode_locdesc): Expand SIZE and I to size_t.
1945
1946 2012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1947
1948 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
1949
1950 2012-07-25 Joel Brobecker <brobecker@adacore.com>
1951
1952 * doublest.c (convert_doublest_to_floatformat): If the exponent
1953 is too small, treat the value as zero. If the exponent is too
1954 large, treat the value as infinity.
1955
1956 2012-07-25 Joel Brobecker <brobecker@adacore.com>
1957
1958 * configure.ac: Add --enable-lmcheck configure option.
1959 * configure: Regenerate.
1960
1961 2012-07-25 Tom Tromey <tromey@redhat.com>
1962
1963 * NEWS: Mention maint info bfds.
1964 * gdb_bfd.c (all_bfds): New global.
1965 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
1966 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
1967 New functions.
1968
1969 2012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
1970
1971 * configure.tgt: Add v850*-*-rtems*.
1972
1973 2012-07-25 Tom Tromey <tromey@redhat.com>
1974
1975 * macrotab.c (macro_bcache_str): Remove cast.
1976
1977 2012-07-25 Hui Zhu <hui_zhu@mentor.com>
1978
1979 * linespec.c (linespec_lexer_lex_number): Update comments,
1980 change the return and add check to make sure the input is
1981 the decimal numbers.
1982 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
1983 false, call linespec_lexer_lex_string.
1984
1985 2012-07-24 Tom Tromey <tromey@redhat.com>
1986
1987 * symfile.c (symbol_file_add): Don't open BFD twice.
1988
1989 2012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
1990
1991 * breakpoint.c (create_breakpoint): Store condition for pending
1992 breakpoints.
1993
1994 2012-07-24 Andreas Schwab <schwab@linux-m68k.org>
1995
1996 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
1997 (m68k_return_value): Handle complex types like structures.
1998 (m68k_svr4_return_value): Likewise.
1999
2000 2012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
2001
2002 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
2003 parameters to bfd_get_section_name.
2004
2005 2012-07-24 Yao Qi <yao@codesourcery.com>
2006
2007 * cli/cli-setshow.c: Handle case 'var_uinteger'
2008 and 'var_zuninteger' together. Handle case 'var_integer' and
2009 'var_zinteger' together.
2010
2011 2012-07-23 Keith Seitz <keiths@redhat.com>
2012
2013 * linespec.c (convert_linespec_to_sal): Don't add
2014 any symbols to the result vector if symbol_to_sal
2015 returns zero.
2016
2017 2012-07-23 Keith Seitz <keiths@redhat.com>
2018
2019 * linespec.c (decode_objc): Record the function name
2020 in the linespec.
2021
2022 2012-07-23 Tom Tromey <tromey@redhat.com>
2023
2024 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
2025 counting.
2026 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
2027 (map_vmap): Acquire a reference to the BFD.
2028
2029 2012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
2030
2031 * p-valprint.c (pascal_object_print_value): Replace potentially
2032 unsafe alloca with xmalloc/xfree.
2033 * valops.c (search_struct_method): Likewise.
2034
2035 2012-07-23 Tom Tromey <tromey@redhat.com>
2036
2037 * solib-svr4.c (enable_break): Update.
2038 * bfd-target.h (target_bfd_reopen): Update documentation.
2039
2040 2012-07-23 Tom Tromey <tromey@redhat.com>
2041
2042 * symfile.c (separate_debug_file_exists): Update.
2043 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
2044 (reread_symbols): Update.
2045 * elfread.c (build_id_verify): Update.
2046 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
2047 bfd_open_maybe_remote.
2048
2049 2012-07-23 Tom Tromey <tromey@redhat.com>
2050
2051 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
2052
2053 2012-07-23 Tom Tromey <tromey@redhat.com>
2054
2055 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
2056 and 'abfd'.
2057 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
2058 and 'abfd'.
2059 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
2060 * machoread.c (macho_add_oso_symfile): Make a cleanup for
2061 'abfd'.
2062 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
2063 * objfiles.c (allocate_objfile): Acquire a new reference.
2064 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
2065 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
2066 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
2067 a cleanup for 'nbfd'.
2068 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
2069 for 'nbfd'.
2070 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
2071 make a cleanup for 'abfd'.
2072 (symbol_file_add): Make a BFD cleanup.
2073
2074 2012-07-23 Tom Tromey <tromey@redhat.com>
2075
2076 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
2077 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
2078 * corelow.c (core_open): Use gdb_bfd_fopen.
2079 * dsrec.c (load_srec): Use gdb_bfd_openr.
2080 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
2081 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
2082 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2083 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2084 (gdb_bfd_fdopenr): New functions.
2085 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2086 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2087 (gdb_bfd_fdopenr): Declare.
2088 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
2089 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
2090 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
2091 gdb_bfd_openr_next_archived_file.
2092 (macho_check_dsym): Use gdb_bfd_openr.
2093 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
2094 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
2095 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
2096 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
2097 gdb_bfd_openr.
2098 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
2099 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
2100 gdb_bfd_openr_next_archived_file.
2101 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2102 Use gdb_bfd_openr.
2103 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2104 gdb_bfd_openr.
2105 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
2106 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
2107 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
2108 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
2109 (symfile_bfd_open): Use gdb_bfd_fopen.
2110 (generic_load): Use gdb_bfd_openr.
2111 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
2112
2113 2012-07-23 Tom Tromey <tromey@redhat.com>
2114
2115 * bfd-target.c (target_bfd_reopen): Update.
2116 * cli/cli-dump.c (bfd_openr_with_cleanup)
2117 (bfd_openw_with_cleanup): Update.
2118 * corelow.c (core_open): Update.
2119 * dsrec.c (load_srec): Update.
2120 * exec.c (exec_file_attach): Update.
2121 * gcore.c (create_gcore_bfd): Update.
2122 * gdb_bfd.c (gdb_bfd_ref): Return void.
2123 (gdb_bfd_open): Update.
2124 * gdb_bfd.h (gdb_bfd_ref): Return void.
2125 Update comments.
2126 * jit.c (jit_bfd_try_read_symtab): Update.
2127 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
2128 * machoread.c (macho_symfile_read_all_oso): Update.
2129 (macho_check_dsym): Update.
2130 * procfs.c (insert_dbx_link_bpt_in_file): Update.
2131 * remote-m32r-sdi.c (m32r_load): Update.
2132 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
2133 * rs6000-nat.c (add_vmap): Update.
2134 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2135 Update.
2136 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
2137 * solib-spu.c (spu_bfd_open): Update.
2138 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
2139 * spu-linux-nat.c (spu_bfd_open): Update.
2140 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
2141 (generic_load): Update.
2142 * windows-nat.c (windows_make_so): Update.
2143
2144 2012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
2145
2146 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
2147
2148 2012-07-20 Jeff Kenton <jkenton@tilera.com>
2149
2150 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
2151 SIGTRAMP_FRAME unwinding.
2152
2153 2012-07-20 Doug Evans <dje@google.com>
2154
2155 * NEWS: Document new options "set/show use-deprecated-index-sections",
2156 and delete reference to --use-deprecated-index-sections.
2157 * symfile.h (use_deprecated_index_sections): Delete.
2158 * dwarf2read.c (use_deprecated_index_sections): Make static.
2159 (read_index_from_section): Update wording of how to load
2160 deprecated index sections.
2161 (_initialize_dwarf2_read): New options
2162 "set/show use-deprecated-index-sections".
2163 * main.c (captured_main): Delete --use-deprecated-index-sections.
2164
2165 2012-07-20 Pedro Alves <palves@redhat.com>
2166
2167 PR threads/11692
2168 PR gdb/12203
2169
2170 * infrun.c (handle_inferior_event) <new thread>: Don't special
2171 case minus_one_ptid.
2172 <TARGET_WAITKIND_SPURIOUS>: Ditto.
2173 * linux-thread-db.c (thread_get_info_callback): Don't return early
2174 if the thread is zombie.
2175 (thread_from_lwp): Change return type to void. Rewrite stale
2176 comment.
2177 (attach_thread): Don't return early if the thread is zombie,
2178 instead set its "dying" flag.
2179 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
2180 (find_new_threads_callback): Don't return early if the thread is
2181 zombie.
2182
2183 2012-07-20 Pedro Alves <palves@redhat.com>
2184
2185 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
2186 * target.c (target_wait): Likewise.
2187 (str_comma_list_concat_elem, do_option, target_options_to_string):
2188 New functions.
2189 * target.h (target_options_to_string): Declare.
2190
2191 2012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2192 Tom Tromey <tromey@redhat.com>
2193
2194 * dwarf2read.c (dwarf_decode_macros)
2195 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
2196 DW_MACRO_GNU_transparent_include_alt>: New cases.
2197 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
2198 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
2199
2200 2012-07-20 Tom Tromey <tromey@redhat.com>
2201
2202 * dwarf2read.c (try_open_dwo_file): Don't call
2203 gdb_bfd_stash_filename.
2204
2205 2012-07-20 Pedro Alves <palves@redhat.com>
2206
2207 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2208 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
2209 (i386_process_record): Tweak description comments.
2210
2211 2012-07-20 Pedro Alves <palves@redhat.com>
2212
2213 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2214 (i386_process_record): Use record_read_memory.
2215 * record.c (record_read_memory): New function.
2216 (record_arch_list_add_mem, record_exec_insn): Use
2217 record_read_memory.
2218 * record.h (record_read_memory): Declare.
2219
2220 2012-07-20 Yao Qi <yao@codesourcery.com>
2221
2222 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
2223 NULL for xfree.
2224
2225 2012-07-19 Pedro Alves <palves@redhat.com>
2226
2227 * record.c (record_resume): Ask the target beneath to report all
2228 signals.
2229
2230 2012-07-19 Doug Evans <dje@google.com>
2231
2232 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
2233 there's no section at address zero.
2234 (dwarf2_record_block_ranges): Ditto.
2235
2236 2012-07-19 Yao Qi <yao@codesourcery.com>
2237
2238 * command.h, remote.c: Fix a typo in comment.
2239
2240 2012-07-19 Tom Tromey <tromey@redhat.com>
2241
2242 PR exp/13206:
2243 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
2244 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
2245 OP_DECLTYPE>: New cases.
2246 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
2247 (type_exp): Add new productions.
2248 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
2249 and decltype.
2250 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
2251 New case.
2252 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
2253 OP_DECLTYPE>: New case.
2254 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
2255 New case.
2256 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
2257 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
2258
2259 2012-07-19 Tom Tromey <tromey@redhat.com>
2260
2261 * c-exp.y (enum token_flags): New.
2262 (struct token) <cxx_only>: Remove.
2263 <flags>: New field.
2264 (tokentab3, tokentab2, ident_tokens): Update.
2265 (lex_one_token): Update. Handle FLAG_SHADOW.
2266
2267 2012-07-19 Tom Tromey <tromey@redhat.com>
2268
2269 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
2270 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
2271 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
2272 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
2273 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
2274 type_exp production where appropriate.
2275 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
2276 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
2277 <UNOP_MEMVAL_TYPE>: New case.
2278 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
2279 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
2280 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
2281 <UNOP_MEMVAL_TYPE>: New case.
2282 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
2283 UNOP_REINTERPRET_CAST>: Update.
2284 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2285 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
2286 UNOP_REINTERPRET_CAST>: Update.
2287 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2288 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
2289 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
2290 constants.
2291
2292 2012-07-19 Yao Qi <yao@codesourcery.com>
2293 Jan Kratochvil <jan.kratochvil@redhat.com>
2294
2295 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
2296 and case 'var_optional_filename' together.
2297 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
2298 instead of add_setshow_optional_filename_cmd for setshow command
2299 'args'. Set completer for 'set args'.
2300
2301 2012-07-18 Doug Evans <dje@google.com>
2302
2303 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
2304 * common/gdb_vecs.c: New file, contents from utils.c.
2305 * common/host-defs.h: New file, contents from defs.h.
2306 * utils.h: New file, contents from defs.h.
2307 * defs.h: Move all declarations of objects defined in utils.c
2308 to utils.h (except QUIT() and related).
2309 #include "utils.h", "host-defs.h".
2310 * probe.h (probe_p): Move here from gdb_vecs.h.
2311 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
2312 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
2313 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
2314 * Makefile.in (SFILES): Add common/gdb_vecs.c.
2315 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
2316 (COMMON_OBS): Add gdb_vecs.o.
2317 (gdb_vecs.o): New rule.
2318
2319 2012-07-18 Keith Seitz <keiths@redhat.com>
2320
2321 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
2322 parameter. If non-zero, use SYMNAME as the canonical name
2323 for the SaL.
2324 Update all callers.
2325 (convert_linespec_to_sals): Use add_sal_to_sals for
2326 expressions, too.
2327 (decode_line_full): No need to "fill in missing canonical names"
2328 anymore. Simply make cleanups for the allocated names.
2329
2330 2012-07-18 Keith Seitz <keiths@redhat.com>
2331
2332 * linespec.c (struct linespec): Constify expression,
2333 source_filename, function_name, and label_name.
2334 (symbol_not_found_error): Make all parameters const.
2335 (linespec_parser_delete): No need to check for NULL
2336 when using xfree. Cast const char * to char * for xfree.
2337
2338 2012-07-18 Keith Seitz <keiths@redhat.com>
2339
2340 * breakpoint.c (invalid_thread_id_error): New function.
2341 (find_condition_and_thread): Use invalid_thread_id_error.
2342 (watch_command_1): Likewise.
2343
2344 2012-07-18 Tom Tromey <tromey@redhat.com>
2345
2346 * cc-with-index.sh, cc-with-dwz.sh: Remove.
2347 * contrib/cc-with-tweaks.sh: New file.
2348
2349 2012-07-18 Tom Tromey <tromey@redhat.com>
2350
2351 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
2352 (locate_dwz_sections): Recognize .gdb_index.
2353 (create_cus_from_index_list): New function.
2354 (create_cus_from_index): Use it. Handle .dwz data.
2355 (read_index_from_section): New function, extracted from
2356 dwarf2_read_index.
2357 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
2358 if needed.
2359
2360 2012-07-18 Tom Tromey <tromey@redhat.com>
2361
2362 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
2363 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
2364 <is_dwz>: New field.
2365 (struct dwz_file): New.
2366 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
2367 (locate_dwz_sections, dwarf2_get_dwz_file)
2368 (get_abbrev_section_for_cu): New functions.
2369 (error_check_comp_unit_head, read_and_check_comp_unit_head)
2370 (read_and_check_type_unit_head): Add abbrev_section argument.
2371 (create_debug_types_hash_table): Update.
2372 (init_cutu_and_read_dies): Use proper abbrev section.
2373 (init_cutu_and_read_dies_no_follow): Likewise.
2374 (set_partial_user): Do nothing if PST==NULL.
2375 (read_comp_units_from_section): New function.
2376 (create_all_comp_units): Use it.
2377 (scan_partial_symbols, partial_die_parent_scope): Update.
2378 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
2379 (process_imported_unit_die, read_partial_die): Handle .dwz files.
2380 (find_partial_die): Add offset_in_dwz argument. Update.
2381 (guess_partial_die_structure_name, fixup_partial_die): Update.
2382 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
2383 DW_FORM_GNU_strp_alt.
2384 (read_indirect_string_from_dwz): New function.
2385 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
2386 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
2387 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
2388 (follow_die_offset): Add offset_in_dwz argument.
2389 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
2390 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
2391 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
2392 Handle new macro forms.
2393 (dwarf_decode_macros): Update.
2394 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
2395 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
2396 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
2397 (create_debug_types_hash_table): Use correct abbrev section.
2398 (get_debug_line_section): New function.
2399 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
2400 (process_full_comp_unit): Pass 'required' argument to
2401 end_symtab_get_static_block.
2402 * buildsym.h (end_symtab_get_static_block): Update.
2403 * buildsym.c (end_symtab_get_static_block): Add 'required'
2404 argument.
2405 (end_symtab, end_expandable_symtab): Update.
2406
2407 2012-07-18 Tom Tromey <tromey@redhat.com>
2408
2409 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
2410 (pagesize): Remove.
2411 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
2412 (zlib_decompress_section): Remove.
2413 (dwarf2_read_section): Use gdb_bfd_map_section.
2414 (munmap_section_buffer): Remove.
2415 (free_dwo_file, dwarf2_per_objfile_free): Don't use
2416 munmap_section_buffer.
2417 * gdb_bfd.c: Include zlib.h, sys/mman.h.
2418 (struct gdb_bfd_section_data): New.
2419 (free_one_bfd_section): New function.
2420 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
2421 (get_section_descriptor, zlib_decompress_section)
2422 (gdb_bfd_map_section): New functions.
2423 * gdb_bfd.h (gdb_bfd_map_section): Declare.
2424
2425 2012-07-18 Tom Tromey <tromey@redhat.com>
2426
2427 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
2428
2429 2012-07-18 Tom Tromey <tromey@redhat.com>
2430
2431 * gdb_bfd.c (struct gdb_bfd_data): New.
2432 (gdb_bfd_cache): New global.
2433 (struct gdb_bfd_cache_search): New.
2434 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
2435 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
2436 * gdb_bfd.h (gdb_bfd_open): Declare.
2437
2438 2012-07-18 Tom Tromey <tromey@redhat.com>
2439
2440 * utils.c (make_cleanup_bfd_unref): Rename from
2441 make_cleanup_bfd_close.
2442 * defs.h (make_cleanup_bfd_unref): Rename from
2443 make_cleanup_bfd_close.
2444 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
2445 (bfd_openw_with_cleanup): Update.
2446 * corelow.c (core_open): Update.
2447 * dsrec.c (load_srec): Update.
2448 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
2449 * remote-m32r-sdi.c (m32r_load): Update.
2450 * remote-mips.c (mips_load_srec): Update.
2451 (pmon_load_fast): Update.
2452 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2453 Update.
2454 (darwin_bfd_open): Update.
2455 * solib.c (solib_bfd_fopen): Update.
2456 * symfile-mem.c (symbol_file_add_from_memory): Update.
2457 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
2458 (symfile_bfd_open): Update.
2459 (generic_load): Update.
2460
2461 2012-07-18 Tom Tromey <tromey@redhat.com>
2462
2463 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
2464 (pmon_load_fast): Likewise.
2465 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
2466 (m32r_upload_command): Likewise.
2467 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
2468 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2469 Use make_cleanup_bfd_close.
2470
2471 2012-07-18 Tom Tromey <tromey@redhat.com>
2472
2473 * symfile.c (symfile_bfd_open): Don't copy name. Call
2474 gdb_bfd_stash_filename.
2475 (load_command): Open the new BFD before freeing the old.
2476 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
2477 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
2478 Call gdb_bfd_stash_filename.
2479 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
2480 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
2481 gdb_bfd_stash_filename.
2482 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2483 Free found_pathname.
2484 * rs6000-nat.c (add_vmap): Don't copy filename. Call
2485 gdb_bfd_stash_filename.
2486 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
2487 * machoread.c (macho_add_oso_symfile): Call
2488 gdb_bfd_stash_filename.
2489 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
2490 gdb_bfd_stash_filename.
2491 (macho_check_dsym): Don't copy filename. Call
2492 gdb_bfd_stash_filename.
2493 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
2494 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
2495 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
2496 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
2497 * exec.c (exec_close): Don't free the BFD's filename.
2498 (exec_file_attach): Don't copy the filename. Call
2499 gdb_bfd_stash_filename.
2500 * corelow.c (core_close): Don't free the BFD's filename.
2501 (core_open): Call gdb_bfd_stash_filename.
2502 * corefile.c (reopen_exec_file): Remove #if 0 code.
2503 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
2504 pathname.
2505 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
2506
2507 2012-07-18 Tom Tromey <tromey@redhat.com>
2508
2509 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
2510 gdb_bfd_unref.
2511 (free_dwo_file): Use gdb_bfd_unref.
2512 * cli/cli-dump.c: Include gdb_bfd.h.
2513 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
2514 (bfd_openr_with_cleanup): Likewise.
2515 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
2516 gdb_bfd_unref.
2517 * utils.c: Include gdb_bfd.h.
2518 (do_bfd_close_cleanup): Use gdb_bfd_unref.
2519 * symfile.c: Include gdb_bfd.h.
2520 (separate_debug_file_exists): Use gdb_bfd_unref.
2521 (bfd_open_maybe_remote): Use gdb_bfd_ref.
2522 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2523 (generic_load): Use gdb_bfd_ref.
2524 (reread_symbols): Use gdb_bfd_unref.
2525 * symfile-mem.c: Include gdb_bfd.h.
2526 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
2527 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2528 * solib.c: Include gdb_bfd.h.
2529 (solib_bfd_fopen): Use gdb_bfd_ref.
2530 (solib_bfd_open): Use gdb_bfd_unref.
2531 (free_so_symbols): Use gdb_bfd_unref.
2532 (reload_shared_libraries_1): Use gdb_bfd_unref.
2533 * solib-spu.c: Include gdb_bfd.h.
2534 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
2535 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
2536 gdb_bfd_unref.
2537 * solib-frv.c: Include gdb_bfd.h.
2538 (enable_break2): Use gdb_bfd_unref.
2539 * solib-dsbt.c: Include gdb_bfd.h.
2540 (enable_break2): Use gdb_bfd_unref.
2541 * solib-darwin.c: Include gdb_bfd.h.
2542 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
2543 gdb_bfd_unref.
2544 (darwin_bfd_open): Use gdb_bfd_unref.
2545 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
2546 * remote-mips.c: Include gdb_bfd.h.
2547 (mips_load_srec): Use gdb_bfd_ref.
2548 (pmon_load_fast): Use gdb_bfd_ref.
2549 * remote-m32r-sdi.c: Include gdb_bfd.h.
2550 (m32r_load): Use gdb_bfd_ref.
2551 * record.c: Include gdb_bfd.h.
2552 (record_save_cleanups): Use gdb_bfd_unref.
2553 (cmd_record_save): Use gdb_bfd_unref.
2554 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
2555 gdb_bfd_unref.
2556 * objfiles.h (gdb_bfd_close_or_warn): Remove.
2557 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
2558 * objfiles.c: Include gdb_bfd.h.
2559 (free_objfile): Use gdb_bfd_unref.
2560 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
2561 gdb_bfd.c.
2562 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
2563 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
2564 (macho_check_dsym): Likewise.
2565 * m32r-rom.c: Include gdb_bfd.h.
2566 (m32r_load): Use gdb_bfd_ref.
2567 (m32r_upload_command): Use gdb_bfd_ref.
2568 * jit.c: Include gdb_bfd.h.
2569 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
2570 * gdb_bfd.h: New file.
2571 * gdb_bfd.c: New file.
2572 * gcore.c: Include gdb_bfd.h.
2573 (create_gcore_bfd): Use gdb_bfd_ref.
2574 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
2575 (gcore_command): Use gdb_bfd_unref.
2576 * exec.c: Include gdb_bfd.h.
2577 (exec_close): Use gdb_bfd_unref.
2578 (exec_close_1): Use gdb_bfd_unref.
2579 (exec_file_attach): Use gdb_bfd_ref.
2580 * elfread.c: Include gdb_bfd.h.
2581 (build_id_verify): Use gdb_bfd_unref.
2582 * dsrec.c: Include gdb_bfd.h.
2583 (load_srec): Use gdb_bfd_ref.
2584 * corelow.c: Include gdb_bfd.h.
2585 (core_close): Use gdb_bfd_unref.
2586 (core_open): Use gdb_bfd_ref.
2587 * bfd-target.c: Include gdb_bfd.h.
2588 (target_bfd_xclose): Use gdb_bfd_unref.
2589 (target_bfd_reopen): Use gdb_bfd_ref.
2590 * Makefile.in (SFILES): Add gdb_bfd.c.
2591 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
2592 (COMMON_OBS): Add gdb_bfd.o.
2593
2594 2012-07-18 Keith Seitz <keiths@redhat.com>
2595
2596 * breakpoint.c (find_condition_and_thread): Initialize
2597 TASK and REST.
2598 (create_breakpiont): find_condition_and_thread will now
2599 initialize COND_STRING, THREAD, and REST (and TASK).
2600 (addr_string_to_sals): Likewise.
2601
2602 2012-07-18 Pedro Alves <palves@redhat.com>
2603
2604 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
2605 Pull the single step breakpoints out of the target.
2606
2607 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
2608
2609 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
2610 * stap-probe.c (compile_probe_arg): Likewise.
2611
2612 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
2613
2614 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
2615 (elf_compile_to_ax): Likewise.
2616 * infrun.c (insert_exception_resume_from_probe): Likewise.
2617 (check_exception_resume): Remove `objfile' variable.
2618 * probe.c (find_probe_by_pc): Remove `objfile' argument.
2619 (struct probe_and_objfile, probe_and_objfile_s): Delete.
2620 (collect_probes): Adjust return value to `VEC (probe_p) *'.
2621 (compare_entries): Rename to...
2622 (compare_probes): ...this. Adjust function to work with
2623 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
2624 respectively.
2625 (gen_ui_out_table_header_info): Adjust `probes' argument to be
2626 `VEC (probe_p) *'.
2627 (print_ui_out_info): Adjust argument to be `struct probe *'.
2628 (info_probes_for_ops): Adjust internal computations to use
2629 `VEC (probe_p) *'.
2630 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
2631 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
2632 gen_info_probes_table_values>: Remove `objfile' argument.
2633 (struct probe) <objfile>: New field.
2634 (find_probe_by_pc): Remove `objfile' argument.
2635 * stap-probe.c (stap_parse_probe_arguments): Likewise.
2636 (stap_get_probe_argument_count): Likewise.
2637 (stap_get_arg): Likewise.
2638 (stap_evaluate_probe_argument): Likewise.
2639 (stap_compile_to_ax): Likewise.
2640 (compile_probe_arg): Refactor not to pass `objfile' anymore.
2641 (handle_stap_probe): Fill `objfile' field from `struct probe'.
2642 (stap_gen_info_probes_table_header): Remove `objfile' argument.
2643 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
2644 sym_compile_to_ax>: Likewise.
2645
2646 2012-07-18 Terry Guo <terry.guo@arm.com>
2647
2648 PR 14329
2649 * defs.h (GDB_MI_MSG_WIDTH): New.
2650 * ser_base (ser_base_read_error_fd): New function.
2651 (do_ser_base_readchar): Poll error file descriptor as well as
2652 standard output.
2653 (generic_readchar): Refactor error handling.
2654
2655 2012-07-18 Joel Brobecker <brobecker@adacore.com>
2656
2657 * NEWS: Create a new section for the next release branch.
2658 Rename the section of the current branch, now that it has
2659 been cut.
2660
2661 2012-07-18 Joel Brobecker <brobecker@adacore.com>
2662
2663 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
2664 * version.in: Bump version to 7.5.50.20120718-cvs.
2665
2666 2012-07-17 Keith Seitz <keiths@redhat.com>
2667
2668 * linespec.c (linespec_parse_line_offset): Make parameter
2669 const.
2670
2671 2012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
2672
2673 PR 11914
2674 * f-valprint.c (info_common_command): New variable frame_id.
2675 Reinitialize FI form FRAME_ID after each print_variable_and_value.
2676 * printcmd.c (print_variable_and_value): Extend function comment.
2677 Add comment for invalidated FRAME.
2678 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
2679 FI form FRAME_ID after each print_frame_local_vars.
2680 (struct print_variable_and_value_data): Change frame to frame_id.
2681 (do_print_variable_and_value): New variable frame, initialize it from
2682 p->frame_id. Add comment for invalidated FRAME.
2683 (print_frame_local_vars, print_frame_arg_vars): New function comment.
2684 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
2685 for invalidated FRAME.
2686
2687 2012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
2688 Pedro Alves <palves@redhat.com>
2689
2690 * linux-nat.c (linux_nat_detach): Don't unregister from the event
2691 loop.
2692
2693 2012-07-16 Tom Tromey <tromey@redhat.com>
2694
2695 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
2696
2697 2012-07-15 Doug Evans <dje@google.com>
2698
2699 * dwarf2read.c (stmt_list_hash): New struct.
2700 (type_unit_group): Embed "per_cu" member, remove pointer.
2701 New union member "t", move member "tus" into it, all uses updated.
2702 New member "hash", replaces member "line_offset, all uses updated.
2703 (quick_file_names): Replace member "offset" with "hash", all uses
2704 updated.
2705 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
2706 (hash_file_name_entry, eq_file_name_entry): Call them.
2707 (hash_type_unit_group, eq_type_unit_group): Ditto.
2708 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
2709 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
2710 (dw2_get_file_names): Update.
2711 (create_type_unit_group): Replace "per_cu" arg with "cu".
2712 All callers updated. Fix "quick" (.gdb_index) handling.
2713 (get_type_unit_group): Replace "per_cu" arg with "cu".
2714 All callers updated.
2715 (build_type_unit_groups): Don't reset tu_stats.
2716
2717 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
2718 "tab_cur_size". Change member "tab" to be a htab_t.
2719 (create_filename_seen_cache): Update.
2720 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
2721 (filename_seen): Update.
2722
2723 2012-07-13 Doug Evans <dje@google.com>
2724
2725 * symtab.c (filename_seen): Update comment.
2726
2727 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2728 Doug Evans <dje@google.com>
2729
2730 * buildsym.c (end_symtab_1): Split it to ...
2731 (end_symtab_get_static_block): ... this ...
2732 (end_symtab_from_static_block): ... and this function.
2733 (end_symtab, end_expandable_symtab): Call them.
2734 * buildsym.h (end_symtab_get_static_block)
2735 (end_symtab_from_static_block): New declarations.
2736 * dwarf2read.c (process_full_comp_unit): New variable static_block.
2737 Set its valid CU ranges.
2738
2739 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2740
2741 * dwarf2loc.c (disassemble_dwarf_expression): Handle
2742 DW_OP_GNU_parameter_ref.
2743
2744 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2745
2746 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
2747 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
2748
2749 2012-07-13 Doug Evans <dje@google.com>
2750
2751 * symtab.c (output_source_filename): Delete unnecessary forward decl.
2752 (filename_seen_cache): New struct.
2753 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
2754 (create_filename_seen_cache): New function.
2755 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
2756 (filename_seen): Delete arg "first". New arg "cache". All callers
2757 updated.
2758 (output_source_filename_data): New struct.
2759 (output_source_filename): Delete arg "first". New arg "data".
2760 All callers updated.
2761 (sources_info): Delete local "first". New locals "data", "cleanups".
2762 Rewrite to use filename_seen_cache.
2763 (add_partial_filename_data): Delete member "first". New member
2764 "filename_seen_cache". All uses updated.
2765 (make_source_files_completion_list): Rewrite to use
2766 filename_seen_cache.
2767
2768 2012-07-12 Doug Evans <dje@google.com>
2769
2770 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
2771
2772 2012-07-10 Doug Evans <dje@google.com>
2773
2774 PR gdb/13498
2775 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
2776 all_type_unit_groups, type_unit_groups, tu_stats.
2777 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
2778 All uses updated. Add type_unit_group to union "s".
2779 (type_unit_group): New struct.
2780 (IS_TYPE_UNIT_GROUP): New macro.
2781 (abbrev_table): Delete unused member "section".
2782 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
2783 (dw2_get_cu): Assert not used with type_unit_group.
2784 (dw2_get_primary_cu): New function.
2785 (dw2_build_type_unit_groups_reader): New function.
2786 (dw2_build_type_unit_groups): New function.
2787 (dw2_get_file_names): Assert not called on type units.
2788 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
2789 Redo loop to iterate over type unit groups instead of type units.
2790 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
2791 (read_abbrev_offset): New function.
2792 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
2793 updated.
2794 (create_partial_symtab): New function.
2795 (process_psymtab_comp_unit_reader): Assert not used with type units.
2796 Call create_partial_symtab.
2797 (process_psymtab_type_unit): Delete.
2798 (hash_type_unit_group, eq_type_unit_group): New functions.
2799 (allocate_type_unit_groups_table): New function.
2800 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
2801 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
2802 (create_type_unit_group, get_type_unit_group): New functions.
2803 (tu_abbrev_offset): New struct.
2804 (sort_tu_by_abbrev_offset): New function.
2805 (add_type_unit_group_to_table): New function.
2806 (build_type_unit_groups): New function.
2807 (build_type_psymtabs_reader): New function.
2808 (build_type_psymtab_dependencies): New function.
2809 (build_type_psymtabs): Rewrite.
2810 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
2811 is seen in a type unit.
2812 (process_queue): Move symtab expansion debugging printfs here.
2813 Call process_full_type_unit for type units.
2814 (compute_symtab_includes): Assert not called for type units.
2815 (process_cu_includes): Don't call compute_symtab_includes for
2816 type units.
2817 (process_full_type_unit): New function.
2818 (process_imported_unit_die): Flag an error if called for type units.
2819 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
2820 updated. Assert not called for type units.
2821 (read_file_scope): Call dwarf2_start_symtab.
2822 (setup_type_unit_groups): New function.
2823 (read_type_unit_scope): Rewrite.
2824 (abbrev_table_read_table): Initialize abbrev_table->offset.
2825 (abbrev_table_free_cleanup): New function.
2826 (dwarf2_start_symtab): New function.
2827 (load_full_type_unit): Assert not called for type unit groups.
2828 * buildsym.c (finish_block_internal): New arg "expandable".
2829 All callers updated.
2830 (start_symtab): Move most contents to ...
2831 (restart_symtab): ... here. New function.
2832 (reset_symtab_globals): New function.
2833 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
2834 Call reset_symtab_globals.
2835 (end_symtab, end_expandable_symtab): New functions.
2836 (set_missing_symtab, augment_type_symtab): New functions.
2837 * buildsym.h (end_expandable_symtab): Declare.
2838 (augment_type_symtab, restart_symtab): Declare.
2839 * psympriv.h (struct partial_symtab): New member "anonymous".
2840 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
2841 anonymous psymtabs.
2842 (read_psymtabs_with_filename): Ditto.
2843 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
2844 (expand_symtabs_matching_via_partial): Ditto.
2845 (dump_psymtab): Update.
2846 * dictionary.c (dict_add_pending): New function.
2847 * dictionary.h (dict_add_pending): Declare.
2848
2849 2012-07-09 Doug Evans <dje@google.com>
2850
2851 * buildsym.c (start_subfile): Remove unnecessary check for
2852 name == NULL.
2853
2854 * psymtab.c (allocate_psymtab): Use host_address_to_string.
2855
2856 * dwarf2read.c (load_full_type_unit): Simplify.
2857
2858 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
2859 to struct signatured_type **. All uses updated.
2860
2861 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
2862 All callers updated.
2863
2864 2012-07-09 Tom Tromey <tromey@redhat.com>
2865
2866 * c-exp.y (check_parameter_typelist): New function.
2867 (parameter_typelist): Call it.
2868 * eval.c (make_params): Handle '(void)' case.
2869 * gdbtypes.c (lookup_function_type_with_arguments): Handle
2870 '(void)' case.
2871
2872 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2873
2874 * common/linux-ptrace.c: Include gdb_assert.h.
2875 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
2876 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
2877 stdint.h.
2878 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
2879 functions.
2880 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
2881 * linux-nat.c (linux_child_post_attach)
2882 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
2883
2884 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2885
2886 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
2887 nptl <2.7 bug workaround for core files.
2888
2889 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2890
2891 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
2892 clearing.
2893 (save_siginfo): Remove.
2894 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
2895 call.
2896 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
2897 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
2898 * linux-nat.h (struct lwp_info): Remove field siginfo.
2899
2900 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2901
2902 Code cleanup for the next patch.
2903 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
2904 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
2905 call for it.
2906 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
2907 (ia64_linux_stopped_data_address):
2908 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
2909 the return value.
2910 * linux-nat.h (linux_nat_get_siginfo): Likewise.
2911 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
2912 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
2913 call for it.
2914
2915 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2916
2917 PR 14321
2918 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
2919 Increase buffer sizes to 2x we need, not just 2x of the previous size.
2920
2921 2012-07-06 Tom Tromey <tromey@redhat.com>
2922
2923 * c-exp.y (DOTDOTDOT): New token.
2924 (func_mod, exp): Use parameter_typelist.
2925 (parameter_typelist): New production.
2926 (tokentab3): Add "..." token.
2927 * eval.c (make_params): Handle varargs.
2928 * gdbtypes.c (lookup_function_type_with_arguments): Handle
2929 varargs.
2930
2931 2012-07-06 Tom Tromey <tromey@redhat.com>
2932
2933 PR exp/9608:
2934 * c-exp.y (%union) <tvec>: Change type.
2935 (func_mod): Now uses <tvec> type.
2936 (exp): Update for tvec change.
2937 (direct_abs_decl): Push the typelist.
2938 (func_mod): Return a typelist.
2939 (nonempty_typelist): Update for tvec change.
2940 * gdbtypes.c (lookup_function_type_with_arguments): New function.
2941 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
2942 * parse.c (pop_type_list): New function.
2943 (push_typelist): New function.
2944 (follow_types): Handle tp_function_with_arguments.
2945 * parser-defs.h (type_ptr): New typedef. Define a VEC.
2946 (enum type_pieces) <tp_function_with_arguments>: New constant.
2947 (union type_stack_elt) <typelist_val>: New field.
2948 (push_typelist): Declare.
2949
2950 2012-07-06 Tom Tromey <tromey@redhat.com>
2951
2952 * c-exp.y (%union) <type_stack>: New field.
2953 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
2954 (ptr_operator_ts): New production.
2955 (ptype): Update.
2956 * parse.c (type_stack_reserve): New function.
2957 (check_type_stack_depth): Use it.
2958 (pop_type_stack, append_type_stack, push_type_stack)
2959 (get_type_stack, type_stack_cleanup): New functions.
2960 (follow_types): Handle tp_type_stack.
2961 (_initialize_parse): Simplify initialization.
2962 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
2963 constant.
2964 (union type_stack_elt) <stack_val>: New field.
2965 (get_type_stack, append_type_stack, push_type_stack)
2966 (type_stack_cleanup): Declare.
2967
2968 2012-07-06 Tom Tromey <tromey@redhat.com>
2969
2970 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
2971 Remove.
2972 (struct type_stack): New.
2973 * parse.c (type_stack, type_stack_size, type_stack_depth):
2974 Remove.
2975 (type_stack): New global.
2976 (parse_exp_in_context, check_type_stack_depth)
2977 (insert_into_type_stack, insert_type, push_type, push_type_int)
2978 (insert_type_address_space, pop_type, pop_type_int)
2979 (_initialize_parse): Update.
2980
2981 2012-07-06 Tom Tromey <tromey@redhat.com>
2982
2983 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
2984 Remove %type.
2985
2986 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
2987
2988 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
2989
2990 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
2991 Jan Kratochvil <jan.kratochvil@redhat.com>
2992
2993 * cp-valprint.c (cp_print_value): Replace potentially unsafe
2994 alloca with xmalloc/xfree.
2995
2996 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
2997
2998 * MAINTAINERS (Write After Approval): Add myself to the list.
2999
3000 2012-07-05 Doug Evans <dje@google.com>
3001
3002 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
3003
3004 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
3005
3006 * ax-gdb.c (cli/cli-utils.h): New include.
3007 (linespec.h): Ditto.
3008 (agent_eval_command_one): New function.
3009 (agent_command_1): Ditto.
3010 (agent_command): Call function agent_command_1.
3011 (agent_eval_command): Ditto.
3012 (_initialize_ax_gdb): Change help for "maint agent"
3013 and "maint agent-eval".
3014
3015 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
3016
3017 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
3018 * cli/cli-utils.c (check_for_argument): New function.
3019 * cli/cli-utils.h (check_for_argument): Ditto.
3020
3021 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
3022
3023 * NEWS: Mention x32 ABI support.
3024
3025 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
3026
3027 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
3028 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
3029
3030 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
3031 and pc_regnum_from_eax to -1. Update SP regnum from
3032 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
3033 needed.
3034
3035 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
3036 pc_regnum_from_eax.
3037
3038 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
3039
3040 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
3041 * dwarf2expr.h: Include gdbtypes.h.
3042 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
3043 these forward declarations.
3044 (cu_offset, sect_offset): Move these ...
3045 * gdbtypes.h: Remove include dwarf2expr.h.
3046 (cu_offset, sect_offset): ... here.
3047
3048 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
3049
3050 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
3051 (amd64_linux_sigtramp_code): This.
3052 (amd64_x32_linux_sigtramp_code): New.
3053 (LINUX_SIGTRAMP_LEN): Updated.
3054 (amd64_linux_sigtramp_start): Check x32 sigtramp.
3055
3056 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3057
3058 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
3059
3060 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3061
3062 * config.in: Regenerate.
3063 * configure: Regenerate.
3064 * configure.ac: Remove check for gnu/libc-version.h.
3065 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
3066 gnu/libc-version.h.
3067 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
3068 variables libc_version, libc_major and libc_minor. Replace sscanf by
3069 inferior_has_bug. Extend the comment.
3070
3071 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3072
3073 * linux-thread-db.c (inferior_has_bug): New function.
3074 (thread_db_find_new_threads_silently): Return boolean as checked by
3075 inferior_has_bug, describe it in the comments.
3076 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
3077 earlier. Abort the initialization if it returned non-zero.
3078 (thread_db_new_objfile): Exclude debug files.
3079 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
3080 if UNTIL_NO_NEW,
3081
3082 2012-07-02 Doug Evans <dje@google.com>
3083
3084 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
3085 related to queue management.
3086
3087 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
3088 instead of "debug dwarf2-die" in debugging printfs.
3089 (create_debug_info_hash_table_reader): Ditto.
3090 (create_debug_info_hash_table): Ditto.
3091 (init_dwo_file): Ditto.
3092 (init_cutu_and_read_dies): Add debugging printf.
3093 (init_cutu_and_read_dies_no_follow): Ditto.
3094 (process_psymtab_comp_unit_reader): Ditto.
3095
3096 2012-07-02 Stan Shebs <stan@codesourcery.com>
3097
3098 Add target-side support for dynamic printf.
3099 * NEWS: Mention the additional style.
3100 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
3101 (struct bp_location): New field cmd_bytecode.
3102 * breakpoint.c: Include format.h.
3103 (disconnected_dprintf): New global.
3104 (parse_cmd_to_aexpr): New function.
3105 (build_target_command_list): New function.
3106 (insert_bp_location): Call it.
3107 (remove_breakpoints_pid): Skip dprintf breakpoints.
3108 (print_one_breakpoint_location): Ditto.
3109 (dprintf_style_agent): New global.
3110 (dprintf_style_enums): Add dprintf_style_agent.
3111 (update_dprintf_command_list): Add agent case.
3112 (agent_printf_command): New function.
3113 (_initialize_breakpoint): Add new commands.
3114 * common/ax.def (printf): New bytecode.
3115 * ax.h (ax_string): Declare.
3116 * ax-gdb.h (gen_printf): Declare.
3117 * ax-gdb.c: Include cli-utils.h, format.h.
3118 (gen_printf): New function.
3119 (maint_agent_print_command): New function.
3120 (_initialize_ax_gdb): Add maint agent-printf command.
3121 * ax-general.c (ax_string): New function.
3122 (ax_print): Add printf disassembly.
3123 * Makefile.in (SFILES): Add format.c
3124 (COMMON_OBS): Add format.o.
3125 * common/format.h: New file.
3126 * common/format.c: New file.
3127 * printcmd.c: Include format.h.
3128 (ui_printf): Call parse_format_string.
3129 * remote.c (remote_state): New field breakpoint_commands.
3130 (PACKET_BreakpointCommands): New enum.
3131 (remote_breakpoint_commands_feature): New function.
3132 (remote_protocol_features): Add new BreakpointCommands entry.
3133 (remote_can_run_breakpoint_commands): New function.
3134 (remote_add_target_side_commands): New function.
3135 (remote_insert_breakpoint): Call it.
3136 (remote_insert_hw_breakpoint): Ditto.
3137 (_initialize_remote): Add new packet configuration for
3138 target-side breakpoint commands.
3139 * target.h (struct target_ops): New field
3140 to_can_run_breakpoint_commands.
3141 (target_can_run_breakpoint_commands): New macro.
3142 * target.c (update_current_target): Handle
3143 to_can_run_breakpoint_commands.
3144
3145 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3146
3147 Execute -ix and -iex only after system and user gdbinit files.
3148 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
3149 processing down after gdbinit files.
3150
3151 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3152
3153 Add fnmatch-gnu module.
3154 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
3155 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
3156 * gnulib/aclocal.m4: Regenerate.
3157 * gnulib/config.in: Regenerate.
3158 * gnulib/configure: Regenerate.
3159 * gnulib/import/dummy.c: Remove.
3160 * gnulib/import/Makefile.am: Regenerate.
3161 * gnulib/import/Makefile.in: Likewise.
3162 * gnulib/import/m4/gnulib-cache.m4: Likewise.
3163 * gnulib/import/m4/gnulib-comp.m4: Likewise.
3164 * gnulib/import/alloca.c: New file.
3165 * gnulib/import/alloca.in.h: Likewise.
3166 * gnulib/import/config.charset: Likewise.
3167 * gnulib/import/fnmatch.c: Likewise.
3168 * gnulib/import/fnmatch.in.h: Likewise.
3169 * gnulib/import/fnmatch_loop.c: Likewise.
3170 * gnulib/import/localcharset.c: Likewise.
3171 * gnulib/import/localcharset.h: Likewise.
3172 * gnulib/import/m4/alloca.m4: Likewise.
3173 * gnulib/import/m4/codeset.m4: Likewise.
3174 * gnulib/import/m4/configmake.m4: Likewise.
3175 * gnulib/import/m4/fcntl-o.m4: Likewise.
3176 * gnulib/import/m4/fnmatch.m4: Likewise.
3177 * gnulib/import/m4/glibc21.m4: Likewise.
3178 * gnulib/import/m4/localcharset.m4: Likewise.
3179 * gnulib/import/m4/locale-fr.m4: Likewise.
3180 * gnulib/import/m4/locale-ja.m4: Likewise.
3181 * gnulib/import/m4/locale-zh.m4: Likewise.
3182 * gnulib/import/m4/mbrtowc.m4: Likewise.
3183 * gnulib/import/m4/mbsinit.m4: Likewise.
3184 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
3185 * gnulib/import/m4/mbstate_t.m4: Likewise.
3186 * gnulib/import/m4/stdbool.m4: Likewise.
3187 * gnulib/import/m4/wchar_h.m4: Likewise.
3188 * gnulib/import/m4/wctype_h.m4: Likewise.
3189 * gnulib/import/m4/wint_t.m4: Likewise.
3190 * gnulib/import/mbrtowc.c: Likewise.
3191 * gnulib/import/mbsinit.c: Likewise.
3192 * gnulib/import/mbsrtowcs-impl.h: Likewise.
3193 * gnulib/import/mbsrtowcs-state.c: Likewise.
3194 * gnulib/import/mbsrtowcs.c: Likewise.
3195 * gnulib/import/ref-add.sin: Likewise.
3196 * gnulib/import/ref-del.sin: Likewise.
3197 * gnulib/import/stdbool.in.h: Likewise.
3198 * gnulib/import/streq.h: Likewise.
3199 * gnulib/import/strnlen1.c: Likewise.
3200 * gnulib/import/strnlen1.h: Likewise.
3201 * gnulib/import/verify.h: Likewise.
3202 * gnulib/import/wchar.in.h: Likewise.
3203 * gnulib/import/wctype.in.h: Likewise.
3204
3205 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3206
3207 Support shell wildcards for 'set auto-load safe-path'.
3208 * auto-load.c: Include fnmatch.h.
3209 (filename_is_in_dir): Rename to ...
3210 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
3211 it. Update function comment. Rename dir_len to pattern_len. New
3212 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
3213 messages. Use gdb_filename_fnmatch.
3214 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
3215 pattern.
3216 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
3217 * defs.h (gdb_filename_fnmatch): New declaration.
3218 * utils.c: Include fnmatch.h.
3219 (gdb_filename_fnmatch): New function.
3220
3221 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
3222
3223 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
3224 `-probe' and `-probe-stap' options.
3225
3226 2012-07-01 Yao Qi <yao@codesourcery.com>
3227
3228 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
3229 always_inserted_off, and always_inserted_enums.
3230 Change always_inserted_mode's type to 'enum auto_boolean'.
3231 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
3232 callers.
3233 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
3234 of add_setshow_enum_cmd.
3235 * infrun.c: Remove can_use_displaced_stepping_auto,
3236 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
3237 can_use_displaced_stepping_enum.
3238 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
3239 (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
3240 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
3241 add_setshow_enum_cmd.
3242
3243 2012-06-30 Doug Evans <dje@google.com>
3244
3245 * dwarf2read.c (signatured_type): Make "per_cu" member first.
3246 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
3247 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
3248
3249 2012-06-29 Doug Evans <dje@google.com>
3250
3251 * linespec.c: #include "stack.h".
3252 (decode_line_with_current_source): Moved here from symtab.c and
3253 renamed from decode_line_spec. All callers updated.
3254 (decode_line_with_last_displayed): Moved here from breakpoint.c and
3255 renamed from decode_line_spec_1. All callers updated.
3256 * linespec.h (decode_line_with_current_source): Move declaration here
3257 from symtab.h and renamed from decode_line_spec.
3258 (decode_line_with_last_displayed): Move declaration here from symtab.h
3259 and renamed from decode_line_spec_1.
3260 * macrocmd.c: #include "linespec.h".
3261 * symtab.c: Remove #include "linespec.h".
3262
3263 2012-06-28 Doug Evans <dje@google.com>
3264
3265 * dwarf2read.c (get_cu_length): New function.
3266 (offset_in_cu_p, error_check_comp_unit_head): Call it.
3267 (create_debug_types_hash_table): Ditto.
3268 (init_cutu_and_read_dies): Ditto.
3269 (init_cutu_and_read_dies_no_follow): Ditto.
3270
3271 * dwarf2read.c (dwarf2_find_base_address): Move definition.
3272
3273 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
3274 (struct abbrev_table): Define.
3275 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
3276 abbrev_table.
3277 (init_cutu_and_read_dies): Update.
3278 (abbrev_table_alloc_abbrev): New function. Replaces
3279 dwarf_alloc_abbrev. All callers updated.
3280 (abbrev_table_add_abbrev): New function.
3281 (abbrev_table_lookup_abbrev): New function. Replaces
3282 dwarf2_lookup_abbrev. All callers updated.
3283 (abbrev_table_read_table): New function. Contents moved here from
3284 dwarf2_read_abbrevs.
3285 (dwarf2_read_abbrevs): Call it.
3286 (abbrev_table_free): New function.
3287 (dwarf2_free_abbrev_table): Call it.
3288
3289 2012-06-28 Stan Shebs <stan@codesourcery.com>
3290
3291 * osdata.c (info_osdata_command): Filter out "Title" columns
3292 from non-MI uses.
3293 * common/linux-osdata.c (struct osdata_type): Add title field.
3294 (osdata_table): Add titles to each entry.
3295 (linux_command_xfer_osdata): Add a column for title data.
3296
3297 2012-06-28 Stan Shebs <stan@codesourcery.com>
3298
3299 Make logging work for MI.
3300 * NEWS: Mention it.
3301 * interps.h (interp_set_logging_ftype): New typedef.
3302 (struct interp_procs): New field set_logging_proc.
3303 (current_interp_set_logging): Declare.
3304 * interps.c (current_interp_set_logging): New function.
3305 * cli/cli-logging.c: Include interps.h.
3306 (set_logging_redirect): Call current_interp_set_logging.
3307 (pop_output_files): Ditto.
3308 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
3309 * mi/mi-console.h (mi_console_set_raw): Declare.
3310 * mi/mi-console.c (mi_console_set_raw): New function.
3311 * mi/mi-interp.c (saved_raw_stdout): New global.
3312 (mi_set_logging): New function.
3313 (_initialize_mi_interp): Add it to interp procs.
3314
3315 2012-06-28 Doug Evans <dje@google.com>
3316
3317 * symtab.c (lookup_symbol_aux_objfile): Use
3318 ALL_OBJFILE_PRIMARY_SYMTABS.
3319
3320 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
3321
3322 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3323
3324 * common/buffer.c: Include inttypes.h and stdint.h.
3325 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
3326
3327 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3328 Pedro Alves <palves@redhat.com>
3329
3330 * gdbthread.h (ALL_THREADS): New macro.
3331 (thread_list): Declare.
3332 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
3333 going, but instead fall through to the stepping handling.
3334 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
3335 the passed in signal. Adjust debug output.
3336 (resume_callback): Rename to ...
3337 (linux_nat_resume_callback): ... this. Pass the thread's last
3338 stop signal, if in "pass" state.
3339 (linux_nat_resume): Adjust to rename.
3340 (stop_wait_callback): New assertion. Don't respawn signals;
3341 instead let the LWP remain with SIGNALLED set.
3342 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
3343 * remote.c (append_pending_thread_resumptions): New.
3344 (remote_vcont_resume): Call it.
3345 * target.h (target_resume): Extend comment.
3346
3347 2012-06-28 Iain Sandoe <iain@codesourcery.com>
3348
3349 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
3350
3351 2012-06-27 Doug Evans <dje@google.com>
3352
3353 * dwarf2read.c (dwarf2_cu): Add ranges_base.
3354 Delete have_addr_base, unused. All uses updated.
3355 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
3356 (dwarf2_get_pc_bounds): Add ranges_base.
3357 (dwarf2_record_block_ranges): Ditto.
3358
3359 2012-06-27 Tom Tromey <tromey@redhat.com>
3360
3361 PR macros/7961:
3362 * varobj.c (varobj_create): Update.
3363 (varobj_set_value): Update.
3364 * tracepoint.c (validate_actionline): Update.
3365 (encode_actions_1): Update.
3366 * parse.c (parse_exp_1): Add 'pc' argument.
3367 (parse_exp_in_context): Add 'pc' argument. Change how
3368 expression_context_pc is set.
3369 (parse_expression): Update.
3370 (parse_field_expression): Update.
3371 * expression.h (parse_exp_1): Update.
3372 * eval.c (parse_to_comma_and_eval): Update.
3373 * breakpoint.c (set_breakpoint_condition): Update.
3374 (update_watchpoint): Update.
3375 (init_breakpoint_sal): Update
3376 (find_condition_and_thread): Update.
3377 (watch_command_1): Update.
3378 (update_breakpoint_locations): Update.
3379 * ada-lang.c (ada_read_renaming_var_value): Update.
3380 (create_excep_cond_exprs): Update.
3381
3382 2012-06-27 Doug Evans <dje@google.com>
3383
3384 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
3385 type units.
3386
3387 2012-06-26 Doug Evans <dje@google.com>
3388
3389 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
3390 prototype.
3391 (error_check_comp_unit_head): New arg abbrev_section. All callers
3392 updated.
3393 (read_and_check_comp_unit_head): Ditto.
3394 (read_and_check_type_unit_head): Ditto.
3395
3396 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
3397
3398 New attribute 'last' for gdb.Symtab_and_line.
3399 * NEWS (Python Scripting): Add entry about the new attribute.
3400 * python/py-symtab.c (salpy_get_last): New function which
3401 implements the get method for the 'last' attribute of
3402 gdb.Symtab_and_line.
3403 (sal_object_getset): Add entry for the 'last' attribute.
3404
3405 2012-06-26 Doug Evans <dje@google.com>
3406
3407 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
3408 (dwo_sections): Add macinfo, macro.
3409 (dwarf2_locate_dwo_sections): Watch for macro sections.
3410 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
3411 All callers updated. Handle DWO files.
3412
3413 * NEWS: Mention new options "set debug dwarf2-read" and
3414 "set debug symtab-create".
3415 * dwarf2read.c (dwarf2_read_debug): New static global.
3416 (dwarf2_build_psymtabs_hard): Add debugging printfs.
3417 (process_queue): Ditto.
3418 (process_full_comp_unit): Ditto.
3419 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
3420 * elfread.c (elf_symfile_read): Add debugging printf.
3421 * minsyms.c (install_minimal_symbols): Ditto.
3422 * psymtab.c (allocate_psymtab): Ditto.
3423 * symfile.c (allocate_symtab): Ditto.
3424 * symtab.c (symtab_create_debug): New global.
3425 (_initialize_symtab): Add new option "set debug symtab-create".
3426 * symtab.h (symtab_create_debug): Declare.
3427
3428 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
3429 (lookup_dwo_type_unit): Ditto.
3430
3431 2012-06-26 Roland McGrath <roland@hack.frob.com>
3432 H.J. Lu <hongjiu.lu@intel.com>
3433
3434 * amd64-linux-nat.c: Include <sys/user.h>.
3435 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
3436 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
3437 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
3438
3439 * configure.ac: Check if the fs_base and gs_base members of
3440 `struct user_regs_struct' exist.
3441 * config.in: Regenerated.
3442 * configure: Likewise.
3443
3444 2012-06-25 Michael Eager <eager@eagercon.com>
3445
3446 PR python/14291
3447 * python/python.c (gdbpy_write): Check for interrupted output.
3448
3449 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
3450
3451 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
3452 register as a stack alignment in ARM mode.
3453
3454 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3455
3456 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
3457 * gnulib/config.in: Regenerate.
3458 * gnulib/configure: Likewise.
3459 * gnulib/import/m4/extensions.m4: Update it.
3460 * gnulib/import/m4/gnulib-common.m4: Likewise.
3461 * gnulib/import/m4/memmem.m4: Likewise.
3462 * gnulib/import/m4/mmap-anon.m4: Likewise.
3463 * gnulib/import/m4/multiarch.m4: Likewise.
3464 * gnulib/import/stdint.in.h: Likewise.
3465
3466 2012-06-24 Yao Qi <yao@codesourcery.com>
3467
3468 * corefile.c (write_memory_with_notification): New.
3469 * gdbcore.h: Declare write_memory_with_notification.
3470 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
3471 'observer_notify_memory_changed' with 'write_memory_with_notification'.
3472 * valops.c (value_assign): Likewise.
3473 * python/py-inferior.c (infpy_write_memory): Call
3474 'write_memory_with_notification'.
3475
3476 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3477
3478 * cc-with-index.sh: Use also -ex "set auto-load no".
3479
3480 2012-06-23 Doug Evans <dje@google.com>
3481
3482 PR 14125
3483 * NEWS: Document additions to .gdb_index.
3484 * dwarf2read.c: #include "gdb/gdb-index.h".
3485 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
3486 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
3487 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
3488 (dwarf2_read_index): Recognize version 7.
3489 (dw2_do_expand_symtabs_matching): New args want_specific_block,
3490 block_kind, domain): All callers updated.
3491 (dw2_find_symbol_file): Handle new index CU values.
3492 (dw2_expand_symtabs_matching): Match symbol kind if requested.
3493 (add_index_entry): New args is_static, kind. All callers updated.
3494 (offset_type_compare, uniquify_cu_indices): New functions
3495 (symbol_kind): New function.
3496 (write_psymtabs_to_index): Remove duplicate CU values.
3497 (write_psymtabs_to_index): Write .gdb_index version 7.
3498
3499 2012-06-22 Joel Brobecker <brobecker@adacore.com>
3500
3501 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
3502 * configure: Regenerate.
3503
3504 2012-06-20 Yao Qi <yao@codesourcery.com>
3505
3506 * python/py-inferior.c: Update comments of infpy_read_memory
3507 and infpy_write_memory.
3508
3509 2012-06-19 Tom Tromey <tromey@redhat.com>
3510
3511 PR exp/9514:
3512 * parser-defs.h (insert_type, insert_type_address_space): Declare.
3513 (push_type_address_space): Remove.
3514 * parse.c (insert_into_type_stack): New function.
3515 (insert_type): Likewise.
3516 (insert_type_address_space): Rename from push_type_address_space.
3517 Insert tp_space_identifier.
3518 * c-exp.y (ptr_operator): New production.
3519 (abs_decl): Use ptr_operator.
3520 (space_identifier): Call insert_type_address_space.
3521 (ptype): Don't use const_or_volatile_or_space_identifier.
3522 (const_or_volatile_noopt): Call insert_type.
3523 (conversion_type_id, conversion_declarator): New productions.
3524 (operator): Use conversion_type_id.
3525
3526 2012-06-18 Doug Evans <dje@google.com>
3527
3528 * symtab.h (minimal_symbol): New member created_by_gdb.
3529 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
3530 created by gdb.
3531 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
3532 (search_symbols): Call it instead of lookup_symbol.
3533 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
3534
3535 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
3536 Adjust address for DW_OP_GNU_addr_index.
3537 * dwarf2expr.h (dwarf_expr_context): Update comment.
3538 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
3539 all callers updated. Handle TLS vars described with
3540 DW_OP_GNU_const_index.
3541 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
3542 and DW_OP_GNU_const_index.
3543 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
3544
3545 * block.c (find_block_in_blockvector): Make explicit the fact that we
3546 ignore GLOBAL_BLOCK.
3547
3548 2012-06-18 Tom Tromey <tromey@redhat.com>
3549
3550 * c-exp.y (operator): Remove trailing space after "delete" and
3551 "delete[]".
3552
3553 2012-06-18 Mark Kettenis <kettenis@gnu.org>
3554 Jan Kratochvil <jan.kratochvil@redhat.com>
3555
3556 Switch i386 and derived targets to ON_STACK.
3557 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
3558 (amd64_dicos_init_abi): Remove its installment.
3559 * dicos-tdep.c (dicos_init_abi): Remove the
3560 set_gdbarch_call_dummy_location call. Update the comment here.
3561 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
3562 (i386_dicos_init_abi): Remove its installment.
3563 * i386-tdep.c (i386_push_dummy_code): New function.
3564 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
3565 i386_push_dummy_code.
3566
3567 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3568
3569 Remove stale dummy frames.
3570 * breakpoint.c: Include dummy-frame.h.
3571 (longjmp_breakpoint_ops): New variable.
3572 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
3573 bp_longjmp_call_dummy.
3574 (bpstat_what, bptype_string, print_one_breakpoint_location)
3575 (init_bp_location): Support bp_longjmp_call_dummy.
3576 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
3577 (set_longjmp_breakpoint_for_call_dummy)
3578 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
3579 functions.
3580 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
3581 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
3582 FIXME comment and extend the other comment for bp_call_dummy.
3583 (set_longjmp_breakpoint_for_call_dummy)
3584 (check_longjmp_breakpoint_for_call_dummy): New declarations.
3585 * dummy-frame.c: Include gdbthread.h.
3586 (pop_dummy_frame_bpt): New function.
3587 (pop_dummy_frame): Call pop_dummy_frame_bpt.
3588 (dummy_frame_discard): New function.
3589 (cleanup_dummy_frames): Update the comment about longjmps.
3590 * dummy-frame.h (dummy_frame_discard): New declaration.
3591 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
3592 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
3593 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
3594 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
3595 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
3596 keep_going if IS_LONGJMP and there is no other reason to stop.
3597
3598 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
3599
3600 * remote-sim.c (sim_command_completer): Initialize
3601 variable 'result'.
3602
3603 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3604
3605 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
3606 * dwarf2loc.c (call_site_parameter_matches): Support
3607 CALL_SITE_PARAMETER_PARAM_OFFSET.
3608 (needs_dwarf_reg_entry_value): Push stub value.
3609 * dwarf2read.c (read_call_site_scope): New variable origin. Support
3610 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
3611 * gdbtypes.h (enum call_site_parameter_kind): New item
3612 CALL_SITE_PARAMETER_PARAM_OFFSET.
3613 (struct call_site.parameter.u): New field param_offset.
3614
3615 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3616
3617 Code cleanup: Generalize call_site.parameter key.
3618 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
3619 variable dwarf_reg. New variable kind_u. Update parameters to
3620 push_dwarf_reg_entry_value.
3621 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
3622 * dwarf2expr.h (enum call_site_parameter_kind)
3623 (union call_site_parameter_u): Forward declarations.
3624 (struct dwarf_expr_context_funcs): Update parameters and their
3625 description for push_dwarf_reg_entry_value.
3626 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
3627 * dwarf2loc.c (call_site_parameter_matches): New function.
3628 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
3629 description. Use call_site_parameter_matches.
3630 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
3631 Update parameters and their description.
3632 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
3633 New variable kind_u. Adjust the caller for updated parameters.
3634 (needs_dwarf_reg_entry_value): Update parameters.
3635 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
3636 instead of attr. Update for the changed fields of struct
3637 call_site_parameter.
3638 * gdbtypes.h: Include dwarf2expr.h.
3639 (enum call_site_parameter_kind): New.
3640 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
3641 fb_offset into new union u.
3642
3643 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
3644
3645 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
3646 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
3647 for x32.
3648
3649 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
3650
3651 * amd64-linux-nat.c (compat_x32_clock_t): New.
3652 (compat_x32_siginfo_t): Likewise.
3653 (compat_x32_siginfo_from_siginfo): Likewise.
3654 (siginfo_from_compat_x32_siginfo): Likewise.
3655 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
3656 and siginfo_from_compat_x32_siginfo for x32.
3657
3658 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
3659
3660 * tracepoint.c (tfile_xfer_partial): Add a lseek.
3661
3662 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
3663
3664 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
3665 instead of gdbarch_ptr_bit.
3666 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
3667 (amd64_supply_native_gregset): Likewise.
3668 (amd64_collect_native_gregset): Likewise.
3669 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
3670 (amd64_supply_xsave): Likewise.
3671 (amd64_collect_fxsave): Likewise.
3672 (amd64_collect_xsave): Likewise.
3673
3674 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
3675
3676 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
3677 (amd64_linux_read_description): Check DS segment register for
3678 x32 process.
3679
3680 2012-06-15 Tom Tromey <tromey@redhat.com>
3681
3682 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
3683 init_cutu_and_read_dies.
3684
3685 2012-06-15 Iain Sandoe <iain@codesourcery.com>
3686
3687 * MAINTAINERS (Write After Approval): Add myself to the list.
3688
3689 2012-06-15 Tom Tromey <tromey@redhat.com>
3690
3691 * valops.c (value_find_oload_method_list): Now static.
3692 * value.h (value_find_oload_method_list): Don't declare.
3693
3694 2012-06-15 Tom Tromey <tromey@redhat.com>
3695
3696 * valops.c (find_overload_match): Use value_ind.
3697
3698 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
3699
3700 * infrun.c (handle_inferior_event): Correct indentation.
3701
3702 2012-06-14 Doug Evans <dje@google.com>
3703
3704 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
3705 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
3706 All uses updated.
3707 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
3708 updated. Handle DEBUG_LOC_START_LENGTH.
3709 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
3710 (loclist_describe_location): Ditto.
3711
3712 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
3713
3714 PR backtrace/13866
3715 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
3716 after hiding inline functions.
3717
3718 2012-06-13 Joel Brobecker <brobecker@adacore.com>
3719
3720 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
3721 _initialize_inf_ttrace.
3722
3723 2012-06-13 Joel Brobecker <brobecker@adacore.com>
3724
3725 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
3726 _initialize_hppa_hpux_nat.
3727
3728 2012-06-13 Joel Brobecker <brobecker@adacore.com>
3729
3730 * remote-sim.c (sim_command_completer): Change type of return
3731 value to "VEC (char_ptr) *". Adjust implementation accordingly.
3732
3733 2012-06-13 Mark Kettenis <kettenis@gnu.org>
3734 Jan Kratochvil <jan.kratochvil@redhat.com>
3735
3736 PR tdep/14222
3737 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
3738 stack on a 16-byte boundary.
3739
3740 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
3741
3742 * jit.c (finalize_symtab): Set function's return type to 'void' by
3743 default.
3744
3745 2012-06-13 Mark Kettenis <kettenis@gnu.org>
3746 H.J. Lu <hongjiu.lu@intel.com>
3747
3748 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
3749 Move bits common to both the classic LP64 and the new x32 ILP32
3750 ABI here.
3751 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
3752 (amd64_x32_linux_init_abi): New function.
3753 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
3754 subtype.
3755
3756 * i386-tdep.h (i386_pseudo_register_name): New prototype.
3757 * i386-tdep.c (i386_pseudo_register_name): Make public.
3758 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
3759 * amd64-tdep.c (amd64_dword_names): Add "eip".
3760 (amd64_x32_pseudo_register_type): New function
3761 (amd64_x32_init_abi): New function.
3762
3763 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3764
3765 PR build/14003
3766 * inferior.h (struct inferior_suspend_state): Comment out.
3767 (struct inferior): Comment out the field suspend.
3768 * infrun.c (struct infcall_suspend_state): Comment out the field
3769 inferior_suspend.
3770 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
3771 out its assignment.
3772
3773 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3774
3775 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
3776 * c-exp.y (classify_inner_name): Remove caller assumptions in the
3777 function comment. Return ERROR for unresolved cases. Implement
3778 returning proper NAME.
3779 (yylex): Accept also NAME from classify_inner_name.
3780 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
3781 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
3782 LOC_TYPEDEF type.
3783 * cp-support.h (cp_lookup_nested_type): Update its declaration.
3784
3785 2012-06-13 Tom Tromey <tromey@redhat.com>
3786
3787 * breakpoint.c (condition_completer): New function.
3788 (_initialize_breakpoint): Use it.
3789 * value.c (complete_internalvar): New function.
3790 * value.h (complete_internalvar): Declare.
3791
3792 2012-06-13 Tom Tromey <tromey@redhat.com>
3793
3794 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
3795 * breakpoint.c (catch_syscall_completer): Return a VEC.
3796 * cli/cli-cmds.c (complete_command): Update.
3797 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
3798 (complete_on_enum): Likewise.
3799 * command.h: Include gdb_vecs.h.
3800 (completer_ftype): Change return type.
3801 (complete_on_cmdlist, complete_on_enum): Likewise.
3802 * completer.c (noop_completer, filename_completer)
3803 (location_completer): Return a VEC.
3804 (add_struct_fields): Remove 'nextp' argument. Change 'output'
3805 to a VEC.
3806 (expression_completer, complete_line_internal, complete_line)
3807 (command_completer): Return a VEC.
3808 (gdb_completion_word_break_characters, line_completion_function):
3809 Update.
3810 * completer.h: Include gdb_vecs.h.
3811 (complete_line, noop_completer, filename_completer)
3812 (expression_completer, location_completer, command_completer):
3813 Update.
3814 * f-lang.c (f_word_break_characters): Return a VEC.
3815 * interps.c (interpreter_completer): Return a VEC.
3816 * language.h (struct language_defn)
3817 <la_make_symbol_completion_list>: Return a VEC.
3818 * python/py-cmd.c (cmdpy_completer): Return a VEC.
3819 * symtab.c (free_completion_list): Take a VEC.
3820 (return_val_size, return_val_index): Remove.
3821 (return_val): Now a VEC.
3822 (completion_list_add_name): Update.
3823 (default_make_symbol_completion_list_break_on)
3824 (default_make_symbol_completion_list, make_symbol_completion_list)
3825 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
3826 Return a VEC.
3827 (add_filename_to_list): Update.
3828 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
3829 <list>: Now a VEC.
3830 (maybe_add_partial_symtab_filename): Update.
3831 (make_source_files_completion_list): Return a VEC.
3832 * symtab.h (default_make_symbol_completion_list_break_on)
3833 (default_make_symbol_completion_list, make_symbol_completion_list)
3834 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
3835 (make_source_files_completion_list): Update.
3836
3837 2012-06-13 Tom Tromey <tromey@redhat.com>
3838
3839 * breakpoint.c (add_catch_command): Use completer_ftype.
3840 * breakpoint.h: Include command.h.
3841 (add_catch_command): Use completer_ftype.
3842 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
3843 * cli/cli-decode.h (struct cmd_list_element) <completer>:
3844 Use completer_ftype.
3845 * command.h (completer_ftype): New typedef.
3846 (set_cmd_completer): Use it.
3847 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
3848 completer_ftype.
3849
3850 2012-06-13 Pedro Alves <palves@redhat.com>
3851
3852 Partial revert of previous change.
3853
3854 * serial.c (scb_base): New global.
3855 (serial_for_fd): New.
3856 (serial_open, serial_fdopen_ops): Link new serial in open serials
3857 chain.
3858 (do_serial_close): Unlink serial from the open serials chain.
3859
3860 2012-06-12 Pedro Alves <palves@redhat.com>
3861
3862 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
3863 threads here.
3864 (prepare_for_detach): No longer context switch here in non-stop
3865 mode.
3866 (fetch_inferior_event): Ditto.
3867 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
3868 to the event thread before removing breakpoints. Switch to the
3869 event thread before inserting breakpoints and resuming.
3870 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
3871 event thread before resuming.
3872 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
3873 Switch to the event thread before removing breakpoints.
3874
3875 2012-06-12 Eli Zaretskii <eliz@gnu.org>
3876
3877 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
3878 special characters correctly for the Windows shells. See
3879 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
3880 report.
3881 [!__MINGW32__]: Remove extra double quote character from special
3882 characters.
3883
3884 2012-06-11 Stan Shebs <stan@codesourcery.com>
3885
3886 * ui-out.h: Remove #if 0 declarations.
3887 * ui-out.c: Remove #if 0 functions.
3888
3889 2012-06-11 Pedro Alves <palves@redhat.com>
3890
3891 * ser-base.c (run_async_handler_and_reschedule): New.
3892 (fd_event, push_event): Use it.
3893 * serial.c (serial_open, serial_fdopen_ops): Set the initial
3894 reference count to 1.
3895 (do_serial_close): Set the bufp field to NULL. Use serial_unref
3896 instead of xfree.
3897 (serial_is_open, serial_ref, serial_unref): New.
3898 * serial.h (serial_open): Adjust comment.
3899 (serial_is_open): Declare.
3900 (serial_close): Adjust comment.
3901 (serial_ref, serial_unref) Declare.
3902 (struct serial): New field 'refcnt'.
3903
3904 2012-06-11 Pedro Alves <palves@redhat.com>
3905
3906 Remove #if 0'd "connect" command, and unnecessary associated
3907 refcounting and serial reuse bits.
3908
3909 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
3910 * serial.c (last_serial_opened): Delete.
3911 (scb_base): Delete.
3912 (serial_open): Adjust.
3913 (serial_for_fd): Delete.
3914 (serial_fdopen_ops, do_serial_close): Adjust.
3915 (serial_fdopen_ops): Adjust.
3916
3917 2012-06-11 Pedro Alves <palves@redhat.com>
3918
3919 * serial.c (do_serial_close): Remove early return when SCB is
3920 null.
3921
3922 2012-06-11 Tom Tromey <tromey@redhat.com>
3923
3924 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
3925
3926 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3927
3928 Fix regression by the "ambiguous linespec" series.
3929 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
3930 get_last_displayed_symtab and get_last_displayed_line and depending
3931 on CURSAL.
3932
3933 2012-06-11 Tom Tromey <tromey@redhat.com>
3934
3935 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
3936 (dw2_find_symbol_file): Use it.
3937
3938 2012-06-11 Michael Eager <eager@eagercon.com>
3939
3940 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
3941 * mips-linux-tdep.h (mips_signals): New
3942
3943 2012-06-11 Tom Tromey <tromey@redhat.com>
3944
3945 * infrun.c (handle_inferior_event)
3946 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
3947 breakpoint.
3948 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
3949 exception logic in all cases. Update comments.
3950 (insert_longjmp_resume_breakpoint): Set the exception resume
3951 breakpoint.
3952
3953 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
3954
3955 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
3956
3957 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
3958
3959 * valarith.c (binop_types_user_defined_p): Fix a typo.
3960
3961 2012-06-08 Yao Qi <yao@codesourcery.com>
3962 Chung-Lin Tang <cltang@codesourcery.com>
3963
3964 * arch-utils.c (default_return_in_first_hidden_param_p): New.
3965 * arch-utils.h: Declare.
3966 * gdbarch.sh: Add return_in_first_hidden_param_p.
3967 * gdbarch.c, gdbarch.h: Regenerated.
3968 * infcall.c (call_function_by_hand): Call
3969 gdbarch_return_in_first_hidden_param_p instead of
3970 language_pass_by_reference.
3971
3972 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
3973 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
3974 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
3975 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
3976 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
3977 `cplus_return_struct_by_reference'.
3978 (tic6x_return_value): Handle language cplusplus.
3979 (tic6x_return_in_first_hidden_param_p): New.
3980 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
3981
3982 2012-06-07 Doug Evans <dje@google.com>
3983
3984 * dwarf2read.c (dwarf2_cu): Add comment.
3985
3986 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
3987
3988 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
3989 variable.
3990 (mips_eabi_push_dummy_call): Likewise.
3991 (mips_n32n64_push_dummy_call): Likewise.
3992 (mips_o32_push_dummy_call): Likewise.
3993 (mips_o64_push_dummy_call): Likewise.
3994
3995 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
3996
3997 * mips-tdep.c (mips_convert_register_p): Correct coding style.
3998
3999 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
4000
4001 * mips-tdep.c (mips_pseudo_register_type): Use
4002 mips_float_register_p.
4003
4004 2012-06-06 Pedro Alves <palves@redhat.com>
4005
4006 * infrun.c (handle_inferior_event): Remove calls to
4007 reinit_frame_cache that follow a context_switch call.
4008
4009 2012-06-06 Pedro Alves <palves@redhat.com>
4010
4011 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
4012 context_switch and remove stale comment.
4013
4014 2012-06-06 Pedro Alves <palves@redhat.com>
4015
4016 * infrun.c (struct execution_control_state): Remove
4017 `new_thread_event' field.
4018 (handle_inferior_event): Simplify new threads handling; don't
4019 resume the inferior if we find a new thread.
4020
4021 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
4022
4023 * NEWS: Document the deprecation of SH's 'regs' command.
4024 * inferior.h (all_registers_info): Add function declaration.
4025 * sh-tdep.c (sh_show_regs): Remove variable.
4026 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
4027 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
4028 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
4029 (sh_show_regs_command): Remove functions.
4030 (sh_gdbarch_init): Don't set sh_show_regs.
4031 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
4032 'info all-registers'.
4033 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
4034 (sh64_show_regs): Remove functions.
4035 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
4036
4037 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4038
4039 * configure.ac: Move development=true below AC_INIT.
4040 * configure: Regenerate.
4041
4042 2012-06-05 Stan Shebs <stan@codesourcery.com>
4043
4044 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
4045 gdb_stdout.
4046
4047 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
4048
4049 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
4050 argument as ssize_t.
4051 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
4052 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
4053 * target.c (target_read_stack, target_write_memory)
4054 (target_write_raw_memory): Likewise.
4055 * target.h (target_read_stack, target_write_memory)
4056 (target_write_raw_memory): Likewise.
4057
4058 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4059
4060 * symfile-mem.c: Change gdb_static_assert to ssize_t.
4061 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
4062 * target.c (target_read_memory): Change LEN to ssize_t.
4063 * target.h (target_read_memory): Change LEN to ssize_t.
4064
4065 2012-06-05 Pedro Alves <palves@redhat.com>
4066
4067 PR backtrace/13866
4068
4069 * breakpoint.c (until_break_command): Only fetch the selected
4070 frame after decode_line_1.
4071
4072 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
4073
4074 * solib-svr4.c (enable_break): Don't fallback to setting the solib
4075 event breakpoint at _start, __start or main if a program
4076 interpreter is not found.
4077
4078 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4079
4080 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
4081 Add declaration.
4082 * windows-tdep.c: #include "objfiles.h".
4083 (windows_iterate_over_objfiles_in_search_order): New function.
4084 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
4085 iterate_over_objfiles_in_search_order gdbarch method to
4086 windows_iterate_over_objfiles_in_search_order.
4087 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
4088
4089 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4090
4091 * gdbarch.sh: Add generation of
4092 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
4093 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
4094 (iterate_over_objfiles_in_search_order): New gdbarch method.
4095 * gdbarch.h, gdbarch.c: Regenerate.
4096 * objfiles.h (default_iterate_over_objfiles_in_search_order):
4097 Add declaration.
4098 * objfiles.c (default_iterate_over_objfiles_in_search_order):
4099 New function.
4100 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4101 out of lookup_symbol_aux_symtabs.
4102 (lookup_symbol_aux_symtabs): Replace extracted-out code by
4103 call to lookup_symbol_aux_objfile.
4104 (struct global_sym_lookup_data): New type.
4105 (lookup_symbol_global_iterator_cb): New function.
4106 (lookup_symbol_global): Search for symbol using
4107 gdbarch_iterate_over_objfiles_in_search_order and
4108 lookup_symbol_global_iterator_cb.
4109 * findvar.c (struct minsym_lookup_data): New type.
4110 (minsym_lookup_iterator_cb): New function.
4111 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
4112 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
4113 and minsym_lookup_iterator_cb.
4114
4115 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4116
4117 Revert the following patch:
4118 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
4119 try locating the symbol in the symbol's own objfile first, before
4120 extending the search to all objfiles.
4121 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4122 out of lookup_symbol_aux_symtabs.
4123 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
4124 Replace extracted-out code by call to lookup_symbol_aux_objfile.
4125 Do not search EXCLUDE_OBJFILE.
4126 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
4127 (lookup_symbol_global): Search for matches in the block's objfile
4128 first, before searching all other objfiles.
4129
4130 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4131
4132 * breakpoint.c (find_condition_and_thread): Stop parsing
4133 as soon as the first invalid keyword is found.
4134
4135 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4136
4137 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
4138
4139 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4140
4141 * config/djgpp/djcheck.sh: Add copyright header.
4142
4143 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4144
4145 * copyright.py (update_files, main): Fix path to update-copyright
4146 script.
4147
4148 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4149
4150 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
4151 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
4152 for which a reminder to update by hand is printed.
4153
4154 2012-06-04 Doug Evans <dje@google.com>
4155
4156 * buildsym.c (make_blockvector): Add comment.
4157
4158 2012-06-04 Pedro Alves <palves@redhat.com>
4159
4160 * arch-utils.c (default_gdb_signal_from_target): Delete.
4161 * arch-utils.h (default_gdb_signal_from_target): Delete.
4162 * corelow.c (core_open) <signal mapping>: Extended comment. Check
4163 gdbarch_gdb_signal_from_target_p.
4164 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
4165 predicate).
4166 * gdbarch.h: Regenerate.
4167 * gdbarch.c: Regenerate.
4168
4169 2012-06-04 Pedro Alves <palves@redhat.com>
4170
4171 * gdbarch.sh (gdb_signal_from_target): Mention that the
4172 implementation of the method must be host independent.
4173 * gdbarch.h: Regenerate.
4174
4175 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4176
4177 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
4178 parameters.
4179 (target_read_memory_bfd): New function.
4180 (symbol_file_add_from_memory): Use it.
4181
4182 2012-06-03 Doug Evans <dje@google.com>
4183
4184 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
4185 of primary symtab.
4186 (basic_lookup_transparent_type): Ditto.
4187
4188 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
4189 (ALL_PRIMARY_SYMTABS): Use it.
4190 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
4191 * dwarf2read.c (dw2_find_symbol_file): Ditto.
4192 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
4193 * symtab.c (lookup_symbol_aux_objfile): Ditto.
4194 (basic_lookup_transparent_type): Ditto.
4195
4196 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
4197
4198 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
4199 it to optimize resolution of demangled name.
4200
4201 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4202
4203 * configure.ac (development): Define new variable.
4204 Call AC_CHECK_LIB for mcheck if $development.
4205 (ERROR_ON_WARNING): Enable it by default only if $development.
4206 * config.in: Regenerate.
4207 * configure: Regenerate.
4208
4209 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
4210
4211 * target.c (target_read_memory): Make LEN argument as size_t.
4212 * target.h (target_read_memory): Likewise.
4213
4214 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4215
4216 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
4217
4218 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
4219
4220 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
4221 BookE interface for PowerPC server processors if not available
4222 in the Linux Kernel.
4223
4224 2012-05-31 Keith Seitz <keiths@redhat.com>
4225
4226 * linespec.c (decode_objc): Add cleanup to free
4227 INFO.FILE_SYMTABS.
4228 (find_linespec_symbols): Add cleanup to free CLASSES.
4229 * symfile.c (find_separate_debug_file_by_debuglink): Add
4230 cleanup to free DEBUGLINK.
4231 * ui-out.c (clear_header_list): No need to check if
4232 HEADER_NEXT.COLHDR is NULL.
4233 Free HEADER_NEXT.COL_NAME.
4234
4235 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4236
4237 * ada-lang.c (standard_lookup): Prevent uninitialized variable
4238 warning.
4239
4240 2012-05-30 Jeff Kenton <jkenton@tilera.com>
4241
4242 * configure.host (gdb_host_cpu): Handle tilegx*.
4243 (gdb_host): Handle tilegx-*-linux*.
4244 * tilegx-linux-nat.c: New file.
4245 * config/tilegx/linux.mh: New file.
4246
4247 2012-05-30 Jeff Kenton <jkenton@tilera.com>
4248
4249 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
4250 tilegx-linux-tdep.o.
4251 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
4252 tilegx-linux-tdep.c.
4253 * configure.tgt: Handle tilegx-*-linux*.
4254 * tilegx-tdep.h: New file.
4255 * tilegx-tdep.c: New file.
4256 * tilegx-linux-tdep.c: New file.
4257 * regformats/reg-tilegx.dat: New file.
4258
4259 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
4260
4261 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
4262 accounting of hw watchpoints on ppc.
4263
4264 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
4265
4266 * source.c (openp): Expand tilde in path entries.
4267
4268 2012-05-29 Doug Evans <dje@google.com>
4269
4270 * buildsym.c (block_compar): Fix comment.
4271 (end_symtab): Fix and clarify some comments.
4272
4273 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
4274 cleanup_undefined_types.
4275 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
4276 All callers updated.
4277
4278 2012-05-29 Tom Tromey <tromey@redhat.com>
4279
4280 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
4281 fails.
4282 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
4283 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
4284 fails.
4285 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
4286 fails.
4287
4288 2012-05-29 Tristan Gingold <gingold@adacore.com>
4289
4290 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
4291 (struct darwin_info): ... New struct.
4292 (solib_darwin_pspace_data): New variable.
4293 (darwin_pspace_data_cleanup): New function.
4294 (get_darwin_info): Likewise.
4295 (darwin_dyld_version_ok, darwin_load_image_infos)
4296 (darwin_solib_get_all_image_info_addr_at_init)
4297 (darwin_solib_read_all_image_info_addr): Add info argument.
4298 Adjust code.
4299 (darwin_current_sos): Use per pspace structure.
4300 (darwin_solib_create_inferior_hook): Likewise.
4301 (darwin_clear_solib): Likewise.
4302 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
4303
4304 2012-05-28 Pedro Alves <palves@redhat.com>
4305
4306 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
4307 block that uses them. Clear ecss before handling each event.
4308
4309 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4310
4311 * solib-svr4.c (svr4_current_sos): New comment on
4312 svr4_current_sos_via_xfer_libraries fall back.
4313
4314 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4315
4316 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
4317 it as a fallback for TYPE_IS_OPAQUE.
4318 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
4319 symbols for lookup_symbol.
4320
4321 2012-05-24 John Steele Scott <toojays@toojays.net>
4322
4323 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
4324 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
4325 (producer_is_gxx_lt_4_6): Move the checking and caching to...
4326 (check_producer): ... this new function, which also checks for ICC
4327 and caches the result.
4328 (producer_is_icc): New function.
4329 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
4330 producer was ICC.
4331
4332 2012-05-24 Pedro Alves <palves@redhat.com>
4333
4334 PR gdb/7205
4335
4336 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
4337 (default_gdb_signal_to_target): ... this. Add comment.
4338 (default_gdb_signal_from_host): Rename to ...
4339 (default_gdb_signal_from_target): ... this. Add comment.
4340 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
4341 (default_gdb_signal_to_target): ... this.
4342 (default_gdb_signal_from_host): Rename to ...
4343 (default_gdb_signal_from_target): ... this.
4344 * corelow.c (core_open): Adjust to naming change. Replace comment.
4345 * gdbarch.sh (gdb_signal_from_host): Rename to ...
4346 (gdb_signal_from_target): ... this. Adjust to
4347 default_gdb_signal_from_host naming change. Extend comment.
4348 (gdb_signal_to_host): Rename to ...
4349 (gdb_signal_to_target): ... this. Adjust to
4350 default_gdb_signal_to_host naming change.
4351 * gdbarch.h, gdbarch.c: Renegerate.
4352
4353 2012-05-24 Pedro Alves <palves@redhat.com>
4354
4355 PR gdb/7205
4356
4357 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
4358
4359 2012-05-24 Pedro Alves <palves@redhat.com>
4360
4361 PR gdb/7205
4362
4363 Replace target_signal with gdb_signal throughout.
4364
4365 2012-05-24 Pedro Alves <palves@redhat.com>
4366
4367 PR tui/14159
4368
4369 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
4370 string, instead of reusing the va_list argument.
4371
4372 2012-05-24 Tom Tromey <tromey@redhat.com>
4373
4374 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
4375 Remove.
4376
4377 2012-05-23 Doug Evans <dje@google.com>
4378
4379 * symtab.c (search_symbols): Formatting fixes.
4380 (print_symbol_info): Formatting fixes.
4381
4382 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
4383 int64_t change to leb128 API.
4384 (read_encoded_value, decode_frame_entry_1): Ditto.
4385 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
4386 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
4387 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
4388 (execute_stack_op): Ditto.
4389 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
4390 (safe_read_uleb128, safe_read_sleb128): Ditto.
4391 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
4392 (dwarf2_compile_expr_to_ax): Ditto.
4393 (locexpr_describe_location_piece): Ditto.
4394 (disassemble_dwarf_expression): Ditto.
4395 (locexpr_describe_location_1): Ditto.
4396
4397 2012-05-23 Stan Shebs <stan@codesourcery.com>
4398 Kwok Cheung Yeung <kcy@codesourcery.com>
4399
4400 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
4401 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
4402 (mi-cmd-info.o): New rule.
4403 * osdata.h (info_osdata_command): New declaration.
4404 * osdata.c (info_osdata_command): Change to non-static.
4405 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
4406 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
4407 * mi/mi-cmd-info.c: New file.
4408
4409 2012-05-23 Doug Evans <dje@google.com>
4410
4411 * symtab.c (search_symbols): Pass NULL for file_matcher to
4412 expand_symtabs_matching if there are no files to match.
4413
4414 * gdbtypes.c (lookup_typename): Simplify.
4415
4416 2012-05-23 Pedro Alves <palves@redhat.com>
4417
4418 * arch-utils.h (default_target_signal_to_host): Delete.
4419 * arch-utils.c (default_target_signal_to_host): Delete.
4420 * gdbarch.sh (target_signal_to_host): Remove.
4421 * gdbarch.h, gdbarch.c: Regenerate.
4422
4423 2012-05-22 Doug Evans <dje@google.com>
4424
4425 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
4426 "const gdb_byte *".
4427 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
4428 (execute_cfa_program): Update to match API of leb128 functions.
4429 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
4430 "const gdb_byte *".
4431 (read_unsigned_leb128, read_signed_leb128): Delete.
4432 (read_initial_length): Change type of buf argument to
4433 "const gdb_byte *".
4434 (read_encoded_value): Update to match API of leb128 functions.
4435 (decode_frame_entry): Change result to "const gdb_byte *", and
4436 similarly for "start" parameter.
4437 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
4438 (dwarf2_build_frame_info): Change local frame_ptr to
4439 "const gdb_byte *".
4440 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
4441 read_uleb128, read_sleb128. All callers updated.
4442 (safe_skip_leb128): New function.
4443 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
4444 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
4445 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
4446 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
4447 read_uleb128, read_sleb128.
4448 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
4449 (execute_stack_op): Update to match API of leb128 functions.
4450 * dwarf2expr.h: #include "leb128.h".
4451 (read_uleb128, read_sleb128): Delete.
4452 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
4453 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
4454 * dwarf2loc.c (debug_loc_kind): New enum.
4455 (decode_debug_loc_addresses): New function.
4456 (decode_debug_loc_dwo_addresses): New function.
4457 (dwarf2_find_location_expression): Rewrite.
4458 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
4459 (locexpr_describe_location_piece): Ditto.
4460 (disassemble_dwarf_expression): Ditto.
4461 (locexpr_describe_location_1): Ditto.
4462 (loclist_describe_location): Rewrite.
4463 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
4464 * dwarf2read.c (die_reader_specs): New member "buffer_end".
4465 (dwarf2_section_buffer_overflow_complaint): Renamed from
4466 dwarf2_macros_too_long_complaint. All callers updated.
4467 (skip_leb128): Delete.
4468 (init_cu_die_reader): Initialize reader->buffer_end.
4469 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
4470 (skip_form_bytes): New arg buffer_end. All callers updated.
4471 Replace call to skip_leb128 with gdb_skip_leb128.
4472 (skip_unknown_opcode): New arg mac_end. All callers updated.
4473 (fill_in_loclist_baton): Initialize baton->from_dwo.
4474
4475 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
4476
4477 * mips-linux-nat.c (mips_linux_read_description): Use a more
4478 verbose error message.
4479
4480 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
4481
4482 * NEWS: Add MIPS/Linux DSP support.
4483 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
4484 (SIGCONTEXT_DSPCTL): New macro.
4485 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
4486 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
4487 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
4488 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
4489 (N64_SIGCONTEXT_HI3): Likewise.
4490 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
4491 (N64_SIGCONTEXT_LO3): Likewise.
4492 (N64_SIGCONTEXT_DSPCTL): Likewise.
4493 (N64_SIGCONTEXT_FPCSR): Clarify definition.
4494 (mips_linux_o32_sigframe_init): Handle DSP registers.
4495 (mips_linux_n32n64_sigframe_init): Likewise.
4496
4497 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
4498
4499 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
4500 call to abort.
4501
4502 2012-05-22 Pedro Alves <palves@redhat.com>
4503
4504 * target.h (store_waitstatus): Move declaration ...
4505 * inf-child.h (store_waitstatus): ... here.
4506 * target.c: Move inclusion of gdb_wait.h, and ...
4507 (store_waitstatus): ... this ...
4508 * inf-child.c: ... here.
4509 * linux-nat.c: Include inf-child.h.
4510 * rs6000-nat.c: Include inf-child.h.
4511 * spu-linux-nat.c: Include inf-child.h.
4512
4513 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
4514
4515 * tracepoint.c (start_tracing): Add missing i18n markup.
4516 (stop_tracing, set_trace_user): Ditto.
4517 (set_trace_notes, set_trace_stop_notes): Ditto.
4518
4519 2012-05-21 Tom Tromey <tromey@redhat.com>
4520
4521 PR c++/7173:
4522 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
4523 types.
4524 * value.h (value_cast_pointers): Update.
4525 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
4526 (value_cast): Update.
4527 (update_search_result): New function.
4528 (do_search_struct_field): New, from search_struct_field. Check
4529 for ambiguous results.
4530 (search_struct_field): Rewrite.
4531 * infcall.c (value_arg_coerce): Update.
4532 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
4533 value_cast_pointers.
4534 * ada-lang.c (ada_convert_actual): Update.
4535
4536 2012-05-21 Tom Tromey <tromey@redhat.com>
4537
4538 * macroexp.c (macro_stringify): Terminate the string.
4539
4540 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4541
4542 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
4543 Describe it.
4544 * auto-load.c (auto_load_expand_dir_vars): New function.
4545 (auto_load_safe_path_vec_update): Use it, remove the
4546 substitute_path_component call thanks to it.
4547 (auto_load_objfile_script): Remove the debug_file_directory processing.
4548 Use auto_load_expand_dir_vars, remove the substitute_path_component
4549 call thanks to it.
4550 * configure: Regenerate.
4551 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
4552 path. Escape $ also for $debugdir.
4553 (--with_auto_load_safe_path): Escape $ also for $debugdir.
4554 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
4555
4556 2012-05-20 Doug Evans <dje@google.com>
4557
4558 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
4559 before use. Check for symtab->includes == NULL before scanning it.
4560
4561 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4562
4563 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
4564
4565 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4566
4567 * NEWS: Add microMIPS support and "set mips compression",
4568 "show mips compression" commands.
4569 * mips-tdep.h (mips_isa): New enum.
4570 (gdbarch_tdep): Add mips_isa.
4571 (mips_pc_is_mips16): Update prototype.
4572 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
4573 * mips-tdep.c (mips_compression_mips16): New variable.
4574 (mips_compression_micromips): Likewise.
4575 (mips_compression_strings): Likewise.
4576 (mips_compression_string): Likewise.
4577 (is_mips16_isa, is_micromips_isa): New functions.
4578 (is_mips16_addr): Rename to...
4579 (is_compact_addr): ... this.
4580 (unmake_mips16_addr): Likewise to...
4581 (unmake_compact_addr): ... this.
4582 (make_mips16_addr): Likewise to...
4583 (make_compact_addr): ... this.
4584 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
4585 functions.
4586 (mips_elf_make_msymbol_special): Handle microMIPS code.
4587 (msymbol_is_special): Rename to...
4588 (msymbol_is_mips16): ... this.
4589 (mips_make_symbol_special, mips_pc_is_mips16): Update
4590 accordingly.
4591 (msymbol_is_mips, msymbol_is_micromips): New functions.
4592 (mips16_to_32_reg): Rename to...
4593 (mips_reg3_to_reg): ... this.
4594 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
4595 (mips_pc_isa): Likewise.
4596 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
4597 code.
4598 (mips_fetch_instruction): Pass return status instead of printing
4599 an error message if requested. Handle microMIPS code. Bail out
4600 on an invalid ISA.
4601 (micromips_op): New macro.
4602 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
4603 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
4604 (b6s4_op, b7s3_reg): Likewise.
4605 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
4606 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
4607 (mips_insn_size): New function.
4608 (mips32_next_pc): Update mips_fetch_instruction call.
4609 (micromips_relative_offset7): New function.
4610 (micromips_relative_offset10): Likewise.
4611 (micromips_relative_offset16): Likewise.
4612 (micromips_pc_insn_size): Likewise.
4613 (micromips_bc1_pc): Likewise.
4614 (micromips_next_pc): Likewise.
4615 (unpack_mips16): Update mips_fetch_instruction call.
4616 (extended_mips16_next_pc): Update according to change to
4617 mips16_to_32_reg.
4618 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
4619 code.
4620 (mips16_scan_prologue): Update mips_fetch_instruction call.
4621 Update according to change to mips16_to_32_reg.
4622 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
4623 (mips_insn16_frame_base_sniffer): Likewise.
4624 (micromips_decode_imm9): New function.
4625 (micromips_scan_prologue): Likewise.
4626 (mips_micro_frame_cache): Likewise.
4627 (mips_micro_frame_this_id): Likewise.
4628 (mips_micro_frame_prev_register): Likewise.
4629 (mips_micro_frame_sniffer): Likewise.
4630 (mips_micro_frame_unwind): New variable.
4631 (mips_micro_frame_base_address): New function.
4632 (mips_micro_frame_base): New variable.
4633 (mips_micro_frame_base_sniffer): New function.
4634 (mips32_scan_prologue): Update mips_fetch_instruction call.
4635 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
4636 rather than for MIPS16.
4637 (mips_insn32_frame_base_sniffer): Likewise.
4638 (mips_addr_bits_remove): Handle microMIPS code.
4639 (deal_with_atomic_sequence): Rename to...
4640 (mips_deal_with_atomic_sequence): ... this. Update the type
4641 of the variable used to hold an instruction. Remove the ISA bit
4642 check. Update mips_fetch_instruction call.
4643 (micromips_deal_with_atomic_sequence): New function.
4644 (deal_with_atomic_sequence): Likewise.
4645 (mips_about_to_return): Handle microMIPS code. Update
4646 mips_fetch_instruction call.
4647 (heuristic_proc_start): Check for the standard MIPS ISA rather
4648 than for MIPS16. Update mips_pc_is_mips16 and
4649 mips_fetch_instruction calls. Handle microMIPS code.
4650 (mips_push_dummy_code): Handle microMIPS code.
4651 (mips_eabi_push_dummy_call): Likewise.
4652 (mips_o32_return_value): Update mips_pc_is_mips16 call.
4653 (mips_o64_push_dummy_call): Handle microMIPS code.
4654 (mips_o64_return_value): Update mips_pc_is_mips16 call.
4655 (is_delayed): Remove function.
4656 (mips_single_step_through_delay): Replace the call to is_delayed
4657 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
4658 Handle microMIPS code.
4659 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
4660 microMIPS code.
4661 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
4662 call.
4663 (micromips_in_function_epilogue_p): New function.
4664 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
4665 call.
4666 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
4667 Handle microMIPS.
4668 (gdb_print_insn_mips): Likewise.
4669 (mips_breakpoint_from_pc): Likewise.
4670 (mips_remote_breakpoint_from_pc): New function.
4671 (mips32_instruction_has_delay_slot): Simplify making use of the
4672 updated mips_fetch_instruction interface.
4673 (micromips_instruction_has_delay_slot): New function.
4674 (mips16_instruction_has_delay_slot): Simplify making use of the
4675 updated mips_fetch_instruction interface.
4676 (mips_adjust_breakpoint_address): Check for the standard MIPS
4677 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
4678 calls. Handle microMIPS code.
4679 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
4680 (mips_skip_trampoline_code): Handle microMIPS code.
4681 (global_mips_compression): New function.
4682 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
4683 file flags. Register the microMIPS remote breakpoint handler
4684 and heuristic frame unwinder.
4685 (show_mips_compression): New function.
4686 (_initialize_mips_tdep): Add the "set mips compression" and
4687 "show mips compression" commands.
4688
4689 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
4690
4691 * ada-lang.c:
4692 * ada-tasks.c:
4693 * ada-varobj.c:
4694 * amd64-darwin-tdep.c:
4695 * arm-symbian-tdep.c:
4696 * arm-tdep.c:
4697 * avr-tdep.c:
4698 * ax-gdb.c:
4699 * bfin-linux-tdep.c:
4700 * breakpoint.c:
4701 * c-valprint.c:
4702 * cli/cli-cmds.c:
4703 * coffread.c:
4704 * cp-support.c:
4705 * cris-tdep.c:
4706 * dwarf2-frame-tailcall.c:
4707 * dwarf2-frame.c:
4708 * dwarf2expr.c:
4709 * dwarf2loc.c:
4710 * dwarf2read.c:
4711 * elfread.c:
4712 * eval.c:
4713 * expprint.c:
4714 * f-valprint.c:
4715 * frv-tdep.c:
4716 * h8300-tdep.c:
4717 * hppa-hpux-tdep.c:
4718 * hppa-tdep.c:
4719 * hppanbsd-tdep.c:
4720 * i386-nto-tdep.c:
4721 * i386-tdep.c:
4722 * i387-tdep.c:
4723 * ia64-tdep.c:
4724 * jit.c:
4725 * linespec.c:
4726 * linux-tdep.c:
4727 * lm32-tdep.c:
4728 * m2-valprint.c:
4729 * m32c-tdep.c:
4730 * m32r-rom.c:
4731 * m32r-tdep.c:
4732 * m68k-tdep.c:
4733 * m68klinux-tdep.c:
4734 * mi/mi-main.c:
4735 * microblaze-tdep.c:
4736 * mips-linux-tdep.c:
4737 * mips-tdep.c:
4738 * mn10300-tdep.c:
4739 * p-valprint.c:
4740 * parse.c:
4741 * ppc-linux-tdep.c:
4742 * ppc-sysv-tdep.c:
4743 * printcmd.c:
4744 * python/py-finishbreakpoint.c:
4745 * python/py-inferior.c:
4746 * python/py-infthread.c:
4747 * python/py-type.c:
4748 * python/python.c:
4749 * remote-fileio.c:
4750 * remote-m32r-sdi.c:
4751 * remote-mips.c:
4752 * reverse.c:
4753 * rl78-tdep.c:
4754 * rs6000-aix-tdep.c:
4755 * rs6000-tdep.c:
4756 * s390-tdep.c:
4757 * score-tdep.c:
4758 * sh64-tdep.c:
4759 * skip.c:
4760 * solib-darwin.c:
4761 * solib-dsbt.c:
4762 * solib-frv.c:
4763 * sparc-tdep.c:
4764 * spu-multiarch.c:
4765 * spu-tdep.c:
4766 * stack.c:
4767 * symfile.c:
4768 * symtab.c:
4769 * tic6x-tdep.c:
4770 * tracepoint.c:
4771 * v850-tdep.c:
4772 * valarith.c:
4773 * valprint.c:
4774 * value.c:
4775 * xcoffread.c:
4776 * xtensa-tdep.c:
4777 * ada-lang.c:
4778 * ada-tasks.c:
4779 * ada-varobj.c:
4780 * amd64-darwin-tdep.c:
4781 * arm-symbian-tdep.c:
4782 * arm-tdep.c: Delete unused variables.
4783
4784 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4785
4786 Rename $ddir to $datadir.
4787 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
4788 * auto-load.c (auto_load_safe_path_vec_update)
4789 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
4790 * configure: Regenerate.
4791 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
4792 Likewise. Remove the 'use $ddir' help string.
4793
4794 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4795
4796 * auto-load.c (show_auto_load_safe_path): Accept any combination of
4797 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
4798
4799 2012-05-18 Tom Tromey <tromey@redhat.com>
4800
4801 PR exp/13907:
4802 * valprint.h (struct value_print_options) <symbol_print>: New
4803 field.
4804 * valprint.c (user_print_options): Add default for symbol_print.
4805 (show_symbol_print): New function.
4806 (generic_val_print): Respect symbol_print.
4807 (_initialize_valprint): Add "print symbol" setting.
4808 * f-valprint.c (f_val_print): Respect symbol_print.
4809 * c-valprint.c (c_val_print): Respect symbol_print.
4810 * NEWS: Update.
4811 * printcmd.c (print_address_symbolic): Return int. Ignore some
4812 zero-size symbols.
4813 (print_address_demangle): Return int.
4814 * defs.h: (print_address_symbolic): Return int.
4815 * value.h (print_address_demangle): Return int.
4816
4817 2012-05-18 Tom Tromey <tromey@redhat.com>
4818
4819 * valprint.c (val_print_string): Don't print leading space.
4820 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
4821 print space before string or vtbl.
4822 * m2-valprint.c (print_unpacked_pointer): Optionally print space
4823 before string.
4824 * jv-valprint.c (java_value_print): Print space before string.
4825 * go-valprint.c (print_go_string): Print space before string.
4826 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
4827 space before string.
4828 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
4829 space before string or vtbl.
4830 * auxv.c (fprint_target_auxv): Print space after address.
4831
4832 2012-05-18 Tom Tromey <tromey@redhat.com>
4833
4834 * printcmd.c (print_address_demangle): Remove special case for 0.
4835
4836 2012-05-18 Tom Tromey <tromey@redhat.com>
4837
4838 * printcmd.c (print_address_demangle): Add 'opts' argument.
4839 * p-valprint.c (pascal_val_print): Update.
4840 * jv-valprint.c (java_val_print): Update.
4841 * value.h: Update.
4842 * valprint.c (generic_val_print): Update.
4843 (print_function_pointer_address): Add 'options' argument. Remove
4844 'addressprint' argument. Update.
4845 * m2-valprint.c (print_unpacked_pointer): Update.
4846 * gnu-v3-abi.c (print_one_vtable): Update.
4847 (gnuv3_print_method_ptr): Update.
4848 * f-valprint.c (f_val_print): Update.
4849 * cp-valprint.c (cp_print_value_fields): Update.
4850 * valprint.h (print_function_pointer_address): Update.
4851 * c-valprint.c (c_val_print): Update.
4852
4853 2012-05-18 Tom Tromey <tromey@redhat.com>
4854
4855 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
4856 directly corresponding to the found psymtab.
4857 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
4858 (dw2_find_pc_sect_symtab): Use it.
4859 * block.h (blockvector_contains_pc): Declare.
4860 * block.c (find_block_in_blockvector): New function.
4861 (blockvector_for_pc_sect): Use it.
4862 (blockvector_contains_pc): New function.
4863
4864 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4865
4866 * mips-tdep.h (mips_write_pc): New prototype.
4867 * mips-tdep.c (mips_write_pc): Make external, add description.
4868 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
4869 add description.
4870
4871 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
4872
4873 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
4874 mips_regnum->pc.
4875 (mips_unwind_pc, mips_write_pc): Likewise.
4876 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
4877 gdbarch_read_pc.
4878
4879 2012-05-17 Joel Brobecker <brobecker@adacore.com>
4880
4881 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
4882 proc_warn, proc_error, proc_get_status, proc_flags,
4883 proc_why, proc_what, proc_nsysarg, proc_sysargs,
4884 proc_set_run_on_last_close, proc_unset_run_on_last_close,
4885 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
4886 proc_stop_process, proc_wait_for_stop, proc_run_process,
4887 proc_set_traced_signals, proc_set_traced_faults,
4888 proc_set_traced_sysentry, proc_set_traced_sysexit,
4889 proc_set_held_signals, proc_get_held_signals,
4890 proc_get_traced_signals, proc_get_traced_faults,
4891 proc_get_traced_sysentry, proc_get_traced_sysexit,
4892 proc_clear_current_fault, proc_set_current_signal,
4893 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
4894 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
4895 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
4896 proc_get_current_thread, proc_get_current_thread,
4897 proc_get_current_thread, proc_update_threads,
4898 proc_update_threads, proc_update_threads, proc_update_threads,
4899 proc_iterate_over_threads, procfs_find_new_threads,
4900 procfs_pid_to_str): Make static. Remove advance declaration.
4901 (proc_cursig): Make static. Conditionalized defintion on
4902 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
4903 (proc_syscall, proc_set_kill_on_last_close,
4904 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
4905 proc_get_pending_signals, proc_get_signal_actions,
4906 proc_trace_signal, proc_ignore_signal): Delete.
4907
4908 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
4909
4910 * coffread.c (cs_section_address): Passing proper argument for
4911 `bfd_get_section_vma'.
4912 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
4913 `bfd_get_section_flags'.
4914 * remote.c (remote_trace_set_readonly_regions): Likewise, for
4915 `bfd_get_section_vma'.
4916
4917 2012-05-16 Tom Tromey <tromey@redhat.com>
4918
4919 PR macros/13205:
4920 * macrotab.h: (macro_define_special): Declare.
4921 (enum macro_special_kind): New.
4922 (struct macro_definition) <argc, replacement>: Update comments.
4923 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
4924 (macro_define_object_internal): New function.
4925 (macro_define_object): Use it.
4926 (macro_define_special): New function.
4927 (fixup_definition): New function.
4928 (macro_lookup_definition, foreach_macro_in_scope)
4929 (foreach_macro): Use fixup_definition.
4930 * macroexp.h (macro_stringify): Declare.
4931 * macroexp.c (free_buffer_return_text): New function.
4932 (stringify): Constify "arg".
4933 (macro_stringify): New function.
4934 * dwarf2read.c (macro_start_file): Call macro_define_special.
4935
4936 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
4937 Maciej W. Rozycki <macro@mips.com>
4938
4939 * breakpoint.h (bp_location): Add related_address member.
4940 * inferior.h (get_return_value): Take a pointer to struct value
4941 instead of struct type for the function requested.
4942 * value.h (using_struct_return): Likewise.
4943 * gdbarch.sh (return_value): Take a pointer to struct value
4944 instead of struct type for the function requested.
4945 * breakpoint.c (set_breakpoint_location_function): Initialize
4946 related_address for bp_gnu_ifunc_resolver breakpoints.
4947 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
4948 requested function's address to gdbarch_return_value.
4949 * eval.c (evaluate_subexp_standard): Pass the requested
4950 function's address to using_struct_return.
4951 * infcall.c (call_function_by_hand): Pass the requested
4952 function's address to using_struct_return and
4953 gdbarch_return_value.
4954 * infcmd.c (get_return_value): Take a pointer to struct value
4955 instead of struct type for the function requested.
4956 (print_return_value): Update accordingly.
4957 (finish_command_continuation): Likewise.
4958 * stack.c (return_command): Pass the requested function's
4959 address to using_struct_return and gdbarch_return_value.
4960 * value.c (using_struct_return): Take a pointer to struct value
4961 instead of struct type for the function requested. Pass the
4962 requested function's address to gdbarch_return_value.
4963 * python/py-finishbreakpoint.c (finish_breakpoint_object):
4964 New function_value member, replacing function_type.
4965 (bpfinishpy_dealloc): Update accordingly.
4966 (bpfinishpy_pre_stop_hook): Likewise.
4967 (bpfinishpy_init): Likewise. Record the requested function's
4968 address.
4969 * mips-tdep.c (mips_fval_reg): New enum.
4970 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
4971 words put in GP registers.
4972 (mips_o64_push_dummy_call): Update a comment.
4973 (mips_o32_return_value): Take a pointer to struct value instead
4974 of struct type for the function requested and use it to check if
4975 using the MIPS16 calling convention. Return the designated
4976 general purpose registers for floating-point values returned in
4977 MIPS16 mode.
4978 (mips_o64_return_value): Likewise.
4979 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
4980 (ppc_sysv_abi_broken_return_value): Likewise.
4981 (ppc64_sysv_abi_return_value): Likewise.
4982 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
4983 value instead of struct type for the function requested.
4984 * amd64-tdep.c (amd64_return_value): Likewise.
4985 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
4986 * arm-tdep.c (arm_return_value): Likewise.
4987 * avr-tdep.c (avr_return_value): Likewise.
4988 * bfin-tdep.c (bfin_return_value): Likewise.
4989 * cris-tdep.c (cris_return_value): Likewise.
4990 * frv-tdep.c (frv_return_value): Likewise.
4991 * h8300-tdep.c (h8300_return_value): Likewise.
4992 (h8300h_return_value): Likewise.
4993 * hppa-tdep.c (hppa32_return_value): Likewise.
4994 (hppa64_return_value): Likewise.
4995 * i386-tdep.c (i386_return_value): Likewise.
4996 * ia64-tdep.c (ia64_return_value): Likewise.
4997 * iq2000-tdep.c (iq2000_return_value): Likewise.
4998 * lm32-tdep.c (lm32_return_value): Likewise.
4999 * m32c-tdep.c (m32c_return_value): Likewise.
5000 * m32r-tdep.c (m32r_return_value): Likewise.
5001 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
5002 * m68k-tdep.c (m68k_return_value): Likewise.
5003 (m68k_svr4_return_value): Likewise.
5004 * m88k-tdep.c (m88k_return_value): Likewise.
5005 * mep-tdep.c (mep_return_value): Likewise.
5006 * microblaze-tdep.c (microblaze_return_value): Likewise.
5007 * mn10300-tdep.c (mn10300_return_value): Likewise.
5008 * moxie-tdep.c (moxie_return_value): Likewise.
5009 * mt-tdep.c (mt_return_value): Likewise.
5010 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
5011 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
5012 (ppc_sysv_abi_broken_return_value): Likewise.
5013 (ppc64_sysv_abi_return_value): Likewise.
5014 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
5015 * rl78-tdep.c (rl78_return_value): Likewise.
5016 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
5017 * rx-tdep.c (rx_return_value): Likewise.
5018 * s390-tdep.c (s390_return_value): Likewise.
5019 * score-tdep.c (score_return_value): Likewise.
5020 * sh-tdep.c (sh_return_value_nofpu): Likewise.
5021 (sh_return_value_fpu): Likewise.
5022 * sh64-tdep.c (sh64_return_value): Likewise.
5023 * sparc-tdep.c (sparc32_return_value): Likewise.
5024 * sparc64-tdep.c (sparc64_return_value): Likewise.
5025 * spu-tdep.c (spu_return_value): Likewise.
5026 * tic6x-tdep.c (tic6x_return_value): Likewise.
5027 * v850-tdep.c (v850_return_value): Likewise.
5028 * vax-tdep.c (vax_return_value): Likewise.
5029 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
5030 * xtensa-tdep.c (xtensa_return_value): Likewise.
5031 * gdbarch.c: Regenerate.
5032 * gdbarch.h: Regenerate.
5033
5034 2012-05-15 Tom Tromey <tromey@redhat.com>
5035
5036 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
5037
5038 2012-05-15 Joel Brobecker <brobecker@adacore.com>
5039
5040 * breakpoint.c (init_breakpoint_sal): Add quotes around part
5041 of command in two error message.
5042
5043 2012-05-15 Joel Brobecker <brobecker@adacore.com>
5044
5045 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
5046
5047 2012-05-15 Joel Brobecker <brobecker@adacore.com>
5048
5049 * breakpoint.c (find_condition_and_thread): Minor reformatting.
5050
5051 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5052
5053 * NEWS (show auto-load scripts-directory): Add forgotten command.
5054
5055 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5056
5057 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
5058 parameters.
5059
5060 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
5061
5062 * amd64-tdep.c: Include features/i386/x32.c and
5063 features/i386/x32-avx.c.
5064 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
5065 initialize_tdesc_x32_avx.
5066
5067 2012-05-14 Stan Shebs <stan@codesourcery.com>
5068
5069 Add dynamic printf.
5070 * breakpoint.h (enum bptype): New type bp_dprintf.
5071 (struct breakpoint): New field extra_string.
5072 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
5073 (create_breakpoint): Add extra_string arg.
5074 * breakpoint.c (dprintf_breakpoint_ops): New.
5075 (is_breakpoint): Add bp_dprintf.
5076 (bpstat_what): Add dprintf case.
5077 (bptype_string): Ditto.
5078 (print_one_breakpoint_location): Ditto.
5079 (init_bp_location): Ditto.
5080 (bkpt_print_mention): Ditto.
5081 (dprintf_style_enums): New array.
5082 (dprintf_style): New global.
5083 (dprintf_function): New global.
5084 (dprintf_channel): New global.
5085 (update_dprintf_command_list): New function.
5086 (update_dprintf_commands): New function.
5087 (init_breakpoint_sal): Add extra_string argument, handle it.
5088 (create_breakpoint_sal): Add extra_string argument.
5089 (create_breakpoints_sal): Add extra_string argument, update callers.
5090 (find_condition_and_thread): Add extra argument.
5091 (create_breakpoint): Add extra_string argument, record it.
5092 (dprintf_command): New function.
5093 (break_command_1): Add arg to create_breakpoint call.
5094 (handle_gnu_v3_exceptions): Ditto.
5095 (trace_command): Ditto.
5096 (ftrace_command): Ditto.
5097 (strace_command): Ditto.
5098 (bkpt_print_mention): Add dprintf case.
5099 (create_breakpoint_sal_default): Add extra_string argument.
5100 (_initialize_breakpoint): Add new commands.
5101 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
5102 * python/py-breakpoint.c (bppy_init): Ditto.
5103 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
5104
5105 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
5106
5107 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
5108
5109 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
5110
5111 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
5112 unsigned long long.
5113
5114 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
5115
5116 Add a new function gdb.find_pc_line to the Python API.
5117 * NEWS (Python Scripting): Add entry about the new function.
5118 * python/python.c (gdbpy_find_pc_line): New function which
5119 implements gdb.find_pc_line.
5120 (GdbMethods): Add entry for the new function.
5121
5122 2012-05-12 Pedro Alves <palves@redhat.com>
5123
5124 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
5125 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
5126
5127 2012-05-12 Eli Zaretskii <eliz@gnu.org>
5128
5129 * inferior.c: Include completer.h
5130 (initialize_inferiors): Set completer of add-inferior to
5131 filename_completer.
5132
5133 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
5134
5135 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
5136 gdbarch_ptr_bit for x32 core dump.
5137
5138 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
5139
5140 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
5141 and features/i386/x32-avx-linux.c.
5142
5143 2012-05-11 Stan Shebs <stan@codesourcery.com>
5144 Kwok Cheung Yeung <kcy@codesourcery.com>
5145
5146 * NEWS: Describe new info os commands.
5147 * common/linux-osdata.c (PID_T, TIME_T): Define.
5148 (MAX_PID_T_STRLEN): New.
5149 (linux_common_core_of_thread): Add comment. Change to use PID_T and
5150 MAX_PID_T_STRLEN.
5151 (command_from_pid): Add comment. Change to use PID_T.
5152 (commandline_from_pid): Change to use PID_T.
5153 (user_from_pid): Add comment.
5154 (get_process_owner): Add comment. Change to use PID_T and
5155 MAX_PID_T_STRLEN.
5156 (get_number_of_cpu_cores): Add comment.
5157 (get_cores_used_by_process): Add comment. Change to use PID_T and
5158 MAX_PID_T_STRLEN.
5159 (linux_xfer_osdata_processes): Change to use PID_T and
5160 MAX_PID_T_STRLEN.
5161 (compare_processes): New function.
5162 (linux_xfer_osdata_processgroups): New function.
5163 (linux_xfer_osdata_threads): Change to use PID_T.
5164 (linux_xfer_osdata_fds): New function.
5165 (format_socket_state, print_sockets): New functions.
5166 (union socket_addr): New union.
5167 (linux_xfer_osdata_isockets): New function.
5168 (time_from_time_t, group_from_gid): New functions.
5169 (linux_xfer_osdata_shm): New function.
5170 (linux_xfer_osdata_sem): New function.
5171 (linux_xfer_osdata_msg): New function.
5172 (linux_xfer_osdata_modules): New function.
5173 (osdata_table): Add new entries.
5174 * common/buffer.c (buffer_xml_printf): Add support for long and
5175 long long format specifiers.
5176
5177 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
5178
5179 * amd64-linux-tdep.h (tdesc_x32_linux): New.
5180 (tdesc_x32_avx_linux): Likewise.
5181
5182 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5183
5184 Implement multi-component --with-auto-load-dir.
5185 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
5186 entries.
5187 (--with-auto-load-safe-path): Update the default value description.
5188 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
5189 New.
5190 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
5191 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
5192 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
5193 (_initialize_auto_load): Initialize also auto_load_dir. Install new
5194 "set auto-load scripts-directory".
5195 * config.in: Regenerate.
5196 * configure: Regenerate.
5197 * configure.ac (--with-auto-load-dir): New configure option.
5198 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
5199
5200 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5201
5202 Provide $ddir substitution for --with-auto-load-safe-path.
5203 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
5204 entries.
5205 * auto-load.c: Include observer.h.
5206 (auto_load_safe_path_vec_update): Call substitute_path_component for
5207 each component. New variable ddir_subst.
5208 (auto_load_gdb_datadir_changed): New function.
5209 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5210 AUTO_LOAD_SAFE_PATH. New comment.
5211 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5212 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
5213 * config.in: Regenerate.
5214 * configure: Regenerate.
5215 * configure.ac (--auto-load-safe-path): Rename
5216 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
5217 GDB_DATADIR/auto-load.
5218 * defs.h (substitute_path_component): New declaration.
5219 * top.c: Include observer.h.
5220 (set_gdb_datadir): New function.
5221 (init_main): Install it for "set data-directory".
5222 * utils.c (substitute_path_component): New function.
5223
5224 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5225
5226 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
5227 * auto-load.c (auto_load_objfile_script): Remove check for NULL
5228 DEBUG_FILE_DIRECTORY. Handle multiple components of
5229 DEBUG_FILE_DIRECTORY.
5230
5231 2012-05-10 Tom Tromey <tromey@redhat.com>
5232
5233 * dwarf2read.c (recursively_write_psymbols): New function.
5234 (write_psymtabs_to_index): Use it.
5235
5236 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
5237 field.
5238 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
5239 (load_partial_comp_unit): Update.
5240 (queue_comp_unit): Add argument 'pretend_language'.
5241 (process_queue): Update.
5242 (psymtab_to_symtab_1): Skip dependencies that have a user.
5243 (load_partial_comp_unit_reader): Give meaning to the 'data'
5244 argument.
5245 (load_full_comp_unit): Add 'pretend_language' argument.
5246 (process_full_comp_unit): Add 'pretend_language' argument. Set
5247 language on CU.
5248 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
5249 Update.
5250 (maybe_queue_comp_unit): Add 'pretend_language' argument.
5251 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
5252 Update.
5253 (prepare_one_comp_unit): Add 'pretend_language' argument.
5254
5255 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
5256 (struct dwarf2_per_objfile) <just_read_cus>: New field.
5257 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
5258 (dw2_do_instantiate_symtab): Check whether symtab was read in
5259 before queueing.
5260 (dw2_instantiate_symtab): Add assertion. Call
5261 process_cu_includes.
5262 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
5263 (partial_symtab_p): New typedef.
5264 (set_partial_user): New function.
5265 (dwarf2_build_psymtabs_hard): Use set_partial_user.
5266 (scan_partial_symbols): Add imported CU to imported_symtabs.
5267 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
5268 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
5269 (get_symtab, recursively_compute_inclusions)
5270 (compute_symtab_includes, process_cu_includes)
5271 (process_imported_unit_die): New functions.
5272 (process_die) <DW_TAG_imported_unit>: New case.
5273 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
5274
5275 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
5276 comment.
5277 (struct partial_die_info) <locdesc>: Remove.
5278 <d>: New field.
5279 (process_psymtab_comp_unit): Add 'read_partial' argument.
5280 Update.
5281 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
5282 (scan_partial_symbols): Handle DW_TAG_imported_unit.
5283 (add_partial_symbol): Update.
5284 (process_die): Handle DW_TAG_partial_unit.
5285 (read_file_scope): Update comment.
5286 (load_partial_dies): Handle DW_TAG_imported_unit.
5287 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
5288 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
5289
5290 2012-05-10 Tom Tromey <tromey@redhat.com>
5291
5292 * cc-with-dwz.sh: New file.
5293
5294 2012-05-10 Tom Tromey <tromey@redhat.com>
5295
5296 * symtab.h (struct symtab) <includes, user>: New fields.
5297 * block.h (struct block_iterator) <d, idx, which>: New fields.
5298 * block.c (initialize_block_iterator, find_iterator_symtab)
5299 (block_iterator_step, block_iter_name_step)
5300 (block_iter_match_step): New functions.
5301 (block_iterator_first, block_iterator_next)
5302 (block_iter_name_first, block_iter_name_next)
5303 (block_iter_match_first, block_iter_match_next): Rewrite.
5304 (get_block_symtab): New function.
5305
5306 2012-05-10 Tom Tromey <tromey@redhat.com>
5307
5308 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
5309 set_block_symtab.
5310 * jit.c (finalize_symtab): Use allocate_global_block,
5311 set_block_symtab.
5312 * buildsym.c (finish_block_internal): New function, from old
5313 finish_block.
5314 (finish_block): Rewrite.
5315 (end_symtab): Use finish_block_internal, set_block_symtab.
5316 * block.h (struct global_block): New.
5317 (allocate_global_block, set_block_symtab): Declare.
5318 * block.c (allocate_global_block, set_block_symtab): New
5319 functions.
5320
5321 2012-05-10 Tom Tromey <tromey@redhat.com>
5322
5323 * psymtab.c (partial_map_expand_apply): Add assertion.
5324 (partial_map_symtabs_matching_filename): Skip included psymtabs.
5325 (psymtab_to_symtab): Find unshared psymtab.
5326 (dump_psymtab): Print including psymtabs.
5327 (recursively_search_psymtabs): New function.
5328 (expand_symtabs_matching_via_partial): Use it.
5329 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
5330 fields.
5331 (enum psymtab_search_status): New.
5332
5333 2012-05-10 Tom Tromey <tromey@redhat.com>
5334
5335 * tracepoint.c (scope_info): Update.
5336 * symtab.c (lookup_block_symbol, iterate_over_symbols)
5337 (find_pc_sect_symtab, search_symbols)
5338 (default_make_symbol_completion_list_break_on)
5339 (make_file_symbol_completion_list): Update.
5340 * symmisc.c (dump_symtab_1): Update.
5341 * stack.c (print_frame_args, iterate_over_block_locals)
5342 (print_frame_labels, iterate_over_block_arg_vars): Update.
5343 * python/py-block.c (block_object) <dict>: Remove.
5344 <block>: New field.
5345 <iter>: Change type.
5346 (blpy_iter): Update.
5347 (blpy_block_syms_iternext): Update.
5348 * psymtab.c (map_block): Use block iterators.
5349 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
5350 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
5351 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
5352 * infrun.c (check_exception_resume): Update.
5353 * cp-support.c (make_symbol_overload_list_block): Update.
5354 * coffread.c (patch_opaque_types): Update.
5355 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
5356 * block.h (struct block_iterator): New.
5357 (block_iterator_first, block_iterator_next, block_iter_name_first)
5358 (block_iter_name_next, block_iter_match_first)
5359 (block_iter_match_next): Declare.
5360 (ALL_BLOCK_SYMBOLS): Redefine.
5361 * block.c (block_iterator_first, block_iterator_next)
5362 (block_iter_name_first, block_iter_name_next)
5363 (block_iter_match_first, block_iter_match_next): New functions.
5364 * ada-lang.c (ada_add_block_symbols)
5365 (ada_make_symbol_completion_list): Use block iterator.
5366
5367 2012-05-10 Tom Tromey <tromey@redhat.com>
5368
5369 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
5370 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
5371 (lookup_partial_symbol, find_last_source_symtab_from_partial)
5372 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
5373 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
5374 Update.
5375
5376 2012-05-10 Joel Brobecker <brobecker@adacore.com>
5377
5378 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
5379 print-file-var-lib2.c, print-file-var-main.c and
5380 print-file-var.exp (located in gdb/testsuite/gdb.base).
5381
5382 2012-05-10 Joel Brobecker <brobecker@adacore.com>
5383
5384 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5385 try locating the symbol in the symbol's own objfile first, before
5386 extending the search to all objfiles.
5387 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5388 out of lookup_symbol_aux_symtabs.
5389 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5390 Replace extracted-out code by call to lookup_symbol_aux_objfile.
5391 Do not search EXCLUDE_OBJFILE.
5392 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5393 (lookup_symbol_global): Search for matches in the block's objfile
5394 first, before searching all other objfiles.
5395
5396 2012-05-10 Tristan Gingold <gingold@adacore.com>
5397
5398 * printcmd.c (set_command): Add pre/post inc/dec.
5399
5400 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
5401
5402 * gdb.1: Document -ex option.
5403
5404 2012-05-09 Joel Brobecker <brobecker@adacore.com>
5405
5406 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
5407 * inferior.h (AT_SYMBOL): Delete.
5408
5409 2012-05-09 Joel Brobecker <brobecker@adacore.com>
5410
5411 * mips-tdep.c (mips_push_dummy_code): New function.
5412 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
5413 ON_STACK and install mips_push_dummy_code as our gdbarch
5414 push_dummy_code routine.
5415
5416 2012-05-09 Pedro Alves <palves@redhat.com>
5417
5418 * target.c (set_maintenance_target_async_permitted): Rename to ...
5419 (set_target_async_command): ... this.
5420 (show_maintenance_target_async_permitted): Rename to ...
5421 (show_target_async_command): ... this.
5422 (initialize_targets): Adjust.
5423
5424 2012-05-08 Doug Evans <dje@google.com>
5425
5426 * go-exp.y (classify_name): Add missing assignment of fields of
5427 yylval.ssym.
5428
5429 2012-05-08 Eli Zaretskii <eliz@gnu.org>
5430
5431 Display the ">" prompt in interactive mode while reading canned
5432 commands, even when the current interpreter is MI.
5433
5434 * interps.c (interp_set_temp): New function.
5435
5436 * interps.h (interp_set_temp): Add prototype.
5437
5438 * cli/cli-script.c (restore_interp): New cleanup function.
5439 (read_command_lines): Temporarily override the current interpreter
5440 with CLI and arrange for restoring the original one.
5441
5442 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
5443
5444 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
5445
5446 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
5447
5448 * probe.c (parse_probes): Move conditional to check for
5449 debuginfo files from here...
5450 * stap-probe.c (stap_get_probes): ... to here.
5451
5452 2012-05-07 Mark Kettenis <kettenis@gnu.org>
5453 H.J. Lu <hongjiu.lu@intel.com>
5454
5455 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
5456 `movl %esp, %ebp' for the X32 ABI.
5457
5458 2012-05-07 Tom Tromey <tromey@redhat.com>
5459
5460 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
5461 get_DW_TAG_name.
5462 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
5463 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
5464 (dwarf_stack_op_name): Remove.
5465 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
5466 (decode_locdesc): Use get_DW_OP_name.
5467 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
5468 (dwarf2_compile_expr_to_ax): Likewise.
5469 (disassemble_dwarf_expression): Likewise.
5470 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
5471
5472 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
5473
5474 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
5475 (sh_linux_sigtramp_cache): New function.
5476 (sh_linux_sigreturn_init): New function.
5477 (sh_linux_rt_sigreturn_init): New function.
5478 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
5479 patterns.
5480 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
5481 syscall codes.
5482 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
5483 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
5484 (sh_linux_init_abi): Add init calls to register new tramp_frame
5485 definitions under 32-bit SH, update comments.
5486
5487 2012-05-07 Pedro Alves <palves@redhat.com>
5488
5489 PR gdb/10952
5490
5491 * amd64-linux-tdep.c: Include glibc-tdep.h.
5492 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
5493 gdbarch_skip_solib_resolver callback.
5494
5495 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5496
5497 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
5498 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
5499 (show_auto_load_safe_path): Check any-directory by comparison with "/".
5500 (add_auto_load_safe_path): Change the error message.
5501 (_initialize_auto_load): Change the "safe-path" help text.
5502 * configure: Regenerate
5503 * configure.ac (--without-auto-load-safe-path): Set
5504 WITH_AUTO_LOAD_SAFE_PATH to /.
5505
5506 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
5507
5508 * stap-probe.h: Do not include unecessary `probe.h'.
5509
5510 2012-05-05 Alan Modra <amodra@gmail.com>
5511
5512 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
5513 bfd_und_section_ptr.
5514 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
5515 and bfd_com_section_ptr.
5516
5517 2012-05-04 Joel Brobecker <brobecker@adacore.com>
5518
5519 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
5520
5521 2012-05-04 Joel Brobecker <brobecker@adacore.com>
5522
5523 * windows-nat.h (segment_register_p_ftype): New typedef.
5524 (windows_set_segment_register_p): Add declaration.
5525 * windows-nat.c (segment_register_p): New static global.
5526 (windows_set_segment_register_p): New function.
5527 (do_windows_fetch_inferior_registers): Add special handling
5528 for segment registers.
5529 * amd64-windows-nat.c: #include "amd64-tdep.h".
5530 (amd64_windows_segment_register_p): New function.
5531 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
5532 * i386-windows-nat.c: #include "i386-tdep.h".
5533 (i386_windows_segment_register_p): New function.
5534 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
5535
5536 2012-05-04 Tristan Gingold <gingold@adacore.com>
5537
5538 * printcmd.c (set_command): Emit a warning if the expression is not
5539 an assignment.
5540
5541 2012-05-03 Joel Brobecker <brobecker@adacore.com>
5542
5543 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
5544 Make static.
5545
5546 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
5547
5548 * stap-probe.c (stap_is_operator): Change declaration.
5549 (stap_get_opcode): Change return value.
5550 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
5551 `stap_parse_argument_1'.
5552
5553 2012-05-03 Pedro Alves <pedro@codesourcery.com>
5554
5555 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
5556 debug log.
5557
5558 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
5559
5560 Add two new methods global_block and static_block to gdb.Symtab
5561 objects.
5562 * NEWS (Python scripting): Add entry about the new methods.
5563 * python/py-symtab.c (stpy_global_block): New function which
5564 implements the gdb.Symtab.global_block() method.
5565 (stpy_static_block): New function which implements the
5566 gdb.Symtab.static_block() method.
5567 (symtab_object_methods): Add entries for the two new methods.
5568
5569 2012-05-03 Doug Evans <dje@google.com>
5570
5571 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
5572 files.
5573
5574 2012-05-03 Yao Qi <yao@codesourcery.com>
5575
5576 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
5577 space.
5578 (i386_process_record): Ditto.
5579
5580 2012-05-02 Joel Brobecker <brobecker@adacore.com>
5581
5582 * infcall.c (unwind_on_signal_p): Make static.
5583
5584 2012-05-02 Joel Brobecker <brobecker@adacore.com>
5585
5586 * sol-thread.c (solaris_pid_to_str): Make static.
5587 (_initialize_sol_thread): Add prototype.
5588
5589 2012-05-02 Joel Brobecker <brobecker@adacore.com>
5590
5591 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
5592
5593 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
5594
5595 * MAINTAINERS: Remove myself.
5596
5597 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5598
5599 Fix --without-auto-load-safe-path for MS-Windows host platform.
5600 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
5601
5602 2012-05-02 Eli Zaretskii <eliz@gnu.org>
5603
5604 * gdb_curses.h: Undefine KEY_EVENT before including curses
5605 headers. Move "#undef MOUSE_MOVED" before any curses header
5606 inclusion.
5607
5608 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
5609
5610 * features/i386/i386-mmx-linux.c: Regenerate.
5611 * features/rs6000/powerpc-32.c: Likewise.
5612 * features/rs6000/powerpc-32l.c: Likewise.
5613 * features/rs6000/powerpc-403.c: Likewise.
5614 * features/rs6000/powerpc-403gc.c: Likewise.
5615 * features/rs6000/powerpc-405.c: Likewise.
5616 * features/rs6000/powerpc-505.c: Likewise.
5617 * features/rs6000/powerpc-601.c: Likewise.
5618 * features/rs6000/powerpc-602.c: Likewise.
5619 * features/rs6000/powerpc-603.c: Likewise.
5620 * features/rs6000/powerpc-604.c: Likewise.
5621 * features/rs6000/powerpc-64.c: Likewise.
5622 * features/rs6000/powerpc-64l.c: Likewise.
5623 * features/rs6000/powerpc-750.c: Likewise.
5624 * features/rs6000/powerpc-860.c: Likewise.
5625 * features/rs6000/powerpc-e500.c: Likewise.
5626 * features/rs6000/powerpc-e500l.c: Likewise.
5627 * features/rs6000/powerpc-isa205-32l.c: Likewise.
5628 * features/rs6000/powerpc-isa205-64l.c: Likewise.
5629 * features/rs6000/rs6000.c: Likewise.
5630
5631 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
5632
5633 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
5634 variable.
5635 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
5636 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
5637 (stap_parse_argument) <e>: Likewise.
5638 (handle_stap_probe) <byte_order>: Likewise.
5639
5640 2012-04-30 Doug Evans <dje@google.com>
5641
5642 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
5643 init_and_read_dies_worker. All callers updated.
5644 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
5645 replaced with init_cutu_and_read_dies.
5646 (load_partial_comp_unit): Pass 1 for use_existing_cu.
5647 (find_partial_die): Remove FIXME. Don't free current CU.
5648
5649 2012-04-30 Sterling Augustine <saugustine@google.com>
5650
5651 * contrib: New directory.
5652 * contrib/test_pubnames_and_indexes.py: New file.
5653
5654 2012-04-30 Doug Evans <dje@google.com>
5655
5656 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
5657 All callers updated.
5658 (init_cu_die_reader): Verify the section is non-empty.
5659 (dwarf_decode_line_header): Don't dereference section->asection
5660 until we know the section is present.
5661
5662 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
5663
5664 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
5665 probes.
5666
5667 2012-04-29 Yao Qi <yao@codesourcery.com>
5668
5669 * gdb-code-style.el: New hook gdb-markup-hook
5670 and gdb-comment-hook.
5671
5672 2012-04-28 Doug Evans <dje@google.com>
5673
5674 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
5675 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
5676 objfile->obfd.
5677 * symfile.h (dwarf2_debug_sections): New member addr.
5678 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
5679 (ctx_no_get_addr_index): New function.
5680 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
5681 (ctx_no_get_addr_index): Declare.
5682 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
5683 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
5684 (dwarf_expr_ctx_funcs): Update.
5685 (needs_get_addr_index): New function.
5686 (needs_frame_ctx_funcs): Update.
5687 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
5688 * dwarf2read.c: #include "gdbcore.h".
5689 (dwarf2_per_objfile): New members addr, dwo_files.
5690 (dwarf2_elf_names): Add entry for addr.
5691 (struct dwo_section_names): New type.
5692 (dwo_section_names): New static global.
5693 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
5694 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
5695 old debug_types_section member updated to use this.
5696 Rename member debug_types_section to info_or_types_section,
5697 all uses updated.
5698 (signatured_type): Rename member type_offset to type_offset_in_tu,
5699 all uses updated. New member type_offset_in_section.
5700 (struct dwo_sections): New type.
5701 (struct dwo_unit): New type.
5702 (struct dwo_file): New type.
5703 (die_reader_specs): New member dwo_file.
5704 (dwarf2_locate_sections): Watch for .debug_addr.
5705 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
5706 (dwarf2_read_section): Get bfd of section from bfd's asection,
5707 instead of objfile.
5708 (create_cus_from_index): Initialize the_cu->info_or_types_section.
5709 (create_signatured_type_table_from_index): Initialize
5710 sig_type->info_or_types_section.
5711 (dw2_get_file_names): Statement lists for type units with DWO files
5712 live in the DWO file.
5713 (create_debug_types_hash_table): New function.
5714 (create_all_type_units): Rewrite.
5715 (init_cu_die_reader): New arg dwo_file, all callers updated.
5716 (init_and_read_dies_worker): Get section from
5717 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
5718 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
5719 continue reading the CU/TU from there.
5720 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
5721 updated. Get section from this_cu->info_or_types_section.
5722 (create_all_comp_units): Initialize this_cu->info_or_types_section.
5723 (skip_one_die): New cases DW_FORM_GNU_addr_index,
5724 DW_FORM_GNU_str_index.
5725 (hash_dwo_file, eq_dwo_file): New functions.
5726 (allocate_dwo_file_hash_table): New function.
5727 (hash_dwo_unit, eq_dwo_unit): New functions.
5728 (allocate_dwo_unit_table): New function.
5729 (dwarf2_locate_dwo_sections): New function.
5730 (struct create_dwo_info_table_data): New type.
5731 (create_debug_info_hash_table_reader): New function.
5732 (create_debug_info_hash_table): New function.
5733 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
5734 (lookup_dwo_file): New function.
5735 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
5736 (free_dwo_file, free_dwo_file_cleanup): New functions.
5737 (free_dwo_file_from_slot, free_dwo_files): New functions.
5738 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
5739 (dwarf2_record_block_ranges): Ditto.
5740 (read_partial_die): Ditto.
5741 (process_enumeration_scope): Update to use type_offset_in_section.
5742 (read_full_die_1): New function.
5743 (read_full_die): Rewrite.
5744 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
5745 DW_FORM_GNU_str_index.
5746 (read_addr_index_1, read_addr_index): New functions.
5747 (read_addr_index_from_leb128): New function.
5748 (struct dwarf2_read_addr_index_data): New type.
5749 (dwarf2_read_addr_index_reader): New function.
5750 (dwarf2_read_addr_index): New function.
5751 (read_str_index): New function.
5752 (leb128_size): New function.
5753 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
5754 If processing a type unit from a DWO file, get the line section
5755 from the DWO file.
5756 (var_decode_location): Watch for DW_OP_GNU_addr_index.
5757 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
5758 DW_FORM_GNU_str_index.
5759 (lookup_die_type): Check whether section offset of type's die is
5760 known before looking it up. Remove assert. Condition can
5761 legimately happen for inter-cu type references.
5762 (dwarf_attr_name): Handle Fission attributes.
5763 (dwarf_form_name): Handle Fission forms.
5764 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
5765 DW_FORM_GNU_str_index.
5766 (follow_die_sig): Update to use type_offset_in_section.
5767 (decode_locdesc): New case DW_OP_GNU_addr_index.
5768 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
5769 DW_FORM_GNU_str_index.
5770 (cu_debug_loc_section): New function.
5771 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
5772 (dwarf2_per_objfile_free): Unmap .debug_addr section.
5773 Free DWO files if present.
5774 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
5775
5776 Refactor DIE reading.
5777 * dwarf2read.c (dwarf2_per_objfile): Replace members
5778 debug_info_type_hash and debug_types_type_hash with die_type_hash.
5779 (die_reader_specs): New member "die_section". Temporarily make
5780 member "buffer" non-const, pending constifying all info_ptr uses.
5781 (die_reader_func_ftype): New typedef.
5782 (dw2_get_file_names_reader): New function.
5783 (dw2_get_file_names): Rewrite.
5784 (read_and_check_type_unit_head): Rename arg type_offset to
5785 type_offset_in_tu.
5786 (create_all_type_units): Improve debugging message.
5787 Improve dummy type unit check.
5788 (init_cu_die_reader): New arg "section". All callers updated.
5789 (init_and_read_dies_worker): New function.
5790 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
5791 (init_cutu_and_read_dies_no_follow): New function.
5792 (init_cutu_and_read_dies_simple): New function.
5793 (process_psymtab_comp_unit_reader): New function.
5794 (process_psymtab_comp_unit): Delete args section,
5795 is_debug_types_section. Rewrite. All callers updated.
5796 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
5797 All callers updated. Rewrite.
5798 (load_partial_comp_unit_reader): New function.
5799 (load_partial_comp_unit): Rewrite.
5800 (skip_children): New arg reader. Delete args buffer, cu.
5801 All callers updated.
5802 (skip_one_die): New arg reader. Delete args buffer, cu.
5803 All callers updated.
5804 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
5805 All callers updated.
5806 (load_full_comp_unit_reader): New function.
5807 (load_full_comp_unit): Rewrite.
5808 (read_comp_unit): Delete.
5809 (read_die_and_children_1): Delete, contents moved ...
5810 (read_die_and_children): ... here.
5811 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
5812 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
5813 All callers updated.
5814 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
5815 All callers updated.
5816 (find_partial_die): Rewrite load_all_dies support.
5817 (read_attribute_value): New arg reader. Delete args abfd, cu.
5818 All callers updated.
5819 (read_attribute): New arg reader. Delete args abfd, cu.
5820 All callers updated.
5821 (load_full_type_unit): Add assert.
5822 (read_signatured_type_reader): New function.
5823 (read_signatured_type): Rewrite.
5824 (free_stack_comp_unit): Remove call to age_cached_comp_units.
5825 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
5826 All callers updated. Set per_cu->cu = NULL after freeing it.
5827 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
5828 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
5829 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
5830 (set_die_type): Update.
5831 (get_die_type_at_offset): Update.
5832 (read_file_scope): Call prepare_one_comp_unit.
5833 (read_type_unit_scope): Ditto.
5834 (prepare_one_comp_unit): Set producer if present.
5835
5836 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
5837
5838 * probe.c (compile_rx_or_error): Silence ARI warning about missing
5839 gettext function on `error'.
5840
5841 2012-04-27 Doug Evans <dje@google.com>
5842
5843 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
5844 is empty.
5845
5846 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
5847 Tom Tromey <tromey@redhat.com>
5848
5849 * breakpoint.c (struct breakpoint_objfile_data)
5850 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
5851 <exception_probes>: New fields.
5852 (free_breakpoint_probes): New function.
5853 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
5854 `_Unwind_DebugHook'.
5855 (create_exception_master_breakpoint): Likewise.
5856 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
5857 * infrun.c: Including necessary header files for handling SystemTap
5858 probes.
5859 (handle_inferior_event): Handling longjmp breakpoint and exceptions
5860 via SystemTap probes.
5861 (check_exception_resume): Remove `func' argument. Handle exception
5862 unwinding breakpoint set via a SystemTap probe.
5863 (insert_exception_resume_from_probe): New function.
5864
5865 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
5866 Tom Tromey <tromey@redhat.com>
5867 Jan Kratochvil <jan.kratochvil@redhat.com>
5868
5869 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
5870 (COMMON_OBS): Likewise.
5871 (HFILES_NO_SRCDIR): Add `probe'.
5872 * NEWS: Mention support for static and SystemTap probes.
5873 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
5874 SystemTap probes' arguments parser.
5875 * arm-linux-tdep.c: Including headers needed to perform the parsing
5876 of SystemTap probes' arguments.
5877 (arm_stap_is_single_operand): New function.
5878 (arm_stap_parse_special_token): Likewise.
5879 (arm_linux_init_abi): Initializing proper fields used by SystemTap
5880 probes' arguments parser.
5881 * ax-gdb.c (require_rvalue): Removing static declaration.
5882 (gen_expr): Likewise.
5883 * ax-gdb.h (gen_expr): Declaring function.
5884 (require_rvalue): Likewise.
5885 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
5886 (bkpt_probe_breakpoint_ops): New variable.
5887 (momentary_breakpoint_from_master): Set the `probe' value.
5888 (add_location_to_breakpoint): Likewise.
5889 (break_command_1): Using proper breakpoint_ops according to the
5890 argument passed by the user in the command line.
5891 (bkpt_probe_insert_location): New function.
5892 (bkpt_probe_remove_location): Likewise.
5893 (bkpt_probe_create_sals_from_address): Likewise.
5894 (bkpt_probe_decode_linespec): Likewise.
5895 (tracepoint_probe_create_sals_from_address): Likewise.
5896 (tracepoint_probe_decode_linespec): Likewise.
5897 (tracepoint_probe_breakpoint_ops): New variable.
5898 (trace_command): Using proper breakpoint_ops according to the
5899 argument passed by the user in the command line.
5900 (initialize_breakpoint_ops): Initializing breakpoint_ops for
5901 static probes on breakpoints and tracepoints.
5902 * breakpoint.h (struct bp_location) <probe>: New field.
5903 * cli-utils.c (skip_spaces_const): New function.
5904 (extract_arg): Likewise.
5905 * cli-utils.h (skip_spaces_const): Likewise.
5906 (extract_arg): Likewise.
5907 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
5908 * configure.ac: Append `stap-probe.o' to be generated when ELF
5909 support is present.
5910 * configure: Regenerate.
5911 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
5912 * elfread.c: Include `probe.h' and `arch-utils.h'.
5913 (probe_key): New variable.
5914 (elf_get_probes): New function.
5915 (elf_get_probe_argument_count): Likewise.
5916 (elf_evaluate_probe_argument): Likewise.
5917 (elf_compile_to_ax): Likewise.
5918 (elf_symfile_relocate_probe): Likewise.
5919 (stap_probe_key_free): Likewise.
5920 (elf_probe_fns): New variable.
5921 (elf_sym_fns): Add `sym_probe_fns' value.
5922 (elf_sym_fns_lazy_psyms): Likewise.
5923 (elf_sym_fns_gdb_index): Likewise.
5924 (_initialize_elfread): Initialize objfile cache for static
5925 probes.
5926 * gdb_vecs.h (struct probe): New forward declaration.
5927 (probe_p): New VEC declaration.
5928 * gdbarch.c: Regenerate.
5929 * gdbarch.h: Regenerate.
5930 * gdbarch.sh (stap_integer_prefix): New variable.
5931 (stap_integer_suffix): Likewise.
5932 (stap_register_prefix): Likewise.
5933 (stap_register_suffix): Likewise.
5934 (stap_register_indirection_prefix): Likewise.
5935 (stap_register_indirection_suffix): Likewise.
5936 (stap_gdb_register_prefix): Likewise.
5937 (stap_gdb_register_suffix): Likewise.
5938 (stap_is_single_operand): New function.
5939 (stap_parse_special_token): Likewise.
5940 (struct stap_parse_info): Forward declaration.
5941 * i386-tdep.c: Including headers needed to perform the parsing
5942 of SystemTap probes' arguments.
5943 (i386_stap_is_single_operand): New function.
5944 (i386_stap_parse_special_token): Likewise.
5945 (i386_elf_init_abi): Initializing proper fields used by SystemTap
5946 probes' arguments parser.
5947 * i386-tdep.h (i386_stap_is_single_operand): New function.
5948 (i386_stap_parse_special_token): Likewise.
5949 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
5950 * mipsread.c (ecoff_sym_fns): Likewise.
5951 * objfiles.c (objfile_relocate1): Support relocation for static
5952 probes.
5953 * parse.c (prefixify_expression): Remove static declaration.
5954 (initialize_expout): Likewise.
5955 (reallocate_expout): Likewise.
5956 * parser-defs.h (initialize_expout): Declare function.
5957 (reallocate_expout): Likewise.
5958 (prefixify_expression): Likewise.
5959 * ppc-linux-tdep.c: Including headers needed to perform the parsing
5960 of SystemTap probes' arguments.
5961 (ppc_stap_is_single_operand): New function.
5962 (ppc_stap_parse_special_token): Likewise.
5963 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
5964 probes' arguments parser.
5965 * probe.c: New file, for generic statically defined probe support.
5966 * probe.h: Likewise.
5967 * s390-tdep.c: Including headers needed to perform the parsing of
5968 SystemTap probes' arguments.
5969 (s390_stap_is_single_operand): New function.
5970 (s390_gdbarch_init): Initializing proper fields used by SystemTap
5971 probes' arguments parser.
5972 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
5973 * stap-probe.c: New file, for SystemTap probe support.
5974 * stap-probe.h: Likewise.
5975 * symfile.h: Include `gdb_vecs.h'.
5976 (struct sym_probe_fns): New struct.
5977 (struct sym_fns) <sym_probe_fns>: New field.
5978 * symtab.c (init_sal): Initialize `probe' field.
5979 * symtab.h (struct probe): Forward declaration.
5980 (struct symtab_and_line) <probe>: New field.
5981 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
5982 locations.
5983 (stop_tracing): Likewise.
5984 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
5985
5986 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
5987 Tom Tromey <tromey@redhat.com>
5988
5989 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
5990 and to compile agent expressions.
5991 * infrun.c (siginfo_make_value): New argument `ignore'.
5992 (siginfo_funcs): New struct.
5993 (_initialize_infrun): New argument when calling
5994 `create_internalvar_type_lazy'.
5995 * thread.c (thread_id_make_value): New argument `ignore'.
5996 (thread_funcs): New struct.
5997 (_initialize_thread): New argument when calling
5998 `create_internalvar_type_lazy'.
5999 * tracepoint.c (sdata_make_value): New argument `ignore'.
6000 (sdata_funcs): New struct.
6001 (_initialize_tracepoint): New argument when calling
6002 `create_internalvar_type_lazy'.
6003 * value.c (make_value): New struct.
6004 (create_internalvar_type_lazy): New argument `data'.
6005 (compile_internalvar_to_ax): New function.
6006 (value_of_internalvar): Properly handling `make_value' case.
6007 (clear_internalvar): Likewise.
6008 (show_convenience): Adding `TRY_CATCH' block.
6009 * value.h (internalvar_make_value): Delete, replace by...
6010 (struct internalvar_funcs): ... this.
6011 (create_internalvar_type_lazy) <fun>: Delete argument.
6012 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
6013 (compile_internalvar_to_ax): New function.
6014 * windows-tdep.c (tlb_make_value): New argument `ignore'.
6015 (tlb_funcs): New struct.
6016 (_initialize_windows_tdep): New argument when calling
6017 `create_internalvar_type_lazy'.
6018
6019 2012-04-27 Mark Wielaard <mjw@redhat.com>
6020
6021 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
6022 see whether it is an address or a constant offset from DW_AT_low_pc.
6023 (dwarf2_record_block_ranges): Likewise.
6024 (read_partial_die): Likewise.
6025
6026 2012-04-26 Mark Wielaard <mjw@redhat.com>
6027
6028 * MAINTAINERS (Write After Approval): Add myself to the list.
6029
6030 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
6031
6032 * proc-utils.h (proc_prettyprint_signalset): New prototype.
6033 (proc_prettyprint_signal): Likewise.
6034 (proc_prettyprint_faultset): Likewise.
6035 (proc_prettyprint_fault): Likewise.
6036 (proc_prettyprint_actionset): Likewise.
6037 (proc_prettyprint_flags): Move to new proc-flags.c section.
6038 (proc_prettyfprint_flags): New prototype.
6039 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
6040 (proc_syscall, proc_cursig): Likewise.
6041 (proc_set_kill_on_last_close): Likewise.
6042 (proc_unset_kill_on_last_close): Likewise.
6043 (proc_set_watchpoint): Make static.
6044 (proc_delete_dead_threads): Likewise.
6045 (procfs_set_watchpoint): Likewise.
6046 (_initialize_procfs): Add prototype.
6047 * proc-events.c: Include proc-utils.h.
6048 (init_syscall_table): Make static.
6049 * proc-api.c (_initialize_proc_api): Add prototype.
6050 * proc-flags.c: Include proc-utils.h.
6051
6052 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
6053
6054 * configure.ac: Add AC_ARG_PROGRAM.
6055 * configure: Regenerate.
6056
6057 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6058
6059 Fix DW_AT_lower_bound defaults for DWARF-4+.
6060 * dwarf2read.c (read_subrange_type): Remove initialization of low and
6061 high. New variable low_default_is_valid. Implement DWARF-4+
6062 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
6063 no default by the DWARF standard.
6064
6065 2012-04-26 Maciej W. Rozycki <macro@mips.com>
6066 Maciej W. Rozycki <macro@codesourcery.com>
6067
6068 * infrun.c (handle_inferior_event): Move the check for return
6069 trampolines ahead of the check for function trampolines.
6070 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
6071 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
6072 (mips_str_mips16_ret_stub): Likewise.
6073 (mips_str_call_fp_stub): Likewise.
6074 (mips_str_call_stub): Likewise.
6075 (mips_str_fn_stub): Likewise.
6076 (mips_str_pic): Likewise.
6077 (mips_in_frame_stub): New function.
6078 (mips_unwind_pc): Return the return address rather than the PC
6079 if the PC of an intermediate frame is inside a call thunk.
6080 (mips_is_stub_suffix): New function.
6081 (mips_is_stub_mode): Likewise.
6082 (mips_get_mips16_fn_stub_pc): Likewise.
6083 (mips_skip_mips16_trampoline_code): Update to handle all the
6084 currently generated stub types. Don't recurse into __fn_stub
6085 thunks. Remove heuristics to handle stubs beyond etext/_etext.
6086 Use cooked register accesses.
6087 (mips_in_return_stub): Reintroduce function.
6088 (mips_skip_trampoline_code): Traverse trampolines recursively.
6089 (mips_gdbarch_init): Handle MIPS16 return trampolines.
6090
6091 2012-04-26 Joel Brobecker <brobecker@adacore.com>
6092
6093 GDB 7.4.1 released.
6094
6095 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
6096
6097 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
6098 * features/arm-with-m-vfp-d16.xml: New file. Describes
6099 Cortex-M with VFPv4-sp-d16 FPU register layout.
6100 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
6101 * features/arm-with-m-vfp-d16.c: New. Generated from above.
6102 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
6103 (arm-register_g_packet_guesses): Add vfp-d16 guess.
6104 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
6105
6106 2012-04-25 Doug Evans <dje@google.com>
6107
6108 * cli/cli-decode.c (print_doc_line): Use stream instead of
6109 current_uiout.
6110
6111 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
6112
6113 * features/arm-with-iwmmxt.c: Regenerate.
6114 * features/arm-with-m-fpa-layout.c: Likewise.
6115 * features/arm-with-m.c: Likewise.
6116 * features/arm-with-neon.c: Likewise.
6117 * features/arm-with-vfpv2.c: Likewise.
6118 * features/arm-with-vfpv3.c: Likewise.
6119 * features/mips-dsp-linux.c: Likewise.
6120 * features/mips-linux.c: Likewise.
6121 * features/mips64-dsp-linux.c: Likewise.
6122 * features/mips64-linux.c: Likewise.
6123 * features/s390-linux32.c: Likewise.
6124 * features/s390-linux32v1.c: Likewise.
6125 * features/s390-linux32v2.c: Likewise.
6126 * features/s390-linux64.c: Likewise.
6127 * features/s390-linux64v1.c: Likewise.
6128 * features/s390-linux64v2.c: Likewise.
6129 * features/s390x-linux64.c: Likewise.
6130 * features/s390x-linux64v1.c: Likewise.
6131 * features/s390x-linux64v2.c: Likewise.
6132 * features/tic6x-c62x-linux.c: Likewise.
6133 * features/tic6x-c62x.c: Likewise.
6134 * features/tic6x-c64x-linux.c: Likewise.
6135 * features/tic6x-c64x.c: Likewise.
6136 * features/tic6x-c64xp-linux.c: Likewise.
6137 * features/tic6x-c64xp.c: Likewise.
6138 * target-descriptions.c: Only generate `field_type' and `type'
6139 variables when needed.
6140
6141 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
6142
6143 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
6144
6145 2012-04-25 Doug Evans <dje@google.com>
6146
6147 Initial pass at Go language support.
6148 * NEWS: Mention Go.
6149 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
6150 go-valprint.c.
6151 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
6152 (YYFILES): Add go-exp.c.
6153 (YYOBJ): Add go-exp.o.
6154 (local-maintainer-clean): Delete go-exp.c.
6155 * defs.h (enum language): Add language_go.
6156 * dwarf2read.c: #include "go-lang.h".
6157 (fixup_go_packaging): New function.
6158 (process_full_comp_unit): Call it when processing Go CUs.
6159 (dwarf2_physname): Add Go support.
6160 (read_file_scope): Handle missing language spec for GNU Go.
6161 (set_cu_language): Handle DW_LANG_Go.
6162 * go-exp.y: New file.
6163 * go-lang.h: New file.
6164 * go-lang.c: New file.
6165 * go-typeprint.c: New file.
6166 * go-valprint.c: New file.
6167 * symtab.c: #include "go-lang.h".
6168 (symbol_set_language): Handle language_go.
6169 (symbol_find_demangled_name, symbol_set_names): Ditto.
6170 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
6171
6172 2012-04-24 Jim Meyering <meyering@redhat.com>
6173
6174 avoid a few strncpy-induced buffer overruns
6175 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
6176 fname and psargs before trying to concatenate.
6177 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
6178 "name" before applying strchr.
6179
6180 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
6181
6182 * CONTRIBUTE: Use unified diff instead of context diff when
6183 generating patches.
6184
6185 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
6186
6187 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
6188 code. Handle JR.HB correctly.
6189
6190 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
6191
6192 * mips-tdep.c
6193 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
6194 with the other MIPS16 helpers.
6195
6196 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
6197
6198 * observer.sh: Conditionally declare `args', thus cleaning up
6199 unused instances of this variable.
6200
6201 2012-04-24 Yao Qi <yao@codesourcery.com>
6202
6203 Revert this patch to allow breakpoint always-inserted
6204 in record target.
6205 2011-12-05 Pedro Alves <pedro@codesourcery.com>
6206 * breakpoint.c: Include record.h.
6207 (breakpoints_always_inserted_mode): Return false when the record
6208 target is in use.
6209
6210 * breakpoint.c (iterate_over_bp_locations): New.
6211 * breakpoint.h: Declare.
6212 New typedef walk_bp_location_callback.
6213 * record.c (record_open): Call record_init_record_breakpoints.
6214 (record_sync_record_breakpoints): New.
6215 (record_init_record_breakpoints): New.
6216 * NEWS: Mention supporting breakpoint always-inserted mode in
6217 record target.
6218
6219 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
6220
6221 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
6222 any thread.
6223
6224 2012-04-24 Yao Qi <yao@codesourcery.com>
6225
6226 * breakpoint.c (ep_is_catchpoint): Renamed to ...
6227 (is_catchpoint): ... it.
6228 (print_one_breakpoint_location): Caller update.
6229 * breakpoint.h: Update declaration.
6230
6231 2012-04-23 David S. Miller <davem@davemloft.net>
6232
6233 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
6234
6235 2012-04-23 Tom Tromey <tromey@redhat.com>
6236
6237 * buildsym.c (add_free_pendings): Remove.
6238 * buildsym.h (add_free_pendings): Remove.
6239
6240 2012-04-23 Doug Evans <dje@google.com>
6241
6242 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
6243 attr.u.unsnd instead of attr.u.addr.
6244 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
6245 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
6246 DW_FORM_ref_udata.
6247 (dump_die_shallow): Update cases DW_FORM_ref_addr,
6248 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
6249 DW_FORM_ref_udata.
6250 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
6251
6252 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
6253
6254 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
6255 (mips_o32_return_value): Likewise.
6256 (mips_o64_return_value): Likewise.
6257
6258 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
6259
6260 * ada-lang.c (ada_evaluate_subexp): Add cases for
6261 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
6262 their treatment in eval.c.
6263
6264 2012-04-21 David S. Miller <davem@davemloft.net>
6265
6266 * sparc-tdep.c (X_DISP10): Define.
6267 (sparc_analyze_control_transfer): Handle compare-and-branch.
6268
6269 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
6270
6271 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
6272 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
6273
6274 2012-04-20 Nigel Stephens <nigel@mips.com>
6275 Maciej W. Rozycki <macro@codesourcery.com>
6276
6277 * mips-tdep.c (mips_float_register_p): New function.
6278 (mips_convert_register_float_case_p): Use mips_float_register_p.
6279 (mips_register_type): Likewise.
6280 (mips_print_register): Likewise.
6281 (print_gp_register_row): Likewise.
6282 (mips_print_registers_info): Likewise.
6283
6284 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
6285
6286 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
6287 of mips16 symbols.
6288
6289 2012-04-20 Andrew Pinski <apinski@cavium.com>
6290
6291 * MAINTAINERS (Write After Approval): Add myself to the list.
6292
6293 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
6294
6295 * MAINTAINERS: Update my e-mail address.
6296
6297 2012-04-20 Pedro Alves <palves@redhat.com>
6298
6299 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
6300 $srcdir.
6301 * configure: Regenerate.
6302
6303 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
6304
6305 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
6306 declaration.
6307 * gdb_vecs.h: Declare `const_char_ptr' VEC.
6308
6309 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6310
6311 Fix compilation compatibility with python-2.4
6312 * python/py-type.c (convert_field): Cast ADDRSTRING for
6313 PyObject_SetAttrString as non-const. New comment.
6314
6315 2012-04-19 Tom Tromey <tromey@redhat.com>
6316
6317 * top.c (quit_target): Use all_cleanups.
6318 * main.c (captured_command_loop): Use all_cleanups.
6319 * exceptions.c (throw_exception): Use all_cleanups.
6320
6321 2012-04-19 Pedro Alves <palves@redhat.com>
6322
6323 * Makefile.in (GNULIB_BUILDDIR): New.
6324 (LIBGNU, INCGNU, GNULIB_H): Adjust.
6325 (SUBDIRS): Add $(GNULIB_BUILDDIR).
6326 (CLEANDIRS). Remove gnulib/import.
6327 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
6328 (all-lib): Ditto.
6329 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
6330 (gnulib/import/Makefile): Replace gnulib/import with
6331 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
6332 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
6333 (aclocal_m4_deps): Remove the gnulib dependencies. Add
6334 acx_configure_dir.m4.
6335 * acinclude.m4: Include acx_configure_dir.m4.
6336 * acx_configure_dir.m4: New file.
6337 * aclocal.m4: Regenerate.
6338 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
6339 calls. Configure gnulib using ACX_CONFIGURE_DIR.
6340 (GNULIB): New variable.
6341 (GNULIB_STDINT_H): Adjust.
6342 (AC_OUTPUT): Don't output gnulib/Makefile.
6343 * gdb/defs.h: Include build-gnulib/config.h.
6344 * aclocal.m4: Regenerate.
6345 * config.in: Regenerate.
6346 * configure: Regenerate.
6347
6348 * gnulib/Makefile.in: New file.
6349 * gnulib/configure.ac: New file.
6350 * gnulib/aclocal.m4: New file.
6351 * gnulib/config.in: New file.
6352 * gnulib/configure: New file.
6353 * gnulib/: Re-run gnulib-tool to adjust.
6354
6355 2012-04-19 Doug Evans <dje@google.com>
6356
6357 * cleanups.h (struct cleanup): Move to cleanups.c.
6358 (make_cleanup_dtor_ftype): New typedef.
6359 (make_cleanup_dtor): Use it.
6360 (ALL_CLEANUPS): Replace with ...
6361 (all_cleanups): ... this. Declare. All uses updated.
6362 * cleanups.c: #include "gdb_assert.h".
6363 (sentinel_cleanup): New static global.
6364 (SENTINEL_CLEANUP): Define.
6365 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
6366 (make_my_cleanup2): Assert result is non-NULL.
6367 (all_cleanups): New function.
6368 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
6369 of NULL.
6370
6371 2012-04-19 Pedro Alves <palves@redhat.com>
6372
6373 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
6374 Adjust paths to gnulib imported files.
6375
6376 2012-04-19 Pedro Alves <palves@redhat.com>
6377
6378 * gnulib/: Move whole directory ...
6379 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
6380 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
6381 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
6382 (aclocal_m4_deps): Adjust.
6383 * aclocal.m4: Regenerate.
6384 * configure: Regenerate.
6385 * configure.ac: Adjust AC_OUTPUT output.
6386
6387 2012-04-19 Yao Qi <yao@codesourcery.com>
6388
6389 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
6390 (vec.o): New rule.
6391 * vec.c: Move it ...
6392 * common/vec.c: ... here.
6393 * vec.h: Move it ...
6394 * common/vec.h: ... here.
6395
6396 2012-04-19 Yao Qi <yao@codesourcery.com>
6397
6398 * gdb-code-style.el: New.
6399
6400 2012-04-18 Pedro Alves <palves@redhat.com>
6401
6402 Update gnulib from latest git.
6403 (639ea5ae15e39fe48d43e04864b2997301e4b969)
6404
6405 * gnulib/Makefile.am: Update.
6406 * gnulib/dummy.c: Update.
6407 * gnulib/extra/arg-nonnull.h: Update.
6408 * gnulib/extra/c++defs.h: Update.
6409 * gnulib/extra/update-copyright: Update.
6410 * gnulib/extra/warn-on-use.h: Update.
6411 * gnulib/inttypes.in.h: Update.
6412 * gnulib/m4/00gnulib.m4: Update.
6413 * gnulib/m4/extensions.m4: Update.
6414 * gnulib/m4/gnulib-cache.m4: Update.
6415 * gnulib/m4/gnulib-common.m4: Update.
6416 * gnulib/m4/gnulib-comp.m4: Update.
6417 * gnulib/m4/gnulib-tool.m4: Update.
6418 * gnulib/m4/include_next.m4: Update.
6419 * gnulib/m4/inttypes-pri.m4: Update.
6420 * gnulib/m4/inttypes.m4: Update.
6421 * gnulib/m4/longlong.m4: Update.
6422 * gnulib/m4/memchr.m4: Update.
6423 * gnulib/m4/memmem.m4: Update.
6424 * gnulib/m4/mmap-anon.m4: Update.
6425 * gnulib/m4/multiarch.m4: Update.
6426 * gnulib/m4/onceonly.m4: Update.
6427 * gnulib/m4/stddef_h.m4: Update.
6428 * gnulib/m4/stdint.m4: Update.
6429 * gnulib/m4/string_h.m4: Update.
6430 * gnulib/m4/warn-on-use.m4: Update.
6431 * gnulib/m4/wchar_h.m4: Update.
6432 * gnulib/m4/wchar_t.m4: Update.
6433 * gnulib/m4/wint_t.m4: Update.
6434 * gnulib/memchr.c: Update.
6435 * gnulib/memmem.c: Update.
6436 * gnulib/stddef.in.h: Update.
6437 * gnulib/stdint.in.h: Update.
6438 * gnulib/str-two-way.h: Update.
6439 * gnulib/string.in.h: Update.
6440 * gnulib/wchar.in.h: Update.
6441
6442 * gnulib/extra/arg-nonnull.h: Delete.
6443 * gnulib/extra/c++defs.h: Delete.
6444 * gnulib/extra/warn-on-use.h: Delete.
6445 * gnulib/m4/wchar_h.m4: Delete.
6446 * gnulib/m4/wint_t.m4: Delete.
6447 * gnulib/wchar.in.h: Delete.
6448
6449 * gnulib/extra/snippets/arg-nonnull.h: New.
6450 * gnulib/extra/snippets/c++defs.h: New.
6451 * gnulib/extra/snippets/warn-on-use.h: New.
6452
6453 * aclocal.m4: Regenerate.
6454 * config.in: Regenerate.
6455 * configure: Regenerate.
6456 * gnulib/Makefile.in: Regenerate.
6457
6458 2012-04-18 Pedro Alves <palves@redhat.com>
6459
6460 Reimport the update-copyright module from gnulib
6461 (250b80067c1e1d8faa0c42fb572f721975b929c5).
6462
6463 * configure: Regenerate.
6464 * gnulib/Makefile.am: Update.
6465 * gnulib/Makefile.in: Regenerate.
6466 * gnulib/extra/update-copyright: Update.
6467 * gnulib/m4/gnulib-cache.m4: Update.
6468 * gnulib/m4/gnulib-comp.m4: Update.
6469
6470 2012-04-18 Tristan Gingold <gingold@adacore.com>
6471
6472 * configure.ac (aix): Put -lpthread into libs.
6473 * configure: Regenerate.
6474
6475 2012-04-18 Tom Tromey <tromey@redhat.com>
6476
6477 * linespec.c (convert_linespec_to_sals): Don't use
6478 SYMBOL_OBJ_SECTION.
6479 (compare_msymbols): Arguments are minsym_and_objfile, not
6480 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
6481
6482 2012-04-18 Pedro Alves <palves@redhat.com>
6483
6484 Revert gnulib/ part of:
6485 2011-01-01 Joel Brobecker <brobecker@adacore.com>
6486 Copyright year update in most files (performed by copyright.sh).
6487
6488 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6489
6490 Fix 64-bit constants on 32-bit hosts.
6491 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
6492 from unsigned long to ULONGEST.
6493 (read_signed_leb128): Change declaration return type from long to
6494 LONGEST.
6495 (dwarf2_const_value_attr): Change declaration parameter value from long
6496 to LONGEST.
6497 (dwarf2_compute_name): Change variable value from long to LONGEST.
6498 (read_unsigned_leb128): Change return type, variable result and some
6499 casts from unsigned long to ULONGEST.
6500 (read_signed_leb128): Change return type, variable result and some
6501 casts from long to LONGEST.
6502 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
6503 value from long to LONGEST.
6504 (dwarf2_const_value): Change variable value from long to LONGEST.
6505 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
6506 plongest and hex_string.
6507 * symtab.h (struct general_symbol_info): Change ivalue from long to
6508 LONGEST, remove the comment.
6509 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
6510 Change SYMBOL_VALUE format strings to use plongest and hex_string.
6511
6512 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
6513
6514 PR symtab/7259:
6515 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
6516 * ada-lang.c (ada_discrete_type_high_bound)
6517 (ada_discrete_type_low_bound): Fix function comment. Use
6518 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6519 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
6520 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6521 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
6522 Use TYPE_FIELD_ENUMVAL.
6523 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
6524 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6525 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
6526 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
6527 TYPE_CODE_ENUM.
6528 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
6529 * dwarf2read.c (process_enumeration_scope): Likewise.
6530 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
6531 field.bitpos.
6532 (class StructMainTypePrettyPrinter): Support also
6533 FIELD_LOC_KIND_ENUMVAL.
6534 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
6535 TYPE_CODE_ENUM.
6536 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6537 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
6538 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
6539 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
6540 field enumval.
6541 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
6542 accommodate enumval.
6543 (struct call_site): Adjust loc_kind to accommodate enumval.
6544 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
6545 (TYPE_FIELD_ENUMVAL): New macros.
6546 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
6547 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
6548 TYPE_CODE_ENUM.
6549 * p-typeprint.c (pascal_type_print_base): Likewise.
6550 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
6551 enumval.
6552 * python/lib/gdb/types.py (make_enum_dict): Likewise.
6553 * python/py-type.c (convert_field): New variable addrstring. Use
6554 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6555 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
6556 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
6557 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
6558 TYPE_CODE_ENUM.
6559 * valprint.c (generic_val_print): Likewise.
6560
6561 2012-04-17 Doug Evans <dje@google.com>
6562
6563 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
6564
6565 * dwarf2read.c: Whitespace fixes.
6566 (lookup_signatured_type): Tweak comment.
6567 (get_die_type_at_offset): Fix comment.
6568
6569 2012-04-17 Joel Brobecker <brobecker@adacore.com>
6570
6571 * xcoffread.c (xcoff_secnum_to_sections): New function.
6572 (secnum_to_section, secnum_to_bfd_section): Reimplement
6573 using xcoff_secnum_to_sections. Rename "secnum" parameter
6574 into "n_scnum".
6575 (RECORD_MINIMAL_SYMBOL): Delete.
6576 (record_minimal_symbol): New function.
6577 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
6578 by call to record_minimal_symbol and set misc_func_recorded
6579 to 1. Set last_csect_sec to the XCOFF section index instead
6580 of GDB's section_offset index. Update calls to
6581 prim_record_minimal_symbol_and_info to pass the BFD section
6582 as well.
6583
6584 2012-04-17 Joel Brobecker <brobecker@adacore.com>
6585
6586 * xcoffread.c (read_xcoff_symtab): Delete variables
6587 last_csect_val and last_csect_sec and associated code.
6588
6589 2012-04-17 Doug Evans <dje@google.com>
6590
6591 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
6592 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6593 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
6594 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
6595
6596 * cleanups.h: New file.
6597 * cleanups.c: New file.
6598 * Makefile.in (SFILES): Add cleanups.c.
6599 (HFILES_NO_SRCDIR): Add cleanups.h.
6600 (COMMON_OBS): Add cleanups.o.
6601 * defs.h (struct cleanup): Moved to cleanups.h.
6602 (do_cleanups,do_final_cleanups): Ditto.
6603 (discard_cleanups,discard_final_cleanups): Ditto
6604 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
6605 (save_cleanups,save_final_cleanups): Ditto.
6606 (restore_cleanups,restore_final_cleanups): Ditto.
6607 (null_cleanup): Ditto.
6608 (make_my_cleanup,make_my_cleanup2): Ditto.
6609 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6610 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
6611 (do_cleanups,do_final_cleanups): Ditto.
6612 (discard_cleanups,discard_final_cleanups): Ditto
6613 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
6614 (save_cleanups,save_final_cleanups): Ditto.
6615 (restore_cleanups,restore_final_cleanups): Ditto.
6616 (null_cleanup): Ditto.
6617 (make_my_cleanup,make_my_cleanup2): Ditto.
6618 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
6619
6620 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
6621 make_my_cleanup.
6622 (make_cleanup_dyn_string_delete): Ditto.
6623 (make_cleanup_ui_file_delete): Ditto.
6624 (make_cleanup_ui_out_redirect_pop): Ditto.
6625 (make_cleanup_free_section_addr_info): Ditto.
6626 (make_cleanup_restore_integer): Ditto.
6627 (make_cleanup_unpush_target): Ditto.
6628 (make_cleanup_value_free_to_mark): Ditto.
6629 (make_cleanup_value_free): Ditto.
6630 (make_cleanup_free_so): Ditto.
6631
6632 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6633
6634 New option "set debug auto-load".
6635 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
6636 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
6637 (auto_load_safe_path_vec_update)
6638 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
6639 if DEBUG_AUTO_LOAD.
6640 (file_is_auto_load_safe): New parameters debug_fmt and ....
6641 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
6642 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
6643 caller by explanatory string.
6644 (_initialize_auto_load): Register "set debug auto-load".
6645 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
6646 and ....
6647 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
6648 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
6649 by explanatory string.
6650 * main.c (captured_main): Likewise.
6651 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
6652 (source_section_scripts): Likewise.
6653
6654 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6655
6656 New option "set auto-load safe-path".
6657 * NEWS: New commands "set auto-load safe-path"
6658 and "show auto-load safe-path".
6659 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
6660 (auto_load_safe_path, auto_load_safe_path_vec)
6661 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
6662 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
6663 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
6664 (source_gdb_script_for_objfile): New variable is_safe. Call
6665 file_is_auto_load_safe. Return if it is not.
6666 (struct loaded_script): New field loaded.
6667 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
6668 (print_script): Use LOADED indicator instead of FULL_PATH. Change
6669 output "Missing" to "No".
6670 (_initialize_auto_load): New variable cmd. Initialize
6671 auto_load_safe_path. Register "set auto-load safe-path",
6672 "show auto-load safe-path" and "add-auto-load-safe-path".
6673 * auto-load.h (maybe_add_script): Add parameter loaded.
6674 (file_is_auto_load_safe): New declaration.
6675 * config.in: Regenerate.
6676 * configure: Regenerate.
6677 * configure.ac: New parameters --with-auto-load-safe-path
6678 and --without-auto-load-safe-path.
6679 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
6680 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
6681 * main.c (captured_main): Check file_is_auto_load_safe for
6682 LOCAL_GDBINIT.
6683 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
6684 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
6685 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
6686 not.
6687
6688 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6689
6690 auto-load: Implementation.
6691 * NEWS: New descriptions for "info auto-load",
6692 "info auto-load gdb-scripts", "info auto-load python-scripts",
6693 "info auto-load local-gdbinit" and "info auto-load libthread-db".
6694 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
6695 and "show auto-load-scripts". New description for "set auto-load",
6696 "show auto-load", "set auto-load gdb-scripts",
6697 "show auto-load gdb-scripts", "set auto-load python-scripts",
6698 "show auto-load python-scripts", "set auto-load local-gdbinit",
6699 "show auto-load local-gdbinit", "set auto-load libthread-db" and
6700 "show auto-load libthread-db".
6701 * auto-load.c: Remove include python/python-internal.h. Add includes
6702 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
6703 cli/cli-setshow.h.
6704 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
6705 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
6706 (gdbpy_global_auto_load): Rename to ...
6707 (global_auto_load): ... here.
6708 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
6709 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
6710 (script_language_gdb, source_gdb_script_for_objfile): New.
6711 (struct loaded_script): New field language.
6712 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
6713 LANGUAGE.
6714 (maybe_add_script): Add parameter language. Drop redundant
6715 entry.full_path initialization. Initialize entry.language and
6716 (*slot)->language.
6717 (auto_load_objfile_script): Change parameter suffix to language.
6718 Remove the call of maybe_add_script.
6719 Call language->source_script_for_objfile.
6720 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
6721 New.
6722 (collect_matching_scripts): Adjust it for
6723 struct collect_matching_scripts_data.
6724 (auto_load_info_scripts_pattern_nl): New variable.
6725 (info_auto_load_scripts): Rename to ...
6726 (auto_load_info_scripts): ... here, add parameter language. Adjust it
6727 for struct collect_matching_scripts_data.
6728 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
6729 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
6730 (auto_load_show_cmdlist_get, info_auto_load_cmd)
6731 (auto_load_info_cmdlist_get): New.
6732 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
6733 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
6734 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
6735 "info auto-load local-gdbinit".
6736 * auto-load.h (struct script_language): New.
6737 (gdbpy_global_auto_load): Rename to ...
6738 (global_auto_load): ... here.
6739 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
6740 (auto_load_local_gdbinit_loaded): New declarations.
6741 (maybe_add_script): New parameter language.
6742 (auto_load_objfile_script): Change parameter suffix to language.
6743 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
6744 (auto_load_info_scripts, auto_load_set_cmdlist_get)
6745 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
6746 declarations.
6747 * linux-thread-db.c: Include auto-load.h and ctype.h.
6748 (auto_load_thread_db, show_auto_load_thread_db): New.
6749 (struct thread_db_info): New field filename.
6750 (delete_thread_db_info): Call xfree for FILENAME.
6751 (try_thread_db_load): Initialize FILENAME.
6752 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
6753 if !AUTO_LOAD_THREAD_DB.
6754 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
6755 (_initialize_thread_db): Install auto_load_thread_db
6756 as "set auto-load libthread-db" and install info_auto_load_libthread_db
6757 as "info auto-load libthread-db".
6758 * main.c (captured_main): Rename gdbpy_global_auto_load to
6759 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
6760 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
6761 (print_gdb_help): Extend the help for 'local init file'.
6762 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
6763 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
6764 (auto_load_scripts): Rename to ...
6765 (auto_load_python_scripts): ... here, update the comment.
6766 (gdbpy_load_auto_script_for_objfile): New declaration.
6767 (show_auto_load_python_scripts, script_language_python)
6768 (gdbpy_load_auto_script_for_objfile): New.
6769 (source_section_scripts): Refactor the code.
6770 (load_auto_scripts_for_objfile): Rename to ...
6771 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
6772 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
6773 (info_auto_load_python_scripts): New.
6774 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
6775 Rename "set auto-load-scripts" to "set auto-load python-scripts".
6776 Register "set auto-load-scripts" as its deprecated alias. Register
6777 "info auto-load python-scripts". Register "info auto-load-scripts" as
6778 its deprecated alias.
6779 (load_auto_scripts_for_objfile): Rename to ...
6780 (gdbpy_load_auto_scripts_for_objfile): ... here.
6781 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
6782 (gdbpy_load_auto_scripts_for_objfile): ... here.
6783
6784 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6785
6786 auto-load: Move files.
6787 * Makefile.in (SFILES): Add auto-load.c.
6788 (HFILES_NO_SRCDIR): Add auto-load.h.
6789 (COMMON_OBS): Add auto-load.o.
6790 (distclean): Change .gdbinit for gdb-gdb.gdb.
6791 * auto-load.c: New file, with parts from python/py-auto-load.c.
6792 * auto-load.h: New file, with parts from python/python.h.
6793 * configure: Regenerate.
6794 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
6795 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
6796 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
6797 * main.c: Include auto-load.h.
6798 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
6799 command.h, observer.h and progspace.h to auto-load.c. Add include
6800 auto-load.h.
6801 (gdbpy_global_auto_load, struct auto_load_pspace_info)
6802 (struct loaded_script, auto_load_pspace_data)
6803 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
6804 (hash_loaded_script_entry, eq_loaded_script_entry)
6805 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
6806 (maybe_add_script): Move to auto-load.c.
6807 (source_section_scripts): Change maybe_add_script parameters passing,
6808 use script_not_found_warning_print.
6809 (clear_section_scripts, auto_load_objfile_script)
6810 (auto_load_new_objfile, loaded_script_ptr)
6811 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
6812 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
6813 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
6814 auto_load_new_objfile and info_auto_load_scripts initizations to
6815 auto-load.c.
6816 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
6817
6818 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6819
6820 Code cleanup.
6821 * charset.c (find_charset_names): Remove variables ix and elt.
6822 Use free_char_ptr_vec.
6823 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
6824 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
6825 debugdir_end. New variable debugdir_len.
6826 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
6827 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
6828 declarations.
6829 * progspace.c (clear_program_space_solib_cache): Remove variables ix
6830 and elt. Use free_char_ptr_vec.
6831 * source.c (add_path): Remove variables argv, arg and argv_index.
6832 New variables dir_vec, back_to, ix and name.
6833 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
6834 make_cleanup_freeargv. Remove variable separator. Simplify the code
6835 no longer expecting DIRNAME_SEPARATOR.
6836 (openp): Remove variable p, p1 and len. New variables dir_vec,
6837 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
6838 no longer expecting DIRNAME_SEPARATOR.
6839 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
6840 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
6841 debugdir_end.
6842 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
6843 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
6844 (dirnames_to_char_ptr_vec): New functions.
6845
6846 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6847
6848 Code cleanup.
6849 * source.c (add_path): Remove always true conditional 'p == 0' and
6850 unindent its code block.
6851
6852 2012-04-17 Pedro Alves <palves@redhat.com>
6853
6854 * gdbtypes.h (FIELD_BITPOS): Rename to ...
6855 (FIELD_BITPOS_LVAL): ... this.
6856 (FIELD_BITPOS): New.
6857 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
6858 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
6859 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
6860 SET_FIELD_BITPOS.
6861 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
6862 SET_FIELD_BITPOS.
6863 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
6864 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
6865 * target-descriptions.c (tdesc_gdb_type): Adjust to use
6866 SET_FIELD_BITPOS.
6867
6868 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6869
6870 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
6871 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
6872 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
6873 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
6874 * jv-lang.c (java_link_class_type): Likewise, once.
6875 * stabsread.c (read_enum_type): Likewise.
6876
6877 2012-04-16 Yao Qi <yao@codesourcery.com>
6878
6879 * common/agent.c (agent_run_command): Add one more parameter `len'.
6880 Update callers.
6881 * common/agent.h: Update declaration.
6882 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
6883 Update.
6884 (linux_child_static_tracepoint_markers_by_strid): Ditto.
6885
6886 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
6887
6888 PR mi/13393
6889 * value.c (value_actual_type): New function.
6890 * value.h (value_actual_type): New declaration.
6891 * varobj.c (update_type_if_necessary): New function.
6892 (varobj_create): Call value_actual_type instead of
6893 value_type.
6894 (install_dynamic_child): distinct changed and type changed MI variable
6895 objects.
6896 (update_dynamic_varobj_children): Updated for install_dynamic_child
6897 change. All callers updated.
6898 (varobj_update): Support for MI variable object type change if
6899 the value changed and RTTI is used to determine the type.
6900 (create_child_with_value): Call value_actual_type instead of
6901 value_type.
6902 (adjust_value_for_child_access): Extended with a new parameter which
6903 specify whether the given value should be casted to enclosing type.
6904 All callers updated.
6905
6906 2012-04-14 Yao Qi <yao@codesourcery.com>
6907
6908 Import gnulib module inttypes from git
6909 (250b80067c1e1d8faa0c42fb572f721975b929c5)
6910 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
6911 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
6912 gnulib/m4/inttypes-pri.m4
6913 * aclocal.m4, config.in, configure: Regenerated.
6914 * gnulib/Makefile.am: Update.
6915 * gnulib/Makefile.in: Update.
6916 * gnulib/m4/gnulib-cache.m4: Update.
6917 * gnulib/m4/gnulib-comp.m4: Update.
6918 * gnulib/inttypes.in.h: New.
6919 * gnulib/m4/inttypes-pri.m4: New.
6920 * gnulib/m4/inttypes.m4: New.
6921
6922 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
6923
6924 * infrun.c (resume): Update PC address to the real PC after
6925 preparing to do displaced stepping.
6926
6927 2012-04-12 Doug Evans <dje@google.com>
6928
6929 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
6930 All callers updated.
6931
6932 2012-04-12 Mark Kettenis <kettenis@gnu.org>
6933
6934 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
6935
6936 2012-04-12 Doug Evans <dje@google.com>
6937
6938 * dwarf2read.c (create_all_type_units): Renamed from
6939 create_debug_types_hash_table. All callers updated.
6940
6941 * dwarf2read.c (create_signatured_type_table_from_index): Rename
6942 local type_sig to sig_type, type_offset to type_offset_in_tu.
6943 (hash_signatured_type): Renamed from hash_type_signature,
6944 all callers updated.
6945 (eq_signatured_type): Renamed from eq_type_signature,
6946 all callers updated.
6947 (create_debug_types_hash_table): Rename local type_sig to sig_type.
6948 (process_enumeration_scope): Ditto.
6949 (lookup_signatured_type_at_offset): Ditto.
6950 (load_full_type_unit, read_signatured_type): Ditto.
6951
6952 2012-04-12 Yao Qi <yao@codesourcery.com>
6953
6954 * remote.c (async_remote_interrupt): Correct function name in
6955 debug message.
6956 (async_remote_interrupt_twice): Ditto.
6957
6958 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
6959
6960 * source.c (find_and_open_source): Consistently pass resulting
6961 full path through xfullpath.
6962
6963 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6964
6965 Provide more specific displaced-stepping memory error message.
6966 * infrun.c (displaced_step_prepare): New variable status. Call
6967 target_read_memory instead of read_memory, provide more specific
6968 error message.
6969
6970 2012-04-11 Tristan Gingold <gingold@adacore.com>
6971
6972 PR gdb/13901
6973 * darwin-nat.c (darwin_execvp): Revert previous patch.
6974
6975 2012-04-11 Tristan Gingold <gingold@adacore.com>
6976
6977 PR gdb/13901
6978 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
6979 in case of change.
6980
6981 2012-04-11 Tristan Gingold <gingold@adacore.com>
6982
6983 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
6984 warning.
6985
6986 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
6987
6988 New command 'explore' which helps explore values and types in
6989 scope.
6990 * NEWS: Add an entry about the new 'explore' command.
6991 * data-directory/Makefile.in: Add gdb/command/explore.py
6992 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
6993 command using the GDB Python API.
6994
6995 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
6996
6997 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
6998 extension in jump target calculation.
6999
7000 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
7001
7002 * mips-tdep.c (mips32_next_pc): Handle JALX.
7003
7004 2012-04-10 Yao Qi <yao@codesourcery.com>
7005
7006 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
7007
7008 2012-04-10 Yao Qi <yao@codesourcery.com>
7009
7010 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
7011 and gnulib/m4/gnulib-tool.m4.
7012
7013 2012-04-10 Doug Evans <dje@google.com>
7014
7015 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
7016 (load_partial_dies): Clarify comment.
7017 (find_partial_die): Support rereading type units.
7018 Clarify CU handling, if we know offset is in CU, don't search for the
7019 containing CU. Add comment regarding memory waste.
7020
7021 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
7022
7023 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
7024 i386/x32-avx and i386/x32-avx-linux.
7025 (i386/x32-expedite): New.
7026 (i386/x32-linux-expedite): Likewise.
7027 (i386/x32-avx-expedite): Likewise.
7028 (i386/x32-avx-linux-expedite): Likewise.
7029 ($(outdir)/i386/x32.dat): Likewise.
7030 ($(outdir)/i386/x32-linux.dat): Likewise.
7031 ($(outdir)/i386/x32-avx.dat): Likewise.
7032 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
7033
7034 * features/i386/x32-avx-linux.xml: New file.
7035 * features/i386/x32-avx.xml: Likewise.
7036 * features/i386/x32-core.xml: Likewise.
7037 * features/i386/x32-linux.xml: Likewise.
7038 * features/i386/x32.xml: Likewise.
7039
7040 * features/i386/x32-avx-linux.c: New. Generated.
7041 * features/i386/x32-avx.c: Likewise.
7042 * features/i386/x32-linux.c: Likewise.
7043 * features/i386/x32.c: Likewise.
7044 * regformats/i386/x32-avx-linux.dat: Likewise.
7045 * regformats/i386/x32-avx.dat: Likewise.
7046 * regformats/i386/x32-linux.dat: Likewise.
7047 * regformats/i386/x32.dat: Likewise.
7048
7049 2012-04-10 Tristan Gingold <gingold@adacore.com>
7050
7051 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
7052 code to kill the inferior.
7053
7054 2012-04-09 Mark Kettenis <kettenis@gnu.org>
7055
7056 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7057 defines.
7058 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7059 defines.
7060 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
7061 (yyvsp): New defines.
7062 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7063 defines.
7064 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7065 defines.
7066 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7067 defines.
7068 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7069 defines.
7070 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7071 defines.
7072
7073 2012-04-09 Mark Kettenis <kettenis@gnu.org>
7074
7075 * sparc64-tdep.c (sparc64_store_arguments)
7076 (sparc64_store_arguments): Fix coding style.
7077
7078 2012-04-07 Mark Kettenis <kettenis@gnu.org>
7079
7080 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
7081 complex floats, adjust some related comments and tighten a related
7082 assertion.
7083 (sparc64_extract_return_value): Handle complex floats.
7084
7085 2012-04-07 Doug Evans <dje@google.com>
7086
7087 * dwarf2read.c (load_partial_dies): Change condition to assert.
7088
7089 2012-04-06 Doug Evans <dje@google.com>
7090
7091 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
7092 "mov %rsp,%rbp".
7093
7094 2012-04-05 Kevin Buettner <kevinb@redhat.com>
7095
7096 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
7097 fencepost error.
7098 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
7099 (v850_gdbarch_init): Set `num_regs' as appropriate for the
7100 architecture.
7101
7102 2012-04-05 Keith Seitz <keiths@redhat.com>
7103
7104 * linespec.c (decode_compound): Remove.
7105 (enum offset_relative_sign): New enum.
7106 (struct line_offset): New struct.
7107 (struct linespec): New struct.
7108 (struct linespec_state): Move file_symtabs,
7109 user_filename, and user_function into struct linespec.
7110 Make result an anonymous struct holding vectors of
7111 symbolp and minsym_and_objfile_d.
7112 Add language member.
7113 (enum ls_token_type): New enum.
7114 (linespec_keywords): New array.
7115 (struct ls_token): New struct.
7116 (struct ls_parser): New struct.
7117 (linespec_lexer_lex_number): New function.
7118 (linespec_lexer_lex_keyword): New function.
7119 (is_ada_operator): New function.
7120 (skip_quote_char): New function.
7121 (copy_token_string): New function.
7122 (is_closing_quote_enclosed): New function.
7123 (find_parameter_list_end): New function.
7124 (linespec_lexer_lex_string): New function.
7125 (linespec_lexer_lex_one): New function.
7126 (linespec_lexer_consume_token): New function.
7127 (linespec_lexer_peek_token): New function.
7128 (cplusplus_error): Remove unused function.
7129 (find_methods): Update comment.
7130 (find_toplevel_char): Return const.
7131 (is_objc_method_format): Remove unused function.
7132 (find_toplevel_string): New function.
7133 (is_linespec_boundary): Remove.
7134 (symbol_not_found_error): New function.
7135 (find_method_overload_end): Remove function.
7136 (unexpected_linespec_error): New function.
7137 (keep_name_info): Remove.
7138 (linespec_parse_line_offset): New function.
7139 (linespec_parse_basic): New function.
7140 (canonicalize_linespec): New function.
7141 (decode_line_internal): Remove.
7142 (create_sals_line_offset): New function adapted from
7143 decode_all_digits.
7144 (convert_linespec_to_sals): New function.
7145 (parse_linespec): New function.
7146 (linespec_parser_new): New function.
7147 (linespec_state_destructor): Change parameter type to
7148 struct linespec_state *.
7149 Add language parameter.
7150 Remove freeing of moved members.
7151 (linespec_parser_delete): New function.
7152 (decode_line_full): Use parse_linespec and linespec_parser_new.
7153 (decode_line_1): Likewise.
7154 (decode_indirect): Rename to ...
7155 (linespec_expression_to_pc): ... this and rewrite
7156 to simply find CORE_ADDR, storing this result for later
7157 conversion to SALs.
7158 (locate_first_half): Remove.
7159 (deocde_objc): Add parameter LS.
7160 Initialize new struct collect_info members.
7161 Handle minimal symbols, too.
7162 (decode_compound): Delete.
7163 (lookup_prefix_sym): Rewrite.
7164 (compare_msymbols): New function.
7165 (find_method): Rewrite.
7166 Do not call cplusplus_error.
7167 (symtabs_from_filename): Rewrite.
7168 (collect_function_symbols): Delete.
7169 (find_function_symbols): Rewrite without ARGPTR-style
7170 processing.
7171 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
7172 (decode_dollar): Adapted and renamed to ...
7173 (linespec_parse_variable): ... this.
7174 (find_linespec_symbols): New function.
7175 (decode_label): Adapted and renamed to ...
7176 (find_label_symbols): ... this.
7177 (decode_digits_list_mode): Add and use LS argument.
7178 (decode_digits_ordinary): Likewise.
7179 (collect_symbols): Do not collect SALs, just symbols and msymbols.
7180 If in list mode, allow any symbol class. Otherwise, only
7181 permit LOC_BLOCK symbols.
7182 (minsym_found): Update comments.
7183 (search_minsyms_for_name): Do not convert the matching symbol
7184 into a SAL. Simply push the symbol and objfile into the
7185 result vector.
7186 (decode_variable): Delete. Contents adapted into
7187 find_linespec_symbols.
7188
7189 * cp-support.c (SKIP_SPACE): Remove.
7190 (operator_tokens): Remove unused global.
7191 (cp_validate_operator): Remove.
7192 * cp-support.h (cp_validate_operator): Remove declaration.
7193
7194 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7195
7196 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
7197 for TYPE_VPTR_FIELDNO.
7198 * valprint.c (valprint_check_validity): Make it global, move the
7199 function comment ...
7200 * value.h (valprint_check_validity): ... to this new declaration.
7201
7202 2012-04-02 Tristan Gingold <gingold@adacore.com>
7203
7204 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
7205 the STATE32 api for i386 state.
7206 (i386_darwin_store_inferior_registers): Likewise.
7207
7208 2012-04-02 Tristan Gingold <gingold@adacore.com>
7209
7210 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
7211 SS offset.
7212 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
7213 format_string.
7214
7215 2012-04-02 Tristan Gingold <gingold@adacore.com>
7216
7217 PR gdb/13901
7218 * darwin-nat.c (darwin_execvp): Set binary preference.
7219
7220 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7221
7222 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
7223
7224 2012-03-30 Tom Tromey <tromey@redhat.com>
7225
7226 * python/python.c (gdbpy_decode_line): Move cleanup creation out
7227 of TRY_CATCH. Fix error handling.
7228 * python/py-value.c (convert_value_from_python): Move 'old'
7229 declaration to innermost scope.
7230
7231 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7232 Andrey Smirnov <andrew.smirnov@gmail.com>
7233
7234 -Wshadow warning fix.
7235 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
7236 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
7237 Adjust code accordingly.
7238
7239 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7240
7241 * ada-lang.c (symbol_completion_add): Rename parameter
7242 "encoded" into "encoded_p". Ajust code and documentation
7243 accordingly.
7244
7245 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7246 Andrey Smirnov <andrew.smirnov@gmail.com>
7247
7248 -Wshadow warning fix.
7249 * ada-lang.c (symbol_completion_add): Rename parameter
7250 "wild_match" into wild_match_p. Update code and documentation
7251 accordingly.
7252
7253 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7254
7255 * ada-lang.c (symbol_completion_match): Rename parameter
7256 "encoded" into "encoded_p". Ajust code and documentation
7257 accordingly.
7258
7259 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7260 Andrey Smirnov <andrew.smirnov@gmail.com>
7261
7262 -Wshadow warning fix.
7263 * ada-lang.c (symbol_completion_match): Rename parameter
7264 "wild_match" into "wild_match_p". Adjust code and function
7265 documentation accordingly.
7266
7267 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7268 Andrey Smirnov <andrew.smirnov@gmail.com>
7269
7270 -Wshadow warning fix.
7271 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
7272 "symbol_info" into "info". Adjust code accordingly.
7273 (ada_lookup_symbol): Likewise.
7274
7275 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7276
7277 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
7278 of this function's documentation.
7279
7280 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7281 Andrey Smirnov <andrew.smirnov@gmail.com>
7282
7283 -Wshadow warning fix.
7284 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
7285 variable into "wild_match_p". Adjust code accordingly.
7286
7287 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7288 Andrey Smirnov <andrew.smirnov@gmail.com>
7289
7290 -Wshadow warning fix.
7291 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
7292 parameter into "wild_match_p". Adjust code accordingly.
7293 Document this parameter in the function description.
7294
7295 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7296 Andrey Smirnov <andrew.smirnov@gmail.com>
7297
7298 -Wshadow warning fix.
7299 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
7300 "wild_match" parameter to "wild_match_p" (-Wshadow).
7301
7302 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7303
7304 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
7305 in function documentation.
7306
7307 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7308 Andrey Smirnov <andrew.smirnov@gmail.com>
7309
7310 -Wshadow warning fix.
7311 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
7312 variable into wild_match_p. Adjust code accordingly.
7313
7314 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7315 Andrey Smirnov <andrew.smirnov@gmail.com>
7316
7317 * ada-valprint.c (ada_val_print_1): Move the code handling
7318 TYPE_CODE_ENUM inside its own lexical block. Declare
7319 variables len and val there, instead of in the function's
7320 top level block. Avoid declaring deref_val again in a way
7321 that shadows another variable of the same name declared
7322 in one of the up-level blocks. Just re-use the up-level
7323 variable instead.
7324
7325 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7326
7327 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
7328 Replace block_found argument by symbol_info. Adjust
7329 implementation accordingly. Add function documentation.
7330 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
7331 Fix documentation.
7332 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
7333 * ada-exp.y (write_object_renaming): Adjust to new
7334 ada_lookup_encoded_symbol API.
7335
7336 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7337
7338 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
7339 documentation.
7340
7341 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
7342
7343 * v850-tdep.c: Add the enum values for mpu and fpu registers.
7344 (v850_register_name): Add the mpu and fpu register names.
7345 (v850e_register_name): Add the mpu and fpu register names.
7346 (v850e2_register_name): New function.
7347 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
7348 bfd_mach_v850e2v3.
7349
7350 2012-03-28 Joel Brobecker <brobecker@adacore.com>
7351
7352 * NEWS: Add entry for Ada varobj support.
7353
7354 2012-03-28 Joel Brobecker <brobecker@adacore.com>
7355
7356 * varobj.c (default_value_is_changeable_p): New function,
7357 extracted from varobj_value_is_changeable_p. Add declaration.
7358 (ada_value_is_changeable_p): New function, extracted from
7359 varobj_value_is_changeable_p. Add declaration.
7360 (struct language_specific): New field "value_is_changeable_p".
7361 (languages): Add entries for new field.
7362 (varobj_create): Set language before calling install_new_value.
7363 (varobj_value_is_changeable_p): Reimplement to call the varobj's
7364 "value_is_changeable_p" language callback.
7365
7366 2012-03-28 Joel Brobecker <brobecker@adacore.com>
7367
7368 * ada-varobj.h, ada-varobj.c: New files.
7369 * Makefile.in (SFILES): Add ada-varobj.c.
7370 (HFILES_NO_SRCDIR): Add ada-varobj.h.
7371 (COMMON_OBS): Add ada-varobj.o.
7372
7373 2012-03-28 Joel Brobecker <brobecker@adacore.com>
7374
7375 * varobj.c (ada_value_has_mutated): Add declaration. New function.
7376 (struct language_specific): New field "value_has_mutated".
7377 (languages): Set field "value_has_mutated" in each entry of array.
7378 (varobj_value_has_mutated): New function.
7379 (varobj_udpdate): Add handling of type mutation.
7380 (value_of_root): Add handling of type mutation.
7381 (ada_value_has_mutated): New function.
7382
7383 2012-03-28 Pedro Alves <palves@redhat.com>
7384
7385 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
7386 Always supply $fr0 as 0.0 and $fr1 as 1.0.
7387
7388 2012-03-28 Tom Tromey <tromey@redhat.com>
7389
7390 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
7391 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
7392 before returning.
7393
7394 2012-03-28 Tom Tromey <tromey@redhat.com>
7395
7396 * .dir-locals.el: New file.
7397
7398 2012-03-28 Pedro Alves <palves@redhat.com>
7399
7400 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
7401
7402 2012-03-28 Joel Brobecker <brobecker@adacore.com>
7403
7404 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
7405 handling for r0.
7406
7407 2012-03-27 Pedro Alves <palves@redhat.com>
7408
7409 Eliminate struct ui_stream.
7410
7411 * ui-out.h (struct ui_stream): Delete.
7412 (ui_out_field_stream): Adjust prototype.
7413 (ui_out_stream_new, ui_out_stream_delete)
7414 (make_cleanup_ui_out_stream_delete): Delete declarations.
7415 * ui-out.c (ui_out_field_stream): Change prototype to take a
7416 ui_file instead of a ui_stream. Adjust.
7417 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
7418 (make_cleanup_ui_out_stream_delete): Delete.
7419 * breakpoint.c (print_breakpoint_location)
7420 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
7421 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
7422 * disasm.c (dump_insns): Ditto.
7423 (do_mixed_source_and_assembly, do_assembly_only): Adjust
7424 prototype.
7425 (gdb_disassembly): Use ui_file/mem_fileopen instead of
7426 ui_stream/ui_out_stream_new.
7427 * infcmd.c (print_return_value): Ditto.
7428 * osdata.c (info_osdata_command): Don't allocate a local
7429 ui_stream.
7430 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
7431 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
7432 * tracepoint.c (print_one_static_tracepoint_marker): Don't
7433 allocate a local ui_stream.
7434 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
7435 instead of ui_stream/ui_out_stream_new.
7436 (list_args_or_locals): Don't allocate a local ui_stream.
7437 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
7438 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
7439 ui_stream/ui_out_stream_new.
7440 * cli/cli-setshow.c (do_setshow_command): Ditto.
7441
7442 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
7443
7444 * arm-linux-tdep.c (arm_linux_init_abi): Call
7445 set_gdbarch_process_record. Initialize `arm_swi_record' field.
7446 * arm-tdep.c (arm_process_record): New function.
7447 (deallocate_reg_mem): New function.
7448 (decode_insn): New function.
7449 (thumb_record_branch): New function.
7450 (thumb_record_ldm_stm_swi(): New function.
7451 (thumb_record_misc): New function.
7452 (thumb_record_ld_st_stack): New function.
7453 (thumb_record_ld_st_imm_offset): New function.
7454 (thumb_record_ld_st_reg_offset(): New function.
7455 (thumb_record_add_sub_cmp_mov): New function.
7456 (thumb_record_shift_add_sub): New function.
7457 (arm_record_coproc_data_proc): New function.
7458 (arm_record_coproc): New function.
7459 (arm_record_b_bl): New function.
7460 (arm_record_ld_st_multiple): New function.
7461 (arm_record_ld_st_reg_offset): New function.
7462 (arm_record_ld_st_imm_offset): New function.
7463 (arm_record_data_proc_imm): New function.
7464 (arm_record_data_proc_misc_ld_str): New function.
7465 (arm_record_extension_space): New function.
7466 (arm_record_strx): New function.
7467 (sbo_sbz): New function.
7468 (struct insn_decode_record): New structure for arm insn record.
7469 (REG_ALLOC): New macro for reg allocations.
7470 (MEM_ALLOC): New macro for memory allocations.
7471 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
7472
7473 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
7474
7475 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
7476 (store_register): Likewise.
7477
7478 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
7479
7480 * MAINTAINERS (Write After Approval): Add myself to the list.
7481
7482 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7483
7484 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
7485 Describe also the option "auto".
7486
7487 2012-03-22 Richard Henderson <rth@redhat.com>
7488
7489 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
7490 * sparc-nat.c (sparc_xfer_wcookie): Make static.
7491
7492 2012-03-22 Richard Henderson <rth@redhat.com>
7493
7494 * jit.c (jit_read_code_entry): Compute alignment and offset of
7495 int64_t member before computing entry_size.
7496
7497 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
7498
7499 Python scripting: Add new method Value.referenced_value to
7500 gdb.Value which can dereference pointer as well as reference
7501 values.
7502 * NEWS: Add entry under 'Python scripting' about the new method
7503 Value.referenced_value on gdb.Value objects.
7504 * python/py-value.c (valpy_referenced_value): New function
7505 defining a new method on gdb.Value objects which can dereference
7506 pointer and reference values.
7507
7508 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
7509
7510 * MAINTAINERS (Write After Approval): Add myself to the list.
7511
7512 2012-03-21 Kevin Buettner <kevinb@redhat.com>
7513
7514 * symtab.c (skip_prologue_sal): Change test to check for "main()"
7515 in addition to "main".
7516
7517 2012-03-21 Joel Brobecker <brobecker@adacore.com>
7518
7519 * expression.h (op_name): Add declaration.
7520 * expprint.c (op_name): Remove declaration. Make non-static.
7521 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
7522
7523 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
7524
7525 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
7526 of struct siginfo.
7527 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
7528 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
7529 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
7530 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
7531 (linux_nat_get_siginfo): Likewise.
7532 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
7533 (linux_nat_get_siginfo): Likewise.
7534 * linux-tdep.c (linux_get_siginfo_type): Likewise.
7535 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
7536 * procfs.c (gdb_siginfo_t): Likewise.
7537
7538 2012-03-21 Mike Frysinger <vapier@gentoo.org>
7539
7540 * .gitignore: Ignore more files.
7541
7542 2012-03-20 Pedro Alves <palves@redhat.com>
7543
7544 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
7545 returns.
7546
7547 2012-03-20 Yao Qi <yao@codesourcery.com>
7548
7549 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
7550 comment.
7551
7552 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7553
7554 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
7555 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
7556 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
7557 sect_offset.
7558 * dwarf2expr.h (cu_offset, sect_offset): New types.
7559 (struct dwarf_expr_context_funcs) <dwarf_call>
7560 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
7561 sect_offset.
7562 (struct dwarf_expr_context) <len>: Improve the comment.
7563 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
7564 cu_offset and sect_offset.
7565 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
7566 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
7567 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
7568 * dwarf2loc.h: Include dwarf2expr.h.
7569 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
7570 and sect_offset.
7571 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
7572 Improve the comment.
7573 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
7574 (struct signatured_type, struct line_header, struct partial_die_info)
7575 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
7576 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
7577 (get_die_type_at_offset, create_cus_from_index)
7578 (create_signatured_type_table_from_index, dw2_get_file_names)
7579 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
7580 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
7581 (create_debug_types_hash_table, process_psymtab_comp_unit)
7582 (load_partial_comp_unit, create_all_comp_units)
7583 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
7584 (load_full_comp_unit, dwarf2_physname, read_import_statement)
7585 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
7586 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
7587 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
7588 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
7589 (find_partial_die, read_attribute_value, lookup_die_type)
7590 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
7591 (is_ref_attr): New function comment.
7592 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
7593 Use cu_offset and sect_offset.
7594 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
7595 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
7596 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
7597 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
7598 (offset_and_type_hash, offset_and_type_eq, set_die_type)
7599 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
7600 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
7601 sect_offset.
7602
7603 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7604
7605 Code cleanup.
7606 * python/py-auto-load.c (source_section_scripts): New variable back_to.
7607 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
7608 with xfree.
7609 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
7610
7611 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7612
7613 * NEWS: Describe new options --init-command=FILE, -ix and
7614 --init-eval-command=COMMAND, -iex.
7615 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
7616 CMDARG_INIT_COMMAND.
7617 (captured_main): New enum items OPT_IX and OPT_IEX. Add
7618 "init-command", "init-eval-command", "ix" and "iex" to the variable
7619 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
7620 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
7621 (print_gdb_help): Describe --init-command=FILE, -ix and
7622 --init-eval-command=COMMAND, -iex.
7623
7624 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7625
7626 Code cleanup.
7627 * main.c (struct cmdarg): Move it here from main. Add more comments.
7628 (cmdarg_s, VEC (cmdarg_s)): New.
7629 (main): Move struct cmdarg from here. New variables cmdarg_vec and
7630 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
7631 Install cleanup for cmdarg_vec. Update filling for options 'x' and
7632 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
7633 of CMDARG.
7634
7635 2012-03-19 Tom Tromey <tromey@redhat.com>
7636
7637 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
7638
7639 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7640
7641 PR symtab/13777
7642 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
7643 GCC >=4.5.
7644
7645 2012-03-16 Chris January <chris.january@allinea.com>
7646
7647 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
7648 of clear.
7649
7650 2012-03-16 Chris January <chris.january@allinea.com>
7651
7652 * source.c (add_path): Use memmove instead of strcpy because the
7653 strings overlap.
7654
7655 2012-03-16 Joel Brobecker <brobecker@adacore.com>
7656
7657 * value.h (set_value_parent): Add declaration.
7658 * value.c (set_value_parent): New function.
7659 (value_address): If VALUE->PARENT is not NULL, then use it as
7660 the base address instead of VALUE->LOCATION.address.
7661 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
7662 the same as OBJ's address. Adjust V's offset accordingly.
7663 Set V's parent.
7664
7665 2012-03-16 Gary Benson <gbenson@redhat.com>
7666
7667 PR breakpoints/10738
7668 * dwarf2read.c (use_deprecated_index_sections): New global.
7669 (struct partial_die_info): New member may_be_inlined.
7670 (read_partial_die): Set may_be_inlined where appropriate.
7671 (add_partial_subprogram): Add partial symbols for partial
7672 DIEs that may be inlined.
7673 (new_symbol_full): Add inlined subroutines to the current
7674 scope.
7675 (write_psymtabs_to_index): Bump version number.
7676 (dwarf2_read_index): Read only version 6 indices unless
7677 use_deprecated_index_sections is set.
7678 * linespec.c (symbol_and_data_callback): New structure.
7679 (iterate_inline_only): New function.
7680 (iterate_over_all_matching_symtabs): New argument
7681 "include_inline". If nonzero, also call the callback for
7682 symbols representing inlined subroutines.
7683 (lookup_prefix_sym): Pass extra argument to the above.
7684 (find_function_symbols): Likewise.
7685 (add_matching_symbols_to_info): Likewise.
7686 * NEWS: Mention that GDB can now set breakpoints on inlined
7687 functions.
7688
7689 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
7690
7691 * p-typeprint.c (pascal_type_print_method_args):
7692 Fix display of parameter of methods.
7693
7694 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
7695
7696 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
7697 Add missing prototype.
7698
7699 2012-03-16 Yao Qi <yao@codesourcery.com>
7700 Jan Kratochvil <jan.kratochvil@redhat.com>
7701
7702 Fix false compilation warning.
7703 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
7704
7705 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
7706 Pedro Alves <pedro@codesourcery.com>
7707
7708 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
7709 (arm_register_g_packet_guesses): New function.
7710 (arm_gdbarch_init): Don't force a target description with
7711 registers when the executable is detected as M-profile. Instead
7712 set gdbarch->tdep->is_m. Register `g' packet guesses.
7713 (_initialize_arm_tdep): Initialize the new target description.
7714 * features/arm-with-m-fpa-layout.xml: New description.
7715 * features/arm-with-m-fpa-layout.c: New, generated.
7716
7717 2012-03-15 Joel Brobecker <brobecker@adacore.com>
7718
7719 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
7720 Update function description.
7721 (insert_bp_location): Do not wipe bl->target_info out.
7722 * mem-break.c: #include "gdb_string.h".
7723 (default_memory_insert_breakpoint): Do not call target_read_memory
7724 with a pointer to the breakpoint's shadow_contents buffer. Use
7725 a local buffer instead.
7726 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
7727
7728 2012-03-15 Tom Tromey <tromey@redhat.com>
7729
7730 * NEWS: Mention "info vtbl", not "info vtable".
7731 * cp-support.c (info_vtbl_command): Fix comment.
7732 (_initialize_cp_support): Fix text.
7733
7734 2012-03-15 Tom Tromey <tromey@redhat.com>
7735
7736 * cp-valprint.c (cp_print_value_fields): Use
7737 print_function_pointer_address for vtable slot.
7738
7739 2012-03-15 Tom Tromey <tromey@redhat.com>
7740
7741 * gnu-v3-abi.c (struct value_and_voffset): New.
7742 (hash_value_and_voffset, eq_value_and_voffset)
7743 (compare_value_and_voffset, compute_vtable_size)
7744 (print_one_vtable, gnuv3_print_vtable): New functions.
7745 (init_gnuv3_ops): Initialize 'print_vtable' field.
7746 * cp-support.c (info_vtbl_command): New function.
7747 (_initialize_cp_support): Add "info vtbl".
7748 * cp-abi.h (cplus_print_vtable): Declare.
7749 (struct cp_abi_ops) <print_vtable>: New field.
7750 * cp-abi.c (cplus_print_vtable): New function.
7751 * NEWS: Update.
7752
7753 2012-03-15 Tom Tromey <tromey@redhat.com>
7754
7755 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
7756 iterate_over_symbols.
7757
7758 2012-03-14 Doug Evans <dje@google.com>
7759
7760 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
7761 DW_OP_GNU_parameter_ref.
7762
7763 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
7764
7765 Fix double prompt of 'interpreter-exec mi'.
7766 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
7767 (mi_interpreter_resume): use it.
7768 (mi_execute_command_input_handler): New function.
7769 * mi/mi-main.c (mi_execute_command): Move prompt printing to
7770 mi_execute_command_input_handler.
7771
7772 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
7773
7774 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
7775 prototype.
7776 (darwin_debug_port_info): Make static.
7777 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
7778 * machoread.c (_initialize_machoread): Add prototype.
7779 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
7780 (i386_darwin_set_control, i386_darwin_get_control)
7781 i386_darwin_dr_set_addr, i386_darwin_get_addr)
7782 i386_darwin_get_status, i386_darwin_get_control):
7783 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
7784
7785 2012-03-13 Joel Brobecker <brobecker@adacore.com>
7786
7787 * ax-gdb.c (gen_usual_unary): Remove special handling of
7788 enum and bool types.
7789
7790 2012-03-13 Joel Brobecker <brobecker@adacore.com>
7791
7792 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
7793
7794 2012-03-13 Joel Brobecker <brobecker@adacore.com>
7795
7796 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
7797
7798 2012-03-13 Chris January <chris.january@allinea.com>
7799
7800 * aix-thread.c (fill_sprs): Store the floating point registers
7801 at the correct offsets into vals.
7802
7803 2012-03-13 Doug Evans <dje@google.com>
7804
7805 * NEWS: Mention symbol-reloading has been deleted.
7806 * symfile.c (symbol_reloading): Delete.
7807 (show_symbol_reloading): Delete.
7808 (_initialize_symfile): Delete set/show symbol-reloading.
7809
7810 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
7811 read_in_chain until we have successfully read it in.
7812 (load_full_comp_unit): Ditto.
7813 (read_signatured_type): Add comment.
7814
7815 2012-03-13 Chris January <chris.january@allinea.com>
7816
7817 * stabsread.c (fix_common_block): Change type of valu argument
7818 to CORE_ADDR.
7819
7820 2012-03-13 Chris January <chris.january@allinea.com>
7821
7822 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
7823 instruction.
7824
7825 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7826
7827 * common/linux-procfs.c (linux_proc_get_int): New, from
7828 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
7829 field.
7830 (linux_proc_get_tgid): Only call linux_proc_get_int.
7831 (linux_proc_get_tracerpid): New.
7832 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
7833 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
7834 linux_proc_pid_has_state.
7835 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
7836 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
7837 (linux_ptrace_attach_warnings): New.
7838 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
7839 New declaration.
7840 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
7841 (linux_nat_attach): New variables ex, buffer, message and message_s.
7842 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
7843
7844 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7845
7846 * Makefile.in (linux-ptrace.o): New.
7847 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
7848 from linux-nat.c.
7849 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
7850 * common/linux-ptrace.c: New file.
7851 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
7852 * config/arm/linux.mh: Likewise.
7853 * config/i386/linux.mh: Likewise.
7854 * config/i386/linux64.mh: Likewise.
7855 * config/ia64/linux.mh: Likewise.
7856 * config/m32r/linux.mh: Likewise.
7857 * config/m68k/linux.mh: Likewise.
7858 * config/mips/linux.mh: Likewise.
7859 * config/pa/linux.mh: Likewise.
7860 * config/powerpc/linux.mh: Likewise.
7861 * config/powerpc/ppc64-linux.mh: Likewise.
7862 * config/powerpc/spu-linux.mh: Likewise.
7863 * config/s390/s390.mh: Likewise.
7864 * config/sparc/linux.mh: Likewise.
7865 * config/sparc/linux64.mh: Likewise.
7866 * config/xtensa/linux.mh: Likewise.
7867 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
7868 common/linux-procfs.c.
7869 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
7870
7871 2012-03-13 Hui Zhu <teawater@gmail.com>
7872 Pedro Alves <palves@redhat.com>
7873
7874 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
7875 CREATE_BREAKPOINT_FLAGS_INSERTED.
7876 (create_breakpoint_sal, create_breakpoints_sal)
7877 (base_breakpoint_create_breakpoints_sal)
7878 (tracepoint_create_breakpoints_sal)
7879 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
7880 down.
7881 (break_command_1, handle_gnu_v3_exceptions, trace_command)
7882 (ftrace_command, strace_command): Adjust.
7883 (create_tracepoint_from_upload): Pass
7884 CREATE_BREAKPOINT_FLAGS_INSERTED.
7885 * breakpoint.h (enum breakpoint_create_flags): New.
7886 (create_breakpoint): New flags parameter.
7887 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
7888 * python/py-breakpoint.c (bppy_init): Adjust.
7889 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
7890 * spu-tdep.c (spu_catch_start): Adjust.
7891
7892 2012-03-13 Pedro Alves <palves@redhat.com>
7893 Hui Zhu <teawater@gmail.com>
7894 Yao Qi <yao@codesourcery.com>
7895
7896 * remote.c (struct remote_state): New field `starting_up'.
7897 (remote_start_remote): Set and clear it.
7898 (remote_can_download_tracepoint): If starting up, return false.
7899
7900 2012-03-13 Yao Qi <yao@codesourcery.com>
7901
7902 * inferior.h (struct inferior): Remove fields any_syscall_count,
7903 syscalls_counts and total_syscalls_count. Move them to new
7904 struct catch_syscall_inferior_data in breakpoint.c.
7905 * breakpoint.c: Call DEF_VEC_I(int).
7906 (struct catch_syscall_inferior_data): New.
7907 (get_catch_syscall_inferior_data): New.
7908 (catch_syscall_inferior_data_cleanup): New.
7909 (insert_catch_syscall): Update to access data in
7910 struct catch_syscall_inferior_data.
7911 (insert_catch_syscall): Likewise.
7912 (remove_catch_syscall): Likewise.
7913 (remove_catch_syscall): Likewise.
7914 (is_syscall_catchpoint_enabled): Likewise.
7915 (add_catch_command): Likewise.
7916 (_initialize_breakpoint): Register cleanup.
7917 * breakpoint.h: Removed DEF_VEC_I(int).
7918 * dwarf2loc.c: Call DEF_VEC_I(int).
7919 * mi/mi-main.c: Likewise.
7920
7921 2012-03-12 Mark Kettenis <kettenis@gnu.org>
7922
7923 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
7924
7925 2012-03-12 Chris January <chris.january@allinea.com>
7926
7927 * aix-thread.c (_initialize_aix_thread): Add prototype.
7928 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
7929 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
7930
7931 2012-03-12 Joel Brobecker <brobecker@adacore.com>
7932
7933 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
7934 include of "amd64-nat.h".
7935
7936 2012-03-12 Tom Tromey <tromey@redhat.com>
7937
7938 * buildsym.c (record_pending_block): Now static.
7939 * buildsym.h: (record_pending_block): Remove.
7940
7941 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
7942
7943 * amd64bsd-nat.c: Include amd64bsd-nat.h.
7944
7945 2012-03-09 Tom Tromey <tromey@redhat.com>
7946
7947 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
7948 producer_is_gxx_lt_4_6>: New fields.
7949 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
7950
7951 2012-03-09 Tom Tromey <tromey@redhat.com>
7952
7953 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
7954
7955 2012-03-08 Joel Brobecker <brobecker@adacore.com>
7956
7957 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
7958 prototype.
7959
7960 2012-03-08 Joel Brobecker <brobecker@adacore.com>
7961
7962 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
7963
7964 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7965
7966 Fix -Wmissing-prototypes build.
7967 * arm-linux-nat.c (get_thread_id): Make it static.
7968 * xtensa-linux-nat.c (get_thread_id): Likewise.
7969
7970 2012-03-08 Joel Brobecker <brobecker@adacore.com>
7971
7972 * server.c (process_point_options): If a conditional expression
7973 is found, only print a message if remote_debug is nonzero.
7974
7975 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
7976
7977 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
7978 of internal error for unknown/unsupported types.
7979
7980 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7981
7982 Fix CU relative vs. absolute DIE offsets.
7983 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
7984 offset to offset_in_cu.
7985 * dwarf2read.c (process_enumeration_scope): Add CU offset to
7986 TYPE_OFFSET.
7987 (dwarf2_fetch_die_location_block): Rename parameter offset to
7988 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
7989
7990 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7991
7992 * libunwind-frame.c: Rename to ...
7993 * ia64-libunwind-tdep.c: ... here.
7994 * libunwind-frame.h: Rename to ...
7995 * ia64-libunwind-tdep.h: ... here.
7996 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
7997 ia64-libunwind-tdep.h.
7998 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
7999 * README (--with-libunwind): Rename to ...
8000 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
8001 * config.in: Regenerate.
8002 * configure: Regenerate.
8003 * configure.ac: New option --with-libunwind-ia64, make the
8004 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
8005 Remove AC_DEFINE for HAVE_LIBUNWIND.
8006 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
8007 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
8008 Rename libunwind-frame in the general comment.
8009 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
8010 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
8011 Move forward declarations inside #ifndef. Rename libunwind-frame in
8012 the general comment.
8013 * ia64-tdep.c: Rename libunwind-frame.h #include to
8014 ia64-libunwind-tdep.h.
8015 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
8016 (ia64_libunwind_descr): Rename libunwind-frame to
8017 ia64-libunwind-tdep in these function comments.
8018 * ia64-tdep.h: Rename libunwind-frame.h #include to
8019 ia64-libunwind-tdep.h.
8020 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
8021 ia64-libunwind-tdep in that data comment.
8022
8023 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8024
8025 * libunwind-frame.h (struct frame_unwind): New declaration.
8026
8027 2012-03-08 Joel Brobecker <brobecker@adacore.com>
8028
8029 * breakpoint.c (_initialize_breakpoint): Fix error in help of
8030 "set breakpoint condition-evaluation" command.
8031
8032 2012-03-08 Tristan Gingold <gingold@adacore.com>
8033
8034 * sparc-stub.c: Move to stubs/
8035 * sh-stub.c: Likewise.
8036 * m68k-stub.c: Likewise.
8037 * m32r-stub.c: Likewise.
8038 * i386-stub.c: Likewise.
8039
8040 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
8041
8042 * m68klinux-tdep.c (m68k_linux_init_abi): Register
8043 linux_get_siginfo_type.
8044
8045 * m68klinux-nat.c: Include "gdb_proc_service.h".
8046 (PTRACE_GET_THREAD_AREA): Define.
8047 (ps_get_thread_area): New function.
8048
8049 2012-03-08 Yao Qi <yao@codesourcery.com>
8050
8051 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
8052 `xsnprintf'.
8053 (remote_query_attached): Likewise.
8054 (remote_static_tracepoint_marker_at): Likewise.
8055 (remote_set_permissions): Likewise.
8056 (remote_detach_1, extended_remote_attach_1): Likewise.
8057 (send_g_packet, remote_vkill): Likewise.
8058 (extended_remote_disable_randomization): Likewise.
8059 (remote_add_target_side_condition): Likewise.
8060 (remote_insert_breakpoint): Likewise.
8061 (remote_remove_breakpoint): Likewise.
8062 (remote_insert_watchpoint): Likewise.
8063 (remote_remove_watchpoint): Likewise.
8064 (remote_insert_hw_breakpoint): Likewise.
8065 (remote_insert_hw_breakpoint): Likewise.
8066 (remote_remove_hw_breakpoint): Likewise.
8067 (remote_download_command_source): Likewise.
8068 (remote_download_tracepoint): Likewise.
8069 (remote_download_trace_state_variable): Likewise.
8070 (remote_disable_tracepoint): Likewise.
8071 (remote_trace_set_readonly_regions): Likewise.
8072 (remote_get_tracepoint_status): Likewise.
8073 (remote_trace_find): Likewise.
8074 (remote_get_trace_state_variable_value): Likewise.
8075 (remote_set_disconnected_tracing): Likewise.
8076 (remote_set_circular_trace_buffer): Likewise.
8077 (remote_get_min_fast_tracepoint_insn_len): Likewise.
8078 (remote_use_agent): Likewise.
8079 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
8080 Update callers.
8081
8082 2012-03-07 Pedro Alves <palves@redhat.com>
8083
8084 * NEWS: Mention QProgramSignals.
8085 * inferior.h (update_signals_program_target): Declare.
8086 * infrun.c: (update_signals_program_target): New.
8087 (handle_command): Update the target of the new program signals
8088 array changes.
8089 * remote.c (PACKET_QProgramSignals): New enum.
8090 (last_program_signals_packet): New global.
8091 (remote_program_signals): New.
8092 (remote_start_remote): Update the target with the program signals
8093 list.
8094 (remote_protocol_features): Add entry for QPassSignals.
8095 (remote_open_1): Free anc clear last_program_signals_packet.
8096 (init_remote_ops): Install remote_program_signals.
8097 * target.c (update_current_target): Adjust.
8098 (target_program_signals): New.
8099 * target.h (struct target_ops) <to_program_signals>: New field.
8100 (target_program_signals): Declare.
8101
8102 2012-03-07 Pedro Alves <palves@redhat.com>
8103
8104 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
8105 extensions.
8106
8107 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
8108
8109 * m68klinux-nat.c (getregs_supplies): Make static.
8110 (getfpregs_supplies): Likewise.
8111 (have_ptrace_getregs): Likewise.
8112
8113 2012-03-06 Joel Brobecker <brobecker@adacore.com>
8114
8115 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
8116 in call to get_die_type_at_offset.
8117
8118 2012-03-06 Stan Shebs <stan@codesourcery.com>
8119
8120 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
8121 * mi/mi-cmd-disas.c: Ditto.
8122 * mi/mi-cmd-env.c: Ditto.
8123 * mi/mi-cmd-file.c: Ditto.
8124 * mi/mi-cmd-stack.c: Ditto.
8125 * mi/mi-cmd-target.c: Ditto.
8126 * mi/mi-cmd-var.c: Ditto.
8127 * mi/mi-cmds.c: Ditto.
8128 * mi/mi-cmds.h: Ditto.
8129 * mi/mi-console.c: Ditto.
8130 * mi/mi-getopt.c: Ditto.
8131 * mi/mi-getopt.h: Ditto.
8132 * mi/mi-interp.c: Ditto.
8133 * mi/mi-main.c: Ditto.
8134 * mi/mi-out.c: Ditto.
8135 * mi/mi-parse.c: Ditto.
8136 * mi/mi-parse.h: Ditto.
8137 * mi/mi-symbol-cmds.c: Ditto.
8138
8139 * mi/mi-getopt.h: Move mi_opt struct up.
8140 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
8141 return.
8142 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
8143
8144 2012-03-06 Tom Tromey <tromey@redhat.com>
8145
8146 * proc-service.c (ps_pglobal_lookup): Set the current program
8147 space.
8148
8149 2012-03-06 Pedro Alves <palves@redhat.com>
8150
8151 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
8152
8153 2012-03-05 Joel Brobecker <brobecker@adacore.com>
8154
8155 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
8156
8157 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8158
8159 Code cleanup.
8160 * common/linux-osdata.c (linux_common_core_of_thread): New function
8161 comment.
8162 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
8163 call by linux_common_core_of_thread.
8164 (linux_nat_core_of_thread_1): Remove.
8165 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
8166 * linux-thread-db.c: Include linux-osdata.h.
8167 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
8168 linux_common_core_of_thread.
8169
8170 2012-03-05 Tom Tromey <tromey@redhat.com>
8171
8172 * value.c (value_primitive_field): Don't fetch contents for
8173 non-virtual bases.
8174
8175 2012-03-05 Tom Tromey <tromey@redhat.com>
8176
8177 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
8178
8179 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
8180
8181 * s390-nat.c: Include "gregset.h".
8182
8183 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8184
8185 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
8186 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
8187 (libunwind_load): New variable so_error, use it for dlerror. Try to
8188 load also LIBUNWIND_SO_7.
8189
8190 2012-03-05 Pedro Alves <palves@redhat.com>
8191
8192 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
8193 is not NULL, and remove resulting dead code.
8194
8195 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
8196
8197 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
8198 prologue to sh_analyze_prologue.
8199 (sh_analyze_prologue): Make better use of such an upper limit, and
8200 generally be more cautious about accessing memory.
8201
8202 2012-03-05 Tom Tromey <tromey@redhat.com>
8203
8204 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
8205 _initialize_ia64_hpux_tdep.
8206
8207 2012-03-05 Pedro Alves <palves@redhat.com>
8208
8209 PR gdb/13766
8210
8211 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
8212 the register state is clear, supply explicit zero, instead of
8213 marking the register unavailable.
8214
8215 2012-03-05 Tristan Gingold <gingold@adacore.com>
8216
8217 * NEWS: Mention OpenVMS ia64 new target.
8218
8219 2012-03-05 Tristan Gingold <gingold@adacore.com>
8220
8221 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
8222 (ia64_unw_accessors, ia64_unw_rse_accessors)
8223 (ia64_libunwind_descr): Declare.
8224 * ia64-vms-tdep.c: New file.
8225 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
8226 (ia64_libunwind_descr): Make them public.
8227 * configure.tgt: Add ia64-*-*vms*.
8228 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
8229 (ALLDEPFILES): Add ia64-vms-tdep.c
8230
8231 2012-03-05 Tristan Gingold <gingold@adacore.com>
8232
8233 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
8234 * remote.c (PACKET_qXfer_uib): New enum value.
8235 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
8236 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
8237 (_initialize_remote): Call add_packet_config_cmd for
8238 xfer:uib packet.
8239
8240 2012-03-05 Tristan Gingold <gingold@adacore.com>
8241
8242 * osabi.c (gdb_osabi_names): Add OpenVMS.
8243 (generic_elf_osabi_sniffer): Likewise.
8244 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
8245
8246 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8247
8248 Removed unused code.
8249 * libunwind-frame.c (libunwind_frame_unwind)
8250 (libunwind_frame_base_address): Remove.
8251 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
8252
8253 2012-03-04 Yao Qi <yao@codesourcery.com>
8254
8255 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
8256 remove trailing new line.
8257 (agent_run_command, agent_run_command): Add _ markup.
8258 (agent_capability_check): Likewise.
8259
8260 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8261
8262 * breakpoint.c (set_condition_evaluation_mode): Set
8263 CONDITION_EVALUATION_MODE unconditionally.
8264
8265 2012-03-03 Yao Qi <yao@codesourcery.com>
8266
8267 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
8268 * common/agent.h: Update declaration.
8269 * inf-child.c (inf_child_use_agent): New.
8270 (inf_child_can_use_agent): New.
8271 (inf_child_target): Initialize fields `to_use_agent'
8272 and `to_can_use_agent'.
8273 * agent.c (agent_new_objfile): New.
8274 (_initialize_agent): Add agent_new_objfile to new_objfile
8275 observer.
8276
8277 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8278 New.
8279 (linux_target_install_ops): Initialize field
8280 `to_static_tracepoint_markers_by_strid'.
8281 * remote.c (free_current_marker): Move it to ...
8282 * tracepoint.c (free_current_marker): ... here. New.
8283 (cleanup_target_stop): New.
8284 * tracepoint.h: Declare free_current_marker.
8285 * NEWS: Add one entry about `info static-tracepoint-marker'.
8286
8287 2012-03-03 Yao Qi <yao@codesourcery.com>
8288
8289 * common/agent.c (agent_loaded_p): New.
8290 (agent_look_up_symbols): New global.
8291 * common/agent.h: Declare agent_loaded_p.
8292
8293 2012-03-03 Yao Qi <yao@codesourcery.com>
8294
8295 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
8296 (agent_capability_check, agent_capability_invalidate): New.
8297 (symbol_list): New array element.
8298 * common/agent.h (enum agent_capa): New.
8299 * target.c (target_pre_inferior): Call agent_capability_invalidate.
8300
8301 2012-03-03 Yao Qi <yao@codesourcery.com>
8302
8303 * target.h (struct target_ops) <to_use_agent>: New field.
8304 (struct target_ops) <to_can_use_agent>: New field.
8305 (target_use_agent, target_can_use_agent): New macro.
8306 * target.c (update_current_target): Update.
8307 * remote.c: New enum `PACKET_QAgent'.
8308 (remote_protocol_features): Add a new element.
8309 (remote_use_agent, remote_can_use_agent): New.
8310 (init_remote_ops): Initialize field `can_use_agent' with
8311 remote_can_use_agent. Intiailize field `use_agent' with
8312 remote_use_agent.
8313 * common/agent.c (use_agent): New global.
8314 * common/agent.h: Declare it.
8315 * tracepoint.c (info_static_tracepoint_markers_command): Add
8316 comment.
8317 * Makefile.in (SFILES): Add common/agent.c and agent.c.
8318 (COMMON_OBS): Add common/agent.o and agent.o
8319 (common-agent.o): New rule.
8320 * agent.c: New.
8321
8322 2012-03-03 Yao Qi <yao@codesourcery.com>
8323
8324 * common/agent.c: New.
8325 * common/agent.h: New.
8326 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
8327 AC_CHECK_HEADERS.
8328 * configure, configh.in: Regenerated.
8329
8330 2012-03-02 Kevin Buettner <kevinb@redhat.com>
8331
8332 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
8333 unless it exists for this architecture.
8334
8335 2012-03-02 Joel Brobecker <brobecker@adacore.com>
8336
8337 * language.h (struct language_defn): New "method" la_read_var_value.
8338 * findvar.c: #include "language.h".
8339 (default_read_var_value): Renames read_var_value. Rewrite
8340 function description.
8341 (read_var_value): New function.
8342 * value.h (default_read_var_value): Add prototype.
8343 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
8344 New functions.
8345 (ada_language_defn): Add entry for la_read_var_value.
8346 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
8347 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
8348 language_defn structures to add entry for new la_read_var_value
8349 field.
8350
8351 2012-03-02 Tom Tromey <tromey@redhat.com>
8352 Pedro Alves <palves@redhat.com>
8353
8354 PR breakpoints/13776:
8355 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
8356 breakpoints.
8357 (delete_longjmp_breakpoint_at_next_stop): New.
8358 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
8359 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
8360 before deleting the inferior. Add comments.
8361 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
8362 breakpoints immediately, but only on next stop. Move that code
8363 next to where we mark other breakpoints for deletion.
8364
8365 2012-03-02 Joel Brobecker <brobecker@adacore.com>
8366
8367 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
8368 marker.
8369 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
8370 violation.
8371
8372 2012-03-02 Pedro Alves <palves@redhat.com>
8373
8374 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
8375
8376 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
8377
8378 Fix -Wmissing-prototypes build.
8379 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
8380 * remote-sim.c (gdbsim_has_all_memory): Likewise.
8381 (gdbsim_has_memory): Likewise.
8382
8383 2012-03-02 Yao Qi <yao@codesourcery.com>
8384
8385 Fix -Wmissing-prototypes build.
8386 * charset.c (phony_iconv_open): Make static.
8387 (phony_iconv_close, phony_iconv): Likewise.
8388 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
8389 * i386-windows-nat.c (_initialize_i386_windows_nat): New
8390 prototype.
8391 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
8392 * ser-mingw.c (create_select_thread): Make static.
8393 * windows-termcap.c (tgetent): New prototype.
8394 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
8395
8396 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
8397
8398 Fix -Wmissing-prototypes build.
8399 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
8400 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
8401 (_initialize_loadable): New prototypes.
8402
8403 2012-03-02 Doug Evans <dje@google.com>
8404
8405 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
8406 abbrev table, read_comp_unit will do it.
8407
8408 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8409
8410 Fix -Wmissing-prototypes build.
8411 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
8412 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
8413 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
8414 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
8415 (_initialize_arm_symbian_tdep): New prototype.
8416 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
8417 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
8418 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
8419 static.
8420 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
8421 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
8422 prototype.
8423 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
8424 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
8425 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
8426 static.
8427 * moxie-tdep.c (moxie_process_record): Likewise.
8428 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
8429 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
8430 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
8431 (_initialize_rl78_tdep): New prototype.
8432 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
8433 (_initialize_rx_tdep): New prototype.
8434 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
8435 (_initialize_darwin_solib): New prototype.
8436 * solib-spu.c: Include solib-spu.h.
8437 (_initialize_spu_solib): New prototype.
8438 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
8439 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
8440 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
8441 (tic6x_software_single_step): Make it static.
8442 (_initialize_tic6x_tdep): New prototype.
8443
8444 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8445
8446 Fix -Wmissing-prototypes build.
8447 * cris-tdep.c (cris_can_use_hardware_watchpoint)
8448 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
8449
8450 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8451
8452 Fix -Wmissing-prototypes build.
8453 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
8454 (frv_have_stopped_data_address): Remove.
8455
8456 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8457
8458 Fix -Wmissing-prototypes build.
8459 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
8460 * sh-tdep.c: Include sh64-tdep.h.
8461 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
8462 * sh64-tdep.c: Include sh64-tdep.h.
8463 * sh64-tdep.h: New file.
8464
8465 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
8466
8467 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
8468
8469 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
8470
8471 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
8472 sp_regnum once the gdbarch_init_osabi hook has been called.
8473
8474 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
8475
8476 * mips-tdep.c (mips32_bc1_pc): New function.
8477 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
8478 BPOSGE32 and BPOSGE64 instructions.
8479 (deal_with_atomic_sequence): Likewise.
8480 (mips32_instruction_has_delay_slot): Likewise.
8481
8482 2012-03-01 Maciej W. Rozycki <macro@mips.com>
8483 Chris Dearman <chris@mips.com>
8484 Maciej W. Rozycki <macro@codesourcery.com>
8485 Joseph Myers <joseph@codesourcery.com>
8486
8487 * features/mips-dsp.xml: New file.
8488 * features/mips64-dsp.xml: New file.
8489 * features/mips-dsp-linux.xml: New file.
8490 * features/mips64-dsp-linux.xml: New file.
8491 * features/Makefile (WHICH): Add mips-dsp-linux and
8492 mips64-dsp-linux.
8493 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
8494 * features/mips-dsp-linux.c: New file.
8495 * features/mips64-dsp-linux.c: New file.
8496 * regformats/mips-dsp-linux.dat: New file.
8497 * regformats/mips64-dsp-linux.dat: New file.
8498 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
8499 registers.
8500 (mips64_linux_register_addr): Likewise.
8501 (mips64_linux_regsets_fetch_registers): Likewise.
8502 (mips64_linux_regsets_store_registers): Likewise.
8503 (mips64_linux_fetch_registers): Update call to
8504 mips64_linux_regsets_fetch_registers.
8505 (mips64_linux_store_registers): Update call to
8506 mips64_linux_regsets_store_registers.
8507 (mips_linux_read_description): Probe for DSP registers.
8508 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
8509 and initialize_tdesc_mips64_dsp_linux.
8510 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
8511 Remove padding of no longer used embedded register slots.
8512 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
8513 (MIPS_RESTART_REGNUM): Redefine enum value.
8514 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
8515 strings.
8516 (mips_tx39_reg_names): Likewise.
8517 (mips_linux_reg_names): New array of register names for Linux
8518 targets.
8519 (mips_register_name): Check for a null pointer in
8520 mips_processor_reg_names and return an empty string.
8521 (mips_register_type): Exclude embedded registers for the IRIX
8522 and Linux ABIs.
8523 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
8524 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
8525 DSP registers.
8526 (mips_stab_reg_to_regnum): Handle DSP accumulators.
8527 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
8528 (mips_gdbarch_init): Likewise. Initialize internal register
8529 indices for the Linux ABI. Use dynamic numbers to refer to
8530 registers, as applicable, while parsing the target description.
8531 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
8532
8533 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8534
8535 * frame.h (read_frame_register_unsigned): Fix typo in function
8536 description.
8537
8538 2012-03-01 Pedro Alves <palves@redhat.com>
8539
8540 * jit-reader.in [!__cplusplus]
8541 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
8542
8543 2012-03-01 Pedro Alves <palves@redhat.com>
8544
8545 * configure.ac (build_warnings): Add -Wmissing-prototypes.
8546 * configure: Regenerate.
8547
8548 2012-03-01 Pedro Alves <palves@redhat.com>
8549
8550 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
8551 * breakpoint.c (create_exception_master_breakpoint, trace_command)
8552 (ftrace_command, strace_command): Make static.
8553 * d-lang.c (_initialize_d_language): Declare.
8554 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
8555 * dwarf2loc.c (_initialize_dwarf2loc):
8556 * dwarf2read.c (process_psymtab_comp_unit): Make static.
8557 * exec.c (exec_get_section_table): Make static.
8558 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
8559 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
8560 * inferior.c (remove_inferior_command, add_inferior_command)
8561 (clone_inferior_command): Make static.
8562 * linux-nat.c (linux_nat_thread_address_space)
8563 (linux_nat_core_of_thread): Make static.
8564 * linux-tdep.c (_initialize_linux_tdep): Declare.
8565 * objc-lang.c (_initialize_objc_lang): Declare.
8566 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
8567 Make static.
8568 (_initialize_opencl_language): Declare.
8569 * record.c (_initialize_record): Declare.
8570 * remote.c (demand_private_info, remote_get_tib_address)
8571 (remote_supports_cond_tracepoints)
8572 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
8573 Make static.
8574 * skip.c (_initialize_step_skip): Declare.
8575 * symtab.c (skip_prologue_using_lineinfo): Make static.
8576 * tracepoint.c (delete_trace_state_variable)
8577 (trace_variable_command, delete_trace_variable_command)
8578 (get_uploaded_tsv, find_matching_tracepoint_location)
8579 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
8580 Make static.
8581 * value.c (pack_unsigned_long): Make static.
8582 * varobj.c (varobj_ensure_python_env): Make static.
8583 * windows-tdep.c (_initialize_windows_tdep): Declare.
8584 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
8585
8586 2012-03-01 Pedro Alves <palves@redhat.com>
8587
8588 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
8589 gdbarch parameter.
8590 (linux_init_abi): Install it as has_shared_address_space gdbarch
8591 callback.
8592
8593 2012-03-01 Pedro Alves <palves@redhat.com>
8594
8595 * observer.c (observer_test_first_notification_function)
8596 (observer_test_second_notification_function)
8597 (observer_test_third_notification_function): Add declarations.
8598
8599 2012-03-01 Pedro Alves <palves@redhat.com>
8600
8601 * common/signals.c (default_target_signal_to_host)
8602 (default_target_signal_from_host): Move ...
8603 * arch-utils.c: ... here.
8604 * arch-utils.h (default_target_signal_to_host)
8605 (default_target_signal_from_host): Declare.
8606
8607 * common/signals.c (target_signal_from_command): Move ...
8608 * infrun.c: ... here.
8609 * inferior.h (target_signal_from_command): Declare.
8610 * target.h (target_signal_from_command)
8611 (default_target_signal_from_host, default_target_signal_to_host):
8612 Delete declarations.
8613
8614 * common/signals.c (_initialize_signals): Delete.
8615
8616 2012-03-01 Pedro Alves <palves@redhat.com>
8617
8618 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
8619 both __cplusplus and !__cplusplus.
8620
8621 2012-03-01 Pedro Alves <palves@redhat.com>
8622
8623 * psymtab.c (find_and_open_source): Delete declaration.
8624 * source.c (find_and_open_source): Move comment ...
8625 * source.h (find_and_open_source): ... to this new declaration.
8626
8627 2012-03-01 Pedro Alves <palves@redhat.com>
8628
8629 * inline-frame.c: Include inline-frame.h.
8630
8631 2012-03-01 Pedro Alves <palves@redhat.com>
8632
8633 * tui/tui-data.c (set_gen_win_origin): Delete.
8634 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
8635 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
8636
8637 2012-03-01 Pedro Alves <palves@redhat.com>
8638
8639 * remote.c (encode_actions): Delete declaration.
8640 * tracepoint.c (encode_actions): Make extern.
8641 * tracepoint.h (encode_actions): Declare.
8642
8643 2012-03-01 Pedro Alves <palves@redhat.com>
8644
8645 * python/py-breakpoint.c: Include python.h.
8646 * python/py-continueevent.c (create_continue_event_object): Make
8647 static.
8648 * python/py-lazy-string.c (stpy_get_type): Make static.
8649 * python/py-newobjfileevent.c (create_new_objfile_event_object):
8650 Make static.
8651 * python/py-utils.c (unicode_to_target_python_string): Make
8652 static.
8653 * python/py-value.c: Include python.h.
8654
8655 2012-03-01 Pedro Alves <palves@redhat.com>
8656
8657 * inferior.c (delete_threads_of_inferior): Delete.
8658
8659 2012-03-01 Pedro Alves <palves@redhat.com>
8660
8661 Import fallback definitions from glibc.
8662
8663 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
8664 ps_prochandle): Forward declare.
8665 (ps_err_e): Use glibc's comments.
8666 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
8667 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
8668 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
8669 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
8670 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
8671 (struct ps_prochandle): Adjust comment.
8672
8673 2012-03-01 Pedro Alves <palves@redhat.com>
8674
8675 * ada-lang.c (ada_modulus_from_name): Delete.
8676 * ada-lex.l (lexer_init): Make static.
8677
8678 2012-03-01 Pedro Alves <palves@redhat.com>
8679
8680 PR gdb/13767
8681
8682 * frame.c (read_frame_register_unsigned): New.
8683 * frame.h (read_frame_register_unsigned): Declare.
8684 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
8685 Handle it.
8686 (print_i387_control_word): New parameter `control_p'. Handle it.
8687 (i387_print_float_info): Handle unavailable float registers.
8688
8689 2012-03-01 Keith Seitz <keiths@redhat.com>
8690
8691 * linespec.c (decode_line_2): Sort the list of methods
8692 alphabetically before presenting the user with a selection
8693 menu.
8694
8695 2012-03-01 Doug Evans <dje@google.com>
8696
8697 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
8698 has_namespace_info.
8699 (dwarf2_read_abbrevs): Remove corresponding initialization.
8700
8701 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
8702
8703 * NEWS: Mention new python command class gdb.COMMAND_USER.
8704 * cli/cli-cmds.c (show_user): Print error when used on a python
8705 command.
8706 (init_cli_cmds): Update documentation strings for "show user" and
8707 "set/show max-user-call-depth" to clarify that it does not apply to
8708 python commands.
8709 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
8710 error check.
8711 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
8712 gdb python api.
8713 * top.c (execute_command): Only execute a user-defined command as a
8714 legacy macro if c->user_commands is set.
8715
8716 2012-03-01 Tom Tromey <tromey@redhat.com>
8717
8718 * valprint.h (struct generic_val_print_decorations): New.
8719 (generic_val_print): Declare.
8720 * valprint.c (generic_val_print): New function.
8721 * p-valprint.c (p_decorations): New global.
8722 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
8723 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
8724 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
8725 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
8726 * m2-valprint.c (m2_decorations): New global.
8727 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
8728 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
8729 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
8730 TYPE_CODE_ERROR>: Call generic_val_print.
8731 * f-valprint.c (f_decorations): New global.
8732 (f_val_print): Use print_function_pointer_address.
8733 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
8734 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
8735 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
8736 generic_val_print.
8737 * c-valprint.c (c_decorations): New global.
8738 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
8739 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
8740 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
8741 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
8742 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
8743 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
8744 case.
8745
8746 2012-03-01 Tom Tromey <tromey@redhat.com>
8747
8748 * valprint.c (val_print): Update.
8749 * p-valprint (pascal_val_print): Return void.
8750 * p-lang.h (pascal_val_print): Return void.
8751 * m2-valprint.c (m2_val_print): Return void.
8752 * m2-lang.h (m2_val_print): Return void.
8753 * language.h (struct language_defn) <la_val_print>: Return void.
8754 * language.c (unk_lang_val_print): Return void.
8755 * jv-valprint.c (java_val_print): Return void.
8756 * jv-lang.h (java_val_print): Return void.
8757 * f-valprint.c (f_val_print): Return void.
8758 * f-lang.h (f_val_print): Return void.
8759 * d-valprint.c (d_val_print): Return void.
8760 (dynamic_array_type): Update.
8761 * d-lang.h (d_val_print): Return void.
8762 * c-valprint.c (c_val_print): Return void.
8763 * c-lang.h (c_val_print): Return void.
8764 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
8765 void.
8766 * ada-lang.h (ada_val_print): Return void.
8767
8768 2012-03-01 Tom Tromey <tromey@redhat.com>
8769
8770 * value.h (val_print): Return void.
8771 * valprint.c (val_print): Return void.
8772
8773 2012-03-01 Tom Tromey <tromey@redhat.com>
8774
8775 * value.h (common_val_print): Return void.
8776 * valprint.c (common_val_print): Return void.
8777
8778 2012-03-01 Tom Tromey <tromey@redhat.com>
8779
8780 * value.h (value_print): Return void.
8781 * valprint.c (value_print): Return void.
8782 * p-valprint.c (pascal_value_print): Return void.
8783 * p-lang.h (pascal_value_print): Return void.
8784 * language.h (struct language_defn) <la_value_print>: Return
8785 void.
8786 * language.c (unk_lang_value_print): Return void.
8787 * jv-valprint.c (java_value_print): Return void.
8788 * jv-lang.h (java_value_print): Return void.
8789 * f-valprint.c (c_value_print): Don't declare.
8790 Include c-lang.h.
8791 * c-valprint.c (c_value_print): Return void.
8792 * c-lang.h (c_value_print): Return void.
8793 * ada-valprint.c (ada_value_print): Return void.
8794 * ada-lang.h (ada_value_print): Return void.
8795
8796 2012-03-01 Tom Tromey <tromey@redhat.com>
8797
8798 * value.c (value_primitive_field): Handle virtual base classes.
8799
8800 2012-03-01 Tom Tromey <tromey@redhat.com>
8801
8802 * gdbtypes.h (struct vbase): Remove.
8803
8804 2012-03-01 Tom Tromey <tromey@redhat.com>
8805
8806 * c-valprint.c (print_function_pointer_address): Move...
8807 * valprint.c: ... here. Make non-static.
8808 * m2-valprint.c (print_function_pointer_address): Remove.
8809 * valprint.h (print_function_pointer_address): Declare.
8810
8811 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8812
8813 * NEWS: Document the fact that one can provide a condition when
8814 creating an Ada exception catchpoint.
8815
8816 2012-03-01 Tom Tromey <tromey@redhat.com>
8817
8818 * valprint.c (val_print_type_code_flags): Fix placement of
8819 trailing brace.
8820
8821 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8822
8823 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
8824 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
8825 environment variable before calling update-copyright.
8826
8827 2012-03-01 Joel Brobecker <brobecker@adacore.com>
8828
8829 * gnulib/extra/update-copyright: Update to the latest from
8830 gnulib's git repository.
8831 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
8832 variable to 2 instead of 1.
8833
8834 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8835
8836 * varobj.c (c_value_of_variable): Remove dead code.
8837
8838 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8839
8840 * ada-lex.p (processId): Do not modify already encoded IDs.
8841 Update function documentation.
8842
8843 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8844
8845 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
8846 "name" with "struct symbol *name_sym".
8847 * ada-exp.y (write_var_or_type): Update call to
8848 ada_find_renaming_symbol.
8849 "name" with "struct symbol *name_sym". Adjust Implementation
8850 accordingly. Adjust the function documentation.
8851
8852 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8853
8854 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
8855 * ada-lang.c (ada_find_any_type): Add advance declaration.
8856 Make static. Replace ada_find_any_symbol by
8857 ada_find_any_type_symbol.
8858 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
8859 Improve function description. Make static.
8860 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
8861 Replace ada_find_any_symbol by ada_find_any_type_symbol.
8862
8863 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8864
8865 * ada-lang.c (struct tag_args): Delete.
8866 (ada_get_tsd_type): Function body moved up in source file.
8867 (ada_tag_name_1, ada_tag_name_2): Delete.
8868 (ada_get_tsd_from_tag): New function.
8869 (ada_tag_name_from_tsd): New function.
8870 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
8871 to determine the tag name.
8872
8873 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8874
8875 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
8876 declaration.
8877 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
8878 function.
8879
8880 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8881
8882 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
8883
8884 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8885
8886 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
8887 full searches.
8888
8889 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8890
8891 * ada-lang.c (constrained_packed_array_type): If there is a
8892 parallel XA type, use it to determine the array index type.
8893
8894 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8895
8896 * ada-valprint.c (ada_val_print_1): If our value is a reference
8897 to an array descriptor, dereference it before converting it
8898 to a simple array.
8899
8900 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8901
8902 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
8903 creating fixed value.
8904 (ada_value_ind, ada_coerce_ref, assign_component)
8905 (ada_evaluate_subexp): Remove call to unwrap_value before
8906 call to ada_to_fixed_value.
8907
8908 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8909
8910 * ada-lang.c (to_fixed_array_type): Set result's type name.
8911
8912 2012-02-29 Joel Brobecker <brobecker@adacore.com>
8913
8914 * ada-lang.c (catch_ada_exception_command_split): Add new
8915 argument cond_string. Add support for condition at end of
8916 "catch exception" commands.
8917 (ada_decode_exception_location): Add new argument cond_string.
8918 Update call to catch_ada_exception_command_split.
8919 (create_ada_exception_catchpoint): Add new argument cond_string.
8920 Set the breakpoint condition if needed.
8921 (catch_ada_exception_command): Update call to
8922 ada_decode_exception_location.
8923 (ada_decode_assert_location): Add function documentation.
8924 Add support for condition at end of "catch assert" command.
8925 (catch_assert_command): Update calls to ada_decode_assert_location
8926 and create_ada_exception_catchpoint.
8927
8928 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8929
8930 Fix disp-step-syscall.exp: fork: single step over fork.
8931 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
8932 (i386_linux_get_syscall_number_from_regcache): ... here, new function
8933 comment, change parameters gdbarch and ptid to regcache. Remove
8934 parameter regcache, initialize gdbarch from regcache here.
8935 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
8936 New functions.
8937 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
8938 instead.
8939 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
8940 'syscall'. Make the 'int' check more strict.
8941
8942 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8943
8944 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
8945 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
8946 (i386_linux_intx80_sysenter_syscall_record): ... here.
8947 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
8948 Use the renamed function name.
8949
8950 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8951
8952 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
8953 * breakpoint.c (until_break_command): Likewise.
8954 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
8955 * infcall.c (call_function_by_hand): Likewise.
8956 * infcmd.c (finish_forward): Likewise.
8957 * infrun.c (insert_exception_resume_breakpoint): Likewise.
8958
8959 2012-02-28 Tristan Gingold <gingold@adacore.com>
8960
8961 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
8962 avoid variable assignments inside condition.
8963
8964 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
8965
8966 Fix static analysis issue found by cppcheck.
8967 * microblaze-tdep.c (microblaze_extract_return_value): Fix
8968 uninitialized BUF for size 2.
8969
8970 2012-02-27 Chris Dearman <chris@mips.com>
8971 Nathan Froyd <froydnj@codesourcery.com>
8972 Maciej W. Rozycki <macro@codesourcery.com>
8973
8974 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
8975 (mips16_instruction_has_delay_slot): Likewise.
8976 (mips_segment_boundary): Likewise.
8977 (mips_adjust_breakpoint_address): Likewise.
8978 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
8979
8980 2012-02-27 Maciej W. Rozycki <macro@mips.com>
8981 Maciej W. Rozycki <macro@codesourcery.com>
8982
8983 * infrun.c (handle_inferior_event): Don't proceed through
8984 shared library trampolines if stepping at the machine
8985 instruction level.
8986
8987 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
8988
8989 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
8990 too.
8991
8992 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
8993
8994 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
8995 (sh_stub_unwind_sniffer): New functions.
8996 (sh_stub_unwind): New variable.
8997 (sh_gdbarch_init): Wire everything.
8998
8999 2012-02-27 Pedro Alves <palves@redhat.com>
9000
9001 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
9002 (linux_nat_post_attach_wait): Adjust to use
9003 linux_proc_pid_is_stopped.
9004 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
9005 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
9006 based on pid_is_stopped from both linux-nat.c and
9007 gdbserver/linux-low.c, and renamed.
9008
9009 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9010
9011 * remote.c (remote_watchpoint_addr_within_range): New function.
9012 (init_remote_ops): Use it.
9013
9014 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9015
9016 * target.h (target_watchpoint_addr_within_range): Document macro.
9017
9018 2012-02-24 Pedro Alves <palves@redhat.com>
9019
9020 * stack.c (set_last_displayed_sal): Issue internal_error instead
9021 of warning, and issue it after clearing the last displayed sal.
9022
9023 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
9024 Pedro Alves <palves@redhat.com>
9025
9026 * breakpoint.c (until_break_command): Install breakpoints after
9027 all frame manipulations.
9028
9029 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9030
9031 * remote.c (remote_supports_cond_breakpoints): New forward
9032 declaration.
9033 (remote_add_target_side_condition): New function.
9034 (remote_insert_breakpoint): Add target-side breakpoint
9035 conditional if supported.
9036 (remote_insert_hw_breakpoint): Likewise.
9037 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
9038 hook.
9039
9040 * target.c (update_current_target): Inherit
9041 to_supports_evaluation_of_breakpoint_conditions.
9042 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
9043
9044 * target.h (struct target_ops)
9045 <to_supports_evaluation_of_breakpoint_conditions>: New field.
9046 (target_supports_evaluation_of_breakpoint_conditions): New #define.
9047
9048 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
9049 (condition_evaluation_both, condition_evaluation_auto,
9050 condition_evaluation_host, condition_evaluation_target,
9051 condition_evaluation_enums, condition_evaluation_mode_1,
9052 condition_evaluation_mode): New static globals.
9053 (translate_condition_evaluation_mode): New function.
9054 (breakpoint_condition_evaluation_mode): New function.
9055 (gdb_evaluates_breakpoint_condition_p): New function.
9056 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
9057 (mark_breakpoint_modified): New function.
9058 (mark_breakpoint_location_modified): New function.
9059 (set_condition_evaluation_mode): New function.
9060 (show_condition_evaluation_mode): New function.
9061 (bp_location_compare_addrs): New function.
9062 (get_first_location_gte_addr): New helper function.
9063 (set_breakpoint_condition): Free condition bytecode if locations
9064 has become unconditional. Call mark_breakpoint_modified (...).
9065 (condition_command): Call update_global_location_list (1) for
9066 breakpoints.
9067 (breakpoint_xfer_memory): Use is_breakpoint (...).
9068 (is_breakpoint): New function.
9069 (parse_cond_to_aexpr): New function.
9070 (build_target_condition_list): New function.
9071 (insert_bp_location): Handle target-side conditional
9072 breakpoints and call build_target_condition_list (...).
9073 (update_inserted_breakpoint_locations): New function.
9074 (insert_breakpoint_locations): Handle target-side conditional
9075 breakpoints.
9076 (bpstat_check_breakpoint_conditions): Add comment.
9077 (bp_condition_evaluator): New function.
9078 (bp_location_condition_evaluator): New function.
9079 (print_breakpoint_location): Print information on where the condition
9080 will be evaluated.
9081 (print_one_breakpoint_location): Likewise.
9082 (init_bp_location): Call mark_breakpoint_location_modified (...) for
9083 breakpoint location.
9084 (force_breakpoint_reinsertion): New functions.
9085 (update_global_location_list): Handle target-side breakpoint
9086 conditions.
9087 Reinsert locations that are already inserted if conditions have
9088 changed.
9089 (bp_location_dtor): Free agent expression bytecode.
9090 (disable_breakpoint): Call mark_breakpoint_modified (...).
9091 Call update_global_location_list (...) with parameter 1 for breakpoints.
9092 (disable_command): Call mark_breakpoint_location_modified (...).
9093 Call update_global_location_list (...) with parameter 1 for breakpoints.
9094 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
9095 (enable_command): mark_breakpoint_location_modified (...).
9096 (_initialize_breakpoint): Update documentation and add
9097 condition-evaluation breakpoint subcommand.
9098
9099 * breakpoint.h: Include ax.h.
9100 (condition_list): New data structure.
9101 (condition_status): New enum.
9102 (bp_target_info) <cond_list>: New field.
9103 (bp_location) <condition_changed, cond_bytecode>: New fields.
9104 (is_breakpoint): New prototype.
9105
9106 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9107
9108 * remote.c (remote_state) <cond_breakpoints>: New field.
9109 (PACKET_ConditionalBreakpoints): New enum.
9110 (remote_cond_breakpoint_feature): New function.
9111 (remote_protocol_features): Add new ConditionalBreakpoints entry.
9112 (remote_supports_cond_breakpoints): New function.
9113 (_initialize_remote): Add new packet configuration for
9114 target-side conditional breakpoints.
9115
9116 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9117
9118 * NEWS: Mention target-side conditional breakpoint support,
9119 new condition-evaluation breakpoint subcommand and remote
9120 packet extensions.
9121
9122 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9123
9124 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
9125 number.
9126
9127 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
9128
9129 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
9130 (after_prologue): Remove.
9131
9132 2012-02-23 Tom Tromey <tromey@redhat.com>
9133
9134 * jv-valprint.c (java_val_print): Remove dead code.
9135
9136 2012-02-23 Tristan Gingold <gingold@adacore.com>
9137
9138 * ada-tasks.c (struct ada_tasks_inferior_data): Add
9139 known_tasks_element and known_tasks_length fields.
9140 (read_known_tasks_array): Change argument type. Use pointer type
9141 and number of elements from DATA. Adjust.
9142 (read_known_tasks_list): Likewise.
9143 (get_known_tasks_addr): Remove.
9144 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
9145 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
9146 type and array length. Merge former get_known_tasks_addr code.
9147
9148 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
9149
9150 PR backtrace/13716
9151 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
9152 it after set_momentary_breakpoint.
9153
9154 2012-02-22 Sterling Augustine <saugustine@google.com>
9155
9156 PR 13689:
9157 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
9158
9159 2012-02-22 Gary Benson <gbenson@redhat.com>
9160
9161 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
9162 (find_slot_in_mapped_hash): Likewise.
9163
9164 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
9165
9166 PR build/13638
9167 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
9168 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
9169 * configure: Regenerate.
9170
9171 2012-02-21 Tristan Gingold <gingold@adacore.com>
9172 Pedro Alves <palves@redhat.com>
9173
9174 * ia64-tdep.c: Do not include libunwind-ia64.h.
9175 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
9176 Include libunwind-ia64.h instead of libunwind.h.
9177 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
9178 for libunwind.h existence.
9179 * configure, config.in: Regenerate.
9180
9181 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
9182
9183 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
9184 instead of value_rtti_target_type.
9185 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
9186 instead of value_rtti_target_type.
9187 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
9188 value_rtti_target_type.
9189 * valops.c (value_ind): Extract function readjust_indirect_value_type.
9190 (value_rtti_target_type): Rename to ...
9191 (value_rtti_indirect_type): ... here and make it indirect. Update
9192 function comment.
9193 * value.c (readjust_indirect_value_type): New function.
9194 (coerce_ref): Support for enclosing type setting for references
9195 with readjust_indirect_value_type.
9196 * value.h (readjust_value_type): New declaration.
9197 (value_rtti_target_type): Rename to ...
9198 (value_rtti_indirect_type): ... here.
9199
9200 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
9201
9202 * MAINTAINERS (Write After Approval): Add myself to the list.
9203
9204 2012-02-20 Doug Evans <dje@google.com>
9205
9206 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
9207 Rename objfile_p_char parameter to objfilep.
9208 (build_objfile_section_table): Result is now void. All callers
9209 updated.
9210 * objfiles.h (struct objfile): Tweak comments, whitespace.
9211 (build_objfile_section_table): Update.
9212
9213 * elfread.c (elf_symfile_segments): Fix warning text.
9214
9215 2012-02-20 Tom Tromey <tromey@redhat.com>
9216
9217 PR gdb/13498:
9218 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
9219 particular set of file names once.
9220 (dw2_map_symbol_filenames): Likewise.
9221
9222 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9223
9224 Code cleanup.
9225 * main.c (write_files): Remove the declaration.
9226 (external_editor_command): Move the declaration ...
9227 [GDBTK] (external_editor_command): ... here. Fix the comment.
9228
9229 2012-02-20 Tom Tromey <tromey@redhat.com>
9230
9231 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
9232 extraneous block.
9233
9234 2012-02-20 Tristan Gingold <gingold@adacore.com>
9235
9236 * darwin-nat.h (enum darwin_msg_state): Add comments.
9237
9238 2012-02-20 Tristan Gingold <gingold@adacore.com>
9239
9240 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
9241 value.
9242
9243 2012-20-18 Joel Brobecker <brobecker@adacore.com>
9244
9245 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
9246 between function description and implementation.
9247
9248 2012-02-17 Tom Tromey <tromey@redhat.com>
9249
9250 PR python/12070:
9251 * python/py-event.c (event_object_getset): New global.
9252 (event_object_type): Reference it.
9253 * python/py-type.c (field_object_getset): New global.
9254 (field_object_type): Reference it.
9255 * python/python-internal.h (gdb_py_generic_dict): Declare.
9256 * python/py-utils.c (gdb_py_generic_dict): New function.
9257
9258 2012-02-17 Tristan Gingold <gingold@adacore.com>
9259
9260 * solib-darwin.c (darwin_current_sos): Check magic and filetype
9261
9262 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
9263
9264 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
9265 TYPE_CALLING_CONVENTION annotation.
9266
9267 2012-02-16 Kevin Buettner <kevinb@redhat.com>
9268
9269 * MAINTAINERS: Add rx to target ISA section.
9270 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
9271 (ALLDEPFILES): Add rx-tdep.c.
9272
9273 2012-02-16 Tom Tromey <tromey@redhat.com>
9274
9275 * symfile.c (symbol_file_add_main_1): Use inferior's
9276 symfile_flags.
9277 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
9278 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
9279 inferior.
9280 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
9281 inferior.
9282 (follow_exec): Use inferior's symfile_flags.
9283 * inferior.h (struct inferior) <symfile_flags>: New field.
9284
9285 2012-02-16 Mike Frysinger <vapier@gentoo.org>
9286
9287 PR gdb/9734:
9288 * remote-sim.c (gdbsim_create_inferior): Call error() when
9289 sim_create_inferior() fails.
9290
9291 2012-02-16 Josh Matthews <josh@joshmatthews.net>
9292
9293 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
9294
9295 2012-02-16 Tom Tromey <tromey@redhat.com>
9296
9297 PR c++/13653:
9298 * thread.c (struct current_thread_cleanup) <was_removable>: New
9299 field.
9300 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
9301 (make_cleanup_restore_current_thread): Initialize new field.
9302
9303 2012-02-15 Kevin Buettner <kevinb@redhat.com>
9304
9305 * MAINTAINERS: Add rl78 to target ISA section.
9306 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
9307 (ALLDEPFILES): Add rl78-tdep.c.
9308 * NEWS: Mention rl78 as a new target.
9309
9310 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
9311
9312 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
9313 data.
9314 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
9315
9316 2012-02-15 Tom Tromey <tromey@redhat.com>
9317
9318 PR gdb/12659:
9319 * infcmd.c (registers_info): Print just the current register's
9320 name.
9321
9322 2012-02-15 Tom Tromey <tromey@redhat.com>
9323
9324 * python/py-symbol.c (sympy_value): Use _().
9325
9326 2012-02-15 Pedro Alves <palves@redhat.com>
9327
9328 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
9329 output to be like native targets'.
9330 (remote_pid_to_str): Special case the null ptid.
9331
9332 2012-02-14 Stan Shebs <stan@codesourcery.com>
9333
9334 * NEWS: Mention enable count command.
9335 * breakpoint.h (struct breakpoint): New field enable_count.
9336 * breakpoint.c (enable_breakpoint_disp): Add count argument.
9337 (enable_breakpoint): Add arg to call.
9338 (struct disp_data): New struct.
9339 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
9340 (do_map_enable_once_breakpoint): Create a struct and pass it.
9341 (do_map_enable_delete_breakpoint): Ditto.
9342 (do_map_enable_count_breakpoint): New function.
9343 (enable_count_command): New function.
9344 (bpstat_stop_status): Decrement enable_count.
9345 (print_one_breakpoint_location): Report enable count.
9346 (_initialize_breakpoint): Add enable count command.
9347
9348 2012-02-14 Kevin Buettner <kevinb@redhat.com>
9349
9350 * rl78-tdep.c (reggroups.h): Include.
9351 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
9352 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
9353 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
9354 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
9355 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
9356 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
9357 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
9358 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
9359 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
9360 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
9361 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
9362 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
9363 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
9364 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
9365 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
9366 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
9367 beginning of register list.
9368 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
9369 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
9370 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
9371 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
9372 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
9373 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
9374 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
9375 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
9376 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
9377 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
9378 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
9379 the pseudo registers. Rearrange other pseudo registers too so
9380 that the bank registers appear at the end.
9381 (rl78_register_type): Account for the fact that the byte sized
9382 bank registers are now pseudo-registers.
9383 (rl78_register_name): Rearrange the register name array. Make
9384 initial set of raw banked registers inaccessible.
9385 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
9386 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
9387 case for copying bytes back and forth between raw and pseudo
9388 versions of the banked registers. Update other cases to reflect
9389 the changed names.
9390 (rl78_return_value): Update to account for changed names of
9391 raw registers.
9392 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
9393 rl78_register_sim_regno().
9394
9395 2012-02-14 Kevin Buettner <kevinb@redhat.com>
9396
9397 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
9398 the name parameter being passed to find_pc_partial_function().
9399
9400 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9401
9402 * MAINTAINERS: Step down from being ia64 target maintainer.
9403
9404 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9405
9406 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
9407 compilation warning.
9408
9409 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9410
9411 Fix crash on loaded shlibs without loaded exec_bfd.
9412 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
9413 (set_section_command): Replace exec_bfd by p->bfd.
9414
9415 2012-02-10 Tom Tromey <tromey@redhat.com>
9416
9417 * linespec.c (decode_line_internal): Skip symtabs_from_filename
9418 when we have a C++ qualified name.
9419
9420 2012-02-10 Pedro Alves <palves@redhat.com>
9421
9422 * inferior.c (inferior_pid_to_str): New.
9423 (print_inferior, inferior_command): Use it.
9424
9425 2012-02-10 Pedro Alves <palves@redhat.com>
9426
9427 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
9428 the test CFLAGS.
9429 * configure: Regenerate.
9430
9431 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9432
9433 * linespec.c (decode_line_internal): Fix comment correctness.
9434
9435 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
9436
9437 PR gdb/12953
9438 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
9439 * amd64bsd-nat.c: Add support for debug registers (adapted from
9440 i386bsd-nat.c).
9441 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
9442 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
9443 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
9444 (amd64bsd_dr_get_control): New functions.
9445 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
9446 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
9447 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
9448 watchpoints initialization.
9449 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
9450
9451 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
9452
9453 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
9454 flds_bnds.fields.
9455 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
9456
9457 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
9458
9459 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
9460
9461 2012-02-08 Joel Brobecker <brobecker@adacore.com>
9462
9463 * language.h (symbol_name_cmp_ftype): Renames
9464 symbol_name_match_p_ftype.
9465 (struct language_defn)[la_get_symbol_name_cmp]: Renames
9466 la_get_symbol_name_match_p.
9467 * ada-lang.c (ada_get_symbol_name_cmp): Renames
9468 ada_get_symbol_name_match_p. Update comment.
9469 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
9470 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
9471 Renames symbol_name_match_p. Update field type.
9472 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
9473 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
9474 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
9475 "la_get_symbol_name_cmp" in comments.
9476 * language.c: Likewise.
9477
9478 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9479
9480 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
9481 %eflags offset.
9482 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
9483 (amd64_sol2_gregset32_reg_offs): Likewise.
9484
9485 2012-02-08 Joel Brobecker <brobecker@adacore.com>
9486
9487 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
9488 of the returned BFD is allocated by GDB.
9489
9490 2012-02-07 Tom Tromey <tromey@redhat.com>
9491
9492 PR python/12027:
9493 * python/python-internal.h (frame_object_type): Declare.
9494 * python/py-symbol.c (sympy_needs_frame): New function.
9495 (sympy_value): New function.
9496 (symbol_object_getset): Add "needs_frame".
9497 (symbol_object_methods): Add "value".
9498 * python/py-frame.c (frame_object_type): No longer static.
9499
9500 2012-02-07 Tom Tromey <tromey@redhat.com>
9501
9502 PR python/13599:
9503 * python/py-symbol.c (sympy_line): New function.
9504 (symbol_object_getset): Add "line".
9505
9506 2012-02-07 Tom Tromey <tromey@redhat.com>
9507
9508 * charset.c (find_charset_names): Check 'in' against NULL.
9509
9510 2012-02-06 Doug Evans <dje@google.com>
9511
9512 * gdbtypes.h (struct main_type): Change type of name,tag_name,
9513 and fields.name members from char * to const char *. All uses updated.
9514 (struct cplus_struct_type): Change type of fn_fieldlists.name member
9515 from char * to const char *. All uses updated.
9516 (type_name_no_tag): Update.
9517 (lookup_unsigned_typename, lookup_signed_typename): Update.
9518 * gdbtypes.c (type_name_no_tag): Change result type
9519 from char * to const char *. All callers updated.
9520 (lookup_unsigned_typename, lookup_signed_typename): Change type of
9521 name parameter from char * to const char *.
9522 * symtab.h (struct cplus_specific): Change type of demangled_name
9523 member from char * to const char *. All uses updated.
9524 (struct general_symbol_info): Change type of name and
9525 mangled_lang.demangled_name members from char * to const char *.
9526 All uses updated.
9527 (symbol_get_demangled_name, symbol_natural_name): Update.
9528 (symbol_demangled_name, symbol_search_name): Update.
9529 * symtab.c (symbol_get_demangled_name): Change result type
9530 from char * to const char *. All callers updated.
9531 (symbol_natural_name, symbol_demangled_name): Ditto.
9532 (symbol_search_name): Ditto.
9533 (completion_list_add_name): Change type of symname,sym_text,
9534 text,word parameters from char * to const char *.
9535 (completion_list_objc_symbol): Change type of sym_text,
9536 text,word parameters from char * to const char *.
9537 * ada-lang.c (find_struct_field): Change type of name parameter
9538 from char * to const char *.
9539 (encoded_ordered_before): Similarly for N0,N1 parameters.
9540 (old_renaming_is_invisible): Similarly for function_name parameter.
9541 (ada_type_name): Change result type from char * to const char *.
9542 All callers updated.
9543 * ada-lang.h (ada_type_name): Update.
9544 * buildsym.c (hashname): Change type of name parameter
9545 from char * to const char *.
9546 * buildsym.h (hashname): Update.
9547 * dbxread.c (end_psymtab): Change type of include_list parameter
9548 from char ** to const char **.
9549 * dwarf2read.c (determine_prefix): Change result type
9550 from char * to const char *. All callers updated.
9551 * f-lang.c (find_common_for_function): Change type of name, funcname
9552 parameters from char * to const char *.
9553 * f-lang.c (find_common_for_function): Update.
9554 * f-valprint.c (list_all_visible_commons): Change type of funcname
9555 parameters from char * to const char *.
9556 * gdbarch.sh (static_transform_name): Change type of name parameter
9557 and result from char * to const char *.
9558 * gdbarch.c: Regenerate.
9559 * gdbarch.h: Regenerate.
9560 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
9561 of name parameter from char * to const char *.
9562 * jv-lang.c (java_primitive_type_from_name): Ditto.
9563 (java_demangled_signature_length): Similarly for signature parameter.
9564 (java_demangled_signature_copy): Ditto.
9565 (java_demangle_type_signature): Ditto.
9566 * jv-lang.h (java_primitive_type_from_name): Update.
9567 (java_demangle_type_signature): Update.
9568 * objc-lang.c (specialcmp): Change type of a,b parameters
9569 from char * to const char *.
9570 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
9571 from char * to const char *. All callers updated.
9572 * p-lang.h (is_pascal_string_type): Update.
9573 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
9574 of name parameter from char * to const char *.
9575 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
9576 * utils.c (fprintf_symbol_filtered): Ditto.
9577 * defs.h (fprintf_symbol_filtered): Update.
9578 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
9579 * stabsread.h (end_psymtab): Update.
9580 * stack.c (find_frame_funname): Change type of funname parameter
9581 from char ** to const char **.
9582 * stack.h (find_frame_funname): Update.
9583 * typeprint.c (type_print): Change type of varstring parameter
9584 from char * to const char *.
9585 * value.h (type_print): Update.
9586 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
9587 from char * to const char *. All callers updated.
9588 (xcoff_end_psymtab): Change type of include_list parameter
9589 from char ** to const char **. All callers updated.
9590 (swap_sym): Similarly for name parameter. All callers updated.
9591 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
9592 Use xstrdup.
9593 (process_coff_symbol): Use xstrdup.
9594 * stabsread.c (stabs_method_name_from_physname): Renamed from
9595 update_method_name_from_physname. Change result type from void
9596 to char *. All callers updated.
9597 (read_member_functions): In has_destructor case, store name in objfile
9598 obstack instead of malloc space. In !has_stub case, fix mem leak.
9599
9600 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
9601
9602 * configure: Rebuild.
9603 * configure.ac: Put -L../bfd and -L../libiberty at the front of
9604 LDFLAGS.
9605
9606 2012-02-03 Kevin Buettner <kevinb@redhat.com>
9607
9608 * configure.tgt (rl78-*-elf): New target.
9609 * rl78-tdep.c: New file.
9610
9611 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9612
9613 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
9614 and continue the loop. Add QUIT statement.
9615
9616 2012-02-03 Tom Tromey <tromey@redhat.com>
9617
9618 PR gdb/13596:
9619 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
9620 bfd_lookup_symbol_from_symtab.
9621 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
9622 gdb_bfd_lookup_symbol_from_symtab.
9623
9624 2012-02-03 Joel Brobecker <brobecker@adacore.com>
9625
9626 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
9627 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
9628 symbol. Add assertion that sym2 is never NULL.
9629
9630 2012-02-02 Doug Evans <dje@google.com>
9631
9632 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
9633 "name" parameter to const char ** from char **. All callers updated.
9634 (find_pc_partial_function): Ditto.
9635 (cache_pc_function_name): Change type to const char * from char *.
9636 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
9637 (find_pc_partial_function): Update.
9638 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
9639 type of "name" parameter to const char * from char *.
9640 All uses updated.
9641 * arch-utils.c (generic_in_solib_return_trampoline): Change
9642 type of "name" parameter to const char * from char *.
9643 * arch-utils.h (generic_in_solib_return_trampoline): Update.
9644 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
9645 type of "name" parameter to const char * from char *.
9646 * gdbarch.sh (in_solib_return_trampoline): Ditto.
9647 * gdbarch.c: Regenerate.
9648 * gdbarch.h: Regenerate.
9649 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
9650 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
9651 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
9652 type of "name" parameter to const char * from char *.
9653 * skip.c (skip_function_pc): Ditto.
9654 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
9655 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
9656 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
9657 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
9658 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
9659 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
9660 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
9661 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
9662 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
9663
9664 2012-02-02 Pedro Alves <palves@redhat.com>
9665
9666 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
9667 the current inferior has no execution. Make sure the current
9668 remote process matches gdb's current inferior.
9669
9670 2012-02-02 Tom Tromey <tromey@redhat.com>
9671
9672 PR gdb/13405:
9673 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
9674 read-only memory.
9675
9676 2012-02-02 Tom Tromey <tromey@redhat.com>
9677
9678 PR gdb/9307:
9679 * symtab.c (lookup_language_this): Set block_found.
9680
9681 2012-02-01 Tom Tromey <tromey@redhat.com>
9682
9683 PR gdb/13431:
9684 * jit.c (struct jit_inferior_data): Rewrite.
9685 (struct jit_objfile_data): New.
9686 (get_jit_objfile_data): New function.
9687 (add_objfile_entry): Update.
9688 (jit_read_descriptor): Return int. Replace descriptor_addr
9689 argument with inf_data. Update. Don't call error.
9690 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
9691 descriptor here.
9692 (jit_inferior_init): Don't look up descriptor. Don't call error.
9693 (jit_reset_inferior_data_and_breakpoints)
9694 (jit_inferior_created_observer): Remove.
9695 (jit_inferior_exit_hook): Update.
9696 (jit_executable_changed_observer): Remove.
9697 (jit_event_handler): Update.
9698 (free_objfile_data): Reset inferior data if needed.
9699 (_initialize_jit): Update.
9700
9701 2012-02-01 Tom Tromey <tromey@redhat.com>
9702
9703 * jit.c (bfd_open_from_target_memory): Move higher in file.
9704
9705 2012-02-01 Tristan Gingold <gingold@adacore.com>
9706
9707 * libunwind-frame.c (libunwind_load): Display message if dlopen
9708 failed.
9709
9710 2012-02-01 Gary Benson <gbenson@redhat.com>
9711
9712 * symtab.h (symbol_found_callback_ftype): New typedef.
9713 (iterate_over_symbols): Use the above.
9714 * symtab.c (iterate_over_symbols): Likewise.
9715 * language.h (language_defn->la_iterate_over_symbols): Likewise.
9716 * ada-lang.c (ada_iterate_over_symbols): Likewise.
9717 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
9718 (iterate_name_matcher): Document return values.
9719 (collect_one_symbol): Likewise.
9720 (collect_function_symbols): Likewise.
9721 (collect_symbols): Likewise.
9722
9723 2012-02-01 Tom Tromey <tromey@redhat.com>
9724
9725 * ada-lang.c (resolve_subexp): Update.
9726 (ada_lookup_symbol_list): Add 'full_search' argument.
9727 (ada_iterate_over_symbols): Pass 0 as full_search argument to
9728 ada_lookup_symbol_list.
9729 (ada_lookup_encoded_symbol): Update.
9730 (get_var_value): Update.
9731 * ada-exp.y (block_lookup): Update.
9732 (write_var_or_type): Update.
9733 (write_name_assoc): Update.
9734 * ada-lang.h (ada_lookup_symbol_list): Update.
9735
9736 2012-01-31 Tom Tromey <tromey@redhat.com>
9737
9738 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
9739 comment.
9740
9741 2012-01-31 Doug Evans <dje@google.com>
9742
9743 * symtab.h: Remove outdated comment.
9744 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
9745
9746 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
9747
9748 Fix build error in Darwin port.
9749 * i386-darwin-nat.c: Include i386-nat.h.
9750
9751 2012-01-30 Tom Tromey <tromey@redhat.com>
9752
9753 PR breakpoints/13568:
9754 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
9755 argument. Check for recursive includes.
9756 (dwarf_decode_macros): Create an include hash.
9757
9758 2012-01-30 Michael Eager <eager@eagercon.com>
9759
9760 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
9761 * ppc-linux-tdep.c: Include glibc-tdep.h.
9762 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
9763 (powerpc_linux_in_plt_stub): New function.
9764 (powerpc_linux_in_dynsym_resolve_code): New function.
9765 (ppc_skip_trampoline_code): New function.
9766 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
9767 Use glibc_skip_solib_resolver.
9768
9769 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
9770
9771 Code cleanup: Make 1440 bytes of data segment read-only.
9772 * arch-utils.c (endian_enum): Make it const char *const [].
9773 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
9774 Likewise.
9775 * breakpoint.c (always_inserted_enums): Likewise.
9776 * cli/cli-cmds.c (script_ext_enums): Likewise.
9777 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
9778 enumlist parameter const char *const *.
9779 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
9780 const char *const *.
9781 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
9782 parameter const char *const *.
9783 * cris-tdep.c (cris_modes): Make it const char *const [].
9784 * filesystem.c (target_file_system_kinds): Likewise.
9785 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
9786 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
9787 (can_use_displaced_stepping_enum, scheduler_enums)
9788 (exec_direction_names): Likewise.
9789 * language.c (_initialize_language): Make the type_or_range_names and
9790 case_sensitive_names variables const char *const [].
9791 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
9792 * python/python.c (python_excp_enums): Likewise.
9793 * remote.c (interrupt_sequence_modes): Likewise.
9794 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
9795 * serial.c (logbase_enums): Likewise.
9796 * sh-tdep.c (sh_cc_enum): Likewise.
9797 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
9798 Likewise.
9799 * symtab.c (multiple_symbols_modes): Likewise.
9800 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
9801 Likewise.
9802 * utils.c (internal_problem_modes): Likewise.
9803
9804 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9805
9806 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
9807 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
9808 result.
9809
9810 2012-01-27 Doug Evans <dje@google.com>
9811
9812 * configure.ac (with_python): Fix absolute path handling for win32.
9813 * configure: Regenerate.
9814
9815 2012-01-26 Doug Evans <dje@google.com>
9816
9817 * symtab.c: Whitespace cleanup, no code changes.
9818
9819 * symtab.c (lookup_symbol_in_language): Improve comment.
9820 (lookup_symbol_aux): Fix comment.
9821
9822 * psymtab.c (add_psymbol_to_list): Result is now "void".
9823 * psympriv.h (add_psymbol_to_list): Update.
9824
9825 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
9826
9827 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9828
9829 Do not open script filenames twice.
9830 * cli/cli-cmds.c (source_script_from_stream): Pass to
9831 source_python_script also STREAM.
9832 * python/py-auto-load.c (source_section_scripts): Pass to
9833 source_python_script_for_objfile also STREAM.
9834 (auto_load_objfile_script): Pass to source_python_script_for_objfile
9835 also INPUT.
9836 * python/python-internal.h (source_python_script_for_objfile): New
9837 parameter file, rename parameter file to filename.
9838 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
9839 instead if !_WIN32. Update the function comment.
9840 (source_python_script, source_python_script_for_objfile)
9841 (source_python_script): New parameter file, rename parameter file to
9842 filename. Pass FILENAME to python_run_simple_file.
9843 * python/python.h (source_python_script): New parameter file, rename
9844 parameter file to filename.
9845
9846 2012-01-26 Pedro Alves <palves@redhat.com>
9847
9848 * corelow.c (core_has_fake_pid): Delete.
9849 (core_close): Delete references to `core_has_fake_pid'.
9850 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
9851 (core_open): Delete references to `core_has_fake_pid'.
9852 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
9853 the removed global.
9854
9855 2012-01-26 Joel Brobecker <brobecker@adacore.com>
9856
9857 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
9858 Remove language parameter from name_matcher. Adjust the comment.
9859 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
9860 Remove language parameter.
9861 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
9862 * linespec.c (iterate_name_matcher): Likewise.
9863 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
9864 name_matcher. Adjust call accordingly.
9865 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
9866 (maintenance_check_symtabs): Adjust type of parameter "fun".
9867 * psymtab.h (maintenance_check_symtabs): Likewise.
9868
9869 2012-01-26 Joel Brobecker <brobecker@adacore.com>
9870
9871 * language.h (symbol_name_match_p_ftype): New typedef.
9872 (struct language_defn): Replace field la_symbol_name_compare
9873 by la_get_symbol_name_match_p.
9874 * ada-lang.c (ada_get_symbol_name_match_p): New function.
9875 (ada_language_defn): Use it.
9876 * linespec.c (struct symbol_matcher_data): New type.
9877 (iterate_name_matcher): Rewrite.
9878 (iterate_over_all_matching_symtabs): Pass a pointer to
9879 a symbol_matcher_data struct to expand_symtabs_matching
9880 instead of just the lookup name.
9881 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
9882 opencl-lang.c, p-lang.c, language.c: Delete field
9883 la_symbol_name_compare, and replace by NULL for new field
9884 la_get_symbol_name_match_p.
9885 * symfile.h (struct quick_symbol_functions): Update comment.
9886
9887 2012-01-25 Tom Tromey <tromey@redhat.com>
9888
9889 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
9890 dereferencing.
9891
9892 2012-01-24 Tom Tromey <tromey@redhat.com>
9893
9894 PR symtab/12406:
9895 * solib.c (update_solib_list): Update the program space's
9896 added_solibs and deleted_solibs fields.
9897 * progspace.h (struct program_space) <added_solibs,
9898 deleted_solibs>: New fields.
9899 (clear_program_space_solib_cache): Declare.
9900 * progspace.c (release_program_space): Call
9901 clear_program_space_solib_cache.
9902 (clear_program_space_solib_cache): New function.
9903 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
9904 bpstat_stop_status. Use handle_solib_event.
9905 * breakpoint.c: Include gdb_regex.h.
9906 (print_solib_event): New function.
9907 (bpstat_print): Use print_solib_event.
9908 (bpstat_stop_status): Add special case for bp_shlib_event.
9909 (handle_solib_event): New function.
9910 (bpstat_what): Use handle_solib_event.
9911 (struct solib_catchpoint): New.
9912 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
9913 (breakpoint_hit_catch_solib, check_status_catch_solib)
9914 (print_it_catch_solib, print_one_catch_solib)
9915 (print_mention_catch_solib, print_recreate_catch_solib): New
9916 functions.
9917 (catch_solib_breakpoint_ops): New global.
9918 (catch_load_or_unload, catch_load_command_1)
9919 (catch_unload_command_1): New functions.
9920 (internal_bkpt_check_status): Add special case for
9921 bp_shlib_event.
9922 (internal_bkpt_print_it): Use print_solib_event.
9923 (initialize_breakpoint_ops): Initialize
9924 catch_solib_breakpoint_ops.
9925 (_initialize_breakpoint): Register "catch load" and "catch
9926 unload".
9927 * breakpoint.h (handle_solib_event): Declare.
9928 * NEWS: Add entry for "catch load" and "catch unload".
9929
9930 2012-01-24 Tom Tromey <tromey@redhat.com>
9931
9932 * ada-lang.c: Include gdb_vecs.h.
9933 * charset.c: Include gdb_vecs.h.
9934 * tracepoint.h: Include gdb_vecs.h.
9935 * gdb_vecs.h: New file.
9936
9937 2012-01-24 Pedro Alves <pedro@codesourcery.com>
9938
9939 * breakpoint.c (breakpoint_hit_catch_fork)
9940 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
9941 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
9942 * infrun.c (inferior_has_forked, inferior_has_vforked)
9943 (inferior_has_execd, inferior_has_called_syscall): Delete.
9944 (handle_syscall_event): Get syscall_number from the execution
9945 control state's wait status.
9946 (wait_for_inferior): Don't clear syscall_number.
9947
9948 2012-01-24 Pedro Alves <palves@redhat.com>
9949
9950 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
9951 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
9952 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
9953 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
9954 `ws' parameter.
9955 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
9956 false for events other than TARGET_SIGNAL_TRAP.
9957 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
9958 Add `ws' parameter.
9959 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
9960 events other than TARGET_SIGNAL_TRAP.
9961 (tracepoint_breakpoint_hit): Add `ws' parameter.
9962 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
9963 parameter.
9964 (bpstat_stop_status): Same.
9965 (pc_at_non_inline_function): Same.
9966 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
9967 to pass the current event's waitstatus to bpstat_stop_status
9968 and pc_at_non_inline_function.
9969
9970 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
9971
9972 Code cleanup.
9973 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
9974 Update the function comment for it.
9975 (source_script_with_search): Call make_cleanup_fclose for STREAM.
9976 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
9977 for STREAM.
9978
9979 2012-01-24 Pedro Alves <palves@redhat.com>
9980
9981 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
9982 outside `bs->stop' block.
9983 (bpstat_what): Rework bp_shlib_event handling.
9984 (internal_bkpt_check_status): If the breakpoint is a
9985 bp_shlib_event, then set bs->stop and bs->print if
9986 stop_on_solib_events is set.
9987
9988 2012-01-24 Gary Benson <gbenson@redhat.com>
9989
9990 Delete #if 0'd out code.
9991 * stack.c (print_frame_label_vars): Remove.
9992 (catch_info): Likewise.
9993 (_initialize_stack): Remove "info catch" command.
9994 * NEWS: Mention the above.
9995
9996 2012-01-24 Pedro Alves <palves@redhat.com>
9997
9998 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
9999 it.
10000 (remote_notice_new_inferior): If the remote end doesn't support
10001 the multiprocess extensions, then the PID is fake.
10002 (add_current_inferior_and_thread): New.
10003 (remote_start_remote): Use it.
10004 (extended_remote_attach_1): Adjust.
10005 (extended_remote_create_inferior_1): Use
10006 add_current_inferior_and_thread.
10007
10008 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10009
10010 Fix watchpoints to be specific for each inferior.
10011 * breakpoint.c (watchpoint_in_thread_scope): Verify also
10012 current_program_space.
10013 * i386-nat.c (i386_inferior_data_cleanup): New.
10014 (i386_inferior_data_get): Replace variable inf_data_local by an
10015 inferior_data call.
10016 (i386_use_watchpoints): Initialize i386_inferior_data.
10017 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
10018 specific iterate_over_lwps.
10019
10020 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10021
10022 Fix watchpoints across inferior fork.
10023 * amd64-linux-nat.c (update_debug_registers_callback): Update the
10024 comment for linux_nat_iterate_watchpoint_lwps.
10025 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
10026 linux_nat_iterate_watchpoint_lwps.
10027 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
10028 * i386-linux-nat.c (update_debug_registers_callback): Update the
10029 comment for linux_nat_iterate_watchpoint_lwps.
10030 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
10031 linux_nat_iterate_watchpoint_lwps.
10032 (i386_linux_prepare_to_resume): New comment on Linux kernel.
10033 * i386-nat.c: Include inferior.h.
10034 (dr_mirror): Remove.
10035 (i386_inferior_data, struct i386_inferior_data)
10036 (i386_inferior_data_get): New.
10037 (i386_debug_reg_state): Use i386_inferior_data_get.
10038 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
10039 (i386_insert_watchpoint, i386_remove_watchpoint)
10040 (i386_stopped_data_address, i386_insert_hw_breakpoint)
10041 (i386_remove_hw_breakpoint): New variable state, use
10042 i386_debug_reg_state instead of DR_MIRROR.
10043 * linux-nat.c (delete_lwp): New declaration.
10044 (num_lwps): Move here from downwards.
10045 (delete_lwp_cleanup): New.
10046 (linux_child_follow_fork): Create new child_lp, call
10047 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
10048 PTRACE_DETACH.
10049 (num_lwps): Move upwards.
10050 (linux_nat_iterate_watchpoint_lwps): New.
10051 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
10052 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
10053
10054 2012-01-24 Joel Brobecker <brobecker@adacore.com>
10055
10056 GDB 7.4 released.
10057
10058 2012-01-23 Pedro Alves <palves@redhat.com>
10059
10060 * top.c (caution): Rename to ...
10061 (confirm): ... this.
10062 (show_caution): Rename to ...
10063 (show_confirm): ... this.
10064 (quit_cover): Adjust.
10065 (init_main): Adjust.
10066 * top.h (caution): Rename to ...
10067 (confirm): ... this.
10068 * utils.c (internal_vproblem, defaulted_query): Adjust.
10069
10070 2012-01-23 Pedro Alves <palves@redhat.com>
10071
10072 * top.c (caution): Update comment.
10073 (execute_command): Don't consider the current value of `caution'.
10074
10075 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
10076
10077 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
10078
10079 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
10080
10081 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
10082 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
10083 * target.c (target_fileio_pwrite): Remove buffer address from
10084 debug output.
10085 (target_fileio_pread): Likewise.
10086
10087 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10088
10089 * NEWS: Document remote "info proc" and "generate-core-file".
10090
10091 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10092
10093 * gdbarch.sh (find_memory_regions): New callback.
10094 * gdbarch.c, gdbarch.h: Regenerate.
10095
10096 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
10097 callback before falling back to target method.
10098
10099 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
10100 (linux_target_install_ops): No longer install it.
10101
10102 * linux-tdep.c (linux_find_memory_regions): New function.
10103 (linux_init_abi): Install it.
10104
10105 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10106
10107 * gdbarch.sh (make_corefile_notes): New architecture callback.
10108 * gdbarch.c: Regenerate.
10109 * gdbarch.h: Likewise.
10110
10111 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
10112 before target_make_corefile_notes. If NULL is returned, the
10113 target does not support core file generation.
10114
10115 * linux-nat.c: Include "linux-tdep.h".
10116 (find_signalled_thread, find_stop_signal): Remove.
10117 (linux_nat_do_thread_registers): Likewise.
10118 (struct linux_nat_corefile_thread_data): Likewise.
10119 (linux_nat_corefile_thread_callback): Likewise.
10120 (iterate_over_spus): Likewise.
10121 (struct linux_spu_corefile_data): Likewise.
10122 (linux_spu_corefile_callback): Likewise.
10123 (linux_spu_make_corefile_notes): Likewise.
10124 (linux_nat_collect_thread_registers): New function.
10125 (linux_nat_make_corefile_notes): Replace contents by call to
10126 linux_make_corefile_notes passing linux_nat_collect_thread_registers
10127 as native-only callback.
10128
10129 * linux-tdep.h: Include "bfd.h".
10130 (struct regcache): Add forward declaration.
10131 (linux_collect_thread_registers_ftype): New typedef.
10132 (linux_make_corefile_notes): Add prototype.
10133 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
10134 "regset.h", and "elf-bfd.h".
10135 (find_signalled_thread, find_stop_signal): New functions.
10136 (linux_spu_make_corefile_notes): Likewise.
10137 (linux_collect_thread_registers): Likewise.
10138 (struct linux_corefile_thread_data): New data structure.
10139 (linux_corefile_thread_callback): New funcion.
10140 (linux_make_corefile_notes): Likewise.
10141 (linux_make_corefile_notes_1): Likewise.
10142 (linux_init_abi): Install it.
10143
10144 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10145
10146 * gdbarch.sh (info_proc): New callback.
10147 * gdbarch.c, gdbarch.h: Regenerate.
10148
10149 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
10150 before falling back to the target info_proc callback.
10151
10152 * linux-nat.c: Do not include "cli/cli-utils.h".
10153 (linux_nat_info_proc): Remove.
10154 (linux_target_install_ops): No longer install it.
10155
10156 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
10157 (read_mapping): New function.
10158 (linux_info_proc): Likewise.
10159 (linux_init_abi): Install it.
10160
10161 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10162
10163 * defs.h (enum info_proc_what): Moved here from linux-nat.c
10164 * infcmd.c: (info_proc_cmd_1): New function.
10165 (info_proc_cmd): New function, moved here from equivalent routine
10166 orignally in linux-nat.c.
10167 (info_proc_cmd_mappings): Likewise.
10168 (info_proc_cmd_stat): Likewise.
10169 (info_proc_cmd_status): Likewise.
10170 (info_proc_cmd_cwd): Likewise.
10171 (info_proc_cmd_cmdline): Likewise.
10172 (info_proc_cmd_exe): Likewise.
10173 (info_proc_cmd_all): Likewise.
10174 (_initialize_infcmd): Install "info proc" command and subcommands.
10175
10176 * target.h (struct target_ops): Add to_info_proc.
10177 (target_info_proc): Add prototype.
10178 * target.c (target_info_proc): New function.
10179
10180 * procfs.c (procfs_info_proc): Add prototype.
10181 (info_proc_cmd): Rename into ...
10182 (procfs_info_proc): ... this. Update argument types as appropriate
10183 for a to_info_proc implementation. Handle "what" argument.
10184 (procfs_target): Install procfs_info_proc.
10185 (_initialize_procfs): No longer install "info proc" command.
10186
10187 * linux-nat.c: (enum info_proc_what): Remove.
10188 (linux_nat_info_proc_cmd_1): Rename into ...
10189 (linux_nat_info_proc): ... this. Update argument types as appropriate
10190 for a to_info_proc implementation.
10191 (linux_nat_info_proc_cmd): Remove.
10192 (linux_nat_info_proc_cmd_mappings): Likewise.
10193 (linux_nat_info_proc_cmd_stat): Likewise.
10194 (linux_nat_info_proc_cmd_status): Likewise.
10195 (linux_nat_info_proc_cmd_cwd): Likewise.
10196 (linux_nat_info_proc_cmd_cmdline): Likewise.
10197 (linux_nat_info_proc_cmd_exe): Likewise.
10198 (linux_nat_info_proc_cmd_all): Likewise.
10199 (linux_target_install_ops): Install linux_nat_info_proc.
10200 (_initialize_linux_nat): No longer install "info proc" command
10201 and subcommands.
10202
10203 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10204
10205 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
10206 * config.in, configure: Regenerate.
10207
10208 * target.h (struct target_ops): Add to_fileio_readlink.
10209 (target_fileio_readlink): Add prototype.
10210 * target.c (target_fileio_readlink): New function.
10211
10212 * inf-child.c: Conditionally include <sys/param.h>.
10213 (inf_child_fileio_readlink): New function.
10214 (inf_child_target): Install it.
10215
10216 * remote.c (PACKET_vFile_readlink): New enum value.
10217 (remote_hostio_readlink): New function.
10218 (init_remote_ops): Install it.
10219 (_initialize_remote): Handle vFile:readlink packet type.
10220
10221 2012-01-20 Pedro Alves <palves@redhat.com>
10222 Ulrich Weigand <ulrich.weigand@linaro.org>
10223
10224 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
10225 * config.in, configure: Regenerate.
10226
10227 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
10228 to_fileio_pread, to_fileio_close, to_fileio_unlink.
10229 (target_fileio_open): Add prototype.
10230 (target_fileio_pwrite): Likewise.
10231 (target_fileio_pread): Likewise.
10232 (target_fileio_close): Likewise.
10233 (target_fileio_unlink): Likewise.
10234 (target_fileio_read_alloc): Likewise.
10235 (target_fileio_read_stralloc): Likewise.
10236
10237 * target.c: Include "gdb/fileio.h".
10238 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
10239 (default_fileio_target): New function.
10240 (target_fileio_open): Likewise.
10241 (target_fileio_pwrite): Likewise.
10242 (target_fileio_pread): Likewise.
10243 (target_fileio_close): Likewise.
10244 (target_fileio_unlink): Likewise.
10245 (target_fileio_close_cleanup): Likewise.
10246 (target_fileio_read_alloc_1): Likewise.
10247 (target_fileio_read_alloc): Likewise.
10248 (target_fileio_read_stralloc): Likewise.
10249
10250 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
10251 <fcntl.h>, and <unistd.h>.
10252 (inf_child_fileio_open_flags_to_host): New function.
10253 (inf_child_errno_to_fileio_error): Likewise.
10254 (inf_child_fileio_open): Likewise.
10255 (inf_child_fileio_pwrite): Likewise.
10256 (inf_child_fileio_pread): Likewise.
10257 (inf_child_fileio_close): Likewise.
10258 (inf_child_fileio_unlink): Likewise.
10259 (inf_child_target): Install to_fileio routines.
10260
10261 * remote.c (init_remote_ops): Install to_fileio routines.
10262
10263 2012-01-20 Pedro Alves <palves@redhat.com>
10264 Ulrich Weigand <ulrich.weigand@linaro.org>
10265
10266 * remote.c (remote_multi_process_p): Only check for multi-process
10267 protocol feature, do not check for extended protocol.
10268 (remote_supports_multi_process): Check for extended protocol here.
10269 (set_general_process): Likewise.
10270 (extended_remote_kill): Likewise.
10271 (remote_pid_to_str): Likewise.
10272 (remote_query_supported): Always query multiprocess mode.
10273
10274 2012-01-20 Pedro Alves <palves@redhat.com>
10275 Ulrich Weigand <ulrich.weigand@linaro.org>
10276
10277 * inferior.h (struct inferior): Add fake_pid_p.
10278 * inferior.c (exit_inferior_1): Clear fake_pid_p.
10279 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
10280 magic_null_ptid since the remote side doesn't provide a real PID.
10281
10282 2012-01-19 Tom Tromey <tromey@redhat.com>
10283
10284 * NEWS: Combine the two Python sections.
10285
10286 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
10287
10288 * target.h (target_close): Update comment on the target's unpush state.
10289
10290 2012-01-19 Pedro Alves <palves@redhat.com>
10291
10292 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
10293 linux_nat_async directly instead of going through the target
10294 vector.
10295 * target.c (unpush_target): Close target after unpushing it, not
10296 before.
10297
10298 2012-01-19 Gary Benson <gbenson@redhat.com>
10299
10300 * mdebugread.c (sort_blocks): Replace integer constants with ones
10301 derived from FIRST_LOCAL_BLOCK.
10302
10303 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
10304 Jan Kratochvil <jan.kratochvil@redhat.com>
10305
10306 PR gdb/9538
10307 * symfile.c (find_separate_debug_file): New function.
10308 (terminate_after_last_dir_separator): Likewise.
10309 (find_separate_debug_file_by_debuglink): Also try realpath.
10310 * configure.ac (AC_CHECK_FUNCS): Add lstat.
10311 * configure: Regenerate.
10312 * config.in: Regenerate.
10313
10314 2012-01-18 Doug Evans <dje@google.com>
10315
10316 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
10317 (main.o): Remove rule.
10318 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
10319 (--with-sysroot): Rewrite.
10320 * configure: Regenerate.
10321 * config.in: Regenerate.
10322
10323 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
10324
10325 * parse.c (initialize_expout): New function.
10326 (reallocate_expout): Likewise.
10327 (parse_exp_in_context): Use `initialize_expout' and
10328 `reallocate_expout' when appropriate.
10329
10330 2012-01-18 Pedro Alves <palves@redhat.com>
10331
10332 * record.c (struct record_breakpoint, record_breakpoint_p)
10333 (record_breakpoints): New.
10334 (record_insert_breakpoint, record_remove_breakpoint): Manage
10335 record breakpoints list. Only remove breakpoints from the
10336 inferior if they had been inserted there in the first place.
10337
10338 2012-01-17 Doug Evans <dje@google.com>
10339
10340 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
10341 if we know we don't have a file name to look for.
10342
10343 2012-01-17 Pedro Alves <palves@redhat.com>
10344
10345 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
10346 the frame's stop reason is UNWIND_UNAVAILABLE.
10347
10348 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
10349
10350 Fix compilation error.
10351 * m2-exp.y (yyerror): Use ANSI C prototype.
10352
10353 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
10354
10355 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
10356 (growbuf_by_size): Likewise.
10357 (yyerror): Likewise.
10358 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
10359 (modblock): Remove variable (was #if 0'ed).
10360 (parse_number): Convert prototype from K&R to ANSI C.
10361 (yyerror): Likewise.
10362 * objc-exp.y (parse_number): Likewise.
10363 (yyerror): Likewise.
10364 (yylex): Remove #if 0'ed code.
10365 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
10366 (yyerror): Likewise.
10367
10368 2012-01-16 Tom Tromey <tromey@redhat.com>
10369
10370 * NEWS: Add item.
10371 * symtab.h (compare_filenames_for_search): Declare.
10372 * symtab.c (compare_filenames_for_search): New function.
10373 (iterate_over_some_symtabs): Use it.
10374 * symfile.h (struct quick_symbol_functions)
10375 <map_symtabs_matching_filename>: Change spec.
10376 * psymtab.c (partial_map_symtabs_matching_filename): Use
10377 compare_filenames_for_search. Update for new spec.
10378 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
10379 compare_filenames_for_search. Update for new spec.
10380 * breakpoint.c (clear_command): Use compare_filenames_for_search.
10381
10382 2012-01-16 Tom Tromey <tromey@redhat.com>
10383
10384 PR python/13281:
10385 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
10386 (struct main_type) <flag_flag_enum>: New field.
10387 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
10388 * NEWS: Add entries.
10389 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
10390 enums.
10391 * python/lib/gdb/printing.py (_EnumInstance): New class.
10392 (FlagEnumerationPrinter): Likewise.
10393
10394 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
10395
10396 * breakpoint.c (create_sals_from_address_default): New function.
10397 (create_breakpoints_sal_default): Likewise.
10398 (decode_linespec_default): Likewise.
10399 (is_marker_spec): Removed.
10400 (strace_marker_p): New function.
10401 (init_breakpoint_sal): Using `strace_marker_p' instead of
10402 `is_marker_spec'.
10403 (create_breakpoint): Call method `create_sals_from_address' from
10404 breakpoint_ops, replacing code that created SALs conditionally
10405 on the type of the breakpoint. Call method `create_breakpoints_sal',
10406 replacing code that created breakpoints conditionally on the type
10407 wanted.
10408 (base_breakpoint_create_sals_from_address): New function.
10409 (base_breakpoint_create_breakpoints_sal): Likewise.
10410 (base_breakpoint_decode_linespec): Likewise.
10411 (base_breakpoint_ops): Add methods
10412 `base_breakpoint_create_sals_from_address',
10413 `base_breakpoint_create_breakpoints_sal' and
10414 `base_breakpoint_decode_linespec'.
10415 (bkpt_create_sals_from_address): New function.
10416 (bkpt_create_breakpoints_sal): Likewise.
10417 (bkpt_decode_linespec): Likewise.
10418 (tracepoint_create_sals_from_address): Likewise.
10419 (tracepoint_create_breakpoints_sal): Likewise.
10420 (tracepoint_decode_linespec): Likewise.
10421 (strace_marker_create_sals_from_address): Likewise.
10422 (strace_marker_create_breakpoints_sal): Likewise.
10423 (strace_marker_decode_linespec): Likewise.
10424 (strace_marker_breakpoint_ops): New variable.
10425 (addr_string_to_sals): Remove `marker_spec'. Call method
10426 `decode_linespec' from breakpoint_ops, replacing code that decoded
10427 an address string into a SAL. Use `strace_marker_p' instead of
10428 `marker_spec'.
10429 (strace_command): Decide whether we are dealing with a static
10430 tracepoint with marker or not. Use the appropriate breakpoint_ops.
10431 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
10432 * breakpoint.h (linespec_result, linespec_sals): New forward
10433 declarations.
10434 (breakpoint_ops) <create_sals_from_address>,
10435 <create_breakpoints_sal>, <decode_linespec>: New methods.
10436
10437 2012-01-14 Doug Evans <dje@google.com>
10438
10439 * NEWS: Update text for "maint set python print-stack".
10440 It is deprecated in gdb 7.4 and deleted in 7.5.
10441
10442 2012-01-13 Eli Zaretskii <eliz@gnu.org>
10443
10444 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
10445 including curses.h.
10446
10447 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
10448
10449 * configure: Regenerate.
10450 * config.in: Regenerate.
10451
10452 2012-01-12 Keith Seitz <keiths@redhat.com>
10453
10454 PR mi/10586
10455 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
10456 (ANONYMOUS_UNION_NAME): Define.
10457 (is_path_expr_parent): New function.
10458 (get_path_expr_parent): New function.
10459 (is_anonymous_child): New function.
10460 (create_child_with_value): If the child is anonymous and without
10461 a name, assign an object name to it.
10462 (c_describe_child): Use get_path_expr_parent to determine
10463 the parent expression.
10464 If there field represents an anonymous struct or union and
10465 has no name, set an appropriate display name and expression.
10466 (cplus_describe_child): Likewise.
10467
10468 2012-01-12 Pedro Alves <palves@redhat.com>
10469
10470 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
10471 available when %ebp is found to be zero (outermost).
10472
10473 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
10474
10475 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
10476 an internal gdb_static_assert.
10477 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
10478
10479 2012-01-11 Tom Tromey <tromey@redhat.com>
10480
10481 PR gdb/9598:
10482 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
10483 catch" and "catch throw".
10484
10485 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
10486
10487 * blockframe.c (block_innermost_frame): Start search from selected
10488 frame, if present, or otherwise the current frame.
10489
10490 * c-exp.y (variable): Update innermost_block for
10491 'block COLONCOLON NAME' clause.
10492 * m2-exp.y (variable): Ditto.
10493 * objc-exp.y (variable): Ditto.
10494
10495 2012-01-10 Tom Tromey <tromey@redhat.com>
10496
10497 PR python/13199:
10498 * python/python.c (finish_python_initialization): Set sys.argv.
10499
10500 2012-01-10 Doug Evans <dje@google.com>
10501
10502 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
10503 "want_line_info". All callers updated.
10504 (dwarf_decode_lines_1): New function.
10505 (handle_DW_AT_stmt_list): Add function comment.
10506 New arg "want_line_info". All callers updated.
10507 (read_file_scope,read_type_unit_scope): Move comment from
10508 handle_DW_AT_stmt_list to here.
10509
10510 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10511
10512 Fix regression after libiberty/ update for GCC PR 6057 and others.
10513 * c-exp.y (operator) <OPERATOR DELETE>
10514 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10515 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
10516 (make_builtin_type, make_name): New variable i, add gdb_assert.
10517 (operator) <OPERATOR NEW>: Update ARGS to 3.
10518 (operator) <OPERATOR DELETE>: Add trailing space.
10519 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
10520 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10521 * cp-support.c (cp_canonicalize_string): Check NULL from
10522 cp_comp_to_string, call warning and return.
10523
10524 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10525
10526 Fix duplicate .o files after omitting libbfd.a.
10527 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
10528 (SFILES): Add corelow.c.
10529 (COMMON_OBS): Add corelow.o.
10530 (ALLDEPFILES): Remove corelow.c.
10531 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
10532 * config/alpha/alpha-osf3.mh: Likewise.
10533 * config/alpha/fbsd.mh: Likewise.
10534 * config/arm/nbsdaout.mh: Likewise.
10535 * config/arm/nbsdelf.mh: Likewise.
10536 * config/i386/i386gnu.mh: Likewise.
10537 * config/ia64/hpux.mh: Likewise.
10538 * config/ia64/linux.mh: Likewise.
10539 * config/m32r/linux.mh: Likewise.
10540 * config/m68k/linux.mh: Likewise.
10541 * config/mips/irix5.mh: Likewise.
10542 * config/mips/irix6.mh: Likewise.
10543 * config/pa/hpux.mh: Likewise.
10544 * config/pa/linux.mh: Likewise.
10545 * config/powerpc/aix.mh: Likewise.
10546 * config/sparc/linux.mh: Likewise.
10547 * config/sparc/linux64.mh: Likewise.
10548 * config/sparc/sol2.mh: Likewise.
10549 * config/vax/vax.mh: Likewise.
10550 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
10551 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
10552 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
10553 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
10554 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
10555 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
10556 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
10557 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
10558 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
10559 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
10560 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
10561 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
10562 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
10563 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
10564 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
10565 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
10566 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
10567 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
10568 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
10569 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
10570 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
10571 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
10572 corelow.o from gdb_target_obs.
10573 * corefile.c (core_target): Update the comment on NULL value.
10574 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
10575 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
10576 MATCHES. Drop YUMMY set on NULL.
10577 (core_close): Do not call exit_inferior_silent on zero PID. Do not
10578 reclaim CORE_DATA if it is already NULL.
10579
10580 2012-01-09 Doug Evans <dje@google.com>
10581
10582 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
10583 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
10584
10585 2012-01-09 Keith Seitz <keiths@redhat.com>
10586
10587 * breakpoint.c (wrapper.h): Don't include.
10588
10589 2012-01-09 Keith Seitz <keiths@redhat.com>
10590
10591 * Makefile.in (SFILES): Remove wrapper.c.
10592 (HFILES_NO_SRCDIR): Remove wrapper.h.
10593 (COMMON_OBS): Remove wrapper.o.
10594 * cli/cli-interp.c: Don't inlude wrapper.h.
10595 * corelow.c: Likewise.
10596 (core_open): Replace gdb_target_find_new_threads with
10597 TRY_CATCH around target_find_new_threads.
10598 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
10599 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
10600 * varobj.c (varobj_create): Likewise for parse_exp_1 and
10601 evaluate_expression.
10602 (varobj_set_value): Likewise for evaluate_expression and
10603 value_assign.
10604 (install_new_variable): Likewise for value_fetch_lazy.
10605 (adjust_value_for_child_access): Likewise for value_ind.
10606 (c_describe_child): Likewise for value_subscript and
10607 value_ind.
10608 (c_value_of_root): Likewise for evaluate_expression.
10609 * wrapper.c: Remove.
10610 * wrapper.h: Remove.
10611
10612 2012-01-09 Doug Evans <dje@google.com>
10613
10614 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
10615 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
10616 "abfd" args with "section". All callers updated.
10617 Error checking code moved ...
10618 (error_check_comp_unit_head): ... here. New function.
10619 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
10620 Delete arg "abfd". New arg "type_offset". All callers updated.
10621 (create_debug_types_hash_table): Simplify by using
10622 read_and_check_type_unit_head.
10623
10624 * parser-defs.h (namecopy): Delete.
10625 * parse.c (namecopy, namecopy_size): Move into copy_name.
10626
10627 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
10628
10629 Partially fix duplicate .o files after omitting libbfd.a.
10630 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
10631 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10632 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
10633 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10634 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
10635 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
10636 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
10637
10638 2012-01-09 Pedro Alves <palves@redhat.com>
10639
10640 * MAINTAINERS: Update my email address.
10641
10642 2012-01-08 Doug Evans <dje@google.com>
10643
10644 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
10645 n_type_units. Rename type_comp_units to all_type_units.
10646 All uses updated.
10647 (add_signatured_type_cu_to_table): Renamed from
10648 add_signatured_type_cu_to_list. All callers updated.
10649
10650 * gdbtypes.h (struct cplus_struct_type): Delete member
10651 nfn_fields_total. All uses removed.
10652
10653 2012-01-06 Doug Evans <dje@google.com>
10654
10655 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
10656 to top of file.
10657 (dwarf2_find_comp_unit): Delete.
10658 (process_psymtab_comp_unit): Make result "void".
10659 Delete args buffer, info_ptr, buffer_size, and replace with
10660 "section". All callers updated.
10661 (dwarf2_build_psymtabs_hard): Simplify.
10662
10663 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
10664 Thiago Jung Bauermann <bauerman@br.ibm.com>
10665
10666 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
10667 before `struct gdb_exception'.
10668 * breakpoint.c (update_global_location_list_nothrow)
10669 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
10670 * cp-abi.c (value_rtti_type): Likewise.
10671 * cp-support.c (cp_validate_operator): Likewise.
10672 * infrun.c (insert_exception_resume_breakpoint)
10673 (check_exception_resume, keep_going): Likewise.
10674 * mi-interp.c (mi_breakpoint_created)
10675 (mi_breakpoint_modified): Likewise.
10676 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
10677 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
10678 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
10679
10680 2012-01-05 Doug Evans <dje@google.com>
10681
10682 * dwarf2read.c (statement_prologue): Delete, unused.
10683
10684 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
10685 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
10686
10687 * dwarf2read.c (comp_unit_header): Delete, unused.
10688
10689 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
10690
10691 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
10692 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
10693
10694 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
10695
10696 * infrun.c (normal_stop): Don't skip calling the normal_stop
10697 observers if the thread was doing a multi-step, but stopped for
10698 some reason other than stepping.
10699
10700 2012-01-05 Pedro Alves <alves.ped@gmail.com>
10701
10702 * cli/cli-decode.h: Add comments.
10703 (CMD_LIST_AMBIGUOUS): Moved to command.h
10704 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
10705 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
10706 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
10707 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
10708 (add_com, add_com_alias, add_info, add_info_alias)
10709 (complete_on_cmdlist, complete_on_enum, help_list): Remove
10710 declarations.
10711 * command.h: Add and adjust comments.
10712 (CMD_LIST_AMBIGUOUS): Moved here.
10713 (help_cmd, help_cmd_list): Delete declarations.
10714
10715 2012-01-04 Doug Evans <dje@google.com>
10716
10717 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
10718 All callers updated.
10719 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
10720 Replace all arguments with "per_cu". All callers updated.
10721
10722 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
10723
10724 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
10725 New arg "per_cu". All callers updated.
10726
10727 Delete #if 0'd out code.
10728 * language.c (binop_result_type): Delete.
10729 (simple_type, ordered_type, same_type, integral_type): Delete.
10730 (numeric_type, character_type, string_type, boolean_type): Delete.
10731 (float_type, structured_type): Delete.
10732 * language.h: Update.
10733
10734 2012-01-04 Tom Tromey <tromey@redhat.com>
10735
10736 * python/py-value.c (valpy_binop): Initialize 'res_val'.
10737
10738 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10739
10740 * corefile.c (close_exec_file): Delete.
10741 (reopen_exec_file): Remove commented out code that seems related
10742 to close_exec_file, which is being deleted here.
10743 * inferior.h (close_exec_file): Delete.
10744 * fork-child.c (fork_inferior): Remove call to fork_inferior.
10745
10746 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10747
10748 * ada-lang.c: #include "cli/cli-utils.h".
10749 (get_selections): Use skip_spaces.
10750 (ada_get_next_arg): Use skip_spaces and skip_to_space.
10751 (catch_ada_exception_command_split): Use skip_spaces.
10752 (ada_decode_assert_location): Likewise.
10753
10754 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10755
10756 * linespec.c (decode_line_internal): Check for C++ or Java
10757 compound constructs only if the current language is C, C++
10758 or Java.
10759
10760 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10761
10762 Revert:
10763 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10764 Joel Brobecker <brobecker@adacore.com>
10765 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
10766 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
10767 3 times.
10768 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
10769 fall through into AT_ENTRY_POINT.
10770 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
10771 DUMMY_ADDR with it.
10772 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
10773 PPC_INSN_SIZE skip to 3 times.
10774
10775 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10776
10777 * linespec.c (add_minsym): Preserve function descriptors.
10778
10779 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10780
10781 * breakpoint.c (all_locations_are_pending): Consider locations
10782 in program spaces executing during startup pending as well.
10783
10784 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10785
10786 Copyright year update in most files of the GDB Project.
10787
10788 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10789
10790 * copyright.sh: Delete.
10791 * copyright.py: Rewrite.
10792
10793 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10794
10795 * gnulib/extra/update-copyright: New file, imported from gnulib.
10796
10797 2012-01-04 Joel Brobecker <brobecker@adacore.com>
10798
10799 * README (Copyright and License Notices): New section.
10800
10801 2012-01-03 Tom Tromey <tromey@redhat.com>
10802
10803 PR python/12533:
10804 * python/py-value.c (valpy_dereference, valpy_get_address
10805 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
10806 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
10807 (valpy_absolute, valpy_richcompare): Free intermediate values.
10808
10809 2011-01-03 Joel Brobecker <brobecker@adacore.com>
10810
10811 * ada-lang.c: Reformat the copyright notice.
10812
10813 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10814
10815 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
10816 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
10817 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
10818 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
10819 Revert this part of:
10820 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10821 Build gdb directly from *.o files not using libgdb.a.
10822 * Makefile.in (COMMON_OBS): Remove solib-target.o.
10823
10824 2012-01-02 Joel Brobecker <brobecker@adacore.com>
10825
10826 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
10827 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
10828 Reformat the copyright header.
10829
10830 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10831
10832 Revert this part of:
10833 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10834 Remove the gdbtui binary.
10835 * gdb.c (main): Remove args.interpreter_p initialization.
10836 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
10837 * main.h (struct captured_main_args): Remove interpreter_p.
10838
10839 2012-01-02 Joel Brobecker <brobecker@adacore.com>
10840
10841 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
10842
10843 2012-01-02 Joel Brobecker <brobecker@adacore.com>
10844
10845 * top.c (print_gdb_version): Update copyright year.
10846
10847 2012-01-02 Yao Qi <yao@codesourcery.com>
10848
10849 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
10850
10851 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10852 Joel Brobecker <brobecker@adacore.com>
10853
10854 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
10855 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
10856 3 times.
10857 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
10858 fall through into AT_ENTRY_POINT.
10859 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
10860 DUMMY_ADDR with it.
10861 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
10862 PPC_INSN_SIZE skip to 3 times.
10863
10864 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10865
10866 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
10867 the return value.
10868 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
10869
10870 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10871
10872 Build gdb directly from *.o files not using libgdb.a.
10873 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
10874 (COMMON_OBS): Remove solib-target.o.
10875 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
10876 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
10877 (LIBGDB_OBS, libgdb.a): Move it above.
10878 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
10879 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
10880 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
10881 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
10882 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
10883 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
10884 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
10885 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
10886 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
10887 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
10888 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
10889 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
10890 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
10891 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
10892 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
10893 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
10894 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
10895 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
10896 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
10897 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
10898 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
10899 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
10900 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
10901 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
10902 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
10903 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
10904 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
10905
10906 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
10907
10908 Remove the gdbtui binary.
10909 * .gitignore (/gdbtui): Remove.
10910 * Makefile.in (TUI): Remove.
10911 (SUBDIR_TUI_OBS): Remove tui-main.o.
10912 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
10913 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
10914 (tui-main.o): Remove.
10915 (all_object_files): Remove tui-main.o.
10916 * NEWS: New note for the gdbtui removal.
10917 * configure: Rebuilt.
10918 * configure.ac: No longer add all-tui, clean-tui, install-tui and
10919 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
10920 CONFIG_UNINSTALL respectively.
10921 * gdb.c (main): Remove args.interpreter_p initialization.
10922 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
10923 * main.h (struct captured_main_args): Remove interpreter_p.
10924 * tui/tui-main.c: Remove.
10925
10926 2012-01-01 Doug Evans <dje@google.com>
10927
10928 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
10929 (dwarf2_physname, read_import_statement): Ditto.
10930 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
10931 (process_structure_scope read_subroutine_type): Ditto.
10932 (read_typedef, load_partial_dies, read_partial_die): Ditto.
10933 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
10934 (dwarf2_fetch_die_location_block): Ditto.
10935 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
10936
10937 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
10938 All callers updated.
10939 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
10940 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
10941 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
10942
10943 * dwarf2read.c (load_cu): Move assert to more useful location.
10944
10945 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
10946 All callers updated.
10947
10948 * dwarf2read.c (dwarf2_per_objfile): Add comment.
10949 (dwarf2_elf_names): Minor reformat.
10950 (dwarf2_per_cu_data): Tweak comment.
10951 (dwarf2_read_section): Fix comment.
10952 (create_all_comp_units): Fix comment.
10953 (load_full_comp_unit): Fix comment.
10954 (process_full_comp_unit): Fix comment.
10955 (read_signatured_type): Fix comment.
10956
10957 For older changes see ChangeLog-2011.
10958 \f
10959 Local Variables:
10960 mode: change-log
10961 left-margin: 8
10962 fill-column: 74
10963 version-control: never
10964 coding: utf-8
10965 End:
This page took 0.254745 seconds and 3 git commands to generate.