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