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