gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2
3 Code cleanup: constification.
4 * solib.c (solib_ops): Make return type and ops variable type const.
5 (set_solib_ops): Make the new_ops parameter and ops variable const.
6 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
7 (solib_add, solib_keep_data_in_core, clear_solib)
8 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
9 (reload_shared_libraries, solib_global_lookup): Make the ops variable
10 const.
11 * solib.h (set_solib_ops): Make the new_ops parameter const.
12
13 2013-05-21 Joel Brobecker <brobecker@adacore.com>
14
15 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
16 variable.
17 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
18 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
19 (SYSTEM_GDBINIT_FILES): New variables.
20 (all): Add stamp-system-gdbinit.
21 (stamp-system-gdbinit): New rule.
22 (clean-system-gdbinit, install-system-gdbinit)
23 (uninstall-system-gdbinit): New rules. Make them .PHONY.
24 (install-only): Add dependency on install-system-gdbinit.
25 (uninstall): Add dependency on uninstall-system-gdbinit.
26 (clean): Add dependency on clean-system-gdbinit.
27 * system-gdbinit/elinos.py: New file.
28 * system-gdbinit/wrs-linux.py: New file.
29
30 2013-05-21 Joel Brobecker <brobecker@adacore.com>
31
32 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
33
34 2013-05-21 Hui Zhu <hui@codesourcery.com>
35
36 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
37 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
38 * mi/mi-cmd-break.c (ctype.h): New include.
39 (gdb_obstack.h): New include.
40 (mi_argv_to_format, mi_cmd_break_insert_1): New.
41 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
42 (mi_cmd_dprintf_insert): New.
43 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
44 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
45
46 2013-05-20 Tom Tromey <tromey@redhat.com>
47
48 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
49
50 2013-05-20 Tom Tromey <tromey@redhat.com>
51
52 * python/py-value.c (valpy_get_dynamic_type): Simplify
53 dynamic_type assignment. Use Py_XINCREF.
54
55 2013-05-20 Tom Tromey <tromey@redhat.com>
56
57 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
58
59 2013-05-20 Tom Tromey <tromey@redhat.com>
60
61 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
62 (gdbpy_selected_frame): Move object-construction code
63 out of TRY_CATCH.
64
65 2013-05-20 Tom Tromey <tromey@redhat.com>
66
67 * python/py-arch.c (gdbpy_initialize_arch): Use
68 gdb_pymodule_addobject.
69 * python/py-block.c (gdbpy_initialize_blocks): Use
70 gdb_pymodule_addobject.
71 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
72 gdb_pymodule_addobject.
73 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
74 gdb_pymodule_addobject.
75 * python/py-event.c (gdbpy_initialize_event_generic): Use
76 gdb_pymodule_addobject.
77 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
78 gdb_pymodule_addobject.
79 * python/py-evts.c (add_new_registry): Use
80 gdb_pymodule_addobject.
81 (gdbpy_initialize_py_events): Likewise.
82 * python/py-finishbreakpoint.c
83 (gdbpy_initialize_finishbreakpoints): Use
84 gdb_pymodule_addobject.
85 * python/py-frame.c (gdbpy_initialize_frames): Use
86 gdb_pymodule_addobject.
87 * python/py-function.c (gdbpy_initialize_functions): Use
88 gdb_pymodule_addobject.
89 * python/py-inferior.c (gdbpy_initialize_inferior): Use
90 gdb_pymodule_addobject.
91 * python/py-infthread.c (gdbpy_initialize_thread): Use
92 gdb_pymodule_addobject.
93 * python/py-objfile.c (gdbpy_initialize_objfile): Use
94 gdb_pymodule_addobject.
95 * python/py-param.c (gdbpy_initialize_parameters): Use
96 gdb_pymodule_addobject.
97 * python/py-progspace.c (gdbpy_initialize_pspace): Use
98 gdb_pymodule_addobject.
99 * python/py-symbol.c (gdbpy_initialize_symbols): Use
100 gdb_pymodule_addobject.
101 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
102 gdb_pymodule_addobject.
103 * python/py-type.c (gdbpy_initialize_types): Use
104 gdb_pymodule_addobject.
105 * python/py-utils.c (gdb_pymodule_addobject): New function.
106 * python/py-value.c (gdbpy_initialize_values): Use
107 gdb_pymodule_addobject.
108 * python/python-internal.h (gdb_pymodule_addobject): Declare.
109 * python/python.c (_initialize_python): Use
110 gdb_pymodule_addobject.
111
112 2013-05-20 Tom Tromey <tromey@redhat.com>
113
114 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
115 * python/py-param.c (get_set_value, get_show_value): Use
116 explicit decrefs.
117 * python/python.c (start_type_printers, apply_type_printers):
118 Use explicit decrefs.
119
120 2013-05-20 Tom Tromey <tromey@redhat.com>
121
122 * python/py-evts.c (gdbpy_initialize_py_events): Don't
123 incref the module.
124
125 2013-05-20 Tom Tromey <tromey@redhat.com>
126
127 * python/python.c (gdbpy_run_events): Decref the result
128 of PyObject_CallObject.
129
130 2013-05-20 Tom Tromey <tromey@redhat.com>
131
132 * python/py-symtab.c (set_sal): Use
133 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
134 (symtab_and_line_to_sal_object): Update.
135
136 2013-05-20 Tom Tromey <tromey@redhat.com>
137
138 * python/py-param.c (compute_enum_values): Decref 'item'.
139
140 2013-05-20 Tom Tromey <tromey@redhat.com>
141
142 * mi/mi-main.c: Include python-internal.h.
143 (mi_cmd_list_features): Check gdb_python_initialized.
144 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
145 (python_inferior_exit, python_new_objfile, add_thread_object)
146 (delete_thread_object, py_free_inferior): Check
147 gdb_python_initialized.
148 * python/py-prettyprint.c (apply_val_pretty_printer): Check
149 gdb_python_initialized.
150 * python/py-type.c (save_objfile_types): Check
151 gdb_python_initialized.
152 * python/python-internal.h (gdb_python_initialized): Declare.
153 * python/python.c (ensure_python_env): Throw exception if
154 Python not initialized.
155 (before_prompt_hook, source_python_script_for_objfile)
156 (start_type_printers, apply_type_printers,
157 free_type_printers): Check gdb_python_initialized.
158 * varobj.c (varobj_get_display_hint)
159 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
160 (install_new_value_visualizer, varobj_set_visualizer)
161 (value_get_print_value): Check gdb_python_initialized.
162
163 2013-05-20 Tom Tromey <tromey@redhat.com>
164
165 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
166 Check errors.
167 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
168 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
169 Check errors.
170 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
171 Check errors.
172 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
173 Check errors.
174 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
175 Check errors.
176 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
177 init function to return 'int'.
178 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
179 Return 'int'. Check errors.
180 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
181 Check errors.
182 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
183 Return 'int'. Check errors.
184 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
185 Check errors.
186 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
187 Check errors.
188 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
189 Check errors.
190 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
191 Check errors.
192 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
193 Check errors.
194 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
195 Check errors.
196 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
197 Check errors.
198 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
199 Check errors.
200 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
201 Check errors.
202 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
203 Check errors.
204 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
205 Check errors.
206 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
207 Check errors.
208 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
209 Check errors.
210 * python/python-internal.h (gdbpy_initialize_auto_load,
211 gdbpy_initialize_values, gdbpy_initialize_frames,
212 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
213 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
214 gdbpy_initialize_blocks, gdbpy_initialize_types,
215 gdbpy_initialize_functions, gdbpy_initialize_pspace,
216 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
217 gdbpy_initialize_finishbreakpoints,
218 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
219 gdbpy_initialize_thread, gdbpy_initialize_inferior,
220 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
221 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
222 gdbpy_initialize_signal_event,
223 gdbpy_initialize_breakpoint_event,
224 gdbpy_initialize_continue_event,
225 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
226 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
227 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
228 * python/python.c (gdb_python_initialized): New global.
229 (gdbpy_initialize_events): Return 'int'. Check errors.
230 (_initialize_python): Check errors. Set
231 gdb_python_initialized.
232
233 2013-05-20 Tom Tromey <tromey@redhat.com>
234
235 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
236 Decref the reslut of PyObject_CallMethod.
237
238 2013-05-20 Tom Tromey <tromey@redhat.com>
239
240 * python/py-event.c (gdbpy_initialize_event_generic): Return
241 early if PyType_Ready fails.
242
243 2013-05-20 Tom Tromey <tromey@redhat.com>
244
245 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
246 as 'default' in the switch.
247
248 2013-05-20 Tom Tromey <tromey@redhat.com>
249
250 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
251 get_addr_from_python calls out of TRY_CATCH.
252 (infpy_write_memory, infpy_search_memory): Likewise.
253 * python/py-utils.c (get_addr_from_python): Return negative
254 value on error. Use TRY_CATCH.
255 * python/python-internal.h (get_addr_from_python): Use
256 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
257
258 2013-05-20 Tom Tromey <tromey@redhat.com>
259
260 * python/py-event.c (evpy_emit_event): Decref the
261 result of PyObject_CallFunctionObjArgs.
262
263 2013-05-20 Tom Tromey <tromey@redhat.com>
264
265 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
266 Correctly decref.
267
268 2013-05-20 Tom Tromey <tromey@redhat.com>
269
270 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
271
272 2013-05-20 Tom Tromey <tromey@redhat.com>
273
274 * python/py-event.h (gdbpy_initialize_event_generic): Use
275 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
276 * python/py-evts.c (add_new_registry): Use
277 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
278 * python/python-internal.h
279 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
280
281 2013-05-20 Tom Tromey <tromey@redhat.com>
282
283 * python/py-arch.c (archpy_disassemble): Update.
284 * python/py-type.c (typy_get_composite, typy_lookup_typename)
285 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
286 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
287 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
288 macro.
289 (GDB_PY_HANDLE_EXCEPTION): Update.
290 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
291
292 2013-05-20 Tom Tromey <tromey@redhat.com>
293
294 * python/python-internal.h (events_object_type): Remove.
295
296 2013-05-20 Tom Tromey <tromey@redhat.com>
297
298 * python/py-event.h (evpy_emit_event): Use
299 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
300 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
301 New macro.
302
303 2013-05-20 Tom Tromey <tromey@redhat.com>
304
305 * py-evtregistry.c (create_event_object): Decref
306 eventregistry_object if PyList_New fails.
307
308 2013-05-20 Tom Tromey <tromey@redhat.com>
309
310 * py-cmd.c (gdbpy_string_to_argv): Check result of
311 PyList_New.
312
313 2013-05-20 Tom Tromey <tromey@redhat.com>
314
315 * python/python.c (before_prompt_hook): Add cleanup to
316 decref 'hook'.
317
318 2013-05-20 Tom Tromey <tromey@redhat.com>
319
320 * python/py-function.c (fnpy_init): Decref result of
321 PyObject_GetAttrString.
322
323 2013-05-20 Tom Tromey <tromey@redhat.com>
324
325 * python/py-threadevent.c (get_event_thread): Use
326 CPYCHECKER_RETURNS_BORROWED_REF.
327 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
328 New define.
329 (pspace_to_pspace_object, objfile_to_objfile_object)
330 (find_thread_object): Use it.
331
332 2013-05-20 Tom Tromey <tromey@redhat.com>
333
334 * python/py-arch.c (arch_object_type): Use
335 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
336 * python/py-block.c (block_syms_iterator_object_type):
337 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
338 * python/py-bpevent.c (breakpoint_event_object_type):
339 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
340 * python/py-cmd.c (cmdpy_object_type): Use
341 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
342 * python/py-continueevent.c (continue_event_object_type):
343 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
344 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
345 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
346 * python/py-events.h (thread_event_object_type):
347 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
348 * python/py-evtregistry.c (eventregistry_object_type): Use
349 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
350 * python/py-exitedevent.c (exited_event_object_type):
351 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
352 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
353 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
354 * python/py-function.c (fnpy_object_type): Use
355 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
356 * python/py-inferior.c (inferior_object_type, membuf_object_type):
357 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
358 * python/py-infthread.c (thread_object_type): Use
359 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
360 * python/py-lazy-string.c (lazy_string_object_type):
361 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
362 * python/py-newobjfileevent.c (new_objfile_event_object_type):
363 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
364 * python/py-objfile.c (objfile_object_type): Use
365 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
366 * python/py-param.c (parmpy_object_type):
367 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
368 * python/py-progspace.c (pspace_object_type):
369 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
370 * python/py-signalevent.c (signal_event_object_type):
371 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
372 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
373 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
374 * python/py-type.c (type_object_type, field_object_type)
375 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
376 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
377 define.
378 (value_object_type, block_object_type, symbol_object_type)
379 (event_object_type, stop_event_object_type, breakpoint_object_type)
380 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
381
382 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
383
384 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
385 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
386
387 2013-05-20 Doug Evans <dje@google.com>
388
389 When reading CU, stay in DWO. Be more tolerent of bad debug info.
390 For Fission.
391 * dwarf2read.c (struct dwarf2_per_cu_data): New member
392 reading_dwo_directly.
393 (struct signatured_type): New member dwo_unit.
394 (struct die_reader_specs): New member comp_dir.
395 (create_signatured_type_table_from_index): Use malloc for
396 all_type_units instead of objfile's obstack.
397 (create_all_type_units): Ditto.
398 (fill_in_sig_entry_from_dwo_entry): New function.
399 (add_type_unit): New function.
400 (lookup_dwo_signatured_type): New function.
401 (lookup_dwp_signatured_type): New function.
402 (lookup_signatured_type): New arg cu. All callers updated.
403 (init_cu_die_reader): Initialize comp_dir.
404 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
405 Change assert of matching type signatures to call error on mismatch.
406 (lookup_dwo_unit): Add assert.
407 (init_tu_and_read_dwo_dies): New function.
408 (init_cutu_and_read_dies): Call it.
409 (build_type_unit_groups): Handle case of no type unit groups created.
410 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
411 (lookup_dwo_cutu): Tweak complaint.
412 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
413 (dwarf2_per_objfile_free): Free all_type_units.
414
415 2013-05-20 Joel Brobecker <brobecker@adacore.com>
416
417 * windows-nat.c (handle_unload_dll): Add missing empty line.
418
419 2013-05-20 Joel Brobecker <brobecker@adacore.com>
420
421 * dwarf2read.c (prototyped_function_p): New function.
422 (read_subroutine_type): Use it.
423
424 2013-05-20 Joel Brobecker <brobecker@adacore.com>
425
426 * rs6000-aix-tdep.c: De-indent some example code provided
427 as a comment.
428
429 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
430
431 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
432 region is ok for a hardware watchpoint using the new ptrace interface
433 on Power servers.
434
435 2013-05-17 Doug Evans <dje@google.com>
436
437 * NEWS: Mention new maintenance commands check-symtabs, and
438 expand-symtabs, and renamed check-psymtabs.
439 * psymtab.c (maintenance_check_psymtabs): Renamed from
440 maintenance_check_symtabs. Only process already-expanded symbol
441 tables.
442 (_initialize_psymtab): Update.
443 * symmisc.c (maintenance_check_symtabs): New function.
444 (maintenance_expand_name_matcher): New function
445 (maintenance_expand_file_matcher): New function
446 (maintenance_expand_symtabs): New function.
447 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
448 commands.
449
450 2013-05-17 Tom Tromey <tromey@redhat.com>
451
452 * python/py-inferior.c (infpy_read_memory): Don't call
453 PyErr_SetString if PyObject_New fails.
454 * python/py-frame.c (frame_info_to_frame_object): Don't call
455 PyErr_SetString if PyObject_New fails.
456
457 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
458
459 * acinclude.m4: Add check for dlopen in libdl.
460 * configure.ac: Ditto.
461 * configure: Regenerate.
462
463 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
464
465 * frame.c (frame_stash): Convert to htab.
466 (frame_addr_hash): New function.
467 (frame_addr_hash_eq): New function.
468 (frame_stash_create): Convert function to create
469 a hash table.
470 (frame_stash_add): Convert function to add an entry to a hash
471 table.
472 (frame_stash_find): Convert function to search the hash table.
473 (frame_stash_invalidate): Convert function to empty the hash
474 table.
475 (get_frame_id): Only add to stash if a frame_id is created.
476 (_initialize_frame): Call frame_stash_create.
477
478 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
479
480 * configure.ac: Ensure MIG is available when building for GNU Hurd
481 hosts.
482 * configure: Regenerate.
483
484 2013-05-16 Joel Brobecker <brobecker@adacore.com>
485
486 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
487
488 2013-05-16 Joel Brobecker <brobecker@adacore.com>
489
490 * ada-lang.c (ada_make_symbol_completion_list): Make sure
491 all cleanups are done before returning from this function.
492
493 2013-05-15 Joel Brobecker <brobecker@adacore.com>
494
495 * utils.h: #include "exceptions.h".
496 (enum errors): Remove partial declaration.
497
498 2013-05-15 Joel Brobecker <brobecker@adacore.com>
499
500 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
501 * gdbarch.h, gdbarch.c: Regenerate.
502 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
503 handling.
504
505 * rs6000-aix-tdep.h: New file.
506 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
507 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
508 "xml-utils.h".
509 (struct field_info, struct ld_info_desc): New types.
510 (ld_info32_desc, ld_info64_desc): New static constants.
511 (struct ld_info): New type.
512 (rs6000_aix_extract_ld_info): New function.
513 (rs6000_aix_shared_library_to_xml): Likewise.
514 (rs6000_aix_ld_info_to_xml): Likewise.
515 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
516 (rs6000_aix_init_osabi): Add call to
517 set_gdbarch_core_xfer_shared_libraries_aix.
518 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
519 Remove "xml-utils.h" include.
520 (LdInfo): Delete typedef.
521 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
522 Delete macros.
523 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
524 Adjust code accordingly.
525 (rs6000_core_ldinfo): Delete, folded into
526 rs6000_aix_core_xfer_shared_libraries_aix.
527 (rs6000_xfer_shared_library): Delete.
528 (rs6000_xfer_shared_libraries): Reimplement.
529
530 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
531
532 * record.c (record_goto_cmdlist): New.
533 (cmd_record_goto): Split into this ...
534 (cmd_record_goto_begin): ... this
535 (cmd_record_goto_end): ... and this.
536 (_initialize_record): Change "record goto" to prefix command.
537 Add commands for "record goto begin" and "record goto end".
538 Add an alias for "record goto start" to "record goto begin".
539
540 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
541
542 * linespec.c (convert_linespec_to_sals): New comment for
543 SOURCE_FILENAME assignment.
544
545 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
546
547 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
548 internal_warning.
549
550 2013-05-14 Tom Tromey <tromey@redhat.com>
551
552 * eval.c (parse_and_eval_long): Make 'exp' const.
553 * value.h (parse_and_eval_long): Update.
554
555 2013-05-14 Tom Tromey <tromey@redhat.com>
556
557 * ui-file.c (gdb_fopen): Make arguments const.
558 * ui-file.h (gdb_fopen): Make arguments const.
559
560 2013-05-14 Tom Tromey <tromey@redhat.com>
561
562 * remote.c (remote_set_trace_notes): Make arguments const.
563 * target.c (update_current_target): Update cast.
564 * target.h (to_set_trace_notes): Make arguments const.
565
566 2013-05-14 Tom Tromey <tromey@redhat.com>
567
568 * go32-nat.c (go32_terminal_info): Make 'args' const.
569 * inferior.h (child_terminal_info): Update.
570 * inflow.c (child_terminal_info): Make 'args' const.
571 * target.c (default_terminal_info): Make 'args' const.
572 (debug_to_terminal_save_ours): Likewise.
573 * target.h (struct target_ops) <to_terminal_info>: Make argument
574 const.
575
576 2013-05-13 Tom Tromey <tromey@redhat.com>
577
578 * gcore.c (create_gcore_bfd): Make 'filename' const.
579 * gcore.h (create_gcore_bfd): Make 'filename' const.
580 * record-full.c (record_full_save): Make 'recfilename' const.
581 * target.c (target_save_record): Make 'filename' const.
582 * target.h (struct target_ops) <to_save_record>: Make 'filename'
583 const.
584 (target_save_record): Likewise.
585
586 2013-05-13 Tom Tromey <tromey@redhat.com>
587
588 PR gdb/15338:
589 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
590 ranges section has been read.
591
592 2013-05-13 Tom Tromey <tromey@redhat.com>
593
594 PR exp/15364:
595 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
596 STRUCTOP_PTR>: Return a not_lval value for
597 EVAL_AVOID_SIDE_EFFECTS.
598 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
599 for EVAL_AVOID_SIDE_EFFECTS.
600
601 2013-05-13 Joel Brobecker <brobecker@adacore.com>
602
603 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
604 floating point registers to register type before storing
605 value.
606 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
607 Likewise.
608
609 2013-05-10 Joel Brobecker <brobecker@adacore.com>
610 Tom Tromey <tromey@redhat.com>
611
612 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
613 New functions.
614 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
615 Declare.
616 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
617 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
618 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
619 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
620
621 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
622 Tom Tromey <tromey@redhat.com>
623
624 PR build/15414:
625 * configure: Rebuild.
626 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
627 with -Wno-format.
628
629 2013-05-10 Pedro Alves <palves@redhat.com>
630
631 * remote.c (_initialize_remote): Fix spelling of
632 qXfer:traceframe-info:read packet in packet config command.
633
634 2013-05-10 David Taylor <dtaylor@emc.com>
635
636 PR remote/15455
637
638 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
639 "QTro" at start of packet.
640
641 2013-05-10 Joel Brobecker <brobecker@adacore.com>
642
643 * solib-aix.c (solib_aix_relocate_section_addresses):
644 For the .bss section action, apply the same offset as
645 the .data section.
646
647 2013-05-10 Joel Brobecker <brobecker@adacore.com>
648
649 * solib-aix.c (solib_aix_relocate_section_addresses):
650 Remove FIXME comment.
651
652 2013-05-10 Joel Brobecker <brobecker@adacore.com>
653
654 PR tdep/15420:
655 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
656 New functions, directly copied from sparc-sol-thread.c.
657 * sparc-sol-thread.c: Delete.
658 * configure.ac: Remove code handling sparc-solaris-thread.c.
659 * configure: Regenerate.
660
661 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
662
663 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
664 filter logic.
665 (backtrace_command): Add "no-filters" option parsing.
666 (_initialize_stack): Alter help to reflect "no-filters" option.
667 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
668 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
669 (py-frame.o): Add target
670 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
671 filter files.
672 * python/python.h: Add new frame filter constants, and flag enum.
673 (apply_frame_filter): Add definition.
674 * python/python.c (apply_frame_filter): New non-Python
675 enabled function.
676 * python/py-utils.c (py_xdecref): New function.
677 (make_cleanup_py_xdecref): Ditto.
678 * python/py-objfile.c: Declare frame_filters dictionary.
679 (objfpy_dealloc): Add frame_filters dealloc.
680 (objfpy_new): Initialize frame_filters attribute.
681 (objfile_to_objfile_object): Ditto.
682 (objfpy_get_frame_filters): New function.
683 (objfpy_set_frame_filters): New function.
684 * python/py-progspace.c: Declare frame_filters dictionary.
685 (pspy_dealloc): Add frame_filters dealloc.
686 (pspy_new): Initialize frame_filters attribute.
687 (pspacee_to_pspace_object): Ditto.
688 (pspy_get_frame_filters): New function.
689 (pspy_set_frame_filters): New function.
690 * python/py-framefilter.c: New file.
691 * python/lib/gdb/command/frame_filters.py: New file.
692 * python/lib/gdb/frames.py: New file.
693 * python/lib/gdb/__init__.py: Initialize global frame_filters
694 dictionary
695 * python/lib/gdb/FrameDecorator.py: New file.
696 * python/lib/gdb/FrameIterator.py: New file.
697 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
698 * mi/mi-cmds.h: Declare.
699 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
700 --no-frame-filter logic, and Python frame filter logic.
701 (stack_enable_frame_filters): New function.
702 (parse_no_frame_option): Ditto.
703 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
704 filter logic.
705 (mi_cmd_stack_list_locals): Ditto.
706 (mi_cmd_stack_list_args): Ditto.
707 (mi_cmd_stack_list_variables): Ditto.
708 * NEWS: Add frame filter note.
709
710 2013-05-09 Doug Evans <dje@google.com>
711
712 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
713 All callers updated.
714 (syms_from_objfile): Ditto. Make static.
715 (symbol_file_add_with_addrs): Renamed from
716 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
717 num_offsets. All callers updated.
718 * symfile.h (syms_from_objfile): Delete.
719
720 * symfile.c (decrement_reading_symtab): Add assert.
721 (increment_reading_symtab): Ditto.
722
723 2013-05-09 Joel Brobecker <brobecker@adacore.com>
724
725 * source.c (forward_search_command): Replace call to getc
726 by call to fgetc.
727 (reverse_search_command): Likewise.
728
729 2013-05-08 Doug Evans <dje@google.com>
730
731 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
732 matching test.
733
734 2013-05-08 Joel Brobecker <brobecker@adacore.com>
735
736 * sol-thread.c (info_cb): Factorize the code a little.
737
738 2013-05-08 Joel Brobecker <brobecker@adacore.com>
739
740 * sol-thread.c (info_cb): Rework the output of the "maintenance
741 info sol-threads" command a bit.
742
743 2013-05-08 Joel Brobecker <brobecker@adacore.com>
744
745 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
746 Replace ti.ti_startfunc by ti.ti_pc.
747
748 2013-05-08 Joel Brobecker <brobecker@adacore.com>
749
750 * solib-aix.c (solib_aix_free_library_list): New function
751 for the case where HAVE_LIBEXPAT is not defined.
752
753 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
754
755 PR breakpoints/15413:
756 * breakpoint.c (condition_completer): Simplify the code to
757 disconsider multiple locations of breakpoints when completing the
758 "condition" command.
759
760 2013-05-07 Pierre Muller <muller@sourceware.org>
761
762 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
763 instead of <sys/wait.h>.
764
765 2013-05-07 Pierre Muller <muller@sourceware.org>
766
767 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
768 trailing new line from warning message.
769
770 2013-05-07 Pierre Muller <muller@sourceware.org>
771
772 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
773 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
774
775 2013-05-07 Joel Brobecker <brobecker@adacore.com>
776
777 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
778 error message (ARI fix).
779
780 2013-05-07 Joel Brobecker <brobecker@adacore.com>
781
782 * features/library-list-aix.dtd: Replace library-list by
783 library-list-aix.
784 * rs6000-nat.c: Replace library-list by library-list-aix
785 throughout.
786 * solib-aix.c: Likewise.
787
788 2013-05-07 Joel Brobecker <brobecker@adacore.com>
789
790 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
791 Renames TARGET_OBJECT_AIX_LIBRARIES.
792 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
793 TARGET_OBJECT_LIBRARIES_AIX throughout.
794 * solib-aix.c: Likwise.
795
796 2013-05-07 Yao Qi <yao@codesourcery.com>
797
798 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
799 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
800
801 2013-05-07 Yao Qi <yao@codesourcery.com>
802
803 * solib-dsbt.c (enable_break): Declare.
804 (dsbt_current_sos): Remove call to enable_break2.
805 (enable_break2): Rename to enable_break. Set solib breakpoint
806 on '_dl_debug_state'.
807 (enable_break): Remove.
808
809 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
810
811 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
812 debug state prior to replicating existing hardware watchpoints or
813 breakpoints.
814
815 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
816
817 * gcore.c (gcore_create_callback): Ignore sections with
818 separate_debug_objfile_backlink != NULL.
819
820 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
821 Andrew Jenner <andrew@codesourcery.com>
822 Chung-Lin Tang <cltang@codesourcery.com>
823 Julian Brown <julian@codesourcery.com>
824
825 Based on the nios2-elf port from Altera Corporation.
826
827 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
828 nios2-linux-tdep.o.
829 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
830 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
831 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
832 * nios2-tdep.h: New.
833 * nios2-tdep.c: New.
834 * nios2-linux-tdep.c: New.
835 * features/Makefile (WHICH): Add nios2-linux.
836 (nios2-linux-expedite): Set.
837 * features/nios2-cpu.xml: New.
838 * features/nios2.xml: New.
839 * features/nios2-linux.xml: New.
840 * features/nios2.c: New (autogenerated).
841 * features/nios2-linux.c: New (autogenerated).
842 * regformats/nios2-linux.dat: New (autogenerated).
843 * NEWS (Changes since GDB 7.6): Add new Nios II targets
844 and commands.
845
846 2013-05-06 Doug Evans <dje@google.com>
847
848 * symfile.c: Whitespace cleanup.
849
850 * solist.h (struct target_so_ops): New member clear_so.
851 * solib-svr4.c (svr4_clear_so): New function.
852 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
853 * solib.c (clear_so): Renamed from free_so_symbols.
854 All callers updated. Call target clear_so if it exists.
855
856 2013-05-06 Tom Tromey <tromey@redhat.com>
857
858 * ada-lang.c (ada_value_primitive_packed_val): Don't
859 call value_incref.
860 * value.c (set_value_parent): Incref the new parent and decref
861 the old parent.
862 (value_copy, value_primitive_field): Use set_value_parent.
863
864 2013-05-06 Tom Tromey <tromey@redhat.com>
865
866 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
867 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
868 if needed.
869 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
870 * dwarf2read.c (write_constant_as_bytes)
871 (dwarf2_fetch_constant_bytes): New functions.
872
873 2013-05-06 Tom Tromey <tromey@redhat.com>
874
875 * dwarf2read.c (dwarf2_const_value_data): Remove unused
876 parameters.
877 (dwarf2_const_value_attr): Update.
878
879 2013-05-06 Tom Tromey <tromey@redhat.com>
880
881 * somread.c (som_symfile_offsets): Add 'const' to addrs.
882 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
883 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
884 Remove declaration.
885
886 2013-05-06 Tom Tromey <tromey@redhat.com>
887
888 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
889 objfile's obstack.
890
891 2013-05-06 Doug Evans <dje@google.com>
892
893 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
894 * stabsread.h (process_one_symbol): Update declaration.
895 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
896 * elfread.c (elf_symfile_relocate_probe): Ditto.
897 * psymtab.c (relocate_psymtabs): Ditto.
898 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
899 (objfile_relocate): Ditto.
900 * objfiles.h (objfile_relocate): Update declaration.
901 * symfile.c (relative_addr_info_to_section_offsets): Constify
902 addrs parameter.
903 (default_symfile_offsets): Ditto.
904 (syms_from_objfile_1): Constify offsets parameter.
905 (syms_from_objfile): Ditto.
906 (symbol_file_add_with_addrs_or_offsets): Ditto.
907 (symfile_map_offsets_to_segments): Constify data parameter.
908 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
909 delta parameters of member relocate.
910 (struct sym_probe_fns): Constify new_offsets,
911 delta parameters of member sym_relocate_probe.
912 (struct sym_fns): Constify section_addr_info parameter of member
913 sym_offsets.
914 (relative_addr_info_to_section_offsets): Update declaration.
915 (default_symfile_offsets): Ditto.
916 (syms_from_objfile): Ditto.
917 (symfile_map_offsets_to_segments): Ditto.
918
919 * symfile.c (syms_from_objfile_1): Use correct section count when
920 objfile->sf == NULL.
921
922 2013-05-06 Mike Frysinger <vapier@gentoo.org>
923
924 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
925
926 2013-05-06 Doug Evans <dje@google.com>
927
928 * psympriv.h (struct partial_symtab): Augment comment for member
929 section_offsets.
930
931 2013-05-06 Joel Brobecker <brobecker@adacore.com>
932
933 Reimplement shared library support on ppc-aix...
934 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
935 * features/library-list-aix.dtd: New file.
936 * solib-aix.h, solib-aix.c: New file.
937 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
938 (rs6000_find_toc_address_hook): Delete.
939 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
940 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
941 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
942 "xml-utils.h".
943 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
944 (vmap_symtab, fixup_breakpoints): Delete.
945 (rs6000_xfer_shared_libraries): New function.
946 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
947 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
948 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
949 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
950 (rs6000_xfer_shared_library): New function.
951 (find_toc_address): Delete.
952 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
953 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
954 * xcoffread.c (record_minimal_symbol): Reloate symbol address
955 before creating minimal symbol. Adjust function description
956 accordingly.
957 (scan_xcoff_symtab): Replace call to
958 prim_record_minimal_symbol_and_info by call to
959 record_minimal_symbol.
960 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
961 around default_symfile_offsets.
962 * configure.tgt: Add solib-aix.o to gdb_target_obs for
963 powerpc-aix targets.
964 * config/rs6000/nm-rs6000.h: Delete.
965 * config/powerpc/aix.mh (NAT_FILE): Delete.
966 (NATDEPFILES): Remove xcoffsolib.o.
967 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
968 (ALL_TARGET_OBS): Add solib-aix.o.
969 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
970 config/rs6000/nm-rs6000.h. Add solib-aix.h.
971 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
972 * xcoffsolib.h, xcoffsolib.c: Delete.
973
974 * solib.c (reload_shared_libraries): Remove reference to
975 SOLIB_CREATE_INFERIOR_HOOK.
976 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
977 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
978 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
979 comment.
980 * corelow.c (deprecated_core_resize_section_table): Delete.
981 * exec.c: Remove include of xcoffsolib.h".
982 (map_vmap, vmap): Delete.
983 (exec_close_1): Remove references to vmap.
984 (exec_file_attach): Remove vmap handling code, and reference
985 to DEPRECATED_IBM6000_TARGET.
986 (bfdsec_to_vmap): Delete.
987 (exec_files_info): Remove block of code handling VMAP.
988 * infcmd.c (post_create_inferior): Remove reference to
989 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
990 * infrun.c (follow_exec): Remove reference to
991 SOLIB_CREATE_INFERIOR_HOOK.
992 * stack.c (print_frame): Remove reference to PC_SOLIB.
993 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
994 (dsbt_relocate_main_executable): Likewise.
995 * solib-frv.c (frv_current_sos): Likewise.
996
997 2013-05-06 Joel Brobecker <brobecker@adacore.com>
998
999 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
1000 to target_write_memory and target_read_memory.
1001
1002 2013-05-06 Joel Brobecker <brobecker@adacore.com>
1003
1004 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
1005 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
1006
1007 2013-05-06 Joel Brobecker <brobecker@adacore.com>
1008
1009 * darwin-nat.c: Replace all "%x" instances in format strings
1010 into "0x%x" throughout.
1011
1012 2013-05-06 Joel Brobecker <brobecker@adacore.com>
1013
1014 * darwin-nat.c (darwin_mourn_inferior): Replace call to
1015 gdb_assert by call to MACH_CHECK_ERROR.
1016 (darwin_attach_pid): Raise an error rather than a failed
1017 assertion when various system calls failed. Report a warning
1018 instead of raising a failed assertion when PREV_NOT is not NULL
1019 after call to mach_port_request_notification.
1020 (darwin_ptrace_me): Raise an error rather than a failed
1021 assertion when read returns nonzero.
1022
1023 2013-05-06 Joel Brobecker <brobecker@adacore.com>
1024
1025 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
1026
1027 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1028
1029 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
1030
1031 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1032
1033 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
1034 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
1035 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
1036 a stale cleanup. Fix double free of NAME.
1037
1038 2013-05-04 Eli Zaretskii <eliz@gnu.org>
1039
1040 * windows-nat.c (windows_delete_thread): Accept an additional
1041 argument, the thread's exit code, and announce thread death when
1042 print_thread_events is non-zero and we are deleting a thread that
1043 is not the main thread.
1044 (get_windows_debug_event): Pass thread exit code to
1045 windows_delete_thread.
1046
1047 2013-05-03 Kevin Buettner <kevinb@redhat.com>
1048
1049 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
1050 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
1051 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
1052 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
1053 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
1054 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
1055 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
1056 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
1057 (gdbarch_tdep): New struct.
1058 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
1059 E_NUM_REGS.
1060 (v850e3v5_register_name): New function.
1061 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
1062 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
1063 code handling the struct return conventions for the RH850 ABI.
1064 Update all callers.
1065 (v850_eight_byte_align_p): New function.
1066 (v850_push_call_dummy): Push structs by value, not by reference
1067 for the RH850 ABI. Add support for eight byte alignment.
1068 (v850_dbtrap_breakpoint_from_pc): New function.
1069 (v850_gdbarch_init): Add ABI detection code. Register
1070 v850e3v5_register_name for the v850e3v5 architecture. Set the
1071 number of registers for v850e3v5. Register
1072 v850_dbtrap_breakpoint_from_pc as appropriate.
1073 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
1074
1075 2013-05-03 Doug Evans <dje@google.com>
1076
1077 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
1078 of bfd_count_sections.
1079 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
1080 * symfile.c (default_symfile_offsets): Ditto.
1081 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
1082 one entry, not bfd_count_sections entries.
1083
1084 2013-05-03 Kevin Buettner <kevinb@redhat.com>
1085
1086 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
1087 `save' and `restore' register groups. Don't include SPL
1088 or SPH in these groups.
1089 (rl78_dwarf_reg_to_regnum): Adjust mapping for
1090 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
1091 RL78_ES_REGNUM, and RL78_CS_REGNUM.
1092 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
1093 dwarf2_append_unwinders().
1094
1095 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1096
1097 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
1098 ignore SIGINT and SIGTRAP in case these internal signals are
1099 caught explicitely.
1100
1101 2013-05-01 Joel Brobecker <brobecker@adacore.com>
1102
1103 * darwin-nat.c (darwin_read_write_inferior): Change types
1104 of parameters rdaddr and wraddr to "gdb_byte *". Change type
1105 of copy_count to "mach_msg_type_number_t".
1106 (darwin_read_dyld_info): Change type of parameter
1107 rdaddr to "gdb_byte *".
1108
1109 2013-05-01 Joel Brobecker <brobecker@adacore.com>
1110
1111 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
1112 of &info->load_map from "char *" to "gdb_byte *".
1113
1114 2013-05-01 Joel Brobecker <brobecker@adacore.com>
1115
1116 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
1117 from "char *" to "gdb_byte *".
1118 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
1119
1120 2013-04-30 Doug Evans <dje@google.com>
1121
1122 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
1123 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
1124 DWO stub. If DWO isn't found, just use stub.
1125 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
1126
1127 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
1128 calling init_cutu_and_read_dies.
1129
1130 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
1131
1132 * target-descriptions.c (maint_print_c_tdesc_cmd):
1133 Add case to parse structures as register types and
1134 bitfields.
1135
1136 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
1137
1138 * MAINTAINERS (Write After Approval): Add myself to the list.
1139
1140 2013-04-30 Joel Brobecker <brobecker@adacore.com>
1141
1142 * sol-thread.c (rw_common): Change type of parameter "buf"
1143 to "gdb_byte *".
1144 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
1145 rw_common to "gdb_byte *" instead of "char *".
1146
1147 2013-04-30 Joel Brobecker <brobecker@adacore.com>
1148
1149 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
1150 of local variable msym to const struct bound_minimal_symbol.
1151 Adjust use accordingly.
1152 [ti.ti_state == TD_THR_SLEEP]: Likewise.
1153
1154 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
1155
1156 * i386gnu-nat.c (CREG_OFFSET): New macro.
1157 (creg_offset): New array.
1158 (CREG_ADDR): Use creg_offset instead of reg_offset.
1159
1160 2013-04-30 Joel Brobecker <brobecker@adacore.com>
1161
1162 * mep-tdep.c (mep_write_pc): Delete.
1163 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
1164 Add call to set_gdbarch_pc_regnum.
1165
1166 2013-04-30 Joel Brobecker <brobecker@adacore.com>
1167
1168 * common/filestuff.c: Replace #include <dirent.h> by
1169 #include "gdb_dirent.h".
1170
1171 2013-04-30 Joel Brobecker <brobecker@adacore.com>
1172
1173 * common/filestuff.c: Replace #include <sys/stat.h> by
1174 #include "gdb_stat.h".
1175
1176 2013-04-29 Pierre Muller <muller@sourceware.org>
1177
1178 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
1179 editCase function rule.
1180 (get_DW_AT_signature_type): Likewise.
1181
1182 2013-04-29 Joel Brobecker <brobecker@adacore.com>
1183
1184 * m32r-tdep.c (m32r_write_pc): Delete.
1185 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
1186 Add call to set_gdbarch_pc_regnum.
1187
1188 2013-04-29 Pierre Muller <muller@sourceware.org>
1189
1190 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
1191
1192 2013-04-29 Joel Brobecker <brobecker@adacore.com>
1193
1194 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
1195
1196 2013-04-28 Yao Qi <yao@codesourcery.com>
1197
1198 * solib-dsbt.c (fetch_loadmap): Re-indent.
1199 (displacement_from_map, enable_break2): Likewise.
1200 (dsbt_relocate_section_addresses): Likewise.
1201
1202 2013-04-26 Joel Brobecker <brobecker@adacore.com>
1203
1204 GDB 7.6 released.
1205
1206 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
1207
1208 PR corefiles/14983:
1209 * dwarf2read.c (process_full_comp_unit): Always create a static
1210 block.
1211
1212 2013-04-25 Hui Zhu <hui@codesourcery.com>
1213
1214 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
1215 to loc->cmd_bytecode.
1216
1217 2013-04-24 Doug Evans <dje@google.com>
1218
1219 * dwarf2read.c (setup_type_unit_groups): Fix comment.
1220
1221 2013-04-22 Keith Seitz <keiths@redhat.com>
1222
1223 * tracepoint.c (trace_save): Call the writer's start method.
1224
1225 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
1226
1227 PR gdb/10462
1228 * cli/cli-decode.c (lookup_command): Show an error if there is no space
1229 before argument.
1230
1231 2013-04-23 Tom Tromey <tromey@redhat.com>
1232
1233 * common/filestuff.c: Check USE_WIN32API before including
1234 sys/socket.h.
1235 (HAVE_F_GETFD): New define.
1236 (mark_cloexec): Check HAVE_F_GETFD.
1237 (gdb_open_cloexec): Change 'mode' to unsigned long.
1238 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
1239 (gdb_pipe_cloexec): Check HAVE_PIPE.
1240 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
1241 long.
1242
1243 2013-04-23 Hui Zhu <hui@codesourcery.com>
1244
1245 PR gdb/15293
1246 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
1247
1248 2013-04-23 Hui Zhu <hui@codesourcery.com>
1249
1250 PR gdb/15165
1251 * breakpoint.c (dprintf_print_recreate): New.
1252 (save_breakpoints): Let it not save dprintf commands.
1253 (initialize_breakpoint_ops): Set dprintf_print_recreate.
1254
1255 2013-04-22 Tom Tromey <tromey@redhat.com>
1256
1257 PR gdb/7912:
1258 * Makefile.in (SFILES): Add filestuff.c
1259 (COMMON_OBS): Add filestuff.o.
1260 (filestuff.o): New target.
1261 * auto-load.c (auto_load_objfile_script_1): Use
1262 gdb_fopen_cloexec.
1263 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
1264 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
1265 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
1266 * common/agent.c (gdb_connect_sync_socket): Use
1267 gdb_socket_cloexec.
1268 * common/filestuff.c: New file.
1269 * common/filestuff.h: New file.
1270 * common/linux-osdata.c (linux_common_core_of_thread)
1271 (command_from_pid, commandline_from_pid, print_source_lines)
1272 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
1273 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
1274 gdb_fopen_cloexec.
1275 * common/linux-procfs.c (linux_proc_get_int)
1276 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
1277 * config.in, configure: Rebuild.
1278 * configure.ac: Don't check for sys/socket.h. Check for
1279 fdwalk, pipe2.
1280 * corelow.c (core_open): Use gdb_open_cloexec.
1281 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
1282 * fork-child.c (fork_inferior): Call close_most_fds.
1283 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
1284 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
1285 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
1286 Use gdb_fopen_cloexec.
1287 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
1288 gdb_open_cloexec.
1289 (linux_async_pipe): Use gdb_pipe_cloexec.
1290 * remote-fileio.c (remote_fileio_func_open): Use
1291 gdb_open_cloexec.
1292 * remote.c (remote_file_put, remote_file_get): Use
1293 gdb_fopen_cloexec.
1294 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
1295 close_most_fds.
1296 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
1297 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
1298 * solib.c (solib_find): Use gdb_open_cloexec.
1299 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
1300 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
1301 (tfile_open): Use gdb_open_cloexec.
1302 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
1303 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
1304 * xml-support.c (xml_fetch_content_from_file): Use
1305 gdb_fopen_cloexec.
1306 * main.c (captured_main): Call notice_open_fds.
1307
1308 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
1309
1310 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
1311 'char *' to 'gdb_byte *'.
1312 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
1313 'gdb_byte'.
1314
1315 2013-04-22 Yao Qi <yao@codesourcery.com>
1316
1317 * infrun.c: Fix typo in comment.
1318
1319 2013-04-22 Andrew Haley <aph@redhat.com>
1320
1321 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
1322 instead of "long".
1323
1324 2013-04-20 Yao Qi <yao@codesourcery.com>
1325
1326 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
1327 'char *' to 'gdb_byte *'. Cast the return value of
1328 'bt_ctf_get_char_array' to 'gdb_byte *'.
1329
1330 2013-04-19 Pedro Alves <palves@redhat.com>
1331
1332 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
1333 -Wpointer-sign.
1334 * configure: Regenerate.
1335
1336 2013-04-19 Pedro Alves <palves@redhat.com>
1337
1338 * ser-tcp.c (net_read_prim): Cast second argument to recv to
1339 'void *'.
1340
1341 2013-04-19 Pedro Alves <palves@redhat.com>
1342
1343 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
1344 Change type of 'myaddr' parameter to gdb_byte pointer.
1345 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
1346 to 'long long' pointer instead of to 'unsigned long long'.
1347 (monitor_write_memory_block, monitor_read_memory_single)
1348 (monitor_read_memory): Change type of 'myaddr' parameter to
1349 gdb_byte pointer.
1350
1351 2013-04-19 Pedro Alves <palves@redhat.com>
1352
1353 * record.c (validate_history_size): Make parameter 'setting'
1354 unsigned.
1355
1356 2013-04-19 Pedro Alves <palves@redhat.com>
1357
1358 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
1359 to 'gdb_byte *'.
1360
1361 2013-04-19 Pedro Alves <palves@redhat.com>
1362
1363 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
1364 local to int.
1365
1366 2013-04-19 Pedro Alves <palves@redhat.com>
1367
1368 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
1369 * ada-tasks.c (read_fat_string_value): Likewise.
1370
1371 2013-04-19 Pedro Alves <palves@redhat.com>
1372
1373 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
1374 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
1375 'offset', and adjust.
1376
1377 2013-04-19 Pedro Alves <palves@redhat.com>
1378
1379 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
1380 (read_index_from_section): Add cast to 'char *'.
1381
1382 2013-04-19 Pedro Alves <palves@redhat.com>
1383
1384 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
1385
1386 2013-04-19 Pedro Alves <palves@redhat.com>
1387
1388 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
1389
1390 2013-04-19 Pedro Alves <palves@redhat.com>
1391
1392 * record-full.c (record_full_get_bookmark): Change local 'ret'
1393 type to char * and add cast to gdb_byte *.
1394 (record_full_goto_bookmark): Handle 'bookmark' argument as a
1395 string.
1396 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
1397
1398 2013-04-19 Pedro Alves <palves@redhat.com>
1399
1400 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
1401 * python/py-prettyprint.c (print_string_repr): Change type of
1402 'output' local to char *. Add cast to gdb_byte * in
1403 LA_PRINT_STRING call.
1404 (print_children): Change type of 'output' local to char *.
1405 * python/py-value.c (valpy_string): Add cast to const char * in
1406 PyUnicode_Decode call.
1407
1408 2013-04-19 Pedro Alves <palves@redhat.com>
1409
1410 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
1411 and change its type to 'const char *'. Adjust.
1412 (mips_send_packet): Add cast to 'char *', and remove cast to
1413 'unsigned char *'.
1414 (mips_receive_packet): Remove cast to 'unsigned char *'.
1415 (mips_load_srec): Use bfd_byte.
1416 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
1417 (pmon_checkset): Make 'value' parameter unsigned.
1418
1419 2013-04-19 Pedro Alves <palves@redhat.com>
1420
1421 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
1422
1423 2013-04-19 Pedro Alves <palves@redhat.com>
1424
1425 * remote.c (remote_write_bytes_aux, compare_sections_command)
1426 (remote_read_qxfer)
1427 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
1428 (remote_hostio_readlink, remote_bfd_iovec_pread)
1429 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
1430 binary buffer, and char when buffer is used as string.
1431 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
1432 (trace_save, tfile_open, traceframe_walk_blocks)
1433 (tfile_fetch_registers): Likewise.
1434
1435 2013-04-19 Pedro Alves <palves@redhat.com>
1436
1437 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
1438 buffer and size_t size. Adjust.
1439 * ser-base.h (ser_base_write): Adjust.
1440 * ser-go32.c (cnts): Change type to size_t.
1441 (dos_write): Change prototype -- take 'void *'
1442 buffer and size_t size. Adjust.
1443 (dos_info): Print elements of 'cnts' as unsigned long.
1444 * serial.c (serial_write): Likewise.
1445 * serial.h (serial_write): Adjust.
1446 (struct serial_ops) <write>: Change prototype -- take 'void *'
1447 buffer and size_t size. Adjust.
1448
1449 2013-04-19 Pedro Alves <palves@redhat.com>
1450
1451 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
1452 gdb_byte *.
1453 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
1454
1455 2013-04-19 Pedro Alves <palves@redhat.com>
1456
1457 * alpha-tdep.c (alpha_extract_return_value): Use
1458 regcache_cooked_read_unsigned to read 'v0'.
1459
1460 2013-04-19 Pedro Alves <palves@redhat.com>
1461
1462 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
1463 parameters 'at', 'as' and 'offset' to uint32_t.
1464
1465 2013-04-19 Pedro Alves <palves@redhat.com>
1466
1467 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
1468 'is64' to signed 'int'.
1469
1470 2013-04-19 Pedro Alves <palves@redhat.com>
1471
1472 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
1473 parameter to int *.
1474
1475 2013-04-19 Pedro Alves <palves@redhat.com>
1476
1477 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
1478 'insnbuf' buffer type to unsigned int[].
1479
1480 2013-04-19 Pedro Alves <palves@redhat.com>
1481
1482 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
1483
1484 2013-04-19 Pedro Alves <palves@redhat.com>
1485
1486 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
1487 unsigned long *.
1488
1489 2013-04-19 Pedro Alves <palves@redhat.com>
1490
1491 * alpha-tdep.c (heuristic_fence_post): Change type to int.
1492 (alpha_heuristic_proc_start): Adjust to check -1 instead of
1493 UINT_MAX.
1494 * mips-tdep.c (heuristic_fence_post): Change type to int.
1495 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
1496
1497 2013-04-19 Pedro Alves <palves@redhat.com>
1498
1499 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
1500 (struct gdbarch_tdep) <cris_version>: Make unsigned.
1501 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
1502
1503 2013-04-19 Pedro Alves <palves@redhat.com>
1504
1505 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
1506 it to get a string view of the byte buffer.
1507 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
1508 type to gdb_byte *. Adjust.
1509 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
1510 Change local to char *.
1511 * solib-darwin.c (find_program_interpreter): Change return type to
1512 char *. Adjust.
1513 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
1514 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
1515 * solib-frv.c (enable_break2): Change local 'buf' to char *.
1516 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
1517 * solib-svr4.c (find_program_interpreter): Change return type to
1518 char *. Adjust.
1519 (enable_break): Change local 'interp_name' to char *.
1520 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1521 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
1522 (spu_pseudo_register_write_spu): Use char for string buffer.
1523 Adjust.
1524 (info_spu_event_command, info_spu_signal_command): Add casts to
1525 'char *'.
1526
1527 2013-04-19 Pedro Alves <palves@redhat.com>
1528
1529 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
1530 gdb_byte[].
1531 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
1532 * ada-lang.c (ada_value_assign): Use gdb_byte.
1533 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
1534 (alphanbsd_sigtramp_offset): Use gdb_byte.
1535 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
1536 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
1537 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
1538 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
1539 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
1540 * arm-tdep.c (arm_stub_unwind_sniffer)
1541 (arm_displaced_init_closure): Use gdb_byte.
1542 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
1543 (arm_default_thumb_le_breakpoint)
1544 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
1545 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
1546 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
1547 * arm-wince-tdep.c (arm_wince_le_breakpoint)
1548 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
1549 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
1550 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
1551 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
1552 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
1553 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
1554 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
1555 (cris_store_return_value, cris_extract_return_value): Use
1556 gdb_byte.
1557 (constraint): Change type of parameter to char * from signed
1558 char*. Use gdb_byte.
1559 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
1560 of local buffer to gdb_byte *.
1561 * dwarf2read.c (read_index_from_section): Use gdb_byte.
1562 (create_dwp_hash_table): Change type of locals to gdb_byte *.
1563 (add_address_entry): Change type of local buffer to gdb_byte[].
1564 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
1565 (frv_push_dummy_call): Use gdb_byte.
1566 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
1567 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
1568 (hppa_hpux_supply_save_state): Use gdb_byte.
1569 * hppa-tdep.c (hppa32_push_dummy_call)
1570 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
1571 * ia64-tdep.c (extract_bit_field, replace_bit_field)
1572 (slotN_contents, replace_slotN_contents): Change type of parameter
1573 to gdb_byte *.
1574 (fetch_instruction, ia64_pseudo_register_write)
1575 (ia64_register_to_value, ia64_value_to_register)
1576 (ia64_extract_return_value, ia64_store_return_value)
1577 (ia64_push_dummy_call): Use gdb_byte.
1578 * m32c-tdep.c (m32c_return_value): Remove cast.
1579 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
1580 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
1581 gdb_byte.
1582 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
1583 * mn10300-tdep.c (mn10300_store_return_value)
1584 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
1585 gdb_byte.
1586 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
1587 (moxie_process_record): Remove casts.
1588 * ppc-ravenscar-thread.c (supply_register_at_address)
1589 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
1590 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
1591 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
1592 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
1593 * remote.c (compare_sections_command): Use gdb_byte.
1594 * score-tdep.c (score7_free_memblock): Change type of parameter to
1595 gdb_byte *.
1596 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
1597 gdb_byte *. Use gdb_byte.
1598 (sh_push_dummy_call_fpu): Use gdb_byte.
1599 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
1600 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
1601 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
1602 Change parameter type to 'gdb_byte *'. Use gdb_byte.
1603 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
1604 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
1605 (sh64_store_return_value, sh64_register_convert_to_virtual):
1606 Change parameter type to 'gdb_byte *'. Use gdb_byte.
1607 (sh64_pseudo_register_write): Use gdb_byte.
1608 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
1609 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
1610 buffer.
1611 (irix_current_sos): Use gdb_byte.
1612 * solib-som.c (som_current_sos): Use gdb_byte.
1613 * sparc-ravenscar-thread.c (supply_register_at_address)
1614 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
1615 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1616 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
1617 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
1618 'gdb_byte *'.
1619 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
1620 'gdb_byte *'.
1621 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
1622 * xstormy16-tdep.c (xstormy16_extract_return_value)
1623 (xstormy16_store_return_value): Change parameter type to
1624 'gdb_byte *'. Adjust.
1625 (xstormy16_push_dummy_call): Use gdb_byte.
1626 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
1627 (call0_analyze_prologue, execute_code): Use gdb_byte.
1628
1629 2013-04-19 Vladimir Kargov <kargov@gmail.com>
1630 Pedro Alves <palves@redhat.com>
1631
1632 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
1633 value contents.
1634
1635 2013-04-17 Doug Evans <dje@google.com>
1636
1637 * dwarf2read.c (struct signatured_type): New member type.
1638 (struct attribute): Replace member signatured_type with signature.
1639 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
1640 (read_call_site_scope): Call follow_die_ref instead of
1641 follow_die_ref_or_sig.
1642 (read_structure_type): Rewrite handling of signatured types.
1643 (read_enumeration_type): Ditto.
1644 (read_attribute_value): Update.
1645 (build_error_marker_type): New function.
1646 (lookup_die_type): Add assert. Rewrite handling of signatured types.
1647 Don't call error for bad types, just build an error marker type.
1648 (dump_die_shallow): Update.
1649 (follow_die_sig_1): Renamed from follow_die_sig.
1650 Don't call error for bad types, instead return NULL.
1651 (follow_die_sig): New function.
1652 (get_signatured_type, get_DW_AT_signature_type): New functions.
1653
1654 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
1655
1656 * aarch64-tdep.c (aarch64_write_pc): Removed.
1657 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
1658 function.
1659
1660 2013-04-17 Yao Qi <yao@codesourcery.com>
1661
1662 * top.c (print_gdb_configuration): Print configure-time
1663 parameter on using libbabeltrace or not.
1664
1665 2013-04-16 Pedro Alves <palves@redhat.com>
1666
1667 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
1668
1669 2013-04-16 Pedro Alves <palves@redhat.com>
1670
1671 * common/glibc_thread_db.h: Update from upstream glibc
1672 (git 568035b7874a099087b77f7bba3e36a1173787b0).
1673
1674 2013-04-16 Pedro Alves <palves@redhat.com>
1675
1676 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
1677 * common/glibc_thread_db.h: ... this new file ...
1678 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
1679
1680 2013-04-16 Will Newton <will.newton@gmail.com>
1681 Pedro Alves <palves@redhat.com>
1682
1683 PR build/11881
1684
1685 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
1686 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
1687 HAVE_THREAD_DB_H.
1688
1689 2013-04-16 Pedro Alves <palves@redhat.com>
1690 Eli Zaretskii <eliz@gnu.org>
1691
1692 * NEWS: Mention "set foo unlimited".
1693
1694 2013-04-15 Doug Evans <dje@google.com>
1695
1696 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
1697 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
1698 (create_dwo_cu_reader): Renamed from
1699 create_dwo_debug_info_hash_table_reader.
1700 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
1701 Remove support for multiple CUs in a DWO file.
1702 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
1703
1704 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
1705 instead of phex.
1706 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
1707 (create_dwo_in_dwp): Ditto.
1708
1709 2013-04-15 Tom Tromey <tromey@redhat.com>
1710
1711 * NEWS: Move recent entries into "since 7.6" section.
1712
1713 2013-04-15 Tom Tromey <tromey@redhat.com>
1714
1715 PR c++/13588:
1716 * NEWS: Update.
1717 * break-catch-throw.c (struct exception_catchpoint)
1718 <exception_rx, pattern>: New fields.
1719 (fetch_probe_arguments, dtor_exception_catchpoint)
1720 (check_status_exception_catchpoint)
1721 (print_one_detail_exception_catchpoint): New functions.
1722 (handle_gnu_v3_exceptions): Add "except_rx" argument.
1723 Compile regular expression if needed.
1724 (extract_exception_regexp): New function.
1725 (catch_exception_command_1): Use extract_exception_regexp.
1726 (compute_exception): Use fetch_probe_arguments.
1727 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
1728 and check_status fields.
1729 * cp-abi.c (cplus_typename_from_type_info): New function.
1730 * cp-abi.h (cplus_typename_from_type_info): Declare.
1731 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
1732 * gdb_regex.h (compile_rx_or_error): Declare.
1733 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
1734 comment.
1735 (init_gnuv3_ops): Set get_type_from_type_info field.
1736 * probe.c (compile_rx_or_error): Move...
1737 * utils.c (compile_rx_or_error): ... here.
1738
1739 2013-04-15 Tom Tromey <tromey@redhat.com>
1740
1741 PR c++/15176:
1742 * NEWS: Update.
1743 * break-catch-throw.c (compute_exception): New function.
1744 (exception_funcs): New global.
1745 (_initialize_break_catch_throw): Create $_exception.
1746 * cp-abi.c (cplus_type_from_type_info): New function.
1747 * cp-abi.h (cplus_type_from_type_info): Declare.
1748 (struct cp_abi_ops) <get_type_from_type_info>: New field.
1749 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
1750 (gnuv3_get_type_from_type_info): New functions.
1751 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
1752
1753 2013-04-15 Tom Tromey <tromey@redhat.com>
1754
1755 * break-catch-throw.c (struct exception_names): New.
1756 (exception_functions): Change type.
1757 (re_set_exception_catchpoint): Look for SDT probes.
1758
1759 2013-04-15 Tom Tromey <tromey@redhat.com>
1760
1761 PR c++/10119:
1762 * break-catch-throw.c (exception_functions): New global.
1763 (gnu_v3_exception_catchpoint_ops): Move earlier.
1764 (struct exception_catchpoint): New.
1765 (classify_exception_breakpoint): Rewrite.
1766 (re_set_exception_catchpoint): New function.
1767 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
1768 Allocate a struct exception_catchpoint.
1769 (catch_exception_command_1): Update.
1770 (initialize_throw_catchpoint_ops): Set 're_set' method.
1771
1772 2013-04-15 Tom Tromey <tromey@redhat.com>
1773
1774 * Makefile.in (SFILES): Add break-catch-throw.c
1775 (COMMON_OBS): Add break-catch-throw.o.
1776 * break-catch-throw.c: New file.
1777 * breakpoint.c: Move exception-catching code to new file.
1778 (ep_parse_optional_if_clause): No longer static.
1779 * breakpoint.h (ep_parse_optional_if_clause): Declare.
1780
1781 2013-04-15 Tom Tromey <tromey@redhat.com>
1782
1783 PR c++/9065:
1784 * NEWS: Update.
1785 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
1786 * c-exp.y (TYPEID): New token.
1787 (exp): Add new TYPEID productions.
1788 (ident_tokens): Add "typeid".
1789 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
1790 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
1791 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
1792 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
1793 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
1794 case.
1795 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
1796 (build_std_type_info_type, gnuv3_get_typeid_type)
1797 (gnuv3_get_typeid): New functions.
1798 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
1799 new fields on ABI object.
1800 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
1801 * std-operator.def (OP_TYPEID): New.
1802
1803 2013-04-15 Tom Tromey <tromey@redhat.com>
1804
1805 * elfread.c (elf_symtab_read): Install versioned symbol under
1806 unversioned name as well.
1807
1808 2013-04-15 Tom Tromey <tromey@redhat.com>
1809
1810 PR c++/11990:
1811 * c-lang.c (cplus_language_defn): Use gdb_demangle.
1812 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
1813 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
1814 (gdb_demangle): New function.
1815 * cp-support.h (gdb_demangle): Declare.
1816 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
1817 (dwarf2_name): Use gdb_demangle.
1818 * gdbtypes.c (check_stub_method): Use gdb_demangle.
1819 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
1820 suffixes from name.
1821 (gnuv3_print_method_ptr): Use gdb_demangle.
1822 * jv-lang.c (java_demangle): Use gdb_demangle.
1823 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
1824 * language.c (unk_lang_demangle): Use gdb_demangle.
1825 * symtab.c (symbol_find_demangled_name)
1826 (demangle_for_lookup): Use gdb_demangle.
1827
1828 2013-04-15 Tom Tromey <tromey@redhat.com>
1829
1830 PR c++/12824:
1831 * NEWS: Update.
1832 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
1833 New constant.
1834 (classify_exception_breakpoint): New function.
1835 (print_it_exception_catchpoint, print_one_exception_catchpoint)
1836 (print_mention_exception_catchpoint)
1837 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
1838 (catch_exception_command_1): Handle "rethrow" catchpoint.
1839 (catch_rethrow_command): New function.
1840 (_initialize_breakpoint): Add "catch rethrow" command.
1841
1842 2013-04-15 Pierre Muller <muller@sourceware.org>
1843
1844 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
1845 set_gdbarch_write_pc as deprecated anymore.
1846
1847 2013-04-15 Joel Brobecker <brobecker@adacore.com>
1848
1849 * spu-tdep.c (spu_write_pc): Add empty line after local variable
1850 declarations.
1851
1852 2013-04-13 Yao Qi <yao@codesourcery.com>
1853
1854 * ctf.c (_initialize_ctf): Include "completer.h".
1855 Call add_target_with_completer instead of add_target.
1856
1857 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1858
1859 Fix GDB regression related to PR binutils/14813.
1860 * jit.c (mem_bfd_iovec_close): Return 0 for success.
1861 * minidebug.c (lzma_close): Add return value comment.
1862 * remote.c (remote_bfd_iovec_close): Return 0 for success.
1863 * solib-spu.c (spu_bfd_iovec_close): Likewise.
1864 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
1865
1866 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1867
1868 * config.in: Regenerate.
1869
1870 2013-04-12 Tom Tromey <tromey@redhat.com>
1871
1872 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
1873 const.
1874 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
1875 (struct die_reader_specs) <buffer>: Likewise.
1876 (die_reader_func_ftype): Make 'info_ptr' const.
1877 (struct line_header) <include_dirs, statement_program_start,
1878 statement_program_end>: Now const.
1879 (struct file_entry) <name>: Likewise.
1880 (struct partial_die_info) <sibling>: Likewise.
1881 (struct dwarf_block) <data>: Likewise.
1882 (dwarf2_read_section): Remove cast.
1883 (dwarf2_get_section_info): Make 'bufp' const.
1884 (read_index_from_section): Constify.
1885 (dw2_get_file_names_reader): Make 'info_ptr' const.
1886 (dw2_get_primary_filename_reader): Likewise.
1887 (read_comp_unit_head): Make 'info_ptr' and return type const.
1888 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
1889 Likewise.
1890 (read_abbrev_offset): Constify.
1891 (dwarf2_create_include_psymtab): Make 'name' const.
1892 (create_debug_types_hash_table): Update.
1893 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
1894 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
1895 Constify.
1896 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
1897 (load_partial_comp_unit_reader): Make 'info_ptr' const.
1898 (read_comp_units_from_section): Constify.
1899 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
1900 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
1901 const.
1902 (dwarf2_compute_name, setup_type_unit_groups): Constify.
1903 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
1904 (create_dwp_hash_table, dwarf2_ranges_read)
1905 (dwarf2_record_block_ranges): Constify.
1906 (read_die_and_children, read_die_and_siblings_1)
1907 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
1908 const.
1909 (read_full_die_1, read_full_die): Make 'info_ptr' const.
1910 (abbrev_table_read_table): Constify.
1911 (load_partial_dies): Make 'info_ptr' const.
1912 (read_partial_die, read_attribute_value, read_attribute): Make
1913 'info_ptr' and return type const.
1914 (read_address, read_initial_length)
1915 (read_checked_initial_length_and_offset, read_offset)
1916 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
1917 const.
1918 (read_direct_string): Make 'buf' and return type const.
1919 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
1920 (read_indirect_string): Make return type const.
1921 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
1922 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
1923 'info_ptr' const.
1924 (read_str_index): Make return type const.
1925 (add_include_dir): Make 'include_dir' const.
1926 (add_file_name): Make 'name' const.
1927 (dwarf_decode_line_header): Constify.
1928 (psymtab_include_file_name): Make return type const.
1929 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
1930 (dwarf2_start_subfile): Make 'filename' const.
1931 (dwarf2_const_value_attr): Make 'bytes' const.
1932 (read_signatured_type_reader): Make 'info_ptr' const.
1933 (decode_locdesc): Constify.
1934 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
1935 const.
1936 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
1937 'mac_end', and return type const.
1938 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
1939 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
1940 type const.
1941 (per_cu_header_read_in): Constify.
1942 * symfile.h (dwarf2_get_section_info): Update.
1943
1944 2013-04-12 Tom Tromey <tromey@redhat.com>
1945
1946 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
1947
1948 2013-04-12 Eli Zaretskii <eliz@gnu.org>
1949
1950 * NEWS: Mention "show configuration", --configuration.
1951 * top.c (print_gdb_configuration): New function, displays the
1952 details about GDB configure-time parameters.
1953 (print_gdb_version): Mention "show configuration".
1954 * cli/cli-cmds.c (show_configuration): New function.
1955 (_initialize_cli_cmds): Add the "show configuration" command.
1956 * main.c (captured_main) <print_configuration>: New static var.
1957 <long_options>: Use it.
1958 If --configuration was given, call print_gdb_configuration.
1959
1960 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1961 Pedro Alves <palves@redhat.com>
1962
1963 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
1964 (generated_files): Add gcore.
1965 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
1966 HAVE_NATIVE_GCORE_HOST.
1967 (gcore): New.
1968 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
1969 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
1970 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
1971 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
1972 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
1973 Add HAVE_NATIVE_GCORE_HOST.
1974 * configure: Regenerate.
1975 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
1976 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
1977 AC_CONFIG_FILES for gcore.
1978 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
1979 gdb_have_gcore.
1980 * gdb_gcore.sh: Rename to ...
1981 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
1982 and GCORE_TRANSFORM_NAME substitutions.
1983
1984 Fix parsing tabs in ${gdb_target_obs}.
1985 * configure.tgt (gdb_have_gcore): Replace case with for and if.
1986
1987 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1988
1989 * remote.c (unpush_and_perror): Add output message final dot.
1990
1991 2013-04-11 Yao Qi <yao@codesourcery.com>
1992
1993 * tracepoint.c (tfile_interp_line): Fit parameters line and
1994 utpp in one line.
1995
1996 2013-04-10 Joel Brobecker <brobecker@adacore.com>
1997
1998 * solib.c (solib_map_sections): Remove code overwriting
1999 SO->SO_NAME with the bfd's filename.
2000
2001 2013-04-10 Pedro Alves <palves@redhat.com>
2002
2003 * cli/cli-decode.c (integer_unlimited_completer): New function.
2004 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
2005 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
2006 completer.
2007 * cli/cli-setshow.c: Include "cli/cli-utils.h".
2008 (is_unlimited_literal): New function.
2009 (do_set_command): Handle literal "unlimited" arguments.
2010 * frame.c (_initialize_frame) <set backtrace limit>: Document
2011 "unlimited".
2012 * printcmd.c (_initialize_printcmd) <set print
2013 max-symbolic-offset>: Add help text.
2014 * record-full.c (_initialize_record_full) <set record full
2015 insn-number-max>: Likewise.
2016 * record.c (_initialize_record) <set record
2017 instruction-history-size, set record function-call-history-size>:
2018 Add help text.
2019 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
2020 help text.
2021 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
2022 Likewise.
2023 * source.c (_initialize_source) <set listsize>: Add help text.
2024 * utils.c (initialize_utils) <set height, set width>: Likewise.
2025 <set pagination>: Mention "set height unlimited".
2026 * valprint.c (_initialize_valprint) <set print elements, set print
2027 repeats>: Document "unlimited".
2028
2029 2013-04-10 Pedro Alves <palves@redhat.com>
2030
2031 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
2032 instead of disconnect_tracing.
2033 * infcmd.c (detach_command, disconnect_command): Call
2034 query_if_trace_running. Adjust.
2035 * top.c: Include "tracepoint.h".
2036 (quit_target): Delete. Contents moved ...
2037 (quit_force): ... here. Wrap each stage of teardown in
2038 TRY_CATCH. Call disconnect_tracing before detaching.
2039
2040 2013-04-10 Hui Zhu <hui@codesourcery.com>
2041 Yao Qi <yao@codesourcery.com>
2042
2043 * configure.ac: Check libbabeltrace is installed.
2044 * config.in: Regenerate.
2045 * configure: Regenerate.
2046 * Makefile.in (LIBBABELTRACE): New.
2047 (CLIBS): Add LIBBABELTRACE.
2048 * ctf.c: Include "exec.h".
2049 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
2050 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
2051 (ctf_save_metadata_header): Define new type aliases in
2052 metadata.
2053 (ctf_write_header): Define event type "tsv_def" and "tp_def"
2054 in metadata. Start a new faked packet for trace status.
2055 (ctf_write_status): Write trace status to CTF.
2056 (ctf_write_uploaded_tsv): Write TSV to CTF.
2057 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
2058 (ctf_write_definition_end): End the faked packet.
2059
2060 (ctx, ctf_iter, trace_dirname): New.
2061 (start_pos): New variable.
2062 (ctf_destroy, ctf_open_dir, ctf_open): New.
2063 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
2064 macros.
2065 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
2066 (ctf_fetch_registers, ctf_xfer_partial): New.
2067 (ctf_get_trace_state_variable_value): New.
2068 (ctf_get_tpnum_from_frame_event): New.
2069 (ctf_get_traceframe_address): New.
2070 (ctf_trace_find, ctf_has_stack): New.
2071 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
2072 (ctf_get_trace_status, ctf_read_status): New.
2073 (_initialize_ctf): New.
2074 * tracepoint.c (get_tracepoint_number): New
2075 (get_uploaded_tsv): Remove 'static'.
2076 (struct traceframe_info, trace_regblock_size): Move it to ...
2077 * tracepoint.h: ... here.
2078 (get_tracepoint_number): Declare it.
2079 (get_uploaded_tsv): Declare it.
2080
2081 * NEWS: Mention new configure option.
2082
2083 2013-04-10 Pedro Alves <palves@redhat.com>
2084 Hui Zhu <hui@codesourcery.com>
2085
2086 * breakpoint.c (dprintf_re_set): New.
2087 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
2088 to dprintf_re_set.
2089
2090 2013-04-09 Joel Brobecker <brobecker@adacore.com>
2091
2092 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
2093 Remove solib-svr4.o from the list.
2094
2095 2013-04-09 Joel Brobecker <brobecker@adacore.com>
2096
2097 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
2098 Use gdb_assert_not_reached instead of invalid boolean expression.
2099
2100 2013-04-09 Pedro Alves <palves@redhat.com>
2101
2102 * remote.c (unpush_and_perror): New function.
2103 (readchar, remote_serial_write): Use it.
2104
2105 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
2106
2107 * NEWS: Mention new btrace RSP packets.
2108
2109 2013-04-08 Tom Tromey <tromey@redhat.com>
2110
2111 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
2112 long.
2113
2114 2013-04-08 Tom Tromey <tromey@redhat.com>
2115
2116 * maint.c (print_bfd_section_info): Print the section index.
2117 * symmisc.c (dump_msymbols): Print the section index.
2118
2119 2013-04-08 Tom Tromey <tromey@redhat.com>
2120
2121 PR symtab/8424:
2122 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
2123 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
2124 * breakpoint.c (resolve_sal_pc): Update.
2125 * elfread.c (elf_gnu_ifunc_record_cache): Update.
2126 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
2127 (minsym_lookup_iterator_cb): Use it.
2128 (default_read_var_value): Update.
2129 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
2130 Update.
2131 * infcmd.c (jump_command): Update.
2132 * linespec.c (minsym_found): Update.
2133 * maint.c (maintenance_translate_address): Update.
2134 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
2135 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
2136 * parse.c (write_exp_msymbol): Update.
2137 * printcmd.c (address_info): Update.
2138 * psymtab.c (find_pc_sect_psymbol): Update.
2139 (fixup_psymbol_section): Check SYMBOL_SECTION, not
2140 SYMBOL_OBJ_SECTION.
2141 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
2142 Don't initialize SYMBOL_OBJ_SECTION.
2143 * spu-tdep.c (spu_catch_start): Update.
2144 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
2145 * symmisc.c (dump_msymbols, print_symbol): Update.
2146 * symtab.c (fixup_section): Don't set 'obj_section'. Change
2147 how fallback section is computed.
2148 (fixup_symbol_section): Update.
2149 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
2150 Update.
2151 (allocate_symbol, initialize_symbol, allocate_template_symbol):
2152 Initialize SYMBOL_SECTION.
2153 * symtab.h (struct general_symbol_info) <section>: Update comment.
2154 <obj_section>: Remove.
2155 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
2156 (SYMBOL_OBJFILE): New macro.
2157
2158 2013-04-08 Tom Tromey <tromey@redhat.com>
2159
2160 * coffread.c (record_minimal_symbol): Update.
2161 * dbxread.c (record_minimal_symbol): Update.
2162 * elfread.c (record_minimal_symbol): Update.
2163 * machoread.c (macho_symtab_add_minsym): Update.
2164 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
2165 Update.
2166 * minsyms.c (prim_record_minimal_symbol): Update.
2167 (prim_record_minimal_symbol_full): Remove 'bfd_section'
2168 argument.
2169 (prim_record_minimal_symbol_and_info): Likewise.
2170 * minsyms.h (prim_record_minimal_symbol_full)
2171 (prim_record_minimal_symbol_and_info): Update.
2172 * symtab.c (allocate_symbol, initialize_symbol)
2173 (allocate_template_symbol): Initialize SYMBOL_SECTION.
2174 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
2175 Update.
2176
2177 2013-04-08 Tom Tromey <tromey@redhat.com>
2178
2179 PR symtab/8423:
2180 * solib-som.c (som_solib_section_offsets): Use BFD section
2181 indices. Set offsets for all sections.
2182 * somread.c (som_symtab_read): Compute BFD section for
2183 symbol. Use prim_record_minimal_symbol_and_info.
2184 (som_symfile_read): Fix comment.
2185 (struct find_section_offset_arg): New.
2186 (find_section_offset, set_section_index): New functions.
2187 (som_symfile_offsets): Use set_section_index to compute
2188 section indices.
2189
2190 2013-04-08 Tom Tromey <tromey@redhat.com>
2191
2192 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
2193 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
2194 gdb_bfd_section_index.
2195 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
2196 New functions.
2197 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
2198 Declare.
2199 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
2200 Update.
2201 * objfiles.c (add_to_objfile_sections_full): New function.
2202 (add_to_objfile_sections): Use it.
2203 (build_section_table): Rewrite.
2204 (objfile_relocate1): Use gdb_bfd_section_index. Update.
2205 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
2206 (struct objfile) <sections>: Update comment.
2207 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
2208 is NULL.
2209 (ALL_OBJSECTIONS): Use it.
2210 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
2211 * solib-frv.c (frv_relocate_main_executable): Update.
2212 * solib-target.c (solib_target_relocate_section_addresses):
2213 Use gdb_bfd_section_index.
2214 * symfile.c (build_section_addr_info_from_section_table):
2215 Use gdb_bfd_section_index.
2216 (build_section_addr_info_from_bfd, place_section): Likewise.
2217 * symtab.c (fixup_section): Update.
2218 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
2219
2220 2013-04-08 Tom Tromey <tromey@redhat.com>
2221
2222 * minsyms.h (struct bound_minimal_symbol): New.
2223 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
2224 Remove objfile argument.
2225 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
2226 Return bound_minimal_symbol.
2227 * minsyms.c (lookup_minimal_symbol_by_pc_1)
2228 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
2229 Return bound_minimal_symbol.
2230 (in_gnu_ifunc_stub): Update.
2231 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
2232 Remove 'objfile_p' argument.
2233 (lookup_solib_trampoline_symbol_by_pc): Update.
2234 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
2235 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
2236 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
2237 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
2238 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
2239 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
2240 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
2241 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
2242 stack.c, symtab.c, tui/tui-disasm.c: Update.
2243
2244 2013-04-08 Tom Tromey <tromey@redhat.com>
2245
2246 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
2247 Use symbol's obstack, not an objfile.
2248 * coffread.c (process_coff_symbol): Update.
2249 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
2250 * jv-lang.c (add_class_symbol): Update.
2251 * mdebugread.c (new_symbol): Update.
2252 * minsyms.c (prim_record_minimal_symbol_full)
2253 (terminate_minimal_symbol_table): Update.
2254 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
2255 * stabsread.c (define_symbol, read_enum_type): Update.
2256 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
2257 Handle Ada specially.
2258 (symbol_set_language): Add 'obstack' argument.
2259 (symbol_set_names): Update.
2260 (symbol_natural_name, symbol_demangled_name): Always use
2261 ada_decode_symbol.
2262 * symtab.h (struct general_symbol_info)
2263 <language_specific::obstack>: New field.
2264 <ada_mangled>: New field.
2265 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
2266 (symbol_set_language): Update.
2267
2268 2013-04-08 Tom Tromey <tromey@redhat.com>
2269
2270 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
2271 Take an obstack, not an objfile.
2272 (symbol_set_names): Update.
2273 * symtab.h (symbol_set_demangled_name): Update.
2274
2275 2013-04-08 Tom Tromey <tromey@redhat.com>
2276
2277 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
2278 allocate_symbol.
2279 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
2280 (read_func_scope): Call allocate_template_symbol.
2281 (new_symbol_full): Call allocate_symbol.
2282 * jit.c (finalize_symtab): Call allocate_symbol.
2283 * jv-lang.c (add_class_symbol): Call allocate_symbol.
2284 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
2285 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
2286 (common_block_end): Call allocate_symbol.
2287 * symtab.c (allocate_symbol, initialize_symbol)
2288 (allocate_template_symbol): New functions.
2289 * symtab.c (allocate_symbol, initialize_symbol)
2290 (allocate_template_symbol): Declare.
2291 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
2292
2293 2013-04-08 Pedro Alves <palves@redhat.com>
2294 Keith Seitz <keiths@redhat.com>
2295
2296 * breakpoint.c (create_breakpoint): Rename
2297 "parse_condition_and_thread" parameter to "parse_arg". Update
2298 describing comment. If !PARSE_ARG, then error out if ARG is not
2299 the empty string after extracting the location.
2300 * breakpoint.h (create_breakpoint): Rename
2301 "parse_condition_and_thread" parameter to "parse_arg".
2302
2303 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
2304
2305 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
2306
2307 2013-04-07 Yao Qi <yao@codesourcery.com>
2308
2309 * remote.c (remote_trace_find): Change type of parameters 'addr1'
2310 and 'addr2' to CORE_ADDR.
2311 * target.c (update_current_target): Update.
2312 * target.h (struct target_ops) <to_trace_find>: Change parameter
2313 type to CORE_ADDR.
2314 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
2315 'addr2' to CORE_ADDR.
2316 (tfile_trace_find): Likewise.
2317 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
2318 Change local variable 'addr' to type CORE_ADDR.
2319 * tracepoint.h (tfind_1): Update declaration.
2320
2321 2013-04-06 Eli Zaretskii <eliz@gnu.org>
2322
2323 * windows-nat.c (windows_get_absolute_argv0): Move from here...
2324 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
2325 Include main.h.
2326
2327 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
2328 here...
2329 * main.h (windows_get_absolute_argv0): ...to here.
2330
2331 2013-04-05 Doug Evans <dje@google.com>
2332
2333 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
2334 (read_cutu_die_from_dwo): Add comments.
2335 (read_structure_type): Update comment.
2336 (read_enumeration_type, read_namespace_type): Update comment.
2337 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
2338
2339 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2340
2341 Convert man pages to texinfo, new gdbinit.5 texinfo page.
2342 * Makefile.in (gdb.z): Remove.
2343 (install-only): Remove $(man1dir) and gdb.1 installation.
2344 * gdb.1: Remove.
2345
2346 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2347
2348 Fix compatibility with Linux kernel 3.8.3.
2349 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
2350 to more inner block. Remove parsing of NUMBER from outer block.
2351 Parse NUMBER only if KEYWORD has been identified.
2352
2353 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2354
2355 Fix variable name shadowing.
2356 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
2357 filename to mapsfilename and update its uses.
2358
2359 2013-04-05 Eli Zaretskii <eliz@gnu.org>
2360
2361 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
2362 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
2363 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
2364 details of the problem.
2365
2366 2013-04-04 Pedro Alves <palves@redhat.com>
2367 Hui Zhu <hui@codesourcery.com>
2368
2369 * breakpoint.c (validate_commands_for_breakpoint): If validating a
2370 tracepoint, reset its STEP_COUNT and call validate_actionline.
2371
2372 2013-04-03 Doug Evans <dje@google.com>
2373
2374 * dwarf2read.c (read_die_and_siblings_1): Renamed from
2375 read_die_and_siblings.
2376 (read_die_and_siblings): New function.
2377 (read_cutu_die_from_dwo): Dump die if requested.
2378 (read_die_and_children): Call read_full_die_1 and
2379 read_die_and_siblings_1.
2380 (read_full_die): Dump die if requested.
2381
2382 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
2383
2384 * dwarf2read.c (struct dwo_file): New member comp_dir.
2385 Rename member name to dwo_name. All uses updated.
2386 (hash_dwo_file): Include comp_dir in computation.
2387 (eq_dwo_file): Ditto.
2388 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
2389 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
2390
2391 * psymtab.c (read_psymtabs_with_fullname): Don't call
2392 psymtab_to_fullname if the basenames are different.
2393
2394 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2395
2396 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
2397 New entry about "fullname" presence.
2398
2399 2013-04-03 Pedro Alves <palves@redhat.com>
2400
2401 * NEWS: Mention x86_64/Cygwin as new native configuration.
2402
2403 2013-04-02 Doug Evans <dje@google.com>
2404
2405 * dwarf2read.c (read_structure_type): Fix typo in comment.
2406
2407 2013-04-02 Pedro Alves <palves@redhat.com>
2408
2409 * NEWS: Mention "set/show debug aarch64", "set/show debug
2410 coff-pe-read" and "set/show debug mach-o".
2411
2412 2013-04-02 Pedro Alves <palves@redhat.com>
2413
2414 * NEWS: Mention "set/show remote trace-buffer-size-packet".
2415
2416 2013-04-02 Eli Zaretskii <eliz@gnu.org>
2417
2418 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
2419 gdb_string.h is now in common/.
2420
2421 2013-04-02 Pedro Alves <palves@redhat.com>
2422
2423 * NEWS: Move "set debug notification" and "set trace-buffer-size"
2424 under "New options".
2425
2426 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2427
2428 Revert this patch:
2429 PR gdb/15275
2430 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
2431
2432 2013-04-02 Pedro Alves <palves@redhat.com>
2433
2434 PR gdb/15275
2435
2436 * remote.c (send_interrupt_sequence): Use remote_serial_write.
2437 (remote_serial_write): New function.
2438 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
2439
2440 2013-04-01 Jiong Wang <jiwang@tilera.com>
2441
2442 * NEWS: Mention TILE-Gx in "New native configurations" and
2443 "New targets" sections.
2444
2445 2013-04-01 Doug Evans <dje@google.com>
2446
2447 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
2448 (process_enumeration_scope): Simplify.
2449
2450 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
2451 type_unit_group ...
2452 (struct signatured_type): ... to here.
2453 (sig_type_ptr): New typedef.
2454 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
2455 out of union 't'. All uses updated.
2456 (dw2_get_file_names_reader): Assert not called for a type unit.
2457 (dw2_get_file_names): Assert not called for a type unit or type
2458 unit group.
2459 (build_type_psymtabs_reader): Assert called for a type unit.
2460 (build_type_psymtab_dependencies): Assert called for a type unit group.
2461
2462 * dwarf2read.c (free_dwo_file): Add comment.
2463 (dwarf2_per_objfile_free): Unref dwp bfd.
2464
2465 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
2466
2467 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
2468 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
2469 (read_pe_exported_syms): Remove unused 'exportix'.
2470 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
2471 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
2472 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
2473
2474 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
2475
2476 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
2477 (print_it_watchpoint): Remove unused 'bl'.
2478 (say_where): Remove unused 'uiout'.
2479 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
2480 (bkpt_breakpoint_hit): Remove unused 'b'.
2481 (internal_bkpt_print_it): Remove unused 'uiout'.
2482 * buildsym.c (augment_type_symtab): Remove unused 'i'.
2483
2484 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
2485
2486 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
2487 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
2488
2489 2013-03-29 Doug Evans <dje@google.com>
2490
2491 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
2492 Delete arg is_dwp. All callers updated.
2493 (open_dwp_file): New function.
2494 (open_and_init_dwp_file): Call it.
2495 (get_dwp_file): New function.
2496 (lookup_dwo_cutu): Call it.
2497
2498 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
2499 unnecessary, cleanup.
2500
2501 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
2502
2503 * dwarf2read.c (read_cutu_die_from_dwo): New function.
2504 (lookup_dwo_unit): New function.
2505 (init_cutu_and_read_dies): Move DWO handling to new functions.
2506
2507 * dwarf2read.c (struct signatured_type): Tweak comment.
2508 (struct dwo_unit): Tweak comment.
2509 (create_debug_types_hash_table): Tweak comment. Reformat long line.
2510 (create_dwo_debug_info_hash_table): Tweak comment.
2511 (dwarf2_per_cu_offset_and_type): Tweak comment.
2512
2513 * dwarf2read.c (lookup_signatured_type): Remove complaint about
2514 missing .debug_types section.
2515
2516 2013-03-29 Yao Qi <yao@codesourcery.com>
2517
2518 * corelow.c: Include "completer.h".
2519 (_initialize_corelow): Call add_target_with_completer with
2520 argument 'filename_completer'.
2521 * tracepoint.c: Likewise.
2522 * exec.c (_initialize_exec): Likewise.
2523 * target.c (add_target): Rename to ...
2524 (add_target_with_completer): ... this. Call set_cmd_completer
2525 if parameter completer is not NULL.
2526 (add_target): New.
2527 * target.h: Include "command.h".
2528 (add_target_with_completer): Declare it.
2529
2530 2013-03-28 Joel Brobecker <brobecker@adacore.com>
2531
2532 * coffread.c (is_import_fixup_symbol): New function.
2533 (record_minimal_symbol): Use is_import_fixup_symbol to
2534 detect import fixup symbols, and discard them.
2535
2536 2013-03-28 Doug Evans <dje@google.com>
2537
2538 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
2539 types hash table until we know we need it.
2540
2541 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
2542 index numbers.
2543
2544 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
2545 All callers updated.
2546 (dw2_print_stats): Print #read CUs too.
2547 (dump_die_shallow): Print signatured types better.
2548
2549 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
2550 info_or_types_section to section. All uses updated.
2551 (struct dwo_unit): Ditto.
2552
2553 2013-03-28 Pedro Alves <palves@redhat.com>
2554
2555 * NEWS (New options): New section.
2556 (New options): Mention set/show remote trace-status-packet.
2557 * remote.c (PACKET_qTStatus): New enumeration value.
2558 (remote_get_trace_status): Skip sending qTStatus if the packet is
2559 disabled. Use packet_ok.
2560 (_initialize_remote): Register a configuration command for
2561 qTStatus packet.
2562
2563 2013-03-28 Doug Evans <dje@google.com>
2564
2565 * symfile.c (find_separate_debug_file): Add comment.
2566 (terminate_after_last_dir_separator): Tweak comment.
2567
2568 * dwarf2read.c (create_partial_symtab): Add forward decl.
2569 (create_partial_symtab): Move to be closer to other psymtab functions.
2570 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
2571
2572 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
2573 (compute_symtab_includes): Remove unnecessary forward declaration.
2574 (die_needs_namespace): Add comment marking group of functions for
2575 dwarf2 name computation.
2576
2577 * typeprint.c (_initialize_typeprint): Improve type help text.
2578
2579 * python/python.c (finish_python_initialization): Provide suggestion
2580 for how to tell gdb to find its python files.
2581
2582 2013-03-28 Pedro Alves <palves@redhat.com>
2583
2584 PR gdb/15294
2585
2586 * source.c (_initialize_source): Change back "set listsize" to an
2587 integer command.
2588
2589 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
2590
2591 PR gdb/15275
2592 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
2593
2594 2013-03-27 Pedro Alves <palves@redhat.com>
2595
2596 * top.c (history_size): Rename to ...
2597 (history_size_setshow_var): ... this. Add comment.
2598 (show_commands): Use readline's 'history_length' instead of
2599 computing the history length by calling history_get in a loop.
2600 (set_history_size_command): Error out for sizes over INT_MAX.
2601 Restore previous history size on invalid size.
2602 (init_history): If HISTSIZE is negative, leave the history size as
2603 zero. Add comments.
2604 (init_main): Adjust.
2605
2606 2013-03-27 Pedro Alves <palves@redhat.com>
2607
2608 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
2609 coff_pe_read" command to "set debug coff-pe-read".
2610
2611 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
2612
2613 * record.c (command_size_to_target_size): Fix size comparison.
2614 Change parameter type from pointer to integer to integer.
2615 Update all users.
2616
2617 2013-03-27 Pierre Muller <muller@sourceware.org>
2618
2619 * windows-nat.c (handle_output_debug_string): Avoid typecast
2620 from integer of different size warning.
2621
2622 2013-03-26 Joel Brobecker <brobecker@adacore.com>
2623
2624 * windows-nat.c (handle_output_debug_string): Add empty line
2625 after local block variable definition.
2626
2627 2013-03-26 Pedro Alves <palves@redhat.com>
2628
2629 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
2630 (net_open): Make 'polls' local unsigned.
2631
2632 2013-03-26 Pedro Alves <palves@redhat.com>
2633
2634 * remote.c (_initialize_remote): Make "set remoteaddresssize"
2635 a zuinteger command instead of uinteger.
2636
2637 2013-03-26 Pedro Alves <palves@redhat.com>
2638
2639 * record-full.c (record_full_insn_num): Make it unsigned.
2640 (record_full_check_insn_num, record_full_message)
2641 (record_full_registers_change, record_full_xfer_partial): Remove
2642 record_full_insn_max_num check (it's always != 0).
2643 (record_full_info, record_full_restore): Use %u as format string.
2644 (): Use %u as format string.
2645 (set_record_full_insn_max_num): Remove record_full_insn_max_num
2646 check (it's always != 0).
2647
2648 2013-03-26 Pedro Alves <palves@redhat.com>
2649
2650 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
2651 and "set dcache size" commands zuinteger instead of uinteger.
2652
2653 2013-03-26 Pedro Alves <palves@redhat.com>
2654
2655 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
2656 command zuinteger instead of uinteger.
2657
2658 2013-03-26 Pedro Alves <palves@redhat.com>
2659
2660 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
2661 zuinteger instead of uinteger.
2662
2663 2013-03-26 Pedro Alves <palves@redhat.com>
2664
2665 * record.c (record_insn_history_size_setshow_var)
2666 (record_call_history_size_setshow_var): New globals.
2667 (command_size_to_target_size): New function.
2668 (cmd_record_insn_history, cmd_record_call_history): Use
2669 command_size_to_target_size instead of cast.
2670 (validate_history_size, set_record_insn_history_size)
2671 (set_record_call_history_size): New functions.
2672 (_initialize_record): Install set_record_insn_history_size and
2673 set_record_call_history_size as "set" hooks of "set record
2674 instruction-history-size" and "set record
2675 function-call-history-size".
2676
2677 2013-03-26 Pedro Alves <palves@redhat.com>
2678
2679 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
2680 use with history_max_entries use. Remove FIXME note.
2681
2682 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
2683
2684 * record-btrace.c (record_btrace_close): Call
2685 record_btrace_auto_disable.
2686
2687 2013-03-25 Joel Brobecker <brobecker@adacore.com>
2688
2689 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
2690
2691 2013-03-25 Doug Evans <dje@google.com>
2692
2693 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
2694
2695 2013-03-25 Tom Tromey <tromey@redhat.com>
2696
2697 PR symtab/11462:
2698 * c-exp.y (exp): Add new productions for destructors after '.' and
2699 '->'.
2700 (write_destructor_name): New function.
2701
2702 2013-03-25 Tom Tromey <tromey@redhat.com>
2703
2704 PR c++/9197:
2705 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
2706 value_struct_elt, not lookup_struct_elt_type.
2707 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
2708 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
2709 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
2710
2711 2013-03-25 Yao Qi <yao@codesourcery.com>
2712
2713 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
2714 instead of '_mkdir'.
2715
2716 2013-03-23 Eli Zaretskii <eliz@gnu.org>
2717
2718 * windows-nat.c (windows_get_absolute_argv0): New function.
2719 * windows-nat.h: Add its prototype.
2720
2721 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
2722 Use IS_DIR_SEPARATOR instead of looking for a character inside
2723 SLASH_STRING. Include filenames.h.
2724 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
2725 relocate_gdb_directory works when passed gdb_program_name.
2726 Include windows-nat.h.
2727
2728 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2729
2730 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
2731 * remote.c (trace_error): Remove the special handling of '2'.
2732 (readchar) <SERIAL_EOF>
2733 (readchar) <SERIAL_ERROR>
2734 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
2735 (remote_get_trace_status): Call throw_exception if EX is
2736 TARGET_CLOSE_ERROR.
2737 * utils.c (perror_with_name): Rename to ...
2738 (throw_perror_with_name): ... here. New parameter errcode, describe it
2739 in the function comment.
2740 (perror_with_name): New function wrapper.
2741 * utils.h (enum errors): New stub declaration.
2742 (throw_perror_with_name): New declaration.
2743
2744 2013-03-22 Pedro Alves <palves@redhat.com>
2745 Yao Qi <yao@codesourcery.com>
2746 Mark Kettenis <kettenis@gnu.org>
2747
2748 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
2749 Don't let the user set the value to UINT_MAX directly.
2750 <var_integer>: Don't let the user set the value to INT_MAX
2751 directly.
2752
2753 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2754
2755 * remote.c (remote_unpush_target): New function.
2756 (remote_open_1): Remove two pop_target calls, update one comment, add
2757 comment to target_preopen call. Replace pop_target call by
2758 remote_unpush_target call.
2759 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
2760 pop_target calls by remote_unpush_target calls.
2761
2762 2013-03-22 Pedro Alves <palves@redhat.com>
2763
2764 * linux-nat.c (linux_child_follow_fork): Don't call
2765 linux_enable_event_reporting.
2766 (linux_handle_extended_wait): Don't call
2767 linux_enable_event_reporting.
2768
2769 2013-03-22 Pedro Alves <palves@redhat.com>
2770
2771 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
2772 use it to rewrite the trampoline buffers with type gdb_byte[], and
2773 undefine the macro. Remove char* cast.
2774
2775 2013-03-21 Doug Evans <dje@google.com>
2776
2777 New commands "mt set per-command {space,time,symtab} {on,off}".
2778 * NEWS: Add entry.
2779 * event-top.c: #include "maint.h".
2780 * main.c: #include "maint.h".
2781 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
2782 timeval-utils.h, maint.h, cli/cli-setshow.h.
2783 (per_command_time, per_command_space): New static globals.
2784 (per_command_symtab): New static global.
2785 (per_command_setlist, per_command_showlist): New static globals.
2786 (struct cmd_stats): Move here from utils.c.
2787 (set_per_command_time): Renamed from set_display_time in utils.c
2788 and moved here. All callers updated.
2789 (set_per_command_space): Renamed from set_display_space in utils.c
2790 and moved here. All callers updated.
2791 (count_symtabs_and_blocks): New function.
2792 (report_command_stats): Moved here from utils.c. Add support for
2793 printing symtab stats. Only print data if enabled before command
2794 executed.
2795 (make_command_stats_cleanup): Ditto.
2796 (sert_per_command_cmd, show_per_command_cmd): New functions.
2797 (_initialize_maint_cmds): Add new commands
2798 mt set per-command {space,time,symtab} {on,off}.
2799 * maint.h: New file.
2800 * top.c: #include "maint.h".
2801 * utils.c (reset_prompt_for_continue_wait_time): New function.
2802 (get_prompt_for_continue_wait_time): New function.
2803 * utils.h (reset_prompt_for_continue_wait_time): Declare
2804 (get_prompt_for_continue_wait_time): Declare.
2805 (make_command_stats_cleanup): Moved to maint.h.
2806 (set_display_time, set_display_space): Moved to maint.h and renamed
2807 to set_per_command_time, set_per_command_space.
2808 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
2809 parse_binary_operation and made non-static. Don't call error,
2810 just return an error marker. All callers updated.
2811 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
2812
2813 2013-03-21 Tom Tromey <tromey@redhat.com>
2814
2815 * symfile.c (alloc_section_addr_info): Update header. Don't set
2816 'num_sections' field.
2817 (build_section_addr_info_from_section_table): Set 'num_sections'.
2818 (build_section_addr_info_from_bfd): Likewise.
2819 (build_section_addr_info_from_objfile): Remove dead loop
2820 condition.
2821 (free_section_addr_info): Unconditionally call xfree.
2822 (relative_addr_info_to_section_offsets, addrs_section_sort)
2823 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
2824 condition.
2825 (syms_from_objfile_1): Remove dead 'if' condition. Check
2826 'num_sections'.
2827 (add_symbol_file_command): Set 'num_sections'.
2828 * symfile-mem.c (symbol_file_add_from_memory): Set
2829 'num_sections'.
2830 * somread.c (som_symfile_offsets): Remove dead loop condition.
2831 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
2832 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
2833
2834 2013-03-21 Tom Tromey <tromey@redhat.com>
2835
2836 * tracepoint.h (decode_agent_options): Add 'trace_string'
2837 argument.
2838 * tracepoint.c (decode_agent_options): Add 'trace_string'
2839 argument.
2840 (validate_actionline): Update.
2841 (collect_symbol): Add 'trace_string' argument.
2842 (struct add_local_symbols_data) <trace_string>: New field.
2843 (do_collect_symbol): Update.
2844 (add_local_symbols): Add 'trace_string' argument.
2845 (encode_actions_1): Update.
2846 (trace_dump_actions): Update.
2847 * dwarf2loc.c (access_memory): Update.
2848 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
2849 * ax-general.c (new_agent_expr): Update.
2850 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
2851 (gen_trace_for_return_address): Add argument.
2852 (trace_kludge, trace_string_kludge): Remove.
2853 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
2854 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
2855 (gen_trace_for_var): Add 'trace_string' argument.
2856 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
2857 (gen_printf, agent_eval_command_one): Update.
2858
2859 2013-03-21 Tom Tromey <tromey@redhat.com>
2860
2861 PR exp/15109:
2862 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
2863 Handle FILENAME token.
2864
2865 2013-03-21 Tom Tromey <tromey@redhat.com>
2866
2867 * c-exp.y (YYPRINT): Define.
2868 (c_print_token): New function.
2869
2870 2013-03-21 Tom Tromey <tromey@redhat.com>
2871
2872 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
2873
2874 2013-03-21 Yao Qi <yao@codesourcery.com>
2875
2876 * ctf.c: Include "gdb_stat.h".
2877 [USE_WIN32API]: New macro 'mkdir'.
2878 (ctf_start): Use permission bits macros if they are defined.
2879
2880 2013-03-20 Keith Seitz <keiths@redhat.com>
2881
2882 * breakpoint.h (struct breakpoint): Add comment to
2883 extra_string indicating that this member is mallod'd.
2884 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
2885
2886 2013-03-20 Pedro Alves <palves@redhat.com>
2887
2888 PR gdb/15289
2889
2890 * cli/cli-setshow.c (do_set_command)
2891 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
2892 the result of parsing the command argument. Throw error if the
2893 value is greater than UINT_MAX. Print the invalid value with
2894 plongest.
2895 <var_integer, var_zinteger>: Use LONGEST for variable holding the
2896 result of parsing the command argument. Throw error if the value
2897 is greater than INT_MAX, not greater or equal. Also throw error
2898 if the value is less than INT_MIN. Print the invalid value with
2899 plongest.
2900 <var_zuinteger_unlimited>: Throw error if the value is greater
2901 than INT_MAX, not greater or equal.
2902 (do_show_command) <var_integer, var_zinteger,
2903 var_zuinteger_unlimited>: Use %d for printing int, not %u.
2904
2905 2013-03-20 Tom Tromey <tromey@redhat.com>
2906
2907 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
2908 if possible.
2909 * dwarf2read.c (read_func_scope): Remove old FIXME.
2910 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
2911 not LOC_COMPUTED.
2912 * findvar.c (symbol_read_needs_frame, default_read_var_value):
2913 Unconditionally call via computed ops, if possible.
2914 * printcmd.c (address_info): Unconditionally call via computed ops,
2915 if possible.
2916 * stack.c (read_frame_arg): Unconditionally call via computed ops,
2917 if possible.
2918 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
2919 * tracepoint.c (scope_info): Unconditionally call via computed ops,
2920 if possible.
2921
2922 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2923 Tom Tromey <tromey@redhat.com>
2924
2925 PR symtab/8421:
2926 * coffread.c (coff_register_index): New global.
2927 (process_coff_symbol, coff_read_enum_type): Set
2928 SYMBOL_ACLASS_INDEX.
2929 (_initialize_coffread): Initialize new global.
2930 * dwarf2loc.c (locexpr_find_frame_base_location)
2931 (dwarf2_block_frame_base_locexpr_funcs)
2932 (loclist_find_frame_base_location)
2933 (dwarf2_block_frame_base_loclist_funcs): New.
2934 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
2935 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
2936 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
2937 (dwarf2_block_frame_base_loclist_funcs): New.
2938 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
2939 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
2940 globals.
2941 (read_func_scope): Update.
2942 (fixup_go_packaging, mark_common_block_symbol_computed)
2943 (var_decode_location, new_symbol_full, dwarf2_const_value):
2944 Set SYMBOL_ACLASS_INDEX.
2945 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
2946 (_initialize_dwarf2_read): Initialize new globals.
2947 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
2948 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
2949 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
2950 globals.
2951 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
2952 (_initialize_mdebugread): Initialize new globals.
2953 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
2954 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
2955 (stab_register_index, stab_regparm_index): New globals.
2956 (define_symbol, read_enum_type, common_block_end): Set
2957 SYMBOL_ACLASS_INDEX.
2958 (_initialize_stabsread): Initialize new globals.
2959 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
2960 globals.
2961 (MAX_SYMBOL_IMPLS): New define.
2962 (register_symbol_computed_impl, register_symbol_block_impl)
2963 (register_symbol_register_impl)
2964 (initialize_ordinary_address_classes): New functions.
2965 (_initialize_symtab): Call initialize_ordinary_address_classes.
2966 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
2967 (struct symbol_impl): New.
2968 (SYMBOL_ACLASS_BITS): New define.
2969 (struct symbol) <aclass, ops>: Remove fields.
2970 <aclass_index>: New field.
2971 (symbol_impls): Declare.
2972 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
2973 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
2974 (register_symbol_computed_impl, register_symbol_block_impl)
2975 (register_symbol_register_impl): Declare.
2976 (struct symbol_computed_ops): Add location_has_loclist.
2977 (struct symbol_block_ops): New.
2978 (SYMBOL_BLOCK_OPS): New.
2979 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
2980
2981 2013-03-20 Tom Tromey <tromey@redhat.com>
2982
2983 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
2984 (print_partial_symbols, recursively_search_psymtabs): Use
2985 PSYMBOL_CLASS.
2986
2987 2013-03-20 Pierre Muller <muller@sourceware.org>
2988
2989 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
2990 addtion, subtraction, multiplication and division binary operator.
2991
2992 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2993
2994 Code cleanup.
2995 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
2996 * bsd-kvm.c (bsd_kvm_close): Likewise.
2997 * bsd-uthread.c (bsd_uthread_close): Likewise.
2998 * corelow.c (core_close): Likewise.
2999 (core_close_cleanup): Remove parameter quitting from a caller.
3000 * event-top.c (async_disconnect): Likewise.
3001 * exec.c (exec_close_1): Remove parameter quitting.
3002 * go32-nat.c (go32_close): Likewise.
3003 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
3004 parameter quitting from a caller.
3005 * mips-linux-nat.c (super_close): Remove parameter quitting from the
3006 variable.
3007 (mips_linux_close): Remove parameter quitting. Remove parameter
3008 quitting from a caller.
3009 * monitor.c (monitor_close): Remove parameter quitting.
3010 * monitor.h (monitor_close): Likewise.
3011 * record-btrace.c (record_btrace_close): Likewise.
3012 * record-full.c (record_full_close): Likewise.
3013 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
3014 it also from fprintf_unfiltered.
3015 * remote-mips.c (mips_close): Remove parameter quitting.
3016 (mips_detach): Remove parameter quitting from a caller.
3017 * remote-sim.c (gdbsim_close): Remove parameter quitting.
3018 (gdbsim_close): Remove duplicate function comment. Remove parameter
3019 quitting and remove it also from printf_filtered.
3020 * remote.c (remote_close): Remove parameter quitting.
3021 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
3022 * target.c (update_current_target): Remove parameter int from to_close
3023 de_fault.
3024 (push_target, unpush_target, pop_target): Remove parameter quitting from
3025 a caller.
3026 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
3027 Remove parameter quitting from a caller.
3028 (target_preopen): Remove parameter quitting from a caller.
3029 (target_close): Remove parameter quitting. Remove parameter quitting
3030 from a caller two times. Remove parameter quitting also from
3031 fprintf_unfiltered.
3032 * target.h (struct target_ops): Remove parameter quitting and as int
3033 from fields to_xclose and to_close.
3034 (extern struct target_ops current_target):
3035 (target_close, pop_all_targets): Remove parameter quitting. Update the
3036 comment.
3037 (pop_all_targets_above): Remove parameter quitting.
3038 * top.c (quit_target): Remove parameter quitting from a caller.
3039 * tracepoint.c (tfile_close): Remove parameter quitting.
3040 * windows-nat.c (windows_close): Remove parameter quitting.
3041
3042 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
3043
3044 * windows-nat.c (handle_output_debug_string): Replace call
3045 to string_to_core_addr with call to strtoull.
3046
3047 2013-03-20 Yao Qi <yao@codesourcery.com>
3048
3049 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
3050 and write it to CTF metadata.
3051
3052 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
3053
3054 * windows-nat.c (handle_output_debug_string): Change type of n to
3055 SIZE_T to avoid crash on 64 bit systems.
3056
3057 2013-03-17 Eli Zaretskii <eliz@gnu.org>
3058
3059 * python/python-internal.h (HAVE_SNPRINTF)
3060 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
3061 about redefinition of snprintf by pyerrors.h.
3062
3063 2013-03-15 Steve Ellcey <sellcey@mips.com>
3064
3065 * remote-sim.c (sim_command_completer): Make char arguments const.
3066
3067 2013-03-15 Tom Tromey <tromey@redhat.com>
3068
3069 PR c++/15116:
3070 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
3071
3072 2013-03-14 Tom Tromey <tromey@redhat.com>
3073
3074 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
3075 New fields.
3076 (get_file_crc): Move from symfile.c.
3077 (gdb_bfd_crc): New function.
3078 * gdb_bfd.h (gdb_bfd_crc): Declare.
3079 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
3080 * symfile.c (get_file_crc): Move to gdb_bfd.c.
3081 (separate_debug_file_exists): Use gdb_bfd_crc.
3082
3083 2013-03-14 Tom Tromey <tromey@redhat.com>
3084
3085 * symfile.c (get_debug_link_info): Remove.
3086 (find_separate_debug_file_by_debuglink): Use
3087 bfd_get_debug_link_info.
3088
3089 2013-03-14 Tom Tromey <tromey@redhat.com>
3090
3091 * symtab.c (error_in_psymtab_expansion): New function.
3092 (lookup_symbol_aux_quick)
3093 (basic_lookup_transparent_type_quick): Remove "last resort"
3094 code. Use error_in_psymtab_expansion.
3095
3096 2013-03-14 Doug Evans <dje@google.com>
3097 Jan Kratochvil <jan.kratochvil@redhat.com>
3098
3099 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
3100 any successful compare_filenames_for_search or FILENAME_CMP.
3101 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
3102 * symtab.c (iterate_over_some_symtabs): Likewise.
3103
3104 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3105
3106 * source.c (print_source_lines_base): Make a local copy of
3107 symtab_to_fullname.
3108
3109 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
3110 Jan Kratochvil <jan.kratochvil@redhat.com>
3111
3112 * source.c (print_source_lines_base): Suppress "file" for TUI.
3113
3114 2013-03-14 Keith Seitz <keiths@redhat.com>
3115 Alan Matsuoka <alanm@redhat.com>
3116
3117 PR c++/15203
3118 PR c++/15210
3119 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
3120 TYPE_CODE_METHOD.
3121 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
3122 symbols.
3123
3124 2013-03-14 Yao Qi <yao@codesourcery.com>
3125
3126 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
3127 status to tfile if trace is stopped by command 'tstop'.
3128
3129 2013-03-14 Yao Qi <yao@codesourcery.com>
3130
3131 * tracepoint.c (tfile_write_status): Write trace notes and user
3132 name into tfile if they are not NULL.
3133
3134 2013-03-14 Hui Zhu <hui@codesourcery.com>
3135 Yao Qi <yao@codesourcery.com>
3136
3137 * Makefile.in (REMOTE_OBS): Add ctf.o.
3138 (SFILES): Add ctf.c.
3139 (HFILES_NO_SRCDIR): Add ctf.h.
3140 * ctf.c, ctf.h: New files.
3141 * tracepoint.c: Include 'ctf.h'.
3142 (collect_pseudocommand): Remove static.
3143 (trace_save_command): Parse option "-ctf".
3144 Produce different trace file writers per option.
3145 Adjust output message.
3146 (trace_save_tfile, trace_save_ctf): New.
3147 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
3148 * mi/mi-main.c: Include 'ctf.h'.
3149 (mi_cmd_trace_save): Handle option '-ctf'. Call either
3150 trace_save_tfile or trace_save_ctf.
3151 * NEWS: Mention these changes.
3152
3153 2013-03-14 Yao Qi <yao@codesourcery.com>
3154
3155 * tracepoint.c (trace_file_writer_xfree): New.
3156 (struct tfile_writer_data): New.
3157 (tfile_dtor, tfile_can_target_save, tfile_start): New.
3158 (tfile_write_header, tfile_write_regblock_type): New.
3159 (tfile_write_status, tfile_write_uploaded_tsv): New.
3160 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
3161 (tfile_write_raw_data, (tfile_end): New.
3162 (tfile_write_ops): New global variable.
3163 (TRACE_WRITE_R_BLOCK): New macro.
3164 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
3165 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
3166 (TRACE_WRITE_V_BLOCK): New macro.
3167 (trace_save): Add extra one parameter WRITER. Make it static.
3168 Use WRITER to writer trace.
3169 (tfile_trace_file_writer_new): New.
3170 (trace_save_command): Caller update.
3171 (trace_save_tfile): Write trace data in TFILE format.
3172 * tracepoint.h (struct trace_frame_write_ops): New.
3173 (struct trace_file_write_ops): New.
3174 (struct trace_file_writer): New.
3175 (trace_save): Remove its declaration.
3176 (trace_save_tfile): Declare it.
3177 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
3178 instead of trace_save.
3179
3180 2013-03-13 Pedro Alves <palves@redhat.com>
3181
3182 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
3183
3184 2013-03-13 Pedro Alves <palves@redhat.com>
3185
3186 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
3187 commented out code.
3188 * demangle.c (current_demangling_style_string): Make it const.
3189 (set_demangling_command): Assert the demangling style is known.
3190 Remove all handling of unknown styles. Set
3191 'current_demangling_style_string' to an element of the
3192 demangling_style_names array.
3193 (set_demangling_style): Delete.
3194 (_initialize_demangler): Set current_demangling_style_string to the
3195 element of the demangling_style_names array that corresponds to
3196 the default demangling style. Remove FIXME note. Don't call
3197 set_demangling_style.
3198 * gdb-demangle.h (set_demangling_style): Remove declaration.
3199
3200 2013-03-13 Pedro Alves <palves@redhat.com>
3201
3202 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
3203 fields const.
3204 (ada_make_symbol_completion_list): Make "text0" parameter const.
3205 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
3206 * breakpoint.c (condition_completer): Make "text" and "word"
3207 parameters const. Adjust.
3208 (check_tracepoint_command): Adjust to validate_actionline
3209 prototype change.
3210 (catch_syscall_completer): Make "text" and "word" parameters
3211 const.
3212 * cli/cli-cmds.c (show_user): Make "comname" local const.
3213 (valid_command_p): Make "command" parameter const.
3214 (alias_command): Make "alias_prefix" and "command_prefix" locals
3215 const.
3216 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
3217 (add_alias_cmd): Make "name" and "oldname" parameters const.
3218 Adjust. No longer make copy of OLDNAME.
3219 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
3220 (add_setshow_cmd_full, add_setshow_enum_cmd)
3221 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3222 (add_setshow_filename_cmd, add_setshow_string_cmd)
3223 (add_setshow_string_noescape_cmd)
3224 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
3225 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
3226 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
3227 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
3228 Make "name" parameter const.
3229 (help_cmd): Rename "command" parameter to "arg". New const local
3230 "command".
3231 (find_cmd): Make "command" parameter const.
3232 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
3233 deprecated_cmd_warning prototype change.
3234 (undef_cmd_error): Make "cmdtype" parameter const.
3235 (lookup_cmd): Make "line" parameter const.
3236 (deprecated_cmd_warning): Change type of "text" parameter to
3237 pointer to const char, from pointer to pointer to char. Adjust.
3238 (lookup_cmd_composition): Make "text" parameter const.
3239 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
3240 parameters const.
3241 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
3242 const.
3243 * cli/cli-script.c (validate_comname): Make "tem" local const.
3244 (define_command): New const local "tem_c". Use it in calls to
3245 lookup_cmd.
3246 (document_command): Make "tem" and "comfull" locals const.
3247 (show_user_1): Make "prefix" and "name" parameters const.
3248 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
3249 const.
3250 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
3251 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
3252 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
3253 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
3254 (complete_on_enum, add_setshow_enum_cmd)
3255 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3256 (add_setshow_filename_cmd, add_setshow_string_cmd)
3257 (add_setshow_string_noescape_cmd)
3258 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
3259 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
3260 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
3261 Change prototypes, constifying strings.
3262 * completer.c (noop_completer, filename_completer): Make "text"
3263 and "prefix" parameters const.
3264 (location_completer, expression_completer)
3265 (complete_line_internal): Make "text" and "prefix" parameters
3266 const and adjust.
3267 (command_completer, signal_completer): Make "text" and "prefix"
3268 parameters const.
3269 * completer.h (noop_completer, filename_completer)
3270 (expression_completer, location_completer, command_completer)
3271 (signal_completer): Change prototypes.
3272 * corefile.c (complete_set_gnutarget): Make "text" and "word"
3273 parameters const.
3274 * cp-abi.c (cp_abi_completer): Likewise.
3275 * expression.h (parse_expression_for_completion): Change
3276 prototype.
3277 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
3278 parameters const.
3279 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
3280 * infrun.c (handle_completer): Make "text" and "word" parameters
3281 const.
3282 * interps.c (interpreter_completer): Make "text" and "word"
3283 parameters const.
3284 * language.h (struct language_defn)
3285 <la_make_symbol_completion_list>: Make "text" and "word"
3286 parameters const.
3287 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
3288 (parse_exp_in_context): Rename to ...
3289 (parse_exp_in_context_1): ... this.
3290 (parse_exp_in_context): Reimplement, with const hack from
3291 parse_exp_1.
3292 (parse_expression_for_completion): Make "string" parameter const.
3293 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
3294 to pointer to const char. Adjust.
3295 (print_command_1): Make "exp" parameter const.
3296 (output_command): Rename to ...
3297 (output_command_const): ... this. Make "exp" parameter const.
3298 (output_command): Reimplement.
3299 (x_command): Adjust.
3300 (display_command): Rename "exp" parameter to "arg". New "exp"
3301 local, const version of "arg".
3302 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
3303 "cmd_name" local const.
3304 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
3305 call.
3306 (cmdpy_completer): Make "text" and "word" parameters const.
3307 (gdbpy_parse_command_name): Make "prefix_text2" local const.
3308 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
3309 const.
3310 * remote.c (_initialize_remote): Make "cmd_name" local const.
3311 * symtab.c (language_search_unquoted_string): Make "text" and "p"
3312 parameters const. Adjust.
3313 (completion_list_add_fields): Make "sym_text", "text" and "word"
3314 parameters const.
3315 (struct add_name_data) <sym_text, text, word>: Make fields const.
3316 (default_make_symbol_completion_list_break_on): Make "text" and
3317 "word" parameters const. Adjust locals.
3318 (default_make_symbol_completion_list)
3319 (make_symbol_completion_list, make_symbol_completion_type)
3320 (make_symbol_completion_list_fn): Make "text" and "word"
3321 parameters const.
3322 (make_file_symbol_completion_list): Make "text", "word" and
3323 "srcfile" parameters const. Adjust locals.
3324 (add_filename_to_list): Make "text" and "word" parameters const.
3325 (struct add_partial_filename_data) <text, word>: Make fields
3326 const.
3327 (make_source_files_completion_list): Make "text" and "word"
3328 parameters const.
3329 * symtab.h (default_make_symbol_completion_list_break_on)
3330 (default_make_symbol_completion_list, make_symbol_completion_list)
3331 (make_symbol_completion_type enum type_code)
3332 (make_symbol_completion_list_fn make_file_symbol_completion_list)
3333 (make_source_files_completion_list): Change prototype.
3334 * top.c (execute_command): Adjust to pass pointer to pointer to
3335 const char to lookup_cmd, and to deprecated_cmd_warning prototype
3336 change.
3337 (set_verbose): Make "cmdname" local const.
3338 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
3339 and adjust.
3340 (validate_actionline): Make "line" parameter a pointer to const
3341 char, and adjust.
3342 (encode_actions_1): Make "action_exp" local const, and adjust.
3343 (encode_actions): Adjust.
3344 (replace_comma): Delete.
3345 (trace_dump_actions): Make "action_exp" and "next_comma" locals
3346 const, and adjust. Don't frob the action string while splitting
3347 it at commas. Instead, make a copy of each split substring in
3348 turn.
3349 (trace_dump_command): Adjust to validate_actionline prototype
3350 change.
3351 * tracepoint.h (decode_agent_options, decode_agent_options)
3352 (encode_actions, validate_actionline): Change prototypes.
3353 * valprint.h (output_command): Delete declaration.
3354 (output_command_const): Declare.
3355 * value.c (function_destroyer): Cast const away in xfree call.
3356
3357 2013-03-13 Pedro Alves <palves@redhat.com>
3358
3359 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
3360 rather than casting 'const char * const *' to 'const char **'.
3361 * ada-lex.l (processInt): Make "trailer" local const. Remove
3362 'const char **' cast.
3363 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
3364 locals, and use those as strtol output pointer, instead than doing
3365 invalid casts to from 'const char **' to 'char **'.
3366 (_initialize_demangle): Remove cast.
3367 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
3368 locals, and use those as strtol output pointer, instead than doing
3369 invalid casts to from 'const char **' to 'char **'.
3370 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
3371 casts.
3372 * stap-probe.c (stap_parse_register_operand)
3373 (stap_parse_single_operand): Likewise.
3374
3375 2013-03-13 Yao Qi <yao@codesourcery.com>
3376
3377 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
3378 the last matched 'V' blcok in trace frame.
3379
3380 2013-03-12 Joel Brobecker <brobecker@adacore.com>
3381
3382 * NEWS: Create a new section for the next release branch.
3383 Rename the section of the current branch, now that it has
3384 been cut.
3385
3386 2013-03-12 Joel Brobecker <brobecker@adacore.com>
3387
3388 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
3389 * version.in: Bump version to 7.6.50.20130312-cvs.
3390
3391 2013-03-12 Keith Seitz <keiths@redhat.com>
3392
3393 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
3394 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
3395 Remove temporary copy of input string.
3396 (mi_execute_command_wrapper): Make "cmd" const.
3397 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
3398 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
3399 Use const strings.
3400 (mi_parse): Make "cmd" const.
3401 Use const strings.
3402 * mi/mi-parse.h (mi_parse): Make "cmd" const.
3403
3404 2013-03-12 Keith Seitz <keiths@redhat.com>
3405
3406 * ada-lang.c (ada_read_renaming_var_value): Pass const
3407 pointer to expression string to parse_exp_1.
3408 (create_excep_cond_exprs): Likewise.
3409 * ax-gdb.c (agent_eval_command_one): Likewise.
3410 (maint_agent_printf_command): Likewise.
3411 Constify much of the string handling/parsing.
3412 * breakpoint.c (set_breakpoint_condition): Pass const
3413 pointer to expression string to parse_exp_1.
3414 (update_watchpoint): Likewise.
3415 (parse_cmd_to_aexpr): Constify string handling.
3416 Pass const pointer to parse_exp_1.
3417 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
3418 (find_condition_and_thread): Likewise.
3419 Make TOK const.
3420 (watch_command_1): Make "arg" const.
3421 Constify string handling.
3422 Copy the expression string instead of changing the input
3423 string.
3424 (update_breakpoint_location): Pass const pointer to
3425 parse_exp_1.
3426 * eval.c (parse_and_eval_address): Make "exp" const.
3427 (parse_to_comma_and_eval): Make "expp" const.
3428 (parse_and_eval): Make "exp" const.
3429 * expression.h (parse_expression): Make argument const.
3430 (parse_exp_1): Make first argument const.
3431 * findcmd.c (parse_find_args): Treat "args" as const.
3432 * linespec.c (parse_linespec): Pass const pointer to
3433 linespec_expression_to_pc.
3434 (linespec_expression_to_pc): Make "exp_ptr" const.
3435 * parse.c (parse_exp_1): Make "stringptr" const.
3436 Make a copy of the expression to pass to parse_exp_in_context until
3437 this whole interface can be constified.
3438 (parse_expression): Make "string" const.
3439 * printcmd.c (ui_printf): Treat "arg" as const.
3440 Handle const strings.
3441 * tracepoint.c (validate_actionline): Pass const pointer to
3442 all calls to parse_exp_1.
3443 (encode_actions_1): Likewise.
3444 * value.h (parse_to_comma_and_eval): Make argument const.
3445 (parse_and_eval_address): Likewise.
3446 (parse_and_eval): Likewise.
3447 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
3448 (varobj_set_value): Likewise.
3449 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
3450 constify string handling.
3451 Pass const pointers to parse_and_eval_address and
3452 parse_to_comman_and_eval.
3453 * cli/cli-utils.c (skip_to_space): Rename to ...
3454 (skip_to_space_const): ... this. Handle const strings.
3455 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
3456 skip_to_space_const.
3457 (skip_to_space_const): Declare.
3458 * common/format.c (parse_format_string): Make "arg" const.
3459 Handle const strings.
3460 * common/format.h (parse_format_string): Make "arg" const.
3461 * gdbserver/ax.c (ax_printf): Make "format" const.
3462 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
3463 of the expression string.
3464
3465 2013-03-12 Hui Zhu <hui@codesourcery.com>
3466
3467 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
3468
3469 2013-03-12 Yao Qi <yao@codesourcery.com>
3470 Hui Zhu <hui@codesourcery.com>
3471
3472 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
3473 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
3474 DW_OP_deref_size.
3475
3476 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
3477
3478 * ada-lex.l (rules): Only recognize 'thread' as a
3479 delimiter when followed by numerals, as for c-exp.y.
3480 Use new rewind_to_char function to rewind the input for
3481 expression-delimiting tokens.
3482 (rewind_to_char): New function.
3483
3484 2013-03-11 Pedro Alves <palves@redhat.com>
3485 Jan Kratochvil <jan.kratochvil@redhat.com>
3486
3487 * configure: Regenerate.
3488 * configure.ac (check dynamic export flag): Link python test with
3489 $PYTHON_LIBS.
3490
3491 2013-03-11 Doug Evans <dje@google.com>
3492 Keith Seitz <keiths@redhat.com>
3493
3494 * linespec.c (find_linespec_symbols): Call find_function_symbols
3495 first, and then call lookup_prefix_sym/find_method.
3496
3497 2013-03-11 Pedro Alves <palves@redhat.com>
3498
3499 * charset.c (convert_between_encodings): Don't cast between
3500 different pointer to pointer types. Instead, make the 'inp' local
3501 be of the type iconv expects.
3502 (wchar_iterate): Don't cast between different pointer to pointer
3503 types. Instead, use new pointer local of the type iconv expects.
3504 * target.c (target_read_stralloc, target_fileio_read_stralloc):
3505 Add new local of type char pointer, and use it to get a
3506 char/string view of the byte buffer, instead of casting between
3507 pointer to pointer types.
3508
3509 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
3510
3511 * remote.c (remote_set_trace_buffer_size): Move != operator
3512 to the start of next line to fix an ARI warning.
3513
3514 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3515
3516 * NEWS: Add record changes.
3517
3518 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3519
3520 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
3521 the instruction history disassembly.
3522 * disasm.c (dump_insns): Omit the pc prefix, if requested.
3523 * disasm.h (DISASSEMBLY_OMIT_PC): New.
3524
3525 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3526
3527 * Makefile.in (SFILES): Add record-btrace.c
3528 (COMMON_OBS): Add record-btrace.o
3529 * record-btrace.c: New.
3530 * objfiles.c: Include btrace.h.
3531 (free_objfile): call btrace_free_objfile.
3532
3533 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3534
3535 * target.c (target_call_history, target_call_history_from,
3536 target_call_history_range): New.
3537 * target.h (target_ops) <to_call_history, to_call_history_from,
3538 to_call_history_range>: New fields.
3539 (target_call_history, target_call_history_from,
3540 target_call_history_range): New declaration.
3541 * record.c (get_call_history_modifiers, cmd_record_call_history,
3542 record_call_history_size): New.
3543 (_initialize_record): Add the "record function-call-history" command.
3544 Add "set/show record function-call-history-size" commands.
3545 * record.h (record_print_flag): New.
3546
3547 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3548
3549 * target.h (target_ops) <to_insn_history, to_insn_history_from,
3550 to_insn_history_range>: New fields.
3551 (target_insn_history): New.
3552 (target_insn_history_from): New.
3553 (target_insn_history_range): New.
3554 * target.c (target_insn_history): New.
3555 (target_insn_history_from): New.
3556 (target_insn_history_range): New.
3557 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
3558 (record_insn_history_size): New.
3559 (get_insn_number): New.
3560 (get_context_size): New.
3561 (no_chunk): New.
3562 (get_insn_history_modifiers): New.
3563 (cmd_record_insn_history): New.
3564 (_initialize_record): Add "set/show record instruction-history-size"
3565 command. Add "record instruction-history" command.
3566
3567 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3568
3569 * record.h (record_disconnect): New.
3570 (record_detach): New.
3571 (record_mourn_inferior): New.
3572 (record_kill): New.
3573 * record-full.c (record_disconnect, record_detach,
3574 record_mourn_inferior, record_kill): Move to...
3575 * record.c: ...here.
3576 (DEBUG): New.
3577 (record_stop): New.
3578 (record_unpush): New.
3579 (cmd_record_stop): Call record_stop. Replace unpush_target
3580 call with record_unpush call.
3581 (record_disconnect, record_detach): Assert that the target
3582 is of record stratum. Call record_unpush, record_stop, and
3583 DEBUG.
3584 (record_mourn_inferior, record_kill): Assert that the target
3585 is of record stratum. Call record_unpush and DEBUG.
3586
3587 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3588
3589 * record-full.h, record-full.c (record_memory_query): Rename
3590 to ...
3591 (record_full_memory_query): ...this. Update all users.
3592 (record_arch_list_add_reg): Rename to ...
3593 (record_full_arch_list_add_reg): ...this. Update all users.
3594 (record_arch_list_add_mem): Rename to ...
3595 (record_full_arch_list_add_mem): ...this. Update all users.
3596 (record_arch_list_add_end): Rename to ...
3597 (record_full_arch_list_add_end): ...this. Update all users.
3598 (record_gdb_operation_disable_set): Rename to ...
3599 (record_full_gdb_operation_disable_set): ...this.
3600 Update all users.
3601
3602 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3603
3604 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
3605 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
3606 (RECORD_IS_REPLAY): Renamed to ...
3607 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
3608 (RECORD_FILE_MAGIC): Renamed to ...
3609 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
3610 (record_mem_entry): Renamed to ...
3611 (record_full_mem_entry): ... this. Updated all users.
3612 (record_reg_entry): Renamed to ...
3613 (record_full_reg_entry): ... this. Updated all users.
3614 (record_end_entry): Renamed to ...
3615 (record_full_end_entry): ... this. Updated all users.
3616 (record_type) <record_end, record_reg, record_mem>: Renamed
3617 to ...
3618 (record_full_type) <record_full_end, record_full_reg,
3619 record_full_mem>: ... this. Updated all users.
3620 (record_entry): Renamed to ...
3621 (record_full_entry): ... this. Updated all users.
3622 (record_core_buf_entry): Renamed to ...
3623 (record_full_core_buf_entry): ... this. Updated all users.
3624 (record_core_regbuf): Renamed to ...
3625 (record_full_core_regbuf): ... this. Updated all users.
3626 (record_core_start): Renamed to ...
3627 (record_full_core_start): ... this. Updated all users.
3628 (record_core_end): Renamed to ...
3629 (record_full_core_end): ... this. Updated all users.
3630 (record_core_buf_list): Renamed to ...
3631 (record_full_core_buf_list): ... this. Updated all users.
3632 (record_first): Renamed to ...
3633 (record_full_first): ... this. Updated all users.
3634 (record_list): Renamed to ...
3635 (record_full_list): ... this. Updated all users.
3636 (record_arch_list_head): Renamed to ...
3637 (record_full_arch_list_head): ... this. Updated all users.
3638 (record_arch_list_tail): Renamed to ...
3639 (record_full_arch_list_tail): ... this. Updated all users.
3640 (record_stop_at_limit): Renamed to ...
3641 (record_full_stop_at_limit): ... this. Updated all users.
3642 (record_insn_max_num): Renamed to ...
3643 (record_full_insn_max_num): ... this. Updated all users.
3644 (record_insn_num): Renamed to ...
3645 (record_full_insn_num): ... this. Updated all users.
3646 (record_insn_count): Renamed to ...
3647 (record_full_insn_count): ... this. Updated all users.
3648 (record_ops): Renamed to ...
3649 (record_full_ops): ... this. Updated all users.
3650 (record_core_ops): Renamed to ...
3651 (record_full_core_ops): ... this. Updated all users.
3652 (set_record_cmdlist): Renamed to ...
3653 (set_record_full_cmdlist): ... this. Updated all users.
3654 (show_record_cmdlist): Renamed to ...
3655 (show_record_full_cmdlist): ... this. Updated all users.
3656 (record_cmdlist): Renamed to ...
3657 (record_full_cmdlist): ... this. Updated all users.
3658 (record_beneath_to_resume_ops): Renamed to ...
3659 (record_full_beneath_to_resume_ops): ... this. Updated all users.
3660 (record_beneath_to_resume): Renamed to ...
3661 (record_full_beneath_to_resume): ... this. Updated all users.
3662 (record_beneath_to_wait_ops): Renamed to ...
3663 (record_full_beneath_to_wait_ops): ... this. Updated all users.
3664 (record_beneath_to_wait): Renamed to ...
3665 (record_full_beneath_to_wait): ... this. Updated all users.
3666 (record_beneath_to_store_registers_ops): Renamed to ...
3667 (record_full_beneath_to_store_registers_ops): ... this.
3668 Updated all users.
3669 (record_beneath_to_store_registers): Renamed to ...
3670 (record_full_beneath_to_store_registers): ... this.
3671 Updated all users.
3672 (record_beneath_to_xfer_partial_ops): Renamed to ...
3673 (record_full_beneath_to_xfer_partial_ops): ... this.
3674 Updated all users.
3675 (record_beneath_to_xfer_partial): Renamed to ...
3676 (record_full_beneath_to_xfer_partial): ... this.
3677 Updated all users.
3678 (record_beneath_to_insert_breakpoint): Renamed to ...
3679 (record_full_beneath_to_insert_breakpoint): ... this.
3680 Updated all users.
3681 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
3682 (record_full_beneath_to_stopped_by_watchpoint): ... this.
3683 Updated all users.
3684 (record_beneath_to_stopped_data_address): Renamed to ...
3685 (record_full_beneath_to_stopped_data_address): ... this.
3686 Updated all users.
3687 (record_beneath_to_async): Renamed to ...
3688 (record_full_beneath_to_async): ... this. Updated all users.
3689 (record_goto_insn): Renamed to ...
3690 (record_full_goto_insn): ... this. Updated all users.
3691 (record_save): Renamed to ...
3692 (record_full_save): ... this. Updated all users.
3693 (record_reg_alloc): Renamed to ...
3694 (record_full_reg_alloc): ... this. Updated all users.
3695 (record_reg_release): Renamed to ...
3696 (record_full_reg_release): ... this. Updated all users.
3697 (record_mem_alloc): Renamed to ...
3698 (record_full_mem_alloc): ... this. Updated all users.
3699 (record_mem_release): Renamed to ...
3700 (record_full_mem_release): ... this. Updated all users.
3701 (record_end_alloc): Renamed to ...
3702 (record_full_end_alloc): ... this. Updated all users.
3703 (record_end_release): Renamed to ...
3704 (record_full_end_release): ... this. Updated all users.
3705 (record_entry_release): Renamed to ...
3706 (record_full_entry_release): ... this. Updated all users.
3707 (record_list_release): Renamed to ...
3708 (record_full_list_release): ... this. Updated all users.
3709 (record_list_release_following): Renamed to ...
3710 (record_full_list_release_following): ... this.
3711 Updated all users.
3712 (record_list_release_first): Renamed to ...
3713 (record_full_list_release_first): ... this. Updated all users.
3714 (record_arch_list_add): Renamed to ...
3715 (record_full_arch_list_add): ... this. Updated all users.
3716 (record_get_loc): Renamed to ...
3717 (record_full_get_loc): ... this. Updated all users.
3718 (record_check_insn_num): Renamed to ...
3719 (record_full_check_insn_num): ... this. Updated all users.
3720 (record_arch_list_cleanups): Renamed to ...
3721 (record_full_arch_list_cleanups): ... this. Updated all users.
3722 (record_message): Renamed to ...
3723 (record_full_message): ... this. Updated all users.
3724 (record_message_wrapper): Renamed to ...
3725 (record_full_message_wrapper): ... this. Updated all users.
3726 (record_message_wrapper_safe): Renamed to ...
3727 (record_full_message_wrapper_safe): ... this. Updated all users.
3728 (record_gdb_operation_disable): Renamed to ...
3729 (record_full_gdb_operation_disable): ... this. Updated all users.
3730 (record_hw_watchpoint): Renamed to ...
3731 (record_full_hw_watchpoint): ... this. Updated all users.
3732 (record_exec_insn): Renamed to ...
3733 (record_full_exec_insn): ... this. Updated all users.
3734 (record_restore): Renamed to ...
3735 (record_full_restore): ... this. Updated all users.
3736 (record_async_inferior_event_token): Renamed to ...
3737 (record_full_async_inferior_event_token): ... this.
3738 Updated all users.
3739 (record_async_inferior_event_handler): Renamed to ...
3740 (record_full_async_inferior_event_handler): ... this.
3741 Updated all users.
3742 (record_core_open_1): Renamed to ...
3743 (record_full_core_open_1): ... this. Updated all users.
3744 (record_open_1): Renamed to ...
3745 (record_full_open_1): ... this. Updated all users.
3746 (record_open): Renamed to ...
3747 (record_full_open): ... this. Updated all users.
3748 (record_close): Renamed to ...
3749 (record_full_close): ... this. Updated all users.
3750 (record_resume_step): Renamed to ...
3751 (record_full_resume_step): ... this. Updated all users.
3752 (record_resumed): Renamed to ...
3753 (record_full_resumed): ... this. Updated all users.
3754 (record_execution_dir): Renamed to ...
3755 (record_full_execution_dir): ... this. Updated all users.
3756 (record_resume): Renamed to ...
3757 (record_full_resume): ... this. Updated all users.
3758 (record_get_sig): Renamed to ...
3759 (record_full_get_sig): ... this. Updated all users.
3760 (record_sig_handler): Renamed to ...
3761 (record_full_sig_handler): ... this. Updated all users.
3762 (record_wait_cleanups): Renamed to ...
3763 (record_full_wait_cleanups): ... this. Updated all users.
3764 (record_wait_1): Renamed to ...
3765 (record_full_wait_1): ... this. Updated all users.
3766 (record_wait): Renamed to ...
3767 (record_full_wait): ... this. Updated all users.
3768 (record_stopped_by_watchpoint): Renamed to ...
3769 (record_full_stopped_by_watchpoint): ... this. Updated all users.
3770 (record_disconnect): Renamed to ...
3771 (record_full_disconnect): ... this. Updated all users.
3772 (record_detach): Renamed to ...
3773 (record_full_detach): ... this. Updated all users.
3774 (record_mourn_inferior): Renamed to ...
3775 (record_full_mourn_inferior): ... this. Updated all users.
3776 (record_kill): Renamed to ...
3777 (record_full_kill): ... this. Updated all users.
3778 (record_stopped_data_address): Renamed to ...
3779 (record_full_stopped_data_address): ... this. Updated all users.
3780 (record_registers_change): Renamed to ...
3781 (record_full_registers_change): ... this. Updated all users.
3782 (record_store_registers): Renamed to ...
3783 (record_full_store_registers): ... this. Updated all users.
3784 (record_xfer_partial): Renamed to ...
3785 (record_full_xfer_partial): ... this. Updated all users.
3786 (record_breakpoint): Renamed to ...
3787 (record_full_breakpoint): ... this. Updated all users.
3788 (record_breakpoint_p): Renamed to ...
3789 (record_full_breakpoint_p): ... this. Updated all users.
3790 (record_breakpoints): Renamed to ...
3791 (record_full_breakpoints): ... this. Updated all users.
3792 (record_sync_record_breakpoints): Renamed to ...
3793 (record_full_sync_record_breakpoints): ... this.
3794 Updated all users.
3795 (record_init_record_breakpoints): Renamed to ...
3796 (record_full_init_record_breakpoints): ... this.
3797 Updated all users.
3798 (record_insert_breakpoint): Renamed to ...
3799 (record_full_insert_breakpoint): ... this. Updated all users.
3800 (record_remove_breakpoint): Renamed to ...
3801 (record_full_remove_breakpoint): ... this. Updated all users.
3802 (record_can_execute_reverse): Renamed to ...
3803 (record_full_can_execute_reverse): ... this. Updated all users.
3804 (record_get_bookmark): Renamed to ...
3805 (record_full_get_bookmark): ... this. Updated all users.
3806 (record_goto_bookmark): Renamed to ...
3807 (record_full_goto_bookmark): ... this. Updated all users.
3808 (record_async): Renamed to ...
3809 (record_full_async): ... this. Updated all users.
3810 (record_can_async_p): Renamed to ...
3811 (record_full_can_async_p): ... this. Updated all users.
3812 (record_is_async_p): Renamed to ...
3813 (record_full_is_async_p): ... this. Updated all users.
3814 (record_execution_direction): Renamed to ...
3815 (record_full_execution_direction): ... this. Updated all users.
3816 (record_info): Renamed to ...
3817 (record_full_info): ... this. Updated all users.
3818 (record_delete): Renamed to ...
3819 (record_full_delete): ... this. Updated all users.
3820 (record_is_replaying): Renamed to ...
3821 (record_full_is_replaying): ... this. Updated all users.
3822 (record_goto_entry): Renamed to ...
3823 (record_full_goto_entry): ... this. Updated all users.
3824 (record_goto_begin): Renamed to ...
3825 (record_full_goto_begin): ... this. Updated all users.
3826 (record_goto_end): Renamed to ...
3827 (record_full_goto_end): ... this. Updated all users.
3828 (record_goto): Renamed to ...
3829 (record_full_goto): ... this. Updated all users.
3830 (init_record_ops): Renamed to ...
3831 (init_record_full_ops): ... this. Updated all users.
3832 (record_core_resume): Renamed to ...
3833 (record_full_core_resume): ... this. Updated all users.
3834 (record_core_kill): Renamed to ...
3835 (record_full_core_kill): ... this. Updated all users.
3836 (record_core_fetch_registers): Renamed to ...
3837 (record_full_core_fetch_registers): ... this. Updated all users.
3838 (record_core_prepare_to_store): Renamed to ...
3839 (record_full_core_prepare_to_store): ... this. Updated all users.
3840 (record_core_store_registers): Renamed to ...
3841 (record_full_core_store_registers): ... this. Updated all users.
3842 (record_core_xfer_partial): Renamed to ...
3843 (record_full_core_xfer_partial): ... this. Updated all users.
3844 (record_core_insert_breakpoint): Renamed to ...
3845 (record_full_core_insert_breakpoint): ... this. Updated all users.
3846 (record_core_remove_breakpoint): Renamed to ...
3847 (record_full_core_remove_breakpoint): ... this. Updated all users.
3848 (record_core_has_execution): Renamed to ...
3849 (record_full_core_has_execution): ... this. Updated all users.
3850 (init_record_core_ops): Renamed to ...
3851 (init_record_full_core_ops): ... this. Updated all users.
3852 (cmd_record_restore): Renamed to ...
3853 (cmd_record_full_restore): ... this. Updated all users.
3854 (record_save_cleanups): Renamed to ...
3855 (record_full_save_cleanups): ... this. Updated all users.
3856 (cmd_record_start): Renamed to ...
3857 (cmd_record_full_start): ... this. Updated all users.
3858 (set_record_insn_max_num): Renamed to ...
3859 (set_record_full_insn_max_num): ... this. Updated all users.
3860 (set_record_command): Renamed to ...
3861 (set_record_full_command): ... this. Updated all users.
3862 (show_record_command): Renamed to ...
3863 (show_record_full_command): ... this. Updated all users.
3864 (_initialize_record): Renamed to ...
3865 (_initialize_record_full): ... this. Updated all users.
3866
3867 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3868
3869 * record.h: Split into this and ...
3870 * record-full.h: ... this.
3871 * record.c: Split into this and ...
3872 * record-full.c: ... this.
3873 * target.h (target_ops): Add new fields to_info_record,
3874 to_save_record, to_delete_record, to_record_is_replaying,
3875 to_goto_record_begin, to_goto_record_end, to_goto_record.
3876 (target_info_record): New.
3877 (target_save_record): New.
3878 (target_supports_delete_record): New.
3879 (target_delete_record): New.
3880 (target_record_is_replaying): New.
3881 (target_goto_record_begin): New.
3882 (target_goto_record_end): New.
3883 (target_goto_record): New.
3884 * target.c (target_info_record): New.
3885 (target_save_record): New.
3886 (target_supports_delete_record): New.
3887 (target_delete_record): New.
3888 (target_record_is_replaying): New.
3889 (target_goto_record_begin): New.
3890 (target_goto_record_end): New.
3891 (target_goto_record): New.
3892 * record.h: Declare struct cmd_list_element.
3893 (record_cmdlist): New declaration.
3894 (set_record_cmdlist): New declaration.
3895 (show_record_cmdlist): New declaration.
3896 (info_record_cmdlist): New declaration.
3897 (cmd_record_goto): New declaration.
3898 * record.c: Remove unnecessary includes.
3899 Include inferior.h.
3900 (cmd_record_goto): Remove declaration.
3901 (record_cmdlist): Now extern. Initialize.
3902 (set_record_cmdlist): Now extern. Initialize.
3903 (show_record_cmdlist): Now extern. Initialize.
3904 (info_record_cmdlist): Now extern. Initialize.
3905 (find_record_target): New.
3906 (require_record_target): New.
3907 (cmd_record_start): Update.
3908 (cmd_record_delete): Remove target-specific code.
3909 Call target_delete_record.
3910 (cmd_record_stop): Unpush any record target.
3911 (set_record_insn_max_num): Move to record-full.c
3912 (set_record_command): Add comment.
3913 (show_record_command): Add comment.
3914 (info_record_command): Update comment.
3915 Remove target-specific code.
3916 Call the record target's to_info_record.
3917 (cmd_record_start): New.
3918 (cmd_record_goto): Now extern.
3919 Remove target-specific code.
3920 Call target_goto_begin, target_goto_end, or target_goto.
3921 (_initialize_record): Move record target ops initialization to
3922 record-full.c.
3923 Change "record" command help text.
3924 Move "record restore", "record set", and "record show" commands to
3925 record-full.c.
3926 * Makefile.in (SFILES): Add record-full.c.
3927 (HFILES_NO_SRCDIR): Add record-full.h.
3928 (COMMON_OBS): Add record-full.o.
3929 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
3930 * arm-tdep.c: Include record-full.h.
3931 * i386-linux-tdep.c: Include record-full.h instead of record.h.
3932 * i386-tdep.c: Include record-full.h.
3933 * infrun.c: Include record-full.h.
3934 * linux-record.c: Include record-full.h.
3935 * moxie-tdep.c: Include record-full.h.
3936 * record-full.c: Include record-full.h.
3937 Change module comment.
3938 (set_record_full_cmdlist): New.
3939 (show_record_full_cmdlist): New.
3940 (record_full_cmdlist): New.
3941 (record_goto_insn): New declaration.
3942 (record_save): New declaration.
3943 (record_check_insn_num): Change query string.
3944 (record_info): New.
3945 (record_delete): New.
3946 (record_is_replaying): New.
3947 (record_goto_entry): New.
3948 (record_goto_begin): New.
3949 (record_goto_end): New.
3950 (record_goto): New.
3951 (init_record_ops): Update.
3952 (init_record_core_ops): Update.
3953 (cmd_record_save): Rename to record_save. Remove target and arg checks.
3954 (cmd_record_start): New.
3955 (set_record_insn_max_num): Moved from record.c
3956 (set_record_full_command): New.
3957 (show_record_full_command): New.
3958 (_initialize_record_full): New.
3959
3960 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3961
3962 * target.h (add_deprecated_target_alias): New.
3963 * target.c (add_deprecated_target_alias): New.
3964
3965 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3966
3967 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
3968 and signal.h.
3969 (linux_supports_btrace): Add kernel and
3970 cpuid check.
3971 (kernel_supports_btrace): New function.
3972 (cpu_supports_btrace): New function.
3973 (intel_supports_btrace): New function.
3974
3975 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3976
3977 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
3978 * remote.c: Include btrace.h.
3979 (struct btrace_target_info): New struct.
3980 (remote_supports_btrace): New function.
3981 (send_Qbtrace): New function.
3982 (remote_enable_btrace): New function.
3983 (remote_disable_btrace): New function.
3984 (remote_teardown_btrace): New function.
3985 (remote_read_btrace): New function.
3986 (init_remote_ops): Add btrace ops.
3987 (enum <unnamed>): Add btrace packets.
3988 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
3989 (_initialize_remote): Add packet configuration for branch tracing.
3990
3991 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3992
3993 * features/btrace.dtd: New file.
3994 * Makefile.in (XMLFILES): Add btrace.dtd.
3995 * btrace.h (parse_xml_btrace): New declaration.
3996 * btrace.c: Include xml-support.h.
3997 (parse_xml_btrace): New function.
3998 (parse_xml_btrace_block): New function.
3999 (block_attributes): New struct.
4000 (btrace_attributes): New struct.
4001 (btrace_children): New struct.
4002 (btrace_elements): New struct.
4003
4004 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4005
4006 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
4007 (amd64_linux_enable_btrace): New.
4008 (amd64_linux_disable_btrace): New.
4009 (amd64_linux_teardown_btrace): New.
4010 (_initialize_amd64_linux_nat): Initialize btrace ops.
4011 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
4012 (i386_linux_enable_btrace): New.
4013 (i386_linux_disable_btrace): New.
4014 (i386_linux_teardown_btrace): New.
4015 (_initialize_i386_linux_nat): Initialize btrace ops.
4016 * config/i386/linux.mh: Add linux-btrace.o.
4017 * config/i386/linux64.mh: Add linux-btrace.o.
4018
4019 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4020
4021 * common/linux_btrace.h: New file.
4022 * common/linux_btrace.c: New file.
4023 * Makefile.in (SFILES): Add btrace.c.
4024 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
4025 (COMMON_OBS): Add btrace.o.
4026 (linux-btrace.o): New rule.
4027
4028 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4029
4030 * target.h: Include btrace.h.
4031 (struct target_ops) <to_supports_btrace, to_enable_btrace,
4032 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
4033 * target.c (target_supports_btrace): New function.
4034 (target_enable_btrace): New function.
4035 (target_disable_btrace): New function.
4036 (target_teardown_btrace): New function.
4037 (target_read_btrace): New function.
4038 * btrace.h: New file.
4039 * btrace.c: New file.
4040 * Makefile.in: Add btrace.c.
4041 * gdbthread.h: Include btrace.h.
4042 (struct thread_info): Add btrace field.
4043 * thread.c: Include btrace.h.
4044 (clear_thread_inferior_resources): Call target_teardown_btrace.
4045 * common/btrace-common.h: New file.
4046
4047 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4048
4049 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
4050 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
4051 kill_status to outer block.
4052
4053 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4054
4055 Fix entry-values if the callee called a noreturn function.
4056 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
4057 get_frame_address_in_block. Add new comment.
4058
4059 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4060
4061 Fix entry-values in C++ across CUs.
4062 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
4063 lookup_minimal_symbol. Add a comment.
4064 * dwarf2read.c
4065 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
4066 DW_AT_linkage_name.
4067
4068 2013-03-08 Yao Qi <yao@codesourcery.com>
4069
4070 * tracepoint.c (_initialize_tracepoint): Indent the code.
4071
4072 2013-03-08 Pedro Alves <palves@redhat.com>
4073
4074 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
4075 (parse_find_args, find_command): Change type of pattern buffer
4076 locals to 'gdb_byte *'.
4077
4078 2013-03-08 Stan Shebs <stan@codesourcery.com>
4079 Hafiz Abid Qadeer <abidh@codesourcery.com>
4080
4081 * NEWS: Mention set and show trace-buffer-size commands.
4082 Mention new packet.
4083 * target.h (struct target_ops): New method
4084 to_set_trace_buffer_size.
4085 (target_set_trace_buffer_size): New macro.
4086 * target.c (update_current_target): Set up new method.
4087 * tracepoint.c (trace_buffer_size): New global.
4088 (start_tracing): Send it to the target.
4089 (set_trace_buffer_size): New function.
4090 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
4091 * remote.c (remote_set_trace_buffer_size): New function.
4092 (_initialize_remote): Use it.
4093 (QTBuffer:size) New remote command.
4094 (PACKET_QTBuffer_size): New enum.
4095 (remote_protocol_features): Add an entry for
4096 PACKET_QTBuffer_size.
4097
4098 2013-03-08 Tom Tromey <tromey@redhat.com>
4099
4100 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
4101 variable.
4102
4103 2013-03-07 Pedro Alves <palves@redhat.com>
4104
4105 * target.c (target_read_stralloc, target_fileio_read_alloc):
4106 *Cast pointer to 'gdb_byte *' in target call.
4107
4108 2013-03-07 Pedro Alves <palves@redhat.com>
4109
4110 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
4111 call.
4112
4113 2013-03-07 Keith Seitz <keiths@redhat.com>
4114
4115 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
4116 (trace_pass_command): Likewise.
4117 * cli/cli-cmds.c: Include cli/cli-utils.h.
4118 (source_command): Use skip-spaces.
4119 (disassemble_command): Likewise.
4120 * findcmd.c: Include cli/cli-utils.h.
4121 (parse_find_args): Use skip_spaces.
4122 * go32-nat.c: Include cli/cli-utils.h.
4123 (go32_sldt): Use skip_spaces.
4124 (go32_sgdt): Likewise.
4125 (go32_sidt): Likewise.
4126 (go32_pde): Likewise.
4127 (go32_pte): Likewise.
4128 (go32_pte_for_address): Likewise.
4129 * infcmd.c: Include cli/cli-utils.h.
4130 (registers_info): Use skip_spaces.
4131 * linux-tdep.c (read_mapping): Use skip_spaces_const.
4132 (linux_info_proc): Likewise.
4133 * linux-thread-db.c: Include cli/cli-utils.h.
4134 (info_auto_load_libthread_db): Use skip_spaces_const.
4135 * m32r-rom.c: Include cli/cli-utils.h.
4136 (m32r_upload_command): Use skip_spaces.
4137 * maint.c: Include cli/cli-utils.h.
4138 (maintenance_translate_address): Use skip_spaces.
4139 * mi/mi-parse.c: Include cli/cli-utils.h.
4140 (mi_parse_argv): Use skip_spaces.
4141 (mi_parse): Likewise.
4142 * minsyms.c: Include cli/cli-utils.h.
4143 (msymbol_hash_iw): Use skip_spaces_const.
4144 * objc-lang.c: Include cli/cli-utils.h.
4145 (parse_selector): Use skip_spaces.
4146 (parse_method): Likewise.
4147 * python/python.c: Include cli/cli-utils.h.
4148 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
4149 (python_command)[HAVE_PYTHON]: Likewise.
4150 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
4151 * remote-m32r-sdi.c: Include cli/cli-utils.h.
4152 (m32r_load): Use skip_spaces.
4153 * serial.c: Include cli/cli-utils.h.
4154 (serial_open): Use skip_spaces_const.
4155 * stack.c: Include cli/cli-utils.h.
4156 (parse_frame_specification_1): Use skip_spaces_const.
4157 * symfile.c: Include cli/cli-utils.h.
4158 (set_ext_lang_command): Use skip_spaces.
4159 * symtab.c: Include cli/cli-utils.h.
4160 (rbreak_command): Use skip_spaces.
4161 * thread.c (thread_name_command): Use skip_spaces.
4162 * tracepoint.c (validate_actionline): Use skip_spaces.
4163 (encode_actions_1): Likewise.
4164 (trace_find_range_command): Likewise.
4165 (trace_find_outside_command): Likewise.
4166 (trace_dump_actions): Likewise.
4167
4168 2013-03-07 Pedro Alves <palves@redhat.com>
4169
4170 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
4171 * expprint.c (print_subexp_standard): Likewise.
4172 * utils.c (host_char_to_target): Likewise.
4173 * valprint.c (generic_emit_char, generic_printstr): Likewise.
4174 * varobj.c (value_get_print_value): Change type of local to char*.
4175 Cast it gdb_byte * in call to language printer.
4176
4177 2013-03-07 Pedro Alves <palves@redhat.com>
4178
4179 * charset.c (struct wchar_iterator) <input>: Change type to 'const
4180 gdb_byte *'.
4181 (make_wchar_iterator): Remove cast to char*.
4182 (wchar_iterate): Change type of local.
4183
4184 2013-03-07 Pedro Alves <palves@redhat.com>
4185
4186 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
4187 for 'regcache->register_status'.
4188
4189 2013-03-07 Pedro Alves <palves@redhat.com>
4190
4191 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
4192 int.
4193
4194 2013-03-07 Pedro Alves <palves@redhat.com>
4195
4196 * stap-probe.c (handle_stap_probe): Add cast to char*.
4197
4198 2013-03-07 Pedro Alves <palves@redhat.com>
4199
4200 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
4201 RECORD_MSGRCV>: Pass a signed variable to
4202 regcache_raw_read_signed, instead of an unsigned one.
4203
4204 2013-03-07 Pedro Alves <palves@redhat.com>
4205
4206 * remote-notif.c (notif_debug): Change type to int.
4207 * remote-notif.h (notif_debug): Likewise.
4208
4209 2013-03-07 Pedro Alves <palves@redhat.com>
4210
4211 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
4212
4213 2013-03-07 Pedro Alves <palves@redhat.com>
4214
4215 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
4216 * remote.h (hex2bin, bin2hex): ... here.
4217 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
4218
4219 2013-03-07 Eli Zaretskii <eliz@gnu.org>
4220
4221 * utils.c (initialize_utils): Improve doc strings of "set/show
4222 width", "set/show height", and "set/show pagination".
4223
4224 2013-03-06 Keith Seitz <keiths@redhat.com>
4225
4226 * ax-gdb.c (gen_printf): Make FORMAT const.
4227 * ax-gdb.h (gen_printf): Likewise.
4228 * ax-general.c (ax_string): Make STR const.
4229 * ax.h (ax_string): Likewise.
4230
4231 2013-03-06 Doug Evans <dje@google.com>
4232
4233 * elfread.c (elf_symfile_read): Move debugging printf to more
4234 logical location.
4235
4236 2013-03-06 Pedro Alves <palves@redhat.com>
4237
4238 * python/py-utils.c (target_string_to_unicode): Delete function.
4239 * python/python-internal.h (target_string_to_unicode): Delete
4240 declaration.
4241
4242 2013-03-06 Pierre Muller <muller@sourceware.org>
4243
4244 * linespec.c (get_current_search_block): ARI fix, use (void)
4245 for empty parameter list.
4246
4247 2013-03-05 Doug Evans <dje@google.com>
4248
4249 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
4250 of old ada_lookup_symbol_list. In !full_search case, don't
4251 search superblocks.
4252 (ada_lookup_symbol_list): Delete arg full_search, all callers
4253 updated. Call ada_lookup_symbol_list_worker.
4254 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
4255 * ada-lang.h (ada_lookup_symbol_list): Update.
4256 * language.h (language_defn): Update comment for
4257 la_iterate_over_symbols.
4258 * linespec.c (iterate_over_file_blocks): New function.
4259 (iterate_over_all_matching_symtabs): Call it.
4260 (lookup_prefix_sym): Ditto.
4261 (get_current_search_block): New function.
4262 (get_search_block): Delete.
4263 (find_label_symbols): Call get_current_search_block.
4264 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
4265 * symtab.c (iterate_over_symbols): Don't search superblocks.
4266
4267 2013-03-05 Yao Qi <yao@codesourcery.com>
4268
4269 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
4270 parameter VAR's type from "unsigned int" to "int".
4271 * command.h (var_zuinteger_unlimited): Update its comments.
4272 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
4273
4274 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
4275
4276 * NEWS: Mention new target x86_64-*-cygwin*.
4277
4278 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
4279
4280 * configure.host: Add x86_64-*-cygwin* as host.
4281 * configure.tgt: Add x86_64-*-cygwin* as target.
4282 * config/i386/cygwin64.mh: New file.
4283
4284 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4285
4286 * linespec.c (decode_line_2): Fix duplicate request off by two message.
4287
4288 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4289
4290 * linespec.c (struct linespec_canonical_name): New.
4291 (struct linespec_state): Change canonical_names type to it.
4292 (add_sal_to_sals): Change variable canonical_name to canonical. Change
4293 xrealloc element size. Initialize the different CANONICAL fields.
4294 (canonical_to_fullform): New.
4295 (filter_results): Use it. Add variables canonical, fullform and
4296 cleanup.
4297 (struct decode_line_2_item, decode_line_2_compare_items): New.
4298 (decode_line_2): Remove variables iter and item_names, add variables
4299 items and items_count. Modify the code for these new variables.
4300
4301 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
4302
4303 * coff-pe-read.c (read_pe_exported_syms): Don't return without
4304 calling do_cleanup.
4305
4306 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
4307
4308 * tracepoint.c (build_traceframe_info): Add code for byte order.
4309
4310 2013-03-02 Kevin Buettner <kevinb@redhat.com>
4311
4312 * v850-tdep.c: (v850e2_register_name): Revise system register
4313 names to match current V850E2M architecture specifications.
4314 Update register number enum comments too.
4315
4316 2013-03-01 Jiong Wang <jiwang@tilera.com>
4317 Pedro Alves <palves@redhat.com>
4318
4319 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
4320 to END_ADDR.
4321 (tilegx_skip_prologue): Limit prologue analysis to section end.
4322
4323 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4324
4325 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
4326 use it.
4327
4328 2013-03-01 Pedro Alves <palves@redhat.com>
4329
4330 Use gdb_byte for bytes from the program being debugged.
4331
4332 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
4333 Change type of local 'buf' to gdb_byte.
4334 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
4335 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
4336 * cris-tdep.c (cris_sigcontext_addr)
4337 (cris_sigtramp_frame_unwind_cache): Likewise.
4338 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
4339 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
4340 Likewise.
4341 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
4342 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
4343 (hppa32_hpux_search_dummy_call_sequence)
4344 (hppa_hpux_supply_save_state): Likewise.
4345 * hppa-linux-tdep.c (insns_match_pattern)
4346 (hppa_linux_find_global_pointer): Likewise.
4347 * hppa-tdep.c (hppa_in_function_epilogue_p)
4348 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
4349 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
4350 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
4351 (i386fbsd_collect_uthread): Likewise.
4352 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
4353 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
4354 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
4355 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
4356 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
4357 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
4358 (ia64_libunwind_frame_prev_register)
4359 (ia64_libunwind_sigtramp_frame_this_id)
4360 (ia64_find_global_pointer_from_dynamic_section)
4361 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
4362 (ia64_unwind_pc): Likewise.
4363 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
4364 * m68hc11-tdep.c (m68hc11_push_dummy_call)
4365 (m68hc11_extract_return_value): Likewise.
4366 * m68klinux-nat.c (fetch_register, store_register): Likewise.
4367 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
4368 (mep_get_insn, mep_push_dummy_call): Likewise.
4369 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
4370 (mips_linux_in_dynsym_stub): Likewise.
4371 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
4372 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
4373 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
4374 to gdb_byte.
4375 * remote-mips.c (mips_set_register): Likewise.
4376 * remote-sim.c (gdbsim_fetch_register): Likewise.
4377 * score-tdep.c (score7_fetch_inst): Change type of parameter
4378 'memblock' and local 'buf' to gdb_byte.
4379 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
4380 Change type of local 'buf' to gdb_byte. Adjust.
4381 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
4382 to gdb_byte**.
4383 (score7_analyze_prologue): Change type of 'memblock' and
4384 'memblock_ptr' locals to gdb_byte*.
4385 * sh64-tdep.c (sh64_extract_return_value)
4386 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
4387 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
4388 * solib-pa64.c (pa64_solib_create_inferior_hook)
4389 (pa64_open_symbol_file_object): Remove local 'buf'.
4390 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
4391 (som_open_symbol_file_object): Likewise.
4392 * solib-spu.c (spu_current_sos): Likewise.
4393 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
4394 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
4395 (spu_store_registers): Likewise.
4396 * target.c (debug_print_register): Likewise.
4397 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
4398 * xstormy16-tdep.c (xstormy16_store_return_value)
4399 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
4400 (xstormy16_find_jmp_table_entry): Likewise.
4401
4402 2013-03-01 Jiong Wang <jiwang@tilera.com>
4403
4404 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
4405 (tilegx_gdbarch_init): Install it.
4406
4407 2013-02-28 Tom Tromey <tromey@redhat.com>
4408
4409 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
4410 PyLong_Check.
4411
4412 2013-02-28 Doug Evans <dje@google.com>
4413
4414 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
4415 * python/python.c (gdbpy_find_pc_line): Ditto.
4416
4417 2013-02-28 Tom Tromey <tromey@redhat.com>
4418
4419 * contrib/excheck.py: New file.
4420 * contrib/exsummary.py: New file.
4421 * contrib/gcc-with-excheck: New file.
4422
4423 2013-02-28 Tom Tromey <tromey@redhat.com>
4424
4425 * python/python.c (gdbpy_print_stack): Call begin_line and
4426 fprintf_filtered inside TRY_CATCH.
4427
4428 2013-02-28 Tom Tromey <tromey@redhat.com>
4429
4430 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
4431 inside TRY_CATCH.
4432
4433 2013-02-28 Tom Tromey <tromey@redhat.com>
4434
4435 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
4436 frame_object_to_frame_info inside TRY_CATCH.
4437
4438 2013-02-28 Tom Tromey <tromey@redhat.com>
4439
4440 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
4441 TRY_CATCH.
4442
4443 2013-02-28 Tom Tromey <tromey@redhat.com>
4444
4445 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
4446
4447 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
4448
4449 * windows-nat.c: Throughout, fix format strings and casts of
4450 printf-like functions to avoid type related warnings on all
4451 platforms.
4452 (handle_output_debug_string): Fetch context information address
4453 from debug string using string_to_core_addr.
4454
4455 2013-02-27 Jiong Wang <jiwang@tilera.com>
4456
4457 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
4458 * regformats/reg-tilegx32.dat: New.
4459
4460 2013-02-27 Jiong Wang <jiwang@tilera.com>
4461
4462 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
4463
4464 2013-02-27 Jiong Wang <jiwang@tilera.com>
4465
4466 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
4467
4468 2013-02-27 Yao Qi <yao@codesourcery.com>
4469 Pedro Alves <palves@redhat.com>
4470
4471 * tracepoint.c (tfile_trace_find): For tfind
4472 pc/tp/range/outside, look for the next trace frame instead of
4473 always starting from frame 0.
4474
4475 2013-02-26 Anthony Green <green@moxielogic.com>
4476
4477 * configure.tgt: Add support for moxie-*-rtems* target.
4478
4479 2013-02-25 Pedro Alves <palves@redhat.com>
4480
4481 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
4482 warning text.
4483
4484 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
4485
4486 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
4487 if $fp is used as the virtual frame pointer.
4488
4489 2013-02-23 Alan Modra <amodra@gmail.com>
4490
4491 * elfread.c (elf_symtab_read): Do not use udata.p here to find
4492 symbol size.
4493 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
4494 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
4495 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
4496 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
4497
4498 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
4499
4500 Code cleanup.
4501 * elfread.c (build_id_bfd_get): Make the return type const.
4502 (build_id_verify): Make the check parameter const.
4503 (build_id_to_debug_filename): Make the build_id parameter and variable
4504 data const.
4505 (find_separate_debug_file_by_buildid): Make the variable build_id const.
4506
4507 2013-02-21 Alan Modra <amodra@gmail.com>
4508
4509 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
4510
4511 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
4512
4513 Add a new method 'disassemble' to gdb.Architecture class.
4514 * python/py-arch.c (archpy_disassmble): Implementation of the
4515 new method gdb.Architecture.disassemble.
4516 (arch_object_methods): Add entry for the new method.
4517
4518 2013-02-20 Jiong Wang <jiwang@tilera.com>
4519
4520 * MAINTAINERS (Write After Approval): Add myself to the list.
4521
4522 2013-02-19 Pedro Alves <palves@redhat.com>
4523
4524 Garbage collect 'struct monitor_ops'::load_routine.
4525
4526 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
4527 * monitor.c (monitor_load): No longer call
4528 current_monitor->load_routine.
4529 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
4530 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
4531 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
4532
4533 2013-02-19 Pedro Alves <palves@redhat.com>
4534
4535 PR gdb/15161
4536
4537 Harmonize with generic_load.
4538
4539 * monitor.c: Include "readline/readline.h".
4540 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
4541 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
4542 long/strtol for the 'load_offset' local. Error out if no argument
4543 is given or if too many arguments are given. Tilde expand the
4544 passed in file name.
4545
4546 2013-02-19 Kai Tietz <ktietz@redhat.com>
4547
4548 PR gdb/15161
4549 * symfile.c (load_section_data): Change type of load_offset
4550 to CORE_ADDR.
4551 (generic_load): User strtoulst instead of strtoul for conversion
4552 of load_offset.
4553
4554 2013-02-19 Jiong Wang <jiwang@tilera.com>
4555
4556 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
4557 for return address, "lr" register, saved on stack.
4558 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
4559 after we invoke tilegx_analyze_prologue.
4560
4561 2013-02-19 Jiong Wang <jiwang@tilera.com>
4562
4563 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
4564
4565 2013-02-19 Jiong Wang <jiwang@tilera.com>
4566
4567 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
4568
4569 2013-02-19 Jiong Wang <jiwang@tilera.com>
4570
4571 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
4572 (tilegx_write_pc): New function.
4573 (tilegx_cannot_reference_register): Return zero if REGNO
4574 is TILEGX_FAULTNUM_REGNUM.
4575 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
4576 (tilegx_register_name): Add handling of "faultnum" register.
4577 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
4578 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
4579 handling of TILEGX_FAULTNUM_REGNUM.
4580 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
4581
4582 2013-02-19 Jiong Wang <jiwang@tilera.com>
4583
4584 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
4585 should be aligned to 64bit.
4586
4587 2013-02-19 Kai Tietz <ktietz@redhat.com>
4588
4589 * windows-nat.c (windows_xfer_memory): Fix debug-output
4590 for LLP64.
4591
4592 2013-02-19 Lei Liu <lei.liu2@windriver.com>
4593
4594 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
4595 Don't check DSP register number if HAVE_DSP is not set.
4596
4597 2013-02-19 Alan Modra <amodra@gmail.com>
4598
4599 * elfread.c (struct build_id): Delete. Use struct elf_build_id
4600 throughout file instead.
4601 (build_id_bfd_get): Update to use new elf_tdata build_id field.
4602 Don't xmalloc return value.
4603 (build_id_verify): Similarly. Don't xfree.
4604 (build_id_to_debug_filename): Update.
4605 (find_separate_debug_file_by_buildid): Update, don't xfree.
4606
4607 2013-02-18 Tom Tromey <tromey@redhat.com>
4608
4609 PR gdb/15102:
4610 * dwarf2read.c (read_subrange_type): Use result of
4611 'check_typedef'.
4612
4613 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
4614
4615 * frame.c: Remove one extra white space after #include
4616 directive.
4617
4618 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4619
4620 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
4621
4622 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4623
4624 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
4625 and dir commands into an if block.
4626
4627 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
4628
4629 * python/py-breakpoint (struct pybp_code): Use int instead of
4630 enum type_code.
4631
4632 2013-02-15 Pedro Alves <pedro@codesourcery.com>
4633 Hafiz Abid Qadeer <abidh@codesourcery.com>
4634
4635 * NEWS: Mention new field "trace-file".
4636 * tracepoint.c (trace_status_mi): Output "trace-file" field.
4637 (tfile_open): Record the trace file's filename in the trace
4638 status.
4639 (tfile_files_info): Mention the name of the trace file.
4640 Check the "filename" field explicitely.
4641 (trace_status_command): Explicitely check "filename" field.
4642 (trace_find_command): Ditto.
4643 (trace_find_pc_command): Ditto.
4644 (trace_find_tracepoint_command): Ditto.
4645 (trace_find_line_command): Ditto.
4646 (trace_find_range_command): Ditto.
4647 (trace_find_outside_command): Ditto.
4648 * tracepoint.h (struct trace_status) <from_file>: Rename it
4649 to "filename" and make it hold the trace file's filename
4650 instead of a boolean.
4651 * remote.c (remote_get_trace_status): Initialize "filename"
4652 field with NULL instead of 0.
4653
4654 2013-02-15 Yao Qi <yao@codesourcery.com>
4655
4656 * remote.c: Fix a typo.
4657
4658 2013-02-14 Pierre Muller <muller@sourceware.org>
4659
4660 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
4661
4662 2013-02-14 Pedro Alves <palves@redhat.com>
4663
4664 * utils.c (savestring): Don't #undef it. Move function to
4665 common/common-utils.c.
4666 * common/common-utils.c: Include gdb_string.h.
4667 (savestring): Move here from utils.c.
4668 * common/common-utils.h (savestring): Declare.
4669
4670 2013-02-14 Pedro Alves <palves@redhat.com>
4671
4672 * utils.c (savestring): Rename parameter 'size' to 'len'.
4673
4674 2013-02-14 Pedro Alves <palves@redhat.com>
4675 Yufeng Zhang <yufeng.zhang@arm.com>
4676
4677 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
4678 (aarch64_inferior_data, struct aarch64_inferior_data):
4679 Delete.
4680 (struct aarch64_process_info): New.
4681 (aarch64_process_list): New global.
4682 (aarch64_find_process_pid, aarch64_add_process)
4683 (aarch64_process_info_get): New functions.
4684 (aarch64_inferior_data_get): Delete.
4685 (aarch64_process_info_get): New function.
4686 (aarch64_forget_process): New function.
4687 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
4688 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
4689 aarch64_get_debug_reg_state.
4690 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
4691 instead of linux_nat_iterate_watchpoint_lwps.
4692 (aarch64_linux_new_fork): New function.
4693 (aarch64_linux_child_post_startup_inferior): Use
4694 aarch64_forget_process instead of aarch64_init_debug_reg_state.
4695 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
4696 (aarch64_linux_remove_hw_breakpoint)
4697 (aarch64_handle_aligned_watchpoint)
4698 (aarch64_handle_unaligned_watchpoint)
4699 (aarch64_linux_insert_watchpoint)
4700 (aarch64_linux_remove_watchpoint)
4701 (aarch64_linux_stopped_data_address): Adjust to pass the current
4702 process id to aarch64_debug_reg_state.
4703 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
4704 linux_nat_new_fork hook, and aarch64_forget_process as
4705 linux_nat_forget_process hook; remove the call to
4706 register_inferior_data_with_cleanup.
4707
4708 2013-02-14 Pedro Alves <palves@redhat.com>
4709
4710 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
4711 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
4712 lval_memory.
4713
4714 2013-02-14 Pedro Alves <pedro@codesourcery.com>
4715 Hafiz Abid Qadeer <abidh@codesourcery.com>
4716
4717 * tracepoint.h (validate_trace_state_variable_name): Declare.
4718 * tracepoint.c (validate_trace_state_variable_name): New.
4719 (trace_variable_command): Parse the trace state variable's name
4720 without using parse_expression. Do several validations.
4721 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
4722 trace state variable's name with parse_expression. Validate it.
4723
4724 2013-02-14 Yao Qi <yao@codesourcery.com>
4725
4726 * infcmd.c (breakpoint_proceeded): Remove it.
4727
4728 2013-02-14 Yao Qi <yao@codesourcery.com>
4729
4730 * tracepoint.c (end_actions_pseudocommand): Make it static.
4731 (while_stepping_pseudocommand): Likewise.
4732 * tracepoint.h (end_actions_pseudocommand): Remove the
4733 declaration.
4734 (while_stepping_pseudocommand): Likewise.
4735
4736 2013-02-14 Yao Qi <yao@codesourcery.com>
4737
4738 * cli/cli-decode.c (help_cmd): Remove the declaration of
4739 "cmdlist".
4740 (help_all): Likewise.
4741
4742 2013-02-13 Pedro Alves <palves@redhat.com>
4743
4744 * amd64-linux-nat.c (update_debug_registers_callback):
4745 Update comment.
4746 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
4747 iterate_over_lwps.
4748 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
4749 i386_debug_reg_state.
4750 (amd64_linux_new_fork): New function.
4751 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
4752 linux_nat_new_fork hook, and i386_forget_process as
4753 linux_nat_forget_process hook.
4754 * i386-linux-nat.c (update_debug_registers_callback):
4755 Update comment.
4756 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
4757 iterate_over_lwps.
4758 (i386_linux_prepare_to_resume): Pass the lwp's pid to
4759 i386_debug_reg_state.
4760 (i386_linux_new_fork): New function.
4761 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
4762 linux_nat_new_fork hook, and i386_forget_process as
4763 linux_nat_forget_process hook.
4764 * i386-nat.c (i386_init_dregs): Delete.
4765 (i386_inferior_data, struct i386_inferior_data):
4766 Delete.
4767 (struct i386_process_info): New.
4768 (i386_process_list): New global.
4769 (i386_find_process_pid, i386_add_process, i386_process_info_get):
4770 New functions.
4771 (i386_inferior_data_get): Delete.
4772 (i386_process_info_get): New function.
4773 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
4774 (i386_forget_process): New function.
4775 (i386_cleanup_dregs): Rewrite.
4776 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
4777 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
4778 (i386_stopped_data_address, i386_insert_hw_breakpoint)
4779 (i386_remove_hw_breakpoint): Adjust to pass the current process id
4780 to i386_debug_reg_state.
4781 (i386_use_watchpoints): Don't register inferior data.
4782 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
4783 adjust comment.
4784 (i386_forget_process): Declare.
4785 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
4786 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
4787 New static globals.
4788 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
4789 (add_initial_lwp): New, factored out from ...
4790 (add_lwp): ... this. Don't check the number of lwps before
4791 calling linux_nat_new_thread.
4792 (linux_nat_iterate_watchpoint_lwps): Delete.
4793 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
4794 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
4795 forks and vforks.
4796 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
4797 initial lwp.
4798 (linux_nat_kill, linux_nat_mourn_inferior): Call
4799 linux_nat_forget_process.
4800 (linux_nat_set_new_fork, linux_nat_set_forget_process)
4801 (linux_nat_forget_process): New functions.
4802 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
4803 type.
4804 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
4805 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
4806 types.
4807 (linux_nat_set_new_fork, linux_nat_set_forget_process)
4808 (linux_nat_forget_process): New declarations.
4809
4810 * amd64fbsd-nat.c (super_mourn_inferior): New global.
4811 (amd64fbsd_mourn_inferior): New function.
4812 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
4813 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
4814
4815 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4816
4817 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
4818 Adding _().
4819
4820 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4821
4822 * aarch64-linux-nat.c (debug_reg_change_callback)
4823 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
4824 %s and phex().
4825
4826 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4827
4828 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
4829 with LONGEST.
4830
4831 2013-02-13 Pedro Alves <palves@redhat.com>
4832 Hafiz Abid Qadeer <abidh@codesourcery.com>
4833
4834 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
4835
4836 2013-02-12 Tom Tromey <tromey@redhat.com>
4837
4838 PR symtab/11464:
4839 * c-exp.y (lex_one_token): Initialize other fields of yylval on
4840 NAME return.
4841 (classify_inner_name): Remove 'first_name' argument, add
4842 'context'. Remove unused variable.
4843 (yylex): Explicitly maintain the context type. Exit loop earlier
4844 if NAME result is seen.
4845
4846 2013-02-12 Pedro Alves <palves@redhat.com>
4847
4848 * amd64-darwin-tdep.c: Add (C) after Copyright.
4849 * cli/cli-cmds.h: Ditto.
4850 * cli/cli-decode.c: Ditto.
4851 * cli/cli-decode.h: Ditto.
4852 * cli/cli-dump.c: Ditto.
4853 * cli/cli-dump.h: Ditto.
4854 * cli/cli-interp.c: Ditto.
4855 * cli/cli-logging.c: Ditto.
4856 * cli/cli-script.c: Ditto.
4857 * cli/cli-script.h: Ditto.
4858 * cli/cli-setshow.c: Ditto.
4859 * cli/cli-setshow.h: Ditto.
4860 * cli/cli-utils.c: Ditto.
4861 * cli/cli-utils.h: Ditto.
4862 * config/alpha/nm-osf3.h: Ditto.
4863 * config/djgpp/djconfig.sh: Ditto.
4864 * config/i386/nm-fbsd.h: Ditto.
4865 * config/i386/nm-i386gnu.h: Ditto.
4866 * config/nm-linux.h: Ditto.
4867 * config/nm-nto.h: Ditto.
4868 * config/rs6000/nm-rs6000.h: Ditto.
4869 * config/sparc/nm-sol2.h: Ditto.
4870 * darwin-nat-info.c: Ditto.
4871 * dfp.c: Ditto.
4872 * dfp.h: Ditto.
4873 * gdb-demangle.h: Ditto.
4874 * i386-darwin-nat.c: Ditto.
4875 * i386-darwin-tdep.c: Ditto.
4876 * linux-fork.h: Ditto.
4877 * m32c-tdep.c: Ditto.
4878 * microblaze-linux-tdep.c: Ditto.
4879 * microblaze-rom.c: Ditto.
4880 * microblaze-tdep.c: Ditto.
4881 * microblaze-tdep.h: Ditto.
4882 * mips-linux-tdep.h: Ditto.
4883 * ppc-ravenscar-thread.c: Ditto.
4884 * ppc-ravenscar-thread.h: Ditto.
4885 * prologue-value.c: Ditto.
4886 * prologue-value.h: Ditto.
4887 * ravenscar-thread.c: Ditto.
4888 * ravenscar-thread.h: Ditto.
4889 * sparc-ravenscar-thread.c: Ditto.
4890 * sparc-ravenscar-thread.h: Ditto.
4891 * tilegx-linux-tdep.c: Ditto.
4892 * unwind_stop_reasons.def: Ditto.
4893 * windows-nat.h: Ditto.
4894 * xtensa-linux-tdep.c: Ditto.
4895 * xtensa-xtregs.c: Ditto.
4896 * regformats/regdat.sh: Ditto.
4897 * regformats/regdef.h: Ditto.
4898
4899 2013-02-12 Pedro Alves <palves@redhat.com>
4900
4901 * break-catch-sig.c: Update copyright years.
4902
4903 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
4904
4905 Add support for a destructor for ui_out data and use it to
4906 provide a ui_out destructor.
4907 * ui-out.h: Declare the new ui_out destructor.
4908 (ui_out_impl): Add a field for data destructor in ui_out_impl.
4909 * ui-out.c (default_data_destroy): Add a default data destructor
4910 which does nothing.
4911 (default_ui_out_impl): Set the new data_destroy field to
4912 default_data_destroy
4913 (uo_data_destroy): Local function which invokes the data
4914 destructor if present.
4915 (clear_table): Local function which clears the table data of a
4916 ui_out object.
4917 (ui_out_destroy): Public function which frees a ui_out object.
4918 (ui_out_table_end): Use the new clear_table function.
4919 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
4920 NULL.
4921 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
4922 to NULL.
4923
4924 2013-02-11 Doug Evans <dje@google.com>
4925
4926 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
4927 (printf_decfloat): New function. Broken out from ui_printf.
4928 Remove unnecessary code to shift the entire format string down.
4929 (printf_pointer): New function.
4930 (ui_printf): Code to print C strings, wide C strings, decfloats,
4931 and pointers moved to separate functions.
4932
4933 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
4934
4935 * valops.c (value_assign): Handling bitfield offset in
4936 `lval_internalvar_component' case.
4937
4938 2013-02-08 Doug Evans <dje@google.com>
4939
4940 * common/format.c (parse_format_string): Fix whitespace.
4941
4942 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
4943
4944 * stack.c (return_command): Work around uninitialized variable
4945 warning.
4946
4947 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
4948
4949 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
4950 number of the registers from 36 to 34.
4951
4952 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
4953
4954 * NEWS: Mention new AArch64 native and target support.
4955
4956 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
4957
4958 * MAINTAINERS (Write After Approval): Add myself.
4959
4960 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
4961 Marcus Shawcroft <marcus.shawcroft@arm.com>
4962 Nigel Stephens <nigel.stephens@arm.com>
4963 Yufeng Zhang <yufeng.zhang@arm.com>
4964
4965 * aarch64-linux-nat.c: New file.
4966 * config/aarch64/linux.mh: New file.
4967 * configure.host: Add AArch64.
4968 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
4969
4970 2013-02-07 Doug Evans <dje@google.com>
4971
4972 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
4973 disassemble command.
4974
4975 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
4976
4977 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
4978 set_gdbarch_fetch_tls_load_module_address.
4979
4980 2013-02-06 David S. Miller <davem@davemloft.net>
4981
4982 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
4983 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4984 * value.c (struct_return_convention): New function.
4985 (using_struct_return): Implement in terms of struct_return_convention.
4986 * value.h (struct_return_convention): Declare.
4987 * stack.c (return_command): Allow successful overriding of the return
4988 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4989
4990 2013-02-06 Tom Tromey <tromey@redhat.com>
4991
4992 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
4993 outside of TRY_CATCH.
4994
4995 2013-02-06 Yao Qi <yao@codesourcery.com>
4996
4997 * mi/mi-interp.c: Include "tracepoint.h".
4998 (mi_tsv_modified): Declare.
4999 (mi_tsv_created, mi_tsv_deleted): Update declaration.
5000 (mi_interpreter_init): Call observer_attach_tsv_modified.
5001 (mi_tsv_modified): New.
5002 (mi_tsv_created, mi_tsv_deleted): Update.
5003 * tracepoint.c (trace_variable_command): Call
5004 observer_notify_tsv_modified if the initial value of tsv is
5005 changed.
5006 (delete_trace_state_variable): Call
5007 observer_notify_tsv_deleted earlier.
5008 (trace_variable_command): Caller update.
5009 (create_tsv_from_upload): Likewise.
5010 * observer.sh: Declare "struct trace_state_variable".
5011
5012 * NEWS: Mention the new MI notification "=tsv-modified".
5013
5014 2013-02-05 Doug Evans <dje@google.com>
5015
5016 * completer.c (location_completer): Fix typo in comment.
5017
5018 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5019
5020 * breakpoint.c (add_location_to_breakpoint): Insert the location with
5021 ADDRESS sorted.
5022
5023 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
5024
5025 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
5026 Refactor if statement to avoid trailing || operator.
5027
5028 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
5029
5030 * NEWS: Add PowerPC FreeBSD as a new native configuration.
5031
5032 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
5033
5034 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
5035 * configure.host: Add powerpc*-*-freebsd* target.
5036 * configure.tgt: Add target info for powerpc*-*-freebsd*.
5037 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
5038 * config/powerpc/fbsd.mh: New file.
5039
5040 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
5041 Denys Vlasenko <dvlasenk@redhat.com>
5042 Pedro Alves <palves@redhat.com>
5043
5044 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
5045 (struct elf_internal_linux_prpsinfo): Forward declare.
5046 * gdbarch.h, gdbarch.c: Regenerate.
5047 * linux-tdep.c: Include `cli/cli-utils.h'.
5048 (linux_fill_prpsinfo): New function.
5049 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
5050 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
5051 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
5052 depending on gdbarch pointer bitness.
5053 * ppc-linux-tdep.c: Include elf-bfd.h.
5054 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
5055 on 32-bit.
5056
5057 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5058 Marcus Shawcroft <marcus.shawcroft@arm.com>
5059 Nigel Stephens <nigel.stephens@arm.com>
5060 Yufeng Zhang <yufeng.zhang@arm.com>
5061
5062 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
5063
5064 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5065 Marcus Shawcroft <marcus.shawcroft@arm.com>
5066 Nigel Stephens <nigel.stephens@arm.com>
5067 Yufeng Zhang <yufeng.zhang@arm.com>
5068
5069 * aarch64-newlib-tdep.c: New file.
5070 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
5071 aarch64*-*-elf.
5072 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
5073 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
5074 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
5075 * osabi.c (gdb_osabi_names): Add "Newlib".
5076
5077 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5078 Marcus Shawcroft <marcus.shawcroft@arm.com>
5079 Nigel Stephens <nigel.stephens@arm.com>
5080 Yufeng Zhang <yufeng.zhang@arm.com>
5081
5082 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
5083 (ALLDEPFILES): Add aarch64-linux-tdep.c.
5084 * aarch64-linux-tdep.c: New file.
5085 * aarch64-linux-tdep.h: New file.
5086 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
5087 * configure.tgt: Add aarch64-none-linux-gnu.
5088
5089 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5090 Marcus Shawcroft <marcus.shawcroft@arm.com>
5091 Nigel Stephens <nigel.stephens@arm.com>
5092 Yufeng Zhang <yufeng.zhang@arm.com>
5093
5094 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
5095 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
5096 (ALLDEPFILES): Add aarch64-tdep.c.
5097 * aarch64-tdep.c: New file.
5098 * aarch64-tdep.h: New file.
5099 * configure.tgt: Add AArch64.
5100 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
5101 (aarch64-expedite): New definition.
5102 * features/aarch64-core.xml: New file.
5103 * features/aarch64-fpu.xml: New file.
5104 * features/aarch64-without-fpu.c: New file (generated).
5105 * features/aarch64-without-fpu.xml: New file.
5106 * features/aarch64.c: New file (generated).
5107 * features/aarch64.xml: New file.
5108 * regformats/aarch64-without-fpu.dat: New file (generated).
5109 * regformats/aarch64.dat: New file (generated).
5110
5111 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5112
5113 * contrib/expect-read1.c: New file.
5114 * contrib/expect-read1.sh: New file.
5115
5116 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5117
5118 * dwarf2read.c (file_file_name): New function with code from
5119 file_full_name.
5120 (file_full_name): Move most of the code to file_file_name.
5121 (macro_start_file): Rename variable full_name to file_name and use
5122 file_file_name for it. Add comp_dir parameter to new_macro_table.
5123 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
5124 macro_source_file->filename access by macro_source_fullname call.
5125 * macroscope.c (_initialize_macroscope): Update the new_macro_table
5126 caller.
5127 * macrotab.c (struct macro_table): New field comp_dir.
5128 (macro_include): New variables link_fullname and source_fullname.
5129 Replace any macro_source_file->filename access by macro_source_fullname
5130 call.
5131 (macro_lookup_inclusion): Remove the partial filenames checking code.
5132 (check_for_redefinition): New variables source_fullname and
5133 found_key_fullname. Replace any macro_source_file->filename access by
5134 macro_source_fullname call.
5135 (macro_undef): New variables source_fullname and key_fullname. Replace
5136 any macro_source_file->filename access by macro_source_fullname call.
5137 (macro_lookup_definition): New variables retval and source_fullname.
5138 Replace any macro_source_file->filename access by macro_source_fullname
5139 call.
5140 (foreach_macro): New variable key_fullname. Replace any
5141 macro_source_file->filename access by macro_source_fullname call.
5142 (foreach_macro_in_scope): New variable datum_fullname. Replace any
5143 macro_source_file->filename access by macro_source_fullname call.
5144 (new_macro_table): Add parameter comp_dir. Initialize T with it.
5145 (macro_source_fullname): New function.
5146 * macrotab.h (struct macro_source_file): Extent the filename field
5147 comment.
5148 (new_macro_table): New parameter comp_dir, add a comment for it.
5149 (macro_source_fullname): new declaration.
5150
5151 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5152
5153 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
5154 this_real_name to outer block. Use it also for
5155 compare_filenames_for_search.
5156 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
5157 with dw2_get_real_path for file_matcher, considering also
5158 BASENAMES_MAY_DIFFER.
5159 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
5160
5161 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5162
5163 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
5164 to the file_matcher parameter. Pass 0 to it.
5165 (dwarf2_create_include_psymtab): Copy also DIRNAME.
5166 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
5167 NULL psymtab_to_fullname result.
5168 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
5169 an expected filename instead.
5170 (expand_symtabs_matching_via_partial): Add basenames parameter to the
5171 file_matcher parameter. Call also psymtab_to_fullname, after newly
5172 considering BASENAMES_MAY_DIFFER.
5173 * source.c (rewrite_source_path): Remove static.
5174 * source.h (rewrite_source_path): New declaration.
5175 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
5176 the expand_symtabs_matching field. Comment it.
5177 * symtab.c (file_matches): New function comment. Add parameter
5178 basenames, implement it.
5179 (search_symbols_file_matches): Add basenames parameter. Update the
5180 file_matches caller.
5181 (search_symbols): Match FILES also against symtab_to_fullname.
5182 Optimize it for BASENAMES_MAY_DIFFER.
5183
5184 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5185
5186 * source.c (print_source_lines_base): Print for TUI also "fullname".
5187 * tui/tui-data.c (init_content_element): Change tui_locator_element
5188 field to full_name.
5189 * tui/tui-data.h (struct tui_locator_element): Likewise.
5190 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
5191 tui_update_locator_filename calls to tui_update_locator_fullname.
5192 Replace symtab->filename refererence by symtab_to_fullname call.
5193 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
5194 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
5195 field to full_name. Replace symtab->filename refererence by
5196 symtab_to_fullname call.
5197 (tui_show_symtab_source): Rename parameter to fullname. Change
5198 tui_locator_element field to full_name.
5199 * tui/tui-stack.c: Include source.h.
5200 (tui_set_locator_filename): Rename the declaration to ...
5201 (tui_set_locator_fullname): ... here. Rename its parameter to
5202 fullname, updates its comment.
5203 (tui_set_locator_info): Rename its parameter to fullname.
5204 (tui_set_locator_filename): Rename the definition to ...
5205 (tui_set_locator_fullname): ... here. Rename its parameter to
5206 fullname, updates its comment. Change tui_locator_element field to
5207 full_name.
5208 (tui_set_locator_info): Rename its parameter to fullname.
5209 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
5210 (tui_update_locator_filename): Rename to ...
5211 (tui_update_locator_fullname): ... here. Rename callee to
5212 tui_set_locator_fullname.
5213 (tui_show_frame_info): Replace symtab->filename refererence by
5214 symtab_to_fullname call.
5215 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
5216 (tui_update_locator_fullname): ... here.
5217 * tui/tui-winsource.c (tui_display_main): Rename the callee to
5218 tui_update_locator_fullname. Replace symtab->filename refererence by
5219 symtab_to_fullname call.
5220 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
5221 Rename the callee to tui_update_locator_fullname.
5222 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
5223
5224 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5225
5226 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
5227 by symtab_to_filename_for_display calls.
5228 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
5229 (clear_command): New variable sal_fullname, initialize it. Replace
5230 compare_filenames_for_search by filename_cmp with sal_fullname.
5231 (say_where, update_static_tracepoint): Replace symtab->filename
5232 refererences by symtab_to_filename_for_display calls.
5233 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
5234 Likewise.
5235 * dwarf2read.c: Include source.h.
5236 (fixup_go_packaging): Replace symtab->filename refererences by
5237 symtab_to_filename_for_display calls.
5238 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
5239 Replace symtab->filename refererences by symtab_to_filename_for_display
5240 calls.
5241 (create_sals_line_offset, convert_linespec_to_sals): New variable
5242 fullname, initialize it, replace symtab->filename reference by the
5243 variable.
5244 * linux-fork.c: Include source.h.
5245 (info_checkpoints_command): Replace symtab->filename refererences by
5246 symtab_to_filename_for_display calls.
5247 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
5248 by symtab_to_filename_for_display calls.
5249 * mdebugread.c: Include source.h.
5250 (psymtab_to_symtab_1): Replace symtab->filename refererences by
5251 symtab_to_filename_for_display calls.
5252 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
5253 (mi_cmd_file_list_exec_source_files): Likewise.
5254 * printcmd.c: Include source.h.
5255 (build_address_symbolic): Replace symtab->filename refererences by
5256 symtab_to_filename_for_display calls.
5257 * psymtab.c (partial_map_symtabs_matching_filename)
5258 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
5259 with psymtab_to_fullname.
5260 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
5261 by symtab_to_filename_for_display calls.
5262 (stpy_get_filename): New variable filename, initialize it, use instead
5263 of symtab->filename refererences.
5264 (salpy_str): Make variable filename const char *. Replace
5265 symtab->filename refererences by symtab_to_filename_for_display calls.
5266 * skip.c: Include source.h and filenames.h.
5267 (skip_file_command): Remove const from the symtab variable. Replace
5268 symtab->filename refererences by symtab_to_fullname call.
5269 (function_name_is_marked_for_skip): New variables searched_for_fullname
5270 and fullname. Use them to search also with symtab's fullname.
5271 * source.c (find_source_lines): Replace symtab->filename refererences
5272 by symtab_to_filename_for_display calls.
5273 (print_source_lines_base): New variable filename, use it instead of
5274 symtab->filename. Replace symtab->filename refererences by
5275 symtab_to_filename_for_display calls.
5276 (line_info, forward_search_command): Replace symtab->filename
5277 refererences by symtab_to_filename_for_display calls.
5278 (reverse_search_command): Replace symtab->filename refererences by
5279 symtab_to_filename_for_display calls. New variable filename for it.
5280 * stack.c (frame_info): Likewise.
5281 * symmisc.c: Include source.h.
5282 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
5283 (maintenance_info_symtabs): Replace symtab->filename refererences by
5284 symtab_to_filename_for_display calls.
5285 * symtab.c (iterate_over_some_symtabs): Call
5286 compare_filenames_for_search also with symtab_to_fullname.
5287 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
5288 symtab->filename refererences by symtab_to_filename_for_display calls.
5289 (find_line_symtab): Replace symtab->filename refererences by
5290 symtab_to_filename_for_display calls.
5291 (file_matches): Replace filename_cmp by compare_filenames_for_search.
5292 (print_symbol_info): Make the last parameter const char *. New
5293 variable s_filename. Use it in the function.
5294 (symtab_symbol_info): Make the last_filename variable const char *.
5295 Replace symtab->filename refererences by symtab_to_filename_for_display
5296 calls.
5297 (rbreak_command): New variable fullname. Use it. Replace
5298 symtab->filename refererence by symtab_to_filename_for_display call.
5299 * tracepoint.c (set_traceframe_context, trace_find_line_command)
5300 (print_one_static_tracepoint_marker): Replace symtab->filename
5301 refererences by symtab_to_filename_for_display calls.
5302 * tui/tui-source.c (tui_set_source_content): New variables filename and
5303 s_filename. Replace symtab->filename refererences by this variable.
5304 Replace other symtab->filename refererences by
5305 symtab_to_filename_for_display calls.
5306
5307 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
5308 Jan Kratochvil <jan.kratochvil@redhat.com>
5309
5310 Add a new variable that controls a way in which filenames are
5311 displayed.
5312 * NEWS (set filename-display): New entry.
5313 * source.c (filename_display_basename, filename_display_relative)
5314 (filename_display_absolute, filename_display_kind_names)
5315 (filename_display_string, show_filename_display_string)
5316 (symtab_to_filename_for_display): New.
5317 (_initialize_source): Added initialization of 'filename-display'
5318 variable.
5319 * source.h (symtab_to_filename_for_display): Added declaration.
5320 * stack.c (print_frame): Added new variable and calling of a new
5321 function and condition with this variable. Changed third argument of
5322 calling of a function.
5323
5324 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5325
5326 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
5327 Rename field reference filename to fullname.
5328 * tui/tui-data.h (struct tui_source_info): Rename field filename to
5329 fullname. New comment for it.
5330 * tui/tui-source.c (tui_set_source_content): Rename field reference
5331 filename to fullname. Initialize field by symtab_to_fullname now.
5332 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
5333 reference filename to fullname. Use symtab_to_fullname during
5334 comparison.
5335
5336 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5337
5338 Code cleanup.
5339 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
5340 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
5341 filename to fullname. Rename variable this_name to this_fullname.
5342 Lowercase FILENAME_CMP call.
5343 (dw2_find_symbol_file): New comment for the returned string.
5344 (dwarf2_gdb_index_functions): Rename the function to
5345 dw2_expand_symtabs_with_fullname.
5346 * psymtab.c (read_psymtabs_with_filename): Rename to ...
5347 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
5348 fullname.
5349 (psym_functions): Rename the function to read_psymtabs_with_fullname.
5350 * symfile.h (struct quick_symbol_functions): Rename field
5351 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
5352 parameter filename to fullname. Document returned string meaning for
5353 find_symbol_file.
5354 * symtab.c (find_line_symtab): Rename the called function to
5355 expand_symtabs_with_fullname.
5356
5357 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5358
5359 Code cleanup.
5360 * breakpoint.c (clear_command): Remove variable is_abs, unify the
5361 call of filename_cmp with compare_filenames_for_search.
5362 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
5363 is_abs, unify the call of FILENAME_CMP with
5364 compare_filenames_for_search. New gdb_asserts for real_path and name.
5365 Unify the call of compare_filenames_for_search with FILENAME_CMP.
5366 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
5367 * symfile.h (struct quick_symbol_functions): Extend the comment for
5368 map_symtabs_matching_filename.
5369 * symtab.c (compare_filenames_for_search): Remove the function comment
5370 relative path requirement. Handle absolute filenames, with a comment.
5371 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
5372 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
5373 real_path and name. Unify the call of compare_filenames_for_search
5374 with FILENAME_CMP.
5375 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
5376
5377 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5378
5379 Code cleanup.
5380 * breakpoint.c (print_breakpoint_location): Replace bp_location field
5381 source_file references by symtab field references. Remove variables
5382 sal and fullname.
5383 (momentary_breakpoint_from_master, add_location_to_breakpoint):
5384 (clear_command, say_where): Replace bp_location field source_file
5385 references by symtab field references.
5386 (bp_location_dtor): Remove the source_file reference.
5387 (update_static_tracepoint): Replace bp_location field source_file
5388 references by symtab field references.
5389 (breakpoint_free_objfile): New function.
5390 * breakpoint.h (struct bp_location): Extend the comment for line_number.
5391 Replace the field source_file by field symtab, extend its comment.
5392 (breakpoint_free_objfile): New declaration.
5393 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
5394 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
5395 field source_file references by symtab field references.
5396
5397 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5398
5399 Replace xfullpath calls by gdb_realpath calls.
5400 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
5401 function comment.
5402 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
5403 Remove it from the iterate_over_some_symtabs call.
5404 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
5405 Remove it from the dw2_map_expand_apply calls, remove a block handling
5406 it.
5407 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
5408 Remove it from the iterate_over_some_symtabs call.
5409 (partial_map_symtabs_matching_filename): Remove parameter full_path.
5410 Remove it from the partial_map_expand_apply calls, remove a block
5411 handling it. Drop gdb_realpath call and cleanups from the real_path
5412 handling.
5413 * source.c (openp): Drop the comment part about xfullpath. Replace
5414 xfullpath calls by gdb_realpath calls.
5415 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
5416 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
5417 from method map_symtabs_matching_filename and its comment.
5418 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
5419 gdb_realpath call.
5420 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
5421 remove it also from the function comment, remove a block handling it.
5422 Drop gdb_realpath call and cleanups from the real_path handling.
5423 (iterate_over_symtabs): Drop variable full_path and its use.
5424 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
5425 * utils.c (xfullpath): Remove.
5426 * utils.h (xfullpath): Remove.
5427
5428 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
5429
5430 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
5431 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
5432 (ALLDEPFILES): Add ppc64-tdep.c.
5433 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
5434 ppc64-tdep.o to gdb_target_obs.
5435 * ppc64-tdep.h: New file.
5436 * ppc64-tdep.c: New file.
5437 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
5438 ppc-linux-tdep.c to here.
5439 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
5440 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
5441 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
5442 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
5443 from ppc-linux-tdep.c to here.
5444 (ppc64_convert_from_func_ptr_addr): Rename from
5445 ppc64_linux_convert_from_func_ptr_addr to
5446 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
5447 here.
5448 * rs6000-tdep.c:
5449 (read_insn): Move from ppc-linux-tdep.c to here.
5450 (insns_match_pattern, insn_d_field, insn_ds_field): Move
5451 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
5452 * ppc-linux-tdep.c: Include ppc64-tdep.h.
5453 Removed above functions.
5454 (ppc_linux_init_abi): Adjust.
5455
5456 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
5457
5458 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
5459
5460 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
5461
5462 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
5463
5464 2013-02-01 Pedro Alves <palves@redhat.com>
5465
5466 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
5467 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
5468
5469 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5470
5471 * elfread.c (elf_symfile_read): Limit separate debug info additions to
5472 files with no separate debug info.
5473 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
5474 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
5475 only for files with no separate debug info.
5476
5477 2013-01-31 Tom Tromey <tromey@redhat.com>
5478
5479 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
5480 change type.
5481 (struct jit_program_space_data): Rename from jit_inferior_data.
5482 Update comments.
5483 (get_jit_program_space_data): Rename from get_jit_inferior_data.
5484 Change return type. Attach data to program space.
5485 (jit_program_space_data_cleanup): Rename from
5486 jit_inferior_data_cleanup; change argument type.
5487 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
5488 change type.
5489 (jit_register_code): Update.
5490 (jit_update_inferior_cache): Remove.
5491 (jit_breakpoint_deleted): Get jit data from the location's program
5492 space.
5493 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
5494 'ps_data', change type.
5495 (jit_inferior_init, jit_breakpoint_re_set_internal)
5496 (jit_event_handler): Update.
5497 (free_objfile_data): Get data from objfile's program space.
5498 (_initialize_jit): Update.
5499
5500 2013-01-31 Tom Tromey <tromey@redhat.com>
5501
5502 PR gdb/13987:
5503 * jit.c (struct jit_inferior_data) <cached_code_address,
5504 jit_breakpoint>: New fields.
5505 (jit_breakpoint_re_set_internal): Fix logging. Only create
5506 breakpoint if cached address has changed.
5507 (jit_update_inferior_cache, jit_breakpoint_deleted): New
5508 functions.
5509 (_initialize_jit): Register breakpoint deleted observer.
5510
5511 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5512
5513 * infrun.c (handle_syscall_event): Remove unused gdbarch.
5514 (save_infcall_suspend_state): Ifdef out unused inf.
5515 (restore_infcall_suspend_state): Ifdef out unused inf.
5516 * jit.c (jit_register_code): Remove unused i, b, inf_data.
5517 (jit_frame_sniffer): Remove unused inf_data.
5518
5519 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5520
5521 * c-exp.y (classify_inner_name): Remove unused type.
5522 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
5523 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
5524 need_escape.
5525 (c_get_string): Remove unused kind.
5526 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
5527
5528 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5529
5530 * charset.c (intermediate_encoding): Remove unused i.
5531 * completer.c (signal_completer): Remove unused i.
5532 * continuations.c (discard_my_continuations_1): Remove unused
5533 continuation_ptr.
5534 * corelow.c (core_close): Remove unuseD name.
5535 (get_core_siginfo): Remove unused pid.
5536 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
5537 i, cps.
5538 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
5539 (loclist_describe_location): Remove unused first.
5540 * event-top.c (command_line_handler): Remove unused got_eof.
5541 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
5542 (resize_section_table): Remove unused old_value.
5543 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
5544 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
5545 * i386-tdep.c (i386_process_record): Remove unused rex.
5546 * infcmd.c (get_return_value): Remove unused uiout.
5547 * jv-lang.c (type_from_class): Remove unused is_array.
5548 * jv-valprint.c (java_val_print): Remove unused i.
5549 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
5550 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
5551 * m2-typeprint.c (m2_print_type): Remove unused code.
5552 * macroexp.c (get_character_constant): Remove unused body_start.
5553 (macro_stringify): Remove unused result.
5554 * objc-lang.c (find_methods): Remove unused gdbarch.
5555 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
5556 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
5557 * stack.c (print_frame_args): Remove unused summary.
5558 * thread.c (thread_apply_command): Remove unused p.
5559 * valarith.c (value_x_unop): Remove unused mangle_ptr.
5560 * valops.c (search_struct_method): Remove unused skip.
5561 * valprint.c (generic_val_print): Remove unused byte_order.
5562 * varobj.c (varobj_update): Remove unused changed.
5563 * cli/cli-cmds.c (complete_command): Remove unused next_item.
5564 (alias_command): Remove unused c.
5565 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
5566 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
5567 format.
5568 (mi_cmd_data_write_memory): Remove unused word_format.
5569 (mi_cmd_data_write_memory_bytes): Remove unused r.
5570 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
5571 p_start, p_end.
5572 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
5573 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
5574 line_width.
5575
5576 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5577
5578 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
5579 * symtab.c (iterate_over_symtabs): Remove unused s.
5580 (find_pc_sect_symtab): Remove unused pspAce.
5581 (find_pc_sect_line): Remove unused alt_symtab.
5582 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
5583 (completion_list_add_name): Remove unused newsize.
5584
5585 2013-01-31 Tom Tromey <tromey@redhat.com>
5586
5587 PR c++/14998:
5588 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
5589 TYPE_CODE_FUNC.
5590
5591 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5592
5593 * target.c (target_read_string): Remove unused origlen.
5594
5595 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5596
5597 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
5598 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
5599 * ax-general.c (ax_print): Remove unused is_float.
5600 * blockframe.c (block_innermost_frame): Remove unused start, end.
5601 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
5602
5603 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5604
5605 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
5606 (svr4_read_so_list): Remove unused lmo.
5607 * solib-target.c (solib_target_relocate_section_addresses): Remove
5608 unused flags.
5609
5610 2013-01-30 Tom Tromey <tromey@redhat.com>
5611
5612 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
5613
5614 2013-01-30 Tom Tromey <tromey@redhat.com>
5615
5616 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
5617 * utils.c (gnu_debuglink_crc32): Remove.
5618 * utils.h (gnu_debuglink_crc32): Don't declare.
5619
5620 2013-01-30 Tom Tromey <tromey@redhat.com>
5621
5622 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
5623 (read_structure_type, read_enumeration_type): Remove cast.
5624
5625 2013-01-30 Tom Tromey <tromey@redhat.com>
5626
5627 * dwarf2read.c (read_namespace_type): Remove cast.
5628 (read_typedef): Likewise.
5629
5630 2013-01-29 Tom Tromey <tromey@redhat.com>
5631
5632 * dwarf2read.c (free_dwo_file): Remove assert.
5633
5634 2013-01-29 Tom Tromey <tromey@redhat.com>
5635
5636 * value.c (deprecated_set_value_modifiable): Remove.
5637 * value.h (deprecated_set_value_modifiable): Remove.
5638
5639 2013-01-28 Doug Evans <dje@google.com>
5640
5641 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
5642 to addresses from dwo files.
5643
5644 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
5645
5646 * valops.c (find_overload_match): Remove unused argument 'lax'.
5647 * value.h: Remove unused argument 'lax' from the declaration of
5648 find_overload_match.
5649 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
5650 to find_overload_match.
5651 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
5652 argument to find_overload_match.
5653
5654 2013-01-25 Tom Tromey <tromey@redhat.com>
5655
5656 * dwarf2read.c (processing_has_namespace_info): Remove.
5657 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
5658 (process_die, read_func_scope, dwarf2_start_symtab)
5659 (new_symbol_full): Update.
5660
5661 2013-01-25 Tom Tromey <tromey@redhat.com>
5662
5663 * cp-namespace.c (cp_set_block_scope): Remove.
5664 * cp-support.h (cp_set_block_scope): Remove.
5665 * dbxread.c: Include block.h.
5666 (cp_set_block_scope): New function.
5667 (process_one_symbol): Update.
5668 * dwarf2read.c (read_func_scope): Use block_set_scope.
5669
5670 2013-01-25 Pedro Alves <palves@redhat.com>
5671
5672 * remote.c (add_current_inferior_and_thread): Tweak comment.
5673
5674 2013-01-25 Tom Tromey <tromey@redhat.com>
5675
5676 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
5677 (cp_add_using_directive): Add 'copy_names' argument.
5678 * cp-support.h (cp_add_using_directive): Update.
5679 (struct using_direct) <import_src, import_dest, alias,
5680 declaration>: Now const.
5681 * dwarf2read.c (read_import_statement): Use obconcat.
5682 Don't copy names passed to cp_add_using_directive.
5683
5684 2013-01-25 Tom Tromey <tromey@redhat.com>
5685
5686 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
5687
5688 2013-01-25 Pedro Alves <palves@redhat.com>
5689
5690 * remote.c (stop_reply_extract_thread): New.
5691 (add_current_inferior_and_thread): New parameter 'wait_status'.
5692 Handle it.
5693 (remote_start_remote): Pass wait status to
5694 add_current_inferior_and_thread.
5695 (extended_remote_run): Update comment.
5696 (extended_remote_create_inferior_1): Pass wait status to
5697 add_current_inferior_and_thread.
5698
5699 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
5700 Ulrich Weigand <uweigand@de.ibm.com>
5701
5702 * valarith.c (value_vector_widen): New function for replicating a
5703 scalar into a vector.
5704 (value_binop): Use value_vector_widen to widen scalar to vector
5705 rather than casting, this better matches gcc C behaviour.
5706 * valops.c (value_casst): Update logic for casting between vector
5707 types, and for casting from scalar to vector, try to match gcc C
5708 behaviour.
5709 * value.h (value_vector_widen): Declare.
5710 * opencl-lang.c (opencl_value_cast): New opencl specific casting
5711 function, handle special case for casting scalar to vector.
5712 (opencl_relop): Use opencl_value_cast.
5713 (evaluate_subexp_opencl): Use opencl_value_cast instead of
5714 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
5715 in order to use opencl_value_cast.
5716
5717 2013-01-25 Yao Qi <yao@codesourcery.com>
5718
5719 * event-loop.c: Include "queue.h".
5720 (gdb_event_p): New typedef.
5721 (DECLARE_QUEUE_P): Use.
5722 (DEFINE_QUEUE_P): Use.
5723 (async_queue_event): Remove.
5724 (gdb_event_xfree): New.
5725 (initialize_event_loop): New.
5726 (process_event): Use QUEUE macros.
5727 (event_queue): Remove.
5728 (gdb_wait_for_event): Caller update.
5729 (check_async_event_handlers): Likewise.
5730 (poll_timers): Likewise.
5731 * event-loop.h (initialize_event_loop): Declare.
5732 * event-loop.c (gdb_event_xfree): New.
5733 * top.c (gdb_init): Call initialize_event_loop.
5734
5735 2013-01-25 Yao Qi <yao@codesourcery.com>
5736
5737 * event-loop.c (async_queue_event): Remove one parameter
5738 'position'. Remove code handling 'position' == TAIL.
5739 (gdb_wait_for_event): Caller update.
5740 (check_async_event_handlers): Caller update.
5741 (poll_timers): Caller update.
5742 * event-loop.h (enum queue_position): Remove.
5743
5744 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
5745
5746 * MAINTAINERS: Update my email.
5747
5748 2013-01-25 Yao Qi <yao@codesourcery.com>
5749
5750 * main.c (print_gdb_help): Remove "--epoch" from the help
5751 message.
5752
5753 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
5754
5755 * symtab.c (skip_prologue_using_sal): Consider a file
5756 change the same as an increased line number
5757
5758 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
5759
5760 * MAINTAINERS (Write After Approval): Add myself to the list.
5761
5762 2013-01-24 Tom Tromey <tromey@redhat.com>
5763
5764 * ada-lang.h (ada_decode_symbol): Make return type const.
5765 * ada-lang.c (ada_decode_symbol): Likewise.
5766
5767 2013-01-23 Doug Evans <dje@google.com>
5768
5769 * linespec.c (find_linespec_symbols): Make static.
5770
5771 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
5772
5773 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
5774 type on float conversion for complex type.
5775
5776 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
5777
5778 Add a new class gdb.Architecture which exposes GDB's
5779 internal representation of architecture via GDB Python API.
5780 * Makefile.in: Add entries corresponding to the new file
5781 python/py-arch.c.
5782 * NEWS (Python Scripting): Add entries for the new class
5783 gdb.Architecture and the new method gdb.Frame.architecture.
5784 * python/py-arch.c: Implement gdb.Architecture class.
5785 * python/py-frame.c (frapy_arch): Implement the method
5786 gdb.Frame.architecture().
5787 (frame_object_methods): Add 'architecture' to the method table.
5788 * python/python-internal.h: Add declarations of new utility
5789 functions.
5790 * python/python.c (_initialize_python): Initialize
5791 gdb.Architecture class.
5792
5793 2013-01-23 Doug Evans <dje@google.com>
5794
5795 Work around binutils/15021.
5796 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
5797 type_unit_group out of union s. All uses updated.
5798 (read_index_from_section): Watch for index version 8.
5799 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
5800 an imported symtab.
5801 (write_psymtabs_to_index): Increment version number to 8.
5802
5803 2013-01-22 Pedro Alves <palves@redhat.com>
5804
5805 * annotate.c (breakpoint_changed): Skip if breakpoint is not
5806 user-visible.
5807
5808 2013-01-22 Pedro Alves <palves@redhat.com>
5809
5810 * annotate.c (annotate_breakpoints_changed): Rename to ...
5811 (annotate_breakpoints_invalid): ... this. Make static.
5812 (breakpoint_changed): Adjust.
5813 (_initialize_annotate): Always install the observers. Install a
5814 "breakpoint_created" observer.
5815 * annotate.h (annotate_breakpoints_changed): Delete declaration.
5816 * breakpoint.c (set_breakpoint_condition)
5817 (breakpoint_set_commands, do_map_commands_command)
5818 (init_raw_breakpoint, clear_command, set_ignore_count)
5819 (enable_breakpoint_disp): No longer call
5820 annotate_breakpoints_changed.
5821
5822 2013-01-22 Pedro Alves <palves@redhat.com>
5823
5824 * annotate.c: Include "inferior.h".
5825 (frames_invalid_emitted)
5826 (breakpoints_invalid_emitted): New globals.
5827 (async_background_execution_p): New function.
5828 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
5829 emitting the annotation if it has already been emitted.
5830 (annotate_display_prompt): New function.
5831 * annotate.h (annotate_display_prompt): New declaration.
5832 * event-top.c: Include annotate.h.
5833 (display_gdb_prompt): Call annotate_display_prompt.
5834
5835 2013-01-22 Pedro Alves <palves@redhat.com>
5836
5837 * annotate.c (ignore_count_changed): Delete.
5838 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
5839 (annotate_ignore_count_change): Delete.
5840 (annotate_stopped): Don't emit a delayed breakpoints-changed
5841 annotation.
5842 * annotate.h (annotate_ignore_count_change): Delete.
5843 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
5844 annotate_ignore_count_change.
5845
5846 2013-01-22 Tom Tromey <tromey@redhat.com>
5847
5848 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
5849 require_rvalue for a register location.
5850
5851 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
5852
5853 * breakpoint.c (print_one_breakpoint_location): Add MI
5854 field 'thread-groups' when printing a breakpoint.
5855 (output_thread_groups): New function.
5856
5857 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
5858
5859 * python/lib/gdb/commands/explore.py
5860 (CompoundExplorer.explore_expr): Correct the name of a method
5861 being invoked.
5862 (ExploreTypeCommand.invoke): Add a missing 'return'.
5863
5864 2013-01-21 Tom Tromey <tromey@redhat.com>
5865
5866 * gdb_obstack.h (obconcat): Move declaration here, from...
5867 * symfile.h (obconcat): ... here.
5868 * gdb_obstack.c: New file.
5869 (obconcat): Move from...
5870 * symfile.c (obconcat): ... here.
5871 * Makefile.in (SFILES): Add gdb_obstack.c.
5872 (COMMON_OBS): Add gdb_obstack.o.
5873
5874 2013-01-21 Tom Tromey <tromey@redhat.com>
5875
5876 * symfile.h (obsavestring): Don't declare.
5877 * symfile.c (obsavestring): Remove.
5878 * ada-exp.y: Use obstack_copy0, not obsavestring.
5879 * ada-lang.c: Use obstack_copy0, not obsavestring.
5880 * coffread.c: Use obstack_copy0, not obsavestring.
5881 * cp-namespace.c: Use obstack_copy0, not obsavestring.
5882 * dbxread.c: Use obstack_copy0, not obsavestring.
5883 * dwarf2read.c: Use obstack_copy0, not obsavestring.
5884 * jit.c: Use obstack_copy0, not obsavestring.
5885 * mdebugread.c: Use obstack_copy0, not obsavestring.
5886 * psymtab.c: Use obstack_copy0, not obsavestring.
5887 * stabsread.c: Use obstack_copy0, not obsavestring.
5888 * xcoffread.c: Use obstack_copy0, not obsavestring.
5889
5890 2013-01-21 Tom Tromey <tromey@redhat.com>
5891
5892 * dwarf2read.c (fixup_go_packaging): Save package name
5893 on objfile obstack.
5894 * gdbtypes.c (init_type): Don't copy name.
5895
5896 2013-01-21 Tom Tromey <tromey@redhat.com>
5897
5898 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
5899 const.
5900 (struct attribute) <u.str>: Now const.
5901 (struct fnfieldlist) <name>: Now const.
5902 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
5903 (partial_die_parent_scope): Make return type const.
5904 (partial_die_full_name, add_partial_symbol): Update.
5905 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
5906 'name' const.
5907 (find_file_and_directory): Make 'name' and 'comp_dir' const.
5908 (read_file_scope, read_func_scope, dwarf2_add_field)
5909 (dwarf2_add_member_fn, read_structure_type)
5910 (process_enumeration_scope, read_array_type, read_module_type)
5911 (read_base_type, read_subrange_type): Update.
5912 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
5913 (new_symbol_full, guess_full_die_structure_name): Update.
5914 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
5915 (dwarf2_name): Return const type.
5916 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
5917 const.
5918
5919 2013-01-21 Tom Tromey <tromey@redhat.com>
5920
5921 * gdbtypes.c (init_type): Make 'name' const.
5922 * gdbtypes.h (init_type): Update.
5923
5924 2013-01-21 Tom Tromey <tromey@redhat.com>
5925
5926 * buildsym.c (patch_subfile_names): Use set_last_source_file.
5927 (start_symtab): Make 'name' and 'dirname' const. Use
5928 set_last_source_file.
5929 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
5930 (last_source_file): Define. Now static.
5931 (set_last_source_file, get_last_source_file): New functions.
5932 * buildsym.h (last_source_file): Don't declare.
5933 (start_symtab): Update.
5934 (set_last_source_file, get_last_source_file): Declare.
5935 * coffread.c (complete_symtab): Use set_last_source_file.
5936 (coff_end_symtab): Likewise.
5937 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
5938 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
5939 set_last_source_file.
5940 (process_one_symbol): Use get_last_source_file.
5941 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
5942 (psymtab_to_symtab_1): Use get_last_source_file.
5943 * xcoffread.c (process_linenos): Use get_last_source_file.
5944 (complete_symtab): Use set_last_source_file.
5945 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
5946 (scan_xcoff_symtab): Use set_last_source_file.
5947
5948 2013-01-21 Tom Tromey <tromey@redhat.com>
5949
5950 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
5951 (symbol_set_names): Remove casts. Handle field const-ness.
5952
5953 2013-01-21 Tom Tromey <tromey@redhat.com>
5954
5955 * dwarf2read.c (new_symbol_full): Remove cast.
5956 * symtab.c (symbol_set_demangled_name): Make 'name' const.
5957 * symtab.h (symbol_set_demangled_name): Update.
5958
5959 2013-01-21 Tom Tromey <tromey@redhat.com>
5960
5961 * main.c (captured_main): Call bfd_init.
5962
5963 2013-01-21 Tom Tromey <tromey@redhat.com>
5964
5965 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
5966 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
5967 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
5968 * NEWS: Update.
5969
5970 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5971
5972 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
5973
5974 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5975
5976 Fix gdb.fortran/common-block.exp crash in PIE mode.
5977 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
5978 LOC_COMMON_BLOCK.
5979 * f-valprint.c (info_common_command_for_block): Expect
5980 LOC_COMMON_BLOCK in gdb_assert.
5981 * symtab.h (struct general_symbol_info): Update comment for the
5982 common_block member.
5983 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
5984 (enum address_class): New member LOC_COMMON_BLOCK.
5985
5986 2013-01-18 David Blaikie <dblaikie@gmail.com>
5987
5988 * MAINTAINERS (Write After Approval): Add "David Blaikie".
5989
5990 2013-01-18 Tom Tromey <tromey@redhat.com>
5991
5992 PR c++/14999:
5993 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
5994 Call require_rvalue.
5995
5996 2013-01-18 Yao Qi <yao@codesourcery.com>
5997
5998 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
5999 (dbx_read_symtab): New declaration.
6000 (dbx_psymtab_to_symtab): Delete.
6001 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
6002 Rename parameter PST to SELF. Exchanged two parameters.
6003 (start_psymtab): Caller update.
6004 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
6005 (dwarf2_read_symtab): New declaration.
6006 (dwarf2_psymtab_to_symtab): Delete.
6007 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
6008 Rename parameter PST to SELF. Exchanged two parameters.
6009 (create_partial_symtab): Caller update.
6010 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
6011 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
6012 Rename parameter PST to SELF. Exchanged two parameters.
6013 (parse_partial_symbols, new_psymtab): Caller update.
6014 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
6015 two parameters.
6016 * psymtab.c (psymtab_to_symtab): Caller update.
6017 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
6018 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
6019 Rename parameter PST to SELF. Exchanged two parameters.
6020 (xcoff_start_psymtab): Caller update.
6021
6022 2013-01-18 Yao Qi <yao@codesourcery.com>
6023
6024 * infrun.c (proceed): Rename local variable 'oneproc' to
6025 'force_step'.
6026
6027 2013-01-17 Doug Evans <dje@google.com>
6028
6029 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
6030 (dw2_build_type_unit_groups): Delete. All uses updated.
6031
6032 * symtab.h (struct symbol_search): Add comment.
6033
6034 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6035
6036 * symtab.c (compare_filenames_for_search): New comment for
6037 HAS_DRIVE_SPEC.
6038
6039 2013-01-17 Tom Tromey <tromey@redhat.com>
6040
6041 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
6042
6043 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6044
6045 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
6046 initialize it by existing make_cleanup. Call new do_cleanups.
6047
6048 2013-01-17 Tom Tromey <tromey@redhat.com>
6049
6050 * cp-abi.c (cp_abi_completer): New function.
6051 (_initialize_cp_abi): Set completer for "set cp-abi".
6052
6053 2013-01-17 Tom Tromey <tromey@redhat.com>
6054
6055 * mem-break.c: Remove obsolete comment.
6056 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
6057
6058 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
6059
6060 * jit.c (jit_reader_load_command): Interpret the jit reader name
6061 as an absolute path if it begins with a forward slash.
6062
6063 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
6064
6065 PR gdb/14550
6066
6067 * jit.c (finalize_symtab): Ensure that only the global block has a
6068 NULL superblock.
6069
6070 2013-01-17 Pedro Alves <palves@redhat.com>
6071
6072 * acinclude.m4: Include ../config/plugins.m4,
6073 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
6074 * Makefile.in (aclocal_m4_deps): Update.
6075 * aclocal.m4: Renegerate.
6076
6077 2013-01-16 Doug Evans <dje@google.com>
6078
6079 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
6080
6081 2013-01-16 Pedro Alves <palves@redhat.com>
6082 Tom Tromey <tromey@redhat.com>
6083
6084 PR cli/7221:
6085 * NEWS: Add "catch signal".
6086 * breakpoint.c (base_breakpoint_ops): No longer static.
6087 (bpstat_explains_signal): New function.
6088 (init_catchpoint): No longer static.
6089 (base_breakpoint_explains_signal): New function.
6090 (base_breakpoint_ops): Initialize new field.
6091 * breakpoint.h (enum bpstat_signal_value): New.
6092 (struct breakpoint_ops) <explains_signal>: New field.
6093 (bpstat_explains_signal): Remove macro, declare as function.
6094 (base_breakpoint_ops, init_catchpoint): Declare.
6095 * break-catch-sig.c: New file.
6096 * inferior.h (signal_catch_update): Declare.
6097 * infrun.c (signal_catch): New global.
6098 (handle_syscall_event): Update for change to
6099 bpstat_explains_signal.
6100 (handle_inferior_event): Likewise. Always handle random signals
6101 via bpstats.
6102 (signal_cache_update): Check signal_catch.
6103 (signal_catch_update): New function.
6104 (_initialize_infrun): Initialize signal_catch.
6105 * Makefile.in (SFILES): Add break-catch-sig.c.
6106 (COMMON_OBS): Add break-catch-sig.o.
6107
6108 2013-01-16 Tom Tromey <tromey@redhat.com>
6109
6110 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
6111 (print_one_catch_solib, print_one_catch_syscall)
6112 (print_one_catch_exec, print_one_exception_catchpoint): Emit
6113 "catch-type".
6114
6115 2013-01-16 Yao Qi <yao@codesourcery.com>
6116
6117 * printcmd.c (current_display_number): Make it static.
6118
6119 2013-01-16 Yao Qi <yao@codesourcery.com>
6120
6121 * infcmd.c (step_once): Don't check '!single_inst' as it was
6122 checked before.
6123
6124 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6125
6126 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
6127
6128 2013-01-14 Tom Tromey <tromey@redhat.com>
6129
6130 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
6131 set command.
6132 * command.h (add_setshow_string_noescape_cmd): Update.
6133 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
6134 (complete_set_gnutarget): New function.
6135 (_initialize_core): Set the "set gnutarget" completer.
6136
6137 2013-01-14 Tom Tromey <tromey@redhat.com>
6138
6139 PR symtab/14442:
6140 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
6141 (c_type_print_modifier): Likewise.
6142 * dwarf2read.c (read_tag_restrict_type): New function.
6143 (read_type_die_1): Handle DW_TAG_restrict_type.
6144 * gdbtypes.c (make_restrict_type): New function.
6145 (recursive_dump_type): Handle TYPE_RESTRICT.
6146 * gdbtypes.h (enum type_flag_values): Renumber.
6147 (enum type_instance_flag_value): Add
6148 TYPE_INSTANCE_FLAG_RESTRICT.
6149 (TYPE_RESTRICT): New macro.
6150 (make_restrict_type): Declare.
6151
6152 2013-01-14 Tom Tromey <tromey@redhat.com>
6153
6154 PR symtab/14931:
6155 * psymtab.c (struct psymtab_state): New.
6156 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
6157 functions.
6158 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
6159 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
6160
6161 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
6162 Pedro Alves <palves@redhat.com>
6163
6164 PR remote/14786
6165
6166 * remote.c (remote_threads_info): Make a copy of the reply from
6167 qfThreadInfo and use that instead of rs->buf.
6168
6169 2013-01-14 Yao Qi <yao@codesourcery.com>
6170
6171 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
6172 (dbx_psymtab_to_symtab): Likewise.
6173 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
6174 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
6175 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
6176
6177 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
6178
6179 * parse.c (parse_exp_in_context): New variable inner_chain. Call
6180 make_cleanup_restore_current_language. Call set_language. Move
6181 OLD_CHAIN and INNER_CHAIN cleanups.
6182 * utils.c (do_restore_current_language)
6183 (make_cleanup_restore_current_language): New functions.
6184 * utils.h (make_cleanup_restore_current_language): New declaration.
6185
6186 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
6187
6188 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
6189 non-existing files.
6190
6191 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
6192 non-existing files if FILENAME is already absolute.
6193
6194 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6195
6196 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
6197 fputs_filtered. Append trailing newline.
6198
6199 2013-01-11 Yao Qi <yao@codesourcery.com>
6200 Stan Shebs <stan@codesourcery.com>
6201
6202 * psymtab.c (init_psymbol_list): Clarify the comment.
6203
6204 2013-01-11 Yao Qi <yao@codesourcery.com>
6205
6206 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
6207 (update_dprintf_command_list): Assert that 'printf_line' is
6208 non-null. Remove condition check.
6209
6210 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
6211
6212 Code cleanup.
6213 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
6214 type const char *.
6215 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
6216 const char *.
6217 * tui/tui-source.h (tui_source_is_displayed): Likewise.
6218
6219 2013-01-09 Anthony Green <green@moxielogic.com>
6220
6221 * cp-abi.c (cplus_print_vtable): Don't return value from void
6222 function.
6223 * ada-lang.c (re_set_catch_assert): Ditto.
6224
6225 2013-01-09 Doug Evans <dje@google.com>
6226
6227 * symfile.h (quick_symbol_functions): Delete member
6228 pre_expand_symtabs_matching. All uses removed.
6229 * dwarf2read.c (dw2_lookup_symbol): Implement.
6230 (dw2_do_expand_symtabs_matching): Delete.
6231 (dw2_pre_expand_symtabs_matching): Delete.
6232 (struct dw2_symtab_iterator): New type.
6233 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
6234 (dw2_expand_symtabs_for_function): Rewrite.
6235 (dwarf2_gdb_index_functions): Update.
6236 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
6237 (psym_functions): Update.
6238
6239 2013-01-09 Tom Tromey <tromey@redhat.com>
6240
6241 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
6242 * configure: Rebuild.
6243 * configure.ac: Add somread.o to the build if BFD has SOM
6244 support.
6245 * somread.c: Include som/aout.h, not syms.h.
6246 (som_symtab_read): Use som_external_symbol_dictionary_record.
6247 Unpack records manually.
6248 (_initialize_somread): Declare.
6249
6250 2012-01-08 Mike Frysinger <vapier@gentoo.org>
6251
6252 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
6253 Cast return_address to 64bits.
6254
6255 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
6256
6257 * printcmd.c: Remove define of function output_command.
6258 * tracepoint.c: Remove extern of function output_command.
6259 * valprint.h: (output_command): New extern.
6260
6261 2013-01-07 Tom Tromey <tromey@redhat.com>
6262
6263 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
6264 Remove.
6265 (objc_language_defn): Use c_printchar, c_printstr,
6266 c_emit_char.
6267
6268 2013-01-07 Tom Tromey <tromey@redhat.com>
6269
6270 PR cli/7719:
6271 * NEWS: Update.
6272 * ada-valprint.c (printstr, print_field_values): Remove
6273 "inspect_it" code.
6274 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
6275 code.
6276 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
6277 code.
6278 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
6279 * main.c (captured_main): Remove "epoch" argument.
6280 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
6281 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
6282 * p-valprint.c (pascal_object_print_value_fields): Remove
6283 "inspect_it" code.
6284 * printcmd.c (print_command_1): Remove 'inspect' argument.
6285 (print_command, call_command): Update.
6286 (inspect_command): Remove.
6287 (_initialize_printcmd): Make "inspect" an alias for "print".
6288 * top.c (epoch_interface): Remove.
6289 * top.h (epoch_interface): Remove.
6290 * valprint.c (user_print_options): Update.
6291 (print_converted_chars_to_obstack): Remove "inspect_it" code.
6292 * valprint.h (struct value_print_options) <inspect_it>: Remove
6293 field.
6294
6295 2013-01-04 Tom Tromey <tromey@redhat.com>
6296
6297 * valprint.h (read_string): Add 'extern'.
6298
6299 2013-01-07 Joel Brobecker <brobecker@adacore.com>
6300
6301 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
6302 used to decide whether to define darwin_read_dyld_info or not.
6303
6304 2013-01-03 Pierre Muller <muller@sourceware.org>
6305
6306 * main.c (relocate_gdb_directory): Avoid calling stat function
6307 if DIR is empty.
6308
6309 2013-01-03 Yao Qi <yao@codesourcery.com>
6310
6311 * psymtab.c (fixup_psymbol_section): Update declaration.
6312 (fixup_psymbol_section): Remove code returning value.
6313
6314 2013-01-03 Yao Qi <yao@codesourcery.com>
6315
6316 * symtab.h: Remove some out of date comments.
6317 (enum exception_event_kind): Move it ...
6318 * breakpoint.c: ... here.
6319
6320 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
6321
6322 PR gdb/14405
6323 * darwin-nat.c (darwin_read_dyld_info): Only build if
6324 TASK_DYLD_INFO_COUNT is defined.
6325 (darwin_xfer_partial): Call darwin_read_dyld_info only if
6326 TASK_DYLD_INFO_COUNT is defined.
6327
6328 2013-01-02 Tom Tromey <tromey@redhat.com>
6329
6330 * symfile.h (struct ecoff_debug_hack): Remove.
6331 * objfiles.c: Don't include mdebugread.h.
6332
6333 2013-01-02 Tom Tromey <tromey@redhat.com>
6334
6335 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
6336 * configure.ac: Check for Mach-O support in BFD. Update
6337 CONFIG_OBS.
6338 * configure: Rebuild.
6339
6340 2013-01-02 Tom Tromey <tromey@redhat.com>
6341
6342 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
6343 * configure.ac: Use GDB_AC_CHECK_BFD.
6344 * configure: Rebuild.
6345
6346 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
6347
6348 * MAINTAINERS: Update my email.
6349
6350 2013-01-01 Joel Brobecker <brobecker@adacore.com>
6351
6352 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
6353
6354 2013-01-01 Joel Brobecker <brobecker@adacore.com>
6355
6356 * rs6000-nat.c (bss_data_overlap): New function.
6357 (vmap_symtab): Use it to adjust the .bss section's offset.
6358
6359 2013-01-01 Joel Brobecker <brobecker@adacore.com>
6360
6361 Update year range in copyright notice of all files.
6362
6363 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
6364
6365 * top.c (print_gdb_version): Update copyright year.
6366
6367 For older changes see ChangeLog-2012.
6368 \f
6369 Local Variables:
6370 mode: change-log
6371 left-margin: 8
6372 fill-column: 74
6373 version-control: never
6374 coding: utf-8
6375 End:
This page took 0.162361 seconds and 4 git commands to generate.