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