gdb
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
c29c521f
TT
12010-08-10 Tom Tromey <tromey@redhat.com>
2
3 Revert gdb-add-index addition:
4 * Makefile.in (install-only): Don't install gdb-add-index.
5 * gdb-add-index.sh: Remove.
6
0c012db1
KB
72010-08-09 Kevin Buettner <kevinb@redhat.com>
8
9 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
10 `target_has_execution' check with `to_has_memory' check.
11 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
12 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
13 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
14
db04efe6
KB
152010-08-09 Kevin Buettner <kevinb@redhat.com>
16
17 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
18 (resume_siggnal, resume_step): Move these static globals...
19 (struct sim_inferior_data): ...into this new struct.
20 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
21 New static globals.
22 (gdb_callback, callbacks_initialized): Move these globals to
23 a point earlier in the file.
24 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
25 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
26 (gdbsim_close_inferior, gdbsim_resume_inferior)
27 (gdbsim_stop_inferior): New functions.
28 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
29 New constants.
30 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
31 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
32 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
33 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
34 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
35 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
36 new local variable `sim_data' in each of these functions. Use
37 `sim_data' to reference former globals `program_loaded',
38 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
39 `resume_step'.
40 (gdbsim_open): Remove local variable `argv'. Put results of call
41 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
42 make a cleanup for it. Free it though when a sim instance cannot
43 be obtained.
44 (gdbsim_close): Free sim_argv and null it out as appropriate.
45 Close sim instances in all inferiors.
46 (gdbsim_cntrl_c): Stop all inferiors.
47 (gdbsim_wait):
48 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
49
e37fd15a
SW
502010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
51
52 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
53 function after symbol construction is complete.
54 Do the same for template symbol addition to template_symbols list.
55
45c58896
SW
562010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
57
58 * symtab.c (symbol_get_demangled_name): Remove assertion and
59 return NULL when language_specific.cplus_specific is not initialized.
60 * stabsread.c (define_symbol): Set the name before calling
61 cp_scan_for_anonymous_namespaces.
62
33e5013e
SW
632010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
64
65 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
66 SYMBOL_SET_LANGUAGE.
67 (symbol_init_language_specific): Renamed to symbol_set_language.
68 * symtab.c (symbol_init_language_specific): Removed redundant check
69 for language_cplus.
70 Renamed to symbol_set_language.
71 * stabsread.c (define_symbol): Updated.
72 (read_enum_type): Updated
73 * psymtab.c (add_psymbol_to_bcache): Updated.
74 * minsyms.c (install_minimal_symbols): Updated.
75 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
76 SYMBOL_LANGUAGE to set the language.
77 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
78 * mdebugread.c (new_symbol): Ditto.
79 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
80 * dwarf2read.c (new_symbol_full): Ditto.
81 * jv-lang.c (add_class_symbol): Ditto.
82
5da1313b
JK
832010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
84
85 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
86 (make_cleanup_restore_page_info)
87 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
88 * gdbcmd.h (execute_command_to_string): New declaration.
89 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
90 (make_cleanup_restore_ui_file): Move to utils.c
91 (execute_gdb_command) <to_string>: Move ...
92 * top.c (execute_command_to_string): ... here. Call
93 set_batch_flag_and_make_cleanup_restore_page_info.
94 * utils.c (make_cleanup_restore_integer): New source file blank line.
95 (make_cleanup_restore_uinteger): New.
96 (struct restore_ui_file_closure, do_restore_ui_file)
97 (make_cleanup_restore_ui_file): Move here from python/python.c.
98 (init_page_info) <batch_flag>
99 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
100 (set_batch_flag_and_make_cleanup_restore_page_info): New.
101
c820c52a
PA
1022010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
103
104 * thread.c (add_thread_silent): Use null_ptid instead of
105 minus_one_ptid while getting rid of stale inferior_ptid.
106
8da614df
CV
1072010-08-06 Corinna Vinschen <vinschen@redhat.com>
108
109 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
110 Throughout, call read_encoded_value with ptr_size rather than addr_size.
111 (decode_frame_entry_1): Remove redundant setting of
112 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
113 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
114 on examined frame section. Add comment to explain why.
115 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
116 comment to explain usage.
117 * gdbarch.c: Regenerate.
118 * gdbarch.h: Regenerate.
119
120 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
121
e4195b40
JK
1222010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
123
124 Code cleanup.
125 * varobj.c (varobj_create): Move variables fi, old_fi and block to
126 a more inner block.
127
a3217aa0
PA
1282010-08-05 Pedro Alves <pedro@codesourcery.com>
129
130 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
131 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
132 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
133 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
134 linux-tdep.o to gdb_target_obs.
135
e2b4a699
MK
1362010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
137
138 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
139 argument.
140
50e8a0d5
HZ
1412010-08-05 Hui Zhu <teawater@gmail.com>
142
143 * mips-linux-tdep.c(regset.h): New include.
144 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
145 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
146 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
147 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
148 mips_linux_regset_from_core_section): New functions.
149 (fetch_core_registers, regset_core_fns): Deleted.
150 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
151 Deleted regset_core_fns.
152 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
153 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
154 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
155 and fpregset64.
156
70728992
PA
1572010-08-04 Pedro Alves <pedro@codesourcery.com>
158
159 * s390-tdep.c: Include linux-tdep.h.
160 (s390_gdbarch_init): Call linux_init_abi.
161
a5ee0f0c
PA
1622010-08-04 Pedro Alves <pedro@codesourcery.com>
163
164 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
165 instead of printing "Thread" here.
166 * linux-tdep.c: Include inferior.h.
167 (linux_core_pid_to_str): New.
168 (linux_init_abi): New.
169 * linux-tdep.h (linux_init_abi): Declare.
170 * alpha-linux-tdep.c: Include linux-tdep.h.
171 (alpha_linux_init_abi): Call linux_init_abi.
172 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
173 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
174 * frv-linux-tdep.c: Include linux-tdep.h
175 (frv_linux_init_abi): Call linux_init_abi.
176 * hppa-linux-tdep.c: Include linux-tdep.h
177 (hppa_linux_init_abi): Call linux_init_abi.
178 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
179 * ia64-linux-tdep.c: Include linux-tdep.h.
180 (ia64_linux_init_abi): Call linux_init_abi.
181 * m32r-linux-tdep.c: Include linux-tdep.h.
182 (m32r_linux_init_abi): Call linux_init_abi.
183 * m68klinux-tdep.c: Include linux-tdep.h.
184 (m68k_linux_init_abi): Call linux_init_abi.
185 * microblaze-linux-tdep.c: Include linux-tdep.h.
186 (microblaze_linux_init_abi): Call linux_init_abi.
187 * mips-linux-tdep.c: Include linux-tdep.h.
188 (mips_linux_init_abi): Call linux_init_abi.
189 * mn10300-linux-tdep.c: Include linux-tdep.h.
190 (am33_linux_init_osabi): Call linux_init_abi. Rename the
191 'gdbinfo' parameter to 'info'.
192 * ppc-linux-tdep.c: Include linux-tdep.h.
193 (ppc_linux_init_abi): Call linux_init_abi.
194 * sh-linux-tdep.c: Include linux-tdep.h.
195 (sh_linux_init_abi): Call linux_init_abi.
196 * sparc-linux-tdep.c: Include linux-tdep.h.
197 (sparc32_linux_init_abi): Call linux_init_abi.
198 * sparc64-linux-tdep.c: Include linux-tdep.h.
199 (sparc64_linux_init_abi): Call linux_init_abi.
200 * xtensa-linux-tdep.c: Include linux-tdep.h.
201 (xtensa_linux_init_abi): Call linux_init_abi.
202 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
203 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
204 callback.
205
bc043ef3
DE
2062010-08-03 Doug Evans <dje@google.com>
207
208 * breakpoint.c (bpdisp_text): Constify bpdisps.
209 * solib-svr4.c (solib_break_names): Constify.
210 (bkpt_names, main_name_list): Constify.
211 (match_main): Constify soname arg.
63cdd227
DE
212 (bfd_lookup_symbol): Remove unnecessary forward decl.
213 Constify symname arg.
bc043ef3
DE
214 (enable_break): Constify bkpt_namep.
215 * symtab.c (search_symbols): Constify types, types2, types3, types4.
216 (symtab_symbol_info): Constify classnames.
217
585d1eb8
PM
2182010-08-03 Phil Muldoon <pmuldoon@redhat.com>
219
220 * NEWS: Document Python value inferior function calls.
221
2de00c64
DE
2222010-08-02 Doug Evans <dje@google.com>
223
224 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
225
02d868e8
PP
2262010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
227
228 * linux-thread-db.c (libthread_db_debug): New variable.
229 (thread_db_find_new_threads_silently): Control verbosity with it.
230 (try_thread_db_load_1, try_thread_db_load): Likewise.
231 (find_new_threads_once): Likewise.
232 (_initialize_thread_db): Set/show it.
233
a19cae16
JK
2342010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
235
236 * common/signals.c (signals): Move the content to signals.def.
237 Include it. Remove the INDENT comments.
238
c2bbed2a
TT
2392010-07-30 Tom Tromey <tromey@redhat.com>
240
241 * Makefile.in (install-only): Install gdb-add-index.
242 * gdb-add-index.sh: New file.
243
f32b2f09
CR
2442010-07-31 Renquan Cheng <crq@gcc.gnu.org>
245
246 * MAINTAINERS: Add myself for write after approval privileges.
247
1276c759
JK
2482010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
249
250 * symfile.c (addr_section_name): New function.
251 (addrs_section_compar): Use it.
252 (addr_info_make_relative): Use it. Move variable sect_name into a more
253 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
254
420697bb
TT
2552010-07-30 Tom Tromey <tromey@redhat.com>
256
257 * configure: Rebuild.
258 * configure.ac: Add missing case for Python 2.7.
259
d0d99561
DD
2602010-07-29 DJ Delorie <dj@redhat.com>
261
262 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
263 conditions.
264
0b29bdde
PA
2652010-07-29 Pedro Alves <pedro@codesourcery.com>
266
267 * PROBLEMS: Remove mention of all problems.
268
110ed339
PA
2692010-07-28 Pedro Alves <pedro@codesourcery.com>
270
271 PR build/11848
272 * configure.ac: Check for wresize.
273 * configure, config.in: Regenerate.
274 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
275 with HAVE_WRESIZE.
276
326fd672
TT
2772010-07-28 Tom Tromey <tromey@redhat.com>
278
279 PR python/11060:
280 * python/py-type.c (typy_legacy_template_argument): New function,
281 extracted from typy_template_argument.
282 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
283 value when needed.
284
4ac8c4da
TT
2852010-07-28 Oleg Nesterov <oleg@redhat.com>
286
287 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
288
053315c2
TT
2892010-07-27 Tom Tromey <tromey@redhat.com>
290
291 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
292
3ce3b1ba
PA
2932010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
294
295 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
296 handling DW_AT_object_pointer, and workaround GCC PR 43053.
297
2bb4f988
TT
2982010-07-28 Tom Tromey <tromey@redhat.com>
299
300 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
301
74232302
JB
3022010-07-28 Joel Brobecker <brobecker@adacore.com>
303
304 * remote.c (remote_download_tracepoint): Add missing gettext markup.
305 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
306
385d04dc
JB
3072010-07-28 Joel Brobecker <brobecker@adacore.com>
308
309 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
310 down, just before the block that parse the breakpoint addr_string.
311
34eaf542
TT
3122010-07-28 Tom Tromey <tromey@redhat.com>
313
314 PR c++/9946:
315 * symfile.c (reread_symbols): Clear template_symbols.
316 * symtab.h (struct symbol) <is_cplus_template_function>: New
317 field.
318 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
319 (struct template_symbol): New.
320 * symtab.c (lookup_symbol_aux_local): Use
321 cp_lookup_symbol_imports_or_template.
322 * objfiles.h (struct objfile) <template_symbols>: New field.
323 * objfiles.c (relocate_one_symbol): New function.
324 (objfile_relocate1): Use it. Relocate isolated symbols.
325 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
326 template_arguments>: New fields.
327 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
328 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
329 (TYPE_TEMPLATE_ARGUMENT): Likewise.
330 (lookup_typename): Update.
331 * gdbtypes.c (lookup_typename): Constify "block" argument.
332 * dwarf2read.c: Include vec.h.
333 (symbolp): New typedef.
334 (read_func_scope): Read template arguments. Allocate a
335 template_symbol when needed.
336 (read_structure_type): Read template arguments.
337 (new_symbol_full): New function, from new_symbol. Handle
338 DW_TAG_template_type_param and DW_TAG_template_value_param.
339 (new_symbol): Rewrite as wrapper.
340 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
341 * cp-namespace.c: Include language.h.
342 (search_symbol_list): New function.
343 (cp_lookup_symbol_imports_or_template): Likewise.
344
d27b3be4
PA
3452010-07-28 Balazs Kezes <rlblaster@gmail.com>
346
347 * tui/tui-win.c (make_visible_with_new_height): Resize and move
348 the command window to the new size and position.
349
0036e657
PA
3502010-07-28 Balazs Kezes <rlblaster@gmail.com>
351
a782f43e 352 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
0036e657
PA
353 coordinates.
354
36900355
PA
3552010-07-28 Balazs Kezes <rlblaster@gmail.com>
356
a782f43e 357 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
36900355 358 after a detecting a resize.
a782f43e 359 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
36900355
PA
360 call.
361
db5e03ae
PA
3622010-07-28 Pedro Alves <pedro@codesourcery.com>
363
364 * configure.ac: Check for resize_term.
365 * configure, config.in: Regenerate.
366
b71fff68
JB
3672010-07-27 Joel Brobecker <brobecker@adacore.com>
368
369 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
370
9b1c24c8
PA
3712010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
372
373 * dwarf2read.c (read_string): Rename to ...
374 (read_direct_string): ... this.
375 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
376 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
377
00390b84
JK
3782010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
379
380 * linux-nat.c (linux_nat_lp_status_is_event): New function.
381 (count_events_callback, select_event_lwp_callback)
382 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
383
26ab7092
JK
3842010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
385
386 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
387 (_initialize_ia64_linux_nat): Install it.
388 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
389 (linux_nat_set_status_is_event): New.
390 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
391 cancel_breakpoints_callback, linux_nat_filter_event)
392 (linux_nat_wait_1): Use linux_nat_status_is_event.
393 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
394
283e6a52
TT
3952010-07-27 Tom Tromey <tromey@redhat.com>
396
397 * NEWS: Mention labels, .gdb_index.
398
53a71c06
CR
3992010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
400
401 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
3422f666 402 "start,+length" form of arguments.
53a71c06
CR
403 * NEWS: Add "Changed commands" (disassemble) section for "Changes
404 since GDB 7.1"; and merge two separated paragraphs of disassemble
405 description in "Changes in GDB 7.0".
406
c63a1f86
JK
4072010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
408
409 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
410 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
411 (fputs_maybe_filtered): Do not do filtering also on
412 ! INPUT_FROM_TERMINAL_P.
413
abebb8b0
JB
4142010-07-27 Joel Brobecker <brobecker@adacore.com>
415
416 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
417 in warning message.
418
5374244e
PM
4192010-07-27 Phil Muldoon <pmuldoon@redhat.com>
420
421 * python/py-value.c (valpy_call): New Function.
422
ac0b195c
KW
4232010-07-27 Ken Werner <ken.werner@de.ibm.com>
424
872e696d 425 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
ac0b195c
KW
426 types_list_elements variables.
427
09d8bd00
TT
4282010-07-26 Tom Tromey <tromey@redhat.com>
429
430 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
431 TLS with DW_OP_const4u or DW_OP_const8u.
432
9fe70b4f
TJB
4332010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
434
435 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
436 VSX registers contents.
437
caac4577
JG
4382010-07-26 Jerome Guitton <guitton@adacore.com>
439
440 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
441 its adress is null. Add comment to explain why.
442 (new_symbol): Ditto.
443
857d11d0
JK
4442010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
445
446 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
447 the host signal first.
448
1fd400ff
TT
4492010-07-23 Tom Tromey <tromey@redhat.com>
450
451 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
452 type_comp_units>: New fields.
453 (dw2_get_cu): New function.
454 (create_cus_from_index): Remove unused argument.
455 (create_signatured_type_hash_from_index): New function.
456 (create_addrmap_from_index): Update.
457 (dwarf2_read_index): Handle version 2.
458 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
459 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
460 (dw2_print_stats, dw2_expand_all_symtabs)
461 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
462 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
463 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
464 (allocate_signatured_type_hash_table): New function.
465 (add_signatured_type_cu_to_list): Likewise.
466 (create_debug_types_hash_table): Use them. Set type_comp_units.
467 (read_signatured_type): Ensure section data is available.
468 (add_address_entry): Don't record empty ranges.
469 (struct signatured_type_index_data): New.
470 (write_one_signatured_type): New function.
471 (write_psymtabs_to_index): Write type CUs.
472 (save_gdb_index_command): Update comment.
473 (process_type_comp_unit): Move inititalization of
474 from_debug_types...
475 (create_debug_types_hash_table): ... here.
476
3a674486
JK
4772010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
478
479 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
480 cleanup and generating of gdb script to it.
481 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
482 and terminal size. Convert $tmpfile to a series of -ex-es.
483
54ec275a
KS
4842010-07-23 Keith Seitz <keiths@redhat.com>
485
486 * symtab.c (basic_lookup_transparent_type): Call pre-expand
487 hook for STATIC_BLOCK types, too.
488
8fd447e6
KS
4892010-07-23 Keith Seitz <keiths@redhat.com>
490
491 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
492 and vector definition.
493
25b72dde
JK
4942010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
495
496 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
497
96d19272
JK
4982010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
499
500 * dwarf2read.c: Include completer.h.
501 (save_gdb_index_command): Use matching usage command name.
502 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
503 Set filename_completer for it.
504
ca1f3406
TT
5052010-07-22 Tom Tromey <tromey@redhat.com>
506
507 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
508 type signature's per-CU data.
509
ba25b921
PA
5102010-07-22 Pedro Alves <pedro@codesourcery.com>
511
512 * NEWS: Mention target reported shared libraries support by
513 default.
514
23bd0f7c
PA
5152010-07-21 Pedro Alves <pedro@codesourcery.com>
516
517 PR symtab/11827
518
519 Revert:
520 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
521 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
522 and DW_TAG_volatile_type.
523 (new_symbol): Likewise.
524
883df6dd
SW
5252010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
526
527 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
528 function symbols before overload resolution.
529
269b11a2
PA
5302010-07-21 Pedro Alves <pedro@codesourcery.com>
531
532 * breakpoint.c (bptype_string): New, abstracted out from
533 print_one_breakpoint_location.
534 (print_one_breakpoint_location): Adjust.
535 (breakpoint_1): Adjust the type column width dynamically.
536
569b05a5
JK
5372010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
538
539 * symfile.c (find_separate_debug_file_by_debuglink): Remove
540 a gdb_assert call, new comment.
541
ad34eb2f
JK
5422010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
543
544 * linux-nat.c (linux_handle_extended_wait): Handle case when
545 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
546
33355866
JK
5472010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
548
549 Code cleanup.
550 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
551 linux_nat_wait_1. Use always LP->STATUS afterwards.
552
26590820
HZ
5532010-07-20 Hui Zhu <teawater@gmail.com>
554
555 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
556 (inf_ptrace_attach): Ditto.
557
c0edd9ed
JK
5582010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
559
560 Make core files the process_stratum.
561 * corefile.c (core_target): New variable.
562 (core_file_command): Remove variable t, use core_target.
563 * corelow.c (core_ops): Make it static.
564 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
565 * defs.h (make_cleanup_unpush_target): New prototype.
566 * gdbarch.h: Regenerate.
567 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
568 * gdbcore.h (core_target): New declaration.
569 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
570 variables ops_already_pushed and back_to. Use push_target,
571 make_cleanup_unpush_target and discard_cleanups calls.
572 * record.c (record_open): Replace core_stratum by a core_bfd check.
573 * target.c (target_is_pushed): New function.
574 (find_core_target): Remove.
575 * target.h (enum strata) <core_stratum>: Remove.
576 (target_is_pushed): New declaration.
577 (find_core_target): Remove declaration.
578 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
579 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
580
f02253f1
HZ
5812010-07-19 Hui Zhu <teawater@gmail.com>
582
583 * breakpoint.c (single_step_breakpoints_inserted): New
584 function.
585 * breakpoint.h (single_step_breakpoints_inserted): Extern.
586 * infrun.c (maybe_software_singlestep): Add check code.
587 * record.c (record_resume): Add code for software single step.
588 (record_wait): Ditto.
589
78768c4a
JK
5902010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
591
592 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
593 a more inner block. Remove its unused declaration initializer.
594
431e49aa
TJB
5952010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
596
597 * NEWS: Mention support for the new ptrace interface and hardware
598 accelerated watchpoint conditions on powerpc-linux.
599
bd91e7ae
OS
6002010-07-16 Ozkan Sezer <sezeroz@gmail.com>
601
602 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
603 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
604 and host_address_to_string() and %s for pointers.
605 (debug_to_remove_breakpoint): Likewise.
606 (debug_to_region_ok_for_hw_watchpoint): Likewise.
607 (debug_to_can_accel_watchpoint_condition): Likewise.
608 (debug_to_stopped_data_address): Likewise.
609 (debug_to_watchpoint_addr_within_range): Likewise.
610 (debug_to_insert_hw_breakpoint): Likewise.
611 (debug_to_remove_hw_breakpoint): Likewise.
612 (debug_to_insert_watchpoint): Likewise.
613 (debug_to_remove_watchpoint): Likewise.
614
29df156d
SW
6152010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
616
617 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
618 argument.
619 (cplus_specific): New struct.
620 * symtab.c (symbol_set_demangled_name): Updated.
621 Use cplus_specific for cplus symbols.
622 (symbol_get_demangled_name): Retrive the name from the cplus_specific
623 struct for cplus symbols.
624 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
625 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
626 * symtab.c (symbol_init_cplus_specific): New function.
627
b250c185
SW
6282010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
629
630 * symtab.h (symbol_set_demangled_name): New function.
631 (symbol_get_demangled_name): New function.
632 * symtab.c (symbol_set_demangled_name): New function.
633 (symbol_get_demangled_name): New function.
634 (symbol_init_language_specific): Use demangled_name setter and getter.
635 (symbol_set_names): Ditto.
636 (symbol_natural_name): Ditto.
637 (symbol_demangled_name): Ditto.
638 * dwarf2read.c (new_symbol): Ditto.
639
afa16725
SW
6402010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
641
642 * symtab.h: Renamed cplus_specific to mangled_lang.
643 * symtab.c (symbol_init_language_specific): Updated.
644 (symbol_set_names): Updated.
645 (symbol_natural_name): Updated.
646 (symbol_demangled_name): Updated.
647 * ada-lang.c (ada_decode_symbol): Updated.
648 * dwarf2read.c (new_symbol): Updated.
649
3cbaedff
KW
6502010-07-14 Ken Werner <ken.werner@de.ibm.com>
651
652 * valops.c (value_assign): Do not call to value_coerce_to_target.
653 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
654
c932f1be
KW
6552010-07-14 Ken Werner <ken.werner@de.ibm.com>
656
657 * MAINTAINERS: Add myself for write after approval privileges.
658
91158a56
TT
6592010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
660
661 * c-valprint.c (c_val_print): Add embedded_offset to address in
662 call to val_print_array_elements.
663
b3b272e1
TT
6642010-07-13 Tom Tromey <tromey@redhat.com>
665
666 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
667
bb3fa9d0
TT
6682010-07-13 Tom Tromey <tromey@redhat.com>
669
670 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
671 objfile.
672
dd786858
TT
6732010-07-13 Tom Tromey <tromey@redhat.com>
674
675 * symfile.c (set_initial_language): Update.
676 (deduce_language_from_filename): Argument type now const.
677 * symtab.h (find_main_filename): Update.
678 (deduce_language_from_filename): Update.
679 * symtab.c (find_main_filename): Make result const.
680 * dwarf2read.c (dw2_find_symbol_file): Change return type.
681 * psymtab.c (find_symbol_file_from_partial): Change return type.
682 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
683 Make result const.
684
9291a0cd
TT
6852010-07-13 Tom Tromey <tromey@redhat.com>
686
687 * breakpoint.c (save_cmdlist): No longer static.
688 * gdbcmd.h (save_cmdlist): Declare.
689 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
690 OBJF_READNOW on objfile if readnow_symbol_files.
691 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
692 (elf_sym_fns_gdb_index): New global.
693 * dwarf2read.c: Include exceptions.h.
694 (offset_type): New.
695 (struct mapped_index): New.
696 (dwarf2_per_cu_data_ptr): New typedef.
697 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
698 New fields.
699 (GDB_INDEX_SECTION): New define.
700 (struct dwarf2_per_cu_quick_data): New.
701 (struct dwarf2_per_cu_data) <objfile>: New field.
702 <psymtab>: Removed.
703 <v>: New field.
704 (byte_swap): New function.
705 (MAYBE_SWAP): New macro.
706 (INDEX_SUFFIX): New macro.
707 (dw2_do_instantiate_symtab): New function.
708 (dw2_instantiate_symtab): Likewise.
709 (create_cus_from_index): Likewise.
710 (create_addrmap_from_index): Likewise.
711 (mapped_index_string_hash): Likewise.
712 (find_slot_in_mapped_hash): Likewise.
713 (dwarf2_read_index): Likewise.
714 (dw2_setup): Likewise.
715 (dw2_require_line_header): Likewise.
716 (dw2_require_full_path): Likewise.
717 (dw2_find_last_source_symtab): Likewise.
718 (dw2_forget_cached_source_info): Likewise.
719 (dw2_lookup_symtab): Likewise.
720 (dw2_lookup_symbol): Likewise.
721 (dw2_do_expand_symtabs_matching): Likewise.
722 (dw2_pre_expand_symtabs_matching): Likewise.
723 (dw2_print_stats): Likewise.
724 (dw2_dump): Likewise.
725 (dw2_relocate): Likewise.
726 (dw2_expand_symtabs_for_function): Likewise.
727 (dw2_expand_all_symtabs): Likewise.
728 (dw2_expand_symtabs_with_filename): Likewise.
729 (dw2_find_symbol_file): Likewise.
730 (dw2_map_ada_symtabs): Likewise.
731 (dw2_expand_symtabs_matching): Likewise.
732 (dw2_find_pc_sect_symtab): Likewise.
733 (dw2_map_symbol_names): Likewise.
734 (dw2_map_symbol_filenames): Likewise.
735 (dw2_has_symbols): Likewise.
736 (dwarf2_gdb_index_functions): New global.
737 (dwarf2_initialize_objfile): New function.
738 (process_psymtab_comp_unit): Update.
739 (add_partial_subprogram): Likewise.
740 (dwarf2_psymtab_to_symtab): Likewise.
741 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
742 (process_full_comp_unit): Update.
743 (find_file_and_directory): New function.
744 (read_file_scope): Use find_file_and_directory.
745 (dwarf2_per_cu_objfile): Update.
746 (dwarf2_per_cu_addr_size): Update.
747 (dwarf2_per_cu_offset_size): Update.
748 (dwarf2_free_objfile): Free the index, if needed.
749 (dwarf2_per_objfile_free): Unmap the index, if needed.
750 (struct strtab_entry): New.
751 (hash_strtab_entry): New function.
752 (eq_strtab_entry): Likewise.
753 (create_strtab): Likewise.
754 (add_string): Likewise.
755 (struct symtab_index_entry): New.
756 (struct mapped_symtab): New.
757 (hash_symtab_entry): New function.
758 (eq_symtab_entry): Likewise.
759 (delete_symtab_entry): Likewise.
760 (create_index_table): Likewise.
761 (create_mapped_symtab): Likewise.
762 (cleanup_mapped_symtab): Likewise.
763 (find_slot): Likewise.
764 (hash_expand): Likewise.
765 (add_index_entry): Likewise.
766 (add_indices_to_cpool): Likewise.
767 (write_hash_table): Likewise.
768 (add_address_entry): Likewise.
769 (write_psymbols): Likewise.
770 (write_obstack): Likewise.
771 (unlink_if_set): Likewise.
772 (write_psymtabs_to_index): Likewise.
773 (save_gdb_index_command): Likewise.
774 (_initialize_dwarf2_read): Install "save gdb-index"
775 command.
776 (create_all_comp_units): Initialize 'objfile' field of CU.
777 (dwarf2_locate_sections): Check for .gdb_index.
778 * psymtab.h (dwarf2_gdb_index_functions): Declare.
779 * symfile.h (dwarf2_initialize_objfile): Declare.
780
58b6ab13
TT
7812010-07-13 Tom Tromey <tromey@redhat.com>
782
783 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
784 (basic_lookup_transparent_type): Likewise.
785 * symfile.h (struct quick_symbol_functions)
786 <pre_expand_symtabs_matching>: New field.
787 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
788 (psym_functions): Update.
789
0f5238ed
TT
7902010-07-13 Tom Tromey <tromey@redhat.com>
791
792 PR breakpoints/8357:
793 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
794 * linespec.c (decode_line_1): Update comment. Call decode_label.
795 (decode_label): New function.
796 (symbol_found): Handle LOC_LABEL.
797 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
798 domain. Call add_symbol_to_list.
799
9aa1f1e3
TT
8002010-07-13 Tom Tromey <tromey@redhat.com>
801
802 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
803 * dwarf2loc.c (find_location_expression): Use
804 dwarf2_per_cu_text_offset.
805 (dwarf2_evaluate_loc_desc): Likewise.
806 (dwarf2_loc_desc_needs_frame): Likewise.
807 (compile_dwarf_to_ax): Likewise.
808 (loclist_describe_location): Likewise.
809 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
810 (dwarf2_per_cu_objfile): Update comment.
811
953ac07e
JK
8122010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
813
814 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
815 * p-lang.c (pascal_printstr): Likewise.
816
f04e4012
TT
8172010-07-09 Tom Tromey <tromey@redhat.com>
818
819 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
820 'hint' if it is NULL.
821
f4dfd9c0
HZ
8222010-07-09 Hui Zhu <teawater@gmail.com>
823
824 * source.c (print_source_lines_base): Add check for noprint.
825
7e6e39e5
JB
8262010-07-08 Joel Brobecker <brobecker@adacore.com>
827
828 * python/python-config.py: Resync with Python 2.7 version of this
829 script.
830
76b8507d
JB
8312010-07-08 Joel Brobecker <brobecker@adacore.com>
832
833 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
834
797054e6
JB
8352010-07-07 Joel Brobecker <brobecker@adacore.com>
836
837 * NEWS: Create a new section for the next release branch.
838 Rename the section of the current branch, now that it has
839 been cut.
840
c80befee 8412010-07-07 Joel Brobecker <brobecker@adacore.com>
842
843 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
844 * version.in: Bump version to 7.2.50.20100707-cvs.
845
ac56253d
TT
8462010-07-07 Tom Tromey <tromey@redhat.com>
847
848 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
849 LOC_COMPUTED symbol.
850 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
851 (dwarf2_loc_desc_needs_frame): Likewise.
852 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
853 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
854 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
855 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
856 'offset' argument.
857 (struct dwarf2_frame_cache) <text_offset>: New field.
858 (dwarf2_frame_cache): Set new field.
859 (dwarf2_frame_prev_register): Update.
860 (dwarf2_frame_sniffer): Update.
861 (dwarf2_frame_base_sniffer): Update.
862 (dwarf2_frame_find_fde): Add 'out_offset' argument.
863
0cf6dd15
TJB
8642010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
865 Thiago Jung Bauermann <bauerman@br.ibm.com>
866
867 Support for hw accelerated condition watchpoints in booke powerpc.
868
869 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
870 and move to eval.c. Change callers.
871 (insert_bp_location): Pass watchpoint condition in
872 target_insert_watchpoint.
873 (remove_breakpoint_1) Pass watchpoint condition in
874 target_remove_watchpoint.
875 (watchpoint_locations_match): Call
876 target_can_accel_watchpoint_condition.
877 * eval.c: Include wrapper.h.
878 (fetch_subexp_value): Moved from breakpoint.c.
879 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
880 Formatting fix.
881 (can_use_watchpoint_cond_accel): New function.
882 (calculate_dvc): Likewise.
883 (num_memory_accesses): Likewise.
884 (check_condition): Likewise.
885 (ppc_linux_can_accel_watchpoint_condition): Likewise
886 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
887 check_condition and calculate_dvc.
888 (ppc_linux_remove_watchpoint): Likewise.
889 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
890 ppc_linux_can_accel_watchpoint_condition
891 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
892 condition.
893 (debug_to_remove_watchpoint): Likewise.
894 (debug_to_can_accel_watchpoint_condition): New function.
895 (update_current_target): Set to_can_accel_watchpoint_condition.
896 (setup_target_debug): Set to_can_accel_watchpoint_condition.
897 * target.h: Add opaque declaration for struct expression.
898 (struct target_ops) <to_insert_watchpoint>,
899 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
900 <to_can_accel_watchpoint_condition>: New member.
901 condition. Update all callers and implementations.
902 (target_can_accel_watchpoint_condition): New macro.
903 * value.c (free_value_chain): New function.
904 * value.h (fetch_subexp_value): New prototype.
905 (free_value_chain): Likewise.
906
2f2241f1
UW
9072010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
908
909 * linux-nat.c (linux_nat_do_thread_registers): Use section size
910 from gdbarch_core_regset_sections also for .reg if present.
911
912 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
913 section size for .reg.
914 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
915 (ppc_linux_vmx_regset_sections): Likewise.
916 (ppc_linux_fp_regset_sections): Likewise.
917 (ppc64_linux_vsx_regset_sections): New variable.
918 (ppc64_linux_vmx_regset_sections): Likewise.
919 (ppc64_linux_fp_regset_sections): Likewise.
920 (ppc_linux_init_abi): Install core_regset_section lists appropriate
921 for current word size.
922
1fd7cdc2
JB
9232010-07-06 Joel Brobecker <brobecker@adacore.com>
924
925 * server.c (myresume): Make static.
926
11763c18
TT
9272010-07-06 Tom Tromey <tromey@redhat.com>
928
929 * configure, config.in: Rebuild.
930 * configure.ac (HAVE_LIBPYTHON2_7): New define.
931 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
932
a6cc4789
AS
9332010-07-06 Andreas Schwab <schwab@linux-m68k.org>
934
935 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
936 "clear".
937
f9e9243a
UW
9382010-07-06 Ken Werner <ken.werner@de.ibm.com>
939
940 * gdbtypes.h (floatformats_ieee_half): Add declaration.
941 * gdbtypes.c (floatformats_ieee_half): New variable.
942 * doublest.c (floatformat_from_length): Set format to
943 gdbarch_half_format if length matches.
944 * gdbarch.sh (half_bit): New architecture method.
945 (half_format): Likewise.
946 * gdbarch.h: Regenerate.
947 * gdbarch.c: Likewise.
948
4e5799b6
JK
9492010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
950 Joel Brobecker <brobecker@adacore.com>
951
952 Fix re-run of PIE executable, PR shlibs/11776.
953 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
954 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
955
86e4bafc
JK
9562010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
957 Joel Brobecker <brobecker@adacore.com>
958
959 * auxv.c (memory_xfer_auxv): Update attach comment.
960 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
961 svr4_relocate_main_executable.
962 (svr4_solib_create_inferior_hook): Make the call to
963 svr4_relocate_main_executable unconditional.
964
3cd07d20
JK
9652010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
966 Joel Brobecker <brobecker@adacore.com>
967
968 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
969
0a1e94c7
JK
9702010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
971 Joel Brobecker <brobecker@adacore.com>
972
973 Fix attaching to PIEs prelinked on the disk after the process was
974 started.
975 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
976 Verify it against bfd_get_arch_size. Try to match arbitrary
977 displacement for the phdrs comparison.
978
5387647f
TT
9792010-07-02 Tom Tromey <tromey@redhat.com>
980
981 PR exp/11780:
982 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
983 value as optimized-out.
984
38b6c3b3
TJB
9852010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
986 Thiago Jung Bauermann <bauerman@br.ibm.com>
987
988 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
989 represent?" question in comment. Change comment to a proper sentence.
990
a17ac5b0
TT
9912010-07-02 Ken Werner <ken.werner@de.ibm.com>
992
993 * c-valprint.c (c_val_print): Fix printing of character vectors.
994
bddaafad
JK
9952010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
996
997 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
998 create_breakpoint prototype.
999
d41c0fc8
PA
10002010-07-01 Pedro Alves <pedro@codesourcery.com>
1001
1002 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
1003 usefulness suggestion of multiple breakpoints at same location.
1004
dc10affe
PA
10052010-07-01 Pedro Alves <pedro@codesourcery.com>
1006
1007 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
1008
cabe9ab6
PA
10092010-07-01 Pedro Alves <pedro@codesourcery.com>
1010
1011 * dwarf2loc.c (locexpr_tracepoint_var_ref)
1012 (loclist_tracepoint_var_ref): Handle optimized out values.
1013
cce7e648
PA
10142010-07-01 Pedro Alves <pedro@codesourcery.com>
1015
1016 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
1017 unnecessary space in string.
1018 * filesystem.c (_initialize_filesystem): Ditto.
1019 * frame.c (_initialize_frame): Ditto.
1020 * infcmd.c (step_once): Ditto.
1021 * infrun.c (_initialize_infrun): Ditto.
1022 * linux-nat.c (linux_child_follow_fork): Ditto.
1023 * maint.c (maintenance_deprecate): Ditto.
1024 * memattr.c (_initialize_mem): Ditto.
1025 * mips-tdep.c (_initialize_mips_tdep): Ditto.
1026 * monitor.c (monitor_open): Ditto.
1027 * procfs.c (procfs_xfer_memory): Ditto.
1028 * reverse.c (bookmarks_info): Ditto.
1029 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
1030 * stack.c (_initialize_stack): Ditto.
1031 * tracepoint.c (_initialize_tracepoint): Ditto.
1032 * xtensa-tdep.c (xtensa_supply_gregset,
1033 xtensa_regset_from_core_section): Ditto.
1034
b65c7efe
TT
10352010-07-01 Tom Tromey <tromey@redhat.com>
1036
1037 * value.h (struct lval_funcs) <check_any_valid>: Rename from
1038 check_all_valid.
1039 * value.c (value_entirely_optimized_out): Invert result. Update
1040 for new function name.
1041
0fb4aa4b
PA
10422010-07-01 Pedro Alves <pedro@codesourcery.com>
1043
1044 Static tracepoints support.
1045
1046 * NEWS: Mention new support for static tracepoints.
1047 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
1048 qXfer:statictrace:read.
1049 (New features in the GDB remote stub, GDBserver): Mention static
1050 tracepoints support using an UST based backend.
1051 (New commands): Mention "info static-tracepoint-markers" and
1052 "strace".
1053 * breakpoint.c (is_marker_spec): New.
1054 (is_tracepoint): Handle static tracepoints.
1055 (validate_commands_for_breakpoint): Static tracepoints can't do
1056 while-stepping.
1057 (static_tracepoints_here): New.
1058 (bpstat_what): Handle static tracepoints.
1059 (print_one_breakpoint_location, allocate_bp_location, mention):
1060 Ditto.
1061 (create_breakpoint_sal): Ditto.
1062 (decode_static_tracepoint_spec): New.
1063 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
1064 `type_wanted'. Adjust. Handle static tracepoint marker
1065 locations.
1066 (break_command_1): Adjust.
1067 (update_static_tracepoint): New.
1068 (update_breakpoint_locations): Handle static tracepoints.
1069 (breakpoint_re_set_one): Handle static tracepoint marker
1070 locations.
1071 (disable_command, enable_command): Handle static tracepoints.
1072 (trace_command, ftrace_command): Adjust.
1073 (strace_command): New.
1074 (create_tracepoint_from_upload): Adjust.
1075 (save_breakpoints): Handle static tracepoints.
1076 (_initialize_breakpoint): Install the "strace" command.
1077 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
1078 (struct breakpoint): New fields static_trace_marker_id and
1079 static_trace_marker_id_idx.
1080 (breakpoints_here_p): Declare.
1081 (create_breakpoint): Adjust.
1082 (static_tracepoints_here): Declare.
1083 * remote.c (struct remote_state) <static_tracepoints>: New field.
1084 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
1085 (remote_static_tracepoint_marker_at): New.
1086 (remote_static_tracepoint_markers_by_strid): New.
1087 (remote_static_tracepoint_feature): New.
1088 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
1089 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
1090 (remote_supports_static_tracepoints): New.
1091 (remote_download_tracepoint): Download static tracepoints.
1092 (init_remote_ops): Install remote_static_tracepoint_marker_at and
1093 remote_static_tracepoint_markers_by_strid.
1094 (_initialize_remote): Install set|show remote static-tracepoints,
1095 and set|show remote read-sdata-object commands.
1096 * target.c (update_current_target): Inherit and default
1097 to_static_tracepoint_marker_at, and
1098 to_static_tracepoint_markers_by_strid.
1099 * target.h (static_tracepoint_marker): Forward declare.
1100 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
1101 (static_tracepoint_marker_p): New typedef.
1102 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
1103 (struct target_ops): New fields to_static_tracepoint_marker_at and
1104 to_static_tracepoint_markers_by_strid.
1105 (target_static_tracepoint_marker_at)
1106 (target_static_tracepoint_markers_by_strid): New.
1107 * tracepoint.c: Include source.h.
1108 (validate_actionline): Handle $_sdata.
1109 (struct collection_list): New field strace_data.
1110 (add_static_trace_data): New.
1111 (clear_collection_list): Clear strace_data.
1112 (stringify_collection_list): Account for a possible static trace
1113 data collection.
1114 (encode_actions_1): Encode an $_sdata collection.
1115 (parse_tracepoint_definition): Handle static tracepoints.
1116 (parse_static_tracepoint_marker_definition): New.
1117 (release_static_tracepoint_marker): New.
1118 (print_one_static_tracepoint_marker): New.
1119 (info_static_tracepoint_markers_command): New.
1120 (sdata_make_value): New.
1121 (_initialize_tracepoint): Create the $_sdata convenience variable.
1122 Add the "info static-tracepoint-markers" command.
1123 Mention $_sdata in the "collect" command's help output.
1124 * tracepoint.h (struct static_tracepoint_marker): New.
1125 (parse_static_tracepoint_marker_definition)
1126 (release_static_tracepoint_marker): Declare.
1127 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
1128 * python/py-breakpoint.c (bppy_new): Adjust.
1129
aac63f0f
JB
11302010-06-30 Joel Brobecker <brobecker@adacore.com>
1131
1132 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
1133 including Python.h.
1134
e68994a7
DE
11352010-06-29 Doug Evans <dje@google.com>
1136
3863f96c
DE
1137 PR gdb/11702
1138 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
1139 DW_AT_external is present.
1140
254e6b9e
DE
1141 PR gdb/11702
1142 * NEWS: Add entry.
1143 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
1144 create a symbol for the field and record the value.
1145 (new_symbol): Handle DW_TAG_member.
1146 * gdbtypes.c (field_is_static): Remove FIXME.
1147 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
1148 only ignore LOC_CONST symbols that are enums.
1149
6e70227d
DE
1150 * dwarf2read.c: Remove trailing whitespace.
1151
e68994a7
DE
1152 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
1153 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
1154 (struct main_type, field loc): Delete dwarf_block.
1155 (FIELD_DWARF_BLOCK): Delete.
1156 (SET_FIELD_DWARF_BLOCK): Delete.
1157 (TYPE_FIELD_DWARF_BLOCK): Delete.
1158 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
1159 Update.
1160
a480d2f6
HZ
11612010-06-29 Hui Zhu <teawater@gmail.com>
1162
1163 * record.c (set_record_pic_cmdlist,
1164 show_record_pic_cmdlist): New variables.
1165 (set_record_pic_command,
1166 show_record_pic_command): New functions.
1167 (record_pic_function, record_pic_line, record_pic_enum,
1168 set_record_pic_type, record_pic_hide_nofunction,
1169 record_pic_hide_nosource, record_pic_hide_same): New variables.
1170 (record_pic_fputs): New function.
1171 (function_list, node_list, edge_list): New struct.
1172 (function_list, node_list, edge_list): New variables.
1173 (record_pic_cleanups, record_pic_node,
1174 record_pic_edge, cmd_record_pic): New functions.
1175 (_initialize_record): Add new commands for record pic.
1176
a0d7a4ff
JK
11772010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1178
1179 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
1180 ALLOCATE_CPLUS_STRUCT_TYPE.
1181
595939de
PM
11822010-06-28 Phil Muldoon <pmuldoon@redhat.com>
1183 Tom Tromey <tromey@redhat.com>
1184 Thiago Jung Bauermann <bauerman@br.ibm.com>
1185
1186 * value.c (pack_unsigned_long): New function.
1187 (value_from_ulongest): New function.
1188 * value.h (value_from_ulongest): Declare.
1189 * python/python.c (_initialize_python): Call
1190 gdbpy_initialize_thread and gdbpy_initialize_inferior.
1191 * python/python-internal.h: Define thread_object.
1192 (gdbpy_inferiors, gdbpy_selected_thread)
1193 (frame_info_to_frame_object, create_thread_object)
1194 (find_thread_object, find_inferior_object)
1195 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
1196 (gdbpy_is_value_object, get_addr_from_python): Declare.
1197 * python/py-value.c (builtin_type_upylong): Define.
1198 (convert_value_from_python): Add logic for ulongest.
1199 (gdbpy_is_value_object): New function.
1200 * python/py-utils.c (get_addr_from_python): New function.
1201 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
1202 (gdbpy_selected_frame): Use PyObject over frame_info.
1203 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
1204 py-infthread.
1205 (SUBDIR_PYTHON_SRCS): Likewise.
1206 (py-inferior.o): New Rule.
1207 (py-infthread.o): New Rule.
1208 * python/py-inferior.c: New File.
1209 * python/py-infthread.c: New File.
1210
98751a41
JK
12112010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1212
1213 * c-typeprint.c (c_type_print_base): For no fields check include also
1214 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
1215 * dwarf2read.c (struct typedef_field_list)
1216 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
1217 (dwarf2_add_typedef): New.
1218 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
1219 Copy also FI.TYPEDEF_FIELD_LIST.
1220 * gdbtypes.h (struct typedef_field)
1221 (struct cplus_struct_type) <typedef_field, typedef_field_count>
1222 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
1223 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
1224
41f62f39
JK
12252010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1226
1227 * cp-namespace.c (cp_lookup_nested_type): New variable
1228 concatenated_name. Turn the current return condition into a reverse
1229 one. Call also lookup_static_symbol_aux on the constructed qualified
1230 name.
1231 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
1232 other files into a called ...
1233 (lookup_static_symbol_aux): ... new function here.
1234 * symtab.h (lookup_static_symbol_aux): New prototype.
1235 * valops.c (value_maybe_namespace_elt): Call also
1236 lookup_static_symbol_aux if we failed otherwise.
1237
af53d231
JK
12382010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1239
1240 Fix PR c++/11703 and PR gdb/1448.
1241 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
1242 FIRST_ITER check.
1243
9655fd1a
JK
12442010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1245
1246 Fix modification of cplus_struct_default.
1247 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
1248 Call ALLOCATE_CPLUS_STRUCT_TYPE.
1249 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
1250
9279c692
JB
12512010-06-28 Joel Brobecker <brobecker@adacore.com>
1252
1253 * NEWS: Add entry announcing the python directory.
1254
d3f41bb1
TT
12552010-06-28 Tom Tromey <tromey@redhat.com>
1256
1257 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
1258
23e7acfb
DE
12592010-06-28 Doug Evans <dje@google.com>
1260
1261 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
1262 All callers updated.
1263
6036c742
JK
12642010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1265
1266 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
1267 obstack_begin after each obstack_free.
1268
9f18a3b3
DE
12692010-06-27 Doug Evans <dje@google.com>
1270
1596cb5d
DE
1271 * value.c (value_static_field): Use `switch' instead of `if'.
1272 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
1273
9f18a3b3
DE
1274 * valops.c (search_struct_field): Fix typo in error message.
1275
43dabe42
UW
12762010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
1277
1278 * dwarf2expr.c (execute_stack_op): Place preprocessor
1279 directives at the start of the source line.
1280
0f3bb72e
PH
12812010-06-25 Paul Hilfinger <hilfinger@adacore.com>
1282
6036c742
JK
1283 * defs.h (make_command_stats_cleanup): Declare.
1284 (set_display_time): Declare.
1285 (set_display_space): Declare.
1286 * event-top.c (command_handler): Use make_command_stats_cleanup.
1287 * main.c (display_time, display_space): Move definitions to utils.c.
1288 (captured_main): Use make_command_stats_cleanup to get start-up
1289 statistics.
1290 Use set_display_time and set_display_space for processing OPT_STATISTICS
1291 case.
1292 * maint.c (maintenance_time_display): Use set_display_time.
1293 (maintenance_space_display): Use set_display_space.
1294 * top.c (execute_command): Remove obsolete 'maint time' code.
1295 (command_loop): Use make_command_stats_cleanup.
1296 * utils.c (struct cmd_stats): Structure for storing initial time
1297 and space usage.
1298 (display_time, display_space): Move definitions here from utils.c.
1299 (set_display_time): New function.
1300 (set_display_space): New function.
1301 (make_command_stats_cleanup): New function.
1302 (report_command_stats): New auxiliary function for
1303 make_command_stats_cleanup.
0f3bb72e 1304
070c8028
UW
13052010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1306
1307 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
1308 hosts where CORE_ADDR is long long.
1309
bc9f0842
TT
13102010-06-25 Tom Tromey <tromey@redhat.com>
1311
1312 PR python/10808:
1313 * python/python.c (execute_gdb_command): Add keywords. Accept
1314 "to_string" argument.
1315 (struct restore_ui_file_closure): New.
1316 (restore_ui_file): New function.
1317 (make_cleanup_restore_ui_file): Likewise.
1318 (GdbMethods) <execute>: Update.
1319
c0cc4c83
UW
13202010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1321
1322 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
1323 during inferior call stack frame setup.
1324
f1d8ee66
UW
13252010-06-25 Ken Werner <ken.werner@de.ibm.com>
1326
1327 * solib-spu.c: Include "exception.h".
1328 (ocl_program_data_key): New variable.
1329 (append_ocl_sos): New function.
1330 (ocl_enable_break): Likewise.
1331 (spu_current_sos): Call append_ocl_sos.
1332 (spu_solib_loaded): Call ocl_enable_break.
1333 (_initialize_spu_solib): Register ocl_program_data_key.
1334
19c0c0f8
UW
13352010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1336
1337 * cp-support.c (reset_directive_searched): New function.
1338 (make_symbol_overload_list_using): Prevent recursive calls.
1339
0f6a939d
PM
13402010-06-25 Phil Muldoon <pmuldoon@redhat.com>
1341
1342 * printcmd.c (print_variable_and_value): Print error message on
1343 caught exception.
1344
f2c7657e
UW
13452010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1346
1347 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
1348 of stack values.
1349 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
1350 "value" member.
1351 (dwarf_expr_push): Change input type to ULONGEST.
1352 (dwarf_expr_fetch): Change return type to ULONGEST.
1353 (dwarf_expr_fetch_address): Add prototype.
1354 (dwarf2_read_address): Remove prototype.
1355 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
1356 Truncate stack values to ctx->addr_size bytes.
1357 (dwarf_expr_fetch): Change return value to ULONGEST.
1358 (dwarf_expr_fetch_address): New function.
1359 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
1360 when appropriate. Update for struct dwarf_expr_piece changes.
1361 (dwarf2_read_address): Remove.
1362 (unsigned_address_type): Remove.
1363 (signed_address_type): Remove.
1364 (execute_stack_op): Use dwarf_expr_fetch_address instead of
1365 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
1366 values. Perform operations on ULONGEST instead of on GDB values,
1367 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
1368 values and DW_OP_deref results as unsigned integers.
1369 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
1370 changes.
1371 (write_pieced_value): Likewise.
1372 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
1373 dwarf_expr_fetch when appropriate.
1374 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
1375 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
1376 instead of dwarf_expr_fetch when appropriate.
1377
b1d61bc9
PM
13782010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
1379
1380 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
1381
b14285f6
JB
13822010-06-24 Joel Brobecker <brobecker@adacore.com>
1383
1384 * python/python.c (_initialize_python): Add new "constant"
1385 PYTHONDIR in gdb module. Insert this path at the head of
1386 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
1387 exec its __init__.py script if it exists in that directory.
1388
fd60dc69
KB
13892010-06-24 Kevin Buettner <kevinb@redhat.com>
1390
1391 * rx-tdep.c (RX_ACC_REGNUM): Define.
1392 (RX_NUM_REGS): Redefine to 26.
1393 (rx_register_name): Add register "acc". Change order of several
1394 registers. Change name of "vct" register to "fintv" to match RX
1395 documentation.
1396 (rx_register_type): Add case for RX_ACC_REGNUM.
1397
18430289
TT
13982010-06-24 Tom Tromey <tromey@redhat.com>
1399
1400 * psymtab.c (lookup_partial_symbol): Mark definition as static.
1401
40618926
JK
14022010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1403 Tom Tromey <tromey@redhat.com>
1404
1405 Fix GDB startup on readonly filesystem.
1406 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
1407
628fe4e4
JK
14082010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1409 Pedro Alves <pedro@codesourcery.com>
1410
1411 Fix PR 9436.
1412 * breakpoint.c (handle_jit_event): New function.
1413 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
1414 jit, err, table and bs_class. New variables shlib_event, jit_event,
1415 this_action and bptype. Change bs_class assignments to this_action
1416 assignments. new unhandled bptype internal error. Move here
1417 shlib_event and jit_event handling from handle_inferior_event.
1418 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
1419 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
1420 BPSTAT_WHAT_CHECK_JIT.
1421 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
1422 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
1423 (handle_inferior_event): Reinitialize frame and gdbarch after
1424 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
1425 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
1426 gdbarch when frame gets reinitialized.
1427
f1421989
HZ
14282010-06-24 Hui Zhu <teawater@gmail.com>
1429
1430 * printcmd.c (ui_printf): New function.
1431 (printf_command): Call ui_printf.
1432 (_initialize_printcmd): New command "eval".
1433
d03285ec
UW
14342010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
1435
1436 * infrun.c (handle_inferior_event): Handle presence of single-step
1437 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
1438 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
1439 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
1440 * breakpoint.c (detach_single_step_breakpoints): New function.
1441 (detach_breakpoints): Call it.
1442 (cancel_single_step_breakpoints): New function.
1443 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
1444
1445 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
1446 (spu_gdbarch_init): Install it.
1447
38f6b338
JK
14482010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1449
1450 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
1451 * configure: Regenerate.
1452
bb08c432
HZ
14532010-06-22 Hui Zhu <teawater@gmail.com>
1454
1455 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
1456 (i386_process_record): Ditto.
1457 * record.c (record_memory_query): New variable.
1458 (_initialize_record): New command "set record memory-query".
1459 * record.h (record_memory_query): New extern.
1460
b55078be
DE
14612010-06-21 Doug Evans <dje@google.com>
1462
1463 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
1464 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
1465 (i386_syscall_p): Change type of lengthp to int.
1466 (i386_displaced_step_fixup): Handle kernels that run one past a
1467 syscall insn.
1468 * i386-linux-tdep.c (i386_linux_init_abi): Use
1469 i386_displaced_step_copy_insn instead of
1470 simple_displaced_step_copy_insn.
1471
75079b2b
TT
14722010-06-21 Tom Tromey <tromey@redhat.com>
1473
1474 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
1475 (dwarf_type_encoding_name): Likewise.
1476
b00fdb78
TT
14772010-06-21 Tom Tromey <tromey@redhat.com>
1478
1479 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
1480 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
1481 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
1482 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
1483 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
1484 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
1485 * dwarf2read.c (tag_type_to_type): Create a new error type on
1486 failure.
1487 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
1488 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
1489
84951ab5
MS
14902010-06-21 Michael Snyder <msnyder@vmware.com>
1491
1492 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
1493 not add_abbrev_prefix_cmd, for "enable breakpoints".
1494
d4a087c7
UW
14952010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
1496
1497 * dwarf2loc.c (find_location_expression): Add relocation offset
1498 to base-address-selection entry base addresses. Read addresses
1499 (and offsets) as signed/unsigned integers, depending on the
1500 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
1501 (loclist_describe_location): Likewise.
1502 (disassemble_dwarf_expression): Read DW_OP_addr operand as
1503 unsigned integer. Do not call dwarf2_read_address.
1504 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
1505
13def385
UW
15062010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
1507
1508 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
1509 value instead of hard-coded SPU_LS_SIZE.
1510 (spu_software_single_step): Likewise.
1511 * spu-tdep.h (SPU_LS_SIZE): Remove.
1512
d2ed6730
UW
15132010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
1514
1515 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
1516 limit on local store memory accesses.
1517 * spu-linux-nat.c (spu_xfer_partial): Likewise.
1518 * spu-tdep.c (spu_lslr): Remove.
1519 (spu_pointer_to_address): Do not truncate addresses.
1520 (spu_integer_to_address): Likewise.
1521 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
1522 * spu-tdep.h: Add comments.
1523 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
1524 (SPU_OVERLAY_LMA): Define.
1525
6aed2dbc
SS
15262010-06-18 Stan Shebs <stan@codesourcery.com>
1527
a61408f8
SS
1528 * osdata.c (get_osdata): Warn separately if target does not report
1529 type list.
1530 (info_osdata_command): Allow empty type, report error if target
1531 does not return available types of OS data.
1532 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
1533 types if no annex supplied.
1534
6aed2dbc
SS
1535 * thread.c (thread_id_make_value): Make a value representing the
1536 current thread.
1537 (_initialize_thread): Create $_thread.
1538
ec61707d
JB
15392010-06-17 Joel Brobecker <brobecker@adacore.com>
1540
1541 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
1542 last local variable declaration. No real code change.
1543
60606b2c
TT
15442010-06-17 Tom Tromey <tromey@redhat.com>
1545
1546 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
1547 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
1548 temporary obstack.
1549
65d79d4b
SDJ
15502010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
1551 Jan Kratochvil <jan.kratochvil@redhat.com>
1552
1553 * breakpoint.c: Include parser-defs.h.
1554 (watchpoint_exp_is_const): New function.
1555 (watch_command_1): Call watchpoint_exp_is_const to check
1556 if the expression is constant.
1557
0407b3f1
AS
15582010-06-15 Andreas Schwab <schwab@linux-m68k.org>
1559
1560 * configure.ac: Check for RDYNAMIC also for cross builds.
1561 * configure: Regenerate.
1562
98d64339
PA
15632010-06-15 Pedro Alves <pedro@codesourcery.com>
1564
1565 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
1566 (SFILES): Remove solib-null.c, add solib-target.c.
1567 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
1568 (ALLDEPFILES): Remove solib-target.c.
1569 * solib-target.c (_initialize_solib_target): Set
1570 current_target_so_ops to solib_target_so_ops if not already set.
1571 * solib-null.c: Delete.
1572
6a271cae
PA
15732010-06-14 Pedro Alves <pedro@codesourcery.com>
1574
1575 * NEWS: Mention GDBserver's JIT compilation of tracepoint
1576 bytecode.
1577
1e9beacb
UW
15782010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
1579
1580 * cp-valprint.c (cp_print_static_field): Members of
1581 dont_print_stat_array_obstack are of type "struct type *".
1582 (_initialize_cp_valprint): Likewise.
1583
21a176fb
UW
15842010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
1585
1586 * frame.c (frame_register_unwind): Do not access contents
1587 of "optimized out" unwound register value.
1588
25b524e8
JK
15892010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1590
1591 * ada-lang.h (ada_print_type): Make varstring const.
1592 * ada-typeprint.c (print_func_type): Make name const.
1593 (ada_print_type): Make varstring const.
1594 * c-lang.h (c_print_type): Make varstring const.
1595 * c-typeprint.c (c_print_type): Likewise.
1596 * f-lang.h (f_print_type): Likewise.
1597 * f-typeprint.c (f_print_type): Likewise.
1598 * jv-lang.h (java_print_type): Likewise.
1599 * jv-typeprint.c (java_print_type): Likewise.
1600 * language.c (unk_lang_print_type): Likewise.
1601 * language.h (struct language_defn) <la_print_type>: Likewise.
1602 * m2-lang.h (m2_print_type): Likewise.
1603 * m2-typeprint.c (m2_print_type): Likewise.
1604 * p-lang.h (pascal_print_type): Likewise.
1605 * p-typeprint.c (pascal_print_type): Likewise.
1606
d914c394
SS
16072010-06-11 Stan Shebs <stan@codesourcery.com>
1608
1609 Add per-operation permission flags.
1610
1611 * target.h (struct target_ops): New method to_set_permissions.
1612 (target_set_permissions): New macro.
1613 (target_insert_breakpoint): Change macro to function.
1614 (target_remove_breakpoint): Ditto.
1615 (target_stop): Ditto.
1616 (may_write_registers): Declare.
1617 (may_write_memory): Declare.
1618 (may_insert_breakpoints): Declare.
1619 (may_insert_tracepoints): Declare.
1620 (may_insert_fast_tracepoints): Declare.
1621 (may_stop): Declare.
1622 * target.c (may_write_registers, may_write_registers_1): New globals.
1623 (may_write_memory, may_write_memory_1): New globals.
1624 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
1625 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
1626 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
1627 globals.
1628 (may_stop, may_stop_1): New global.
1629 (target_xfer_partial): Test for write permission.
1630 (target_store_registers): Ditto.
1631 (target_insert_breakpoint): New function.
1632 (target_remove_breakpoint): New function.
1633 (target_stop): New function.
1634 (_initialize_targets): Add new set/show variables.
1635 (set_write_memory_permission): New function.
1636 (update_target_permissions): New function.
1637 (set_target_permissions): New function.
1638 (update_current_target): Default to_set_permissions.
1639 (_initialize_targets): Use new globals and setter function.
1640 * tracepoint.c (start_tracing): Test for permission.
1641 * inferior.h (update_observer_mode): Declare.
1642 * infrun.c (non_stop_1): Define earlier.
1643 (observer_mode, observer_mode_1): New globals.
1644 (set_observer_mode, show_observer_mode): New functions.
1645 (update_observer_mode): New function.
1646 (_initialize_infrun): Define "set observer" command.
1647 * remote.c (PACKET_QAllow): New optional packet.
1648 (remote_protocol_features): Add QAllow.
1649 (remote_set_permissions): New function.
1650 (remote_start_remote): Call it.
1651 (init_remote_ops): Add it to target vector.
1652 (_initialize_remote): Add config command for QAllow.
1653
aec5aa8b
TT
16542010-06-11 Tom Tromey <tromey@redhat.com>
1655
1656 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
1657 DW_AT_vtable_elem_location even when GCC extension is seen.
1658
0e03807e
TT
16592010-06-11 Tom Tromey <tromey@redhat.com>
1660
1661 PR gdb/9977, PR exp/11636:
1662 * value.h (value_offset): Update.
1663 (struct lval_funcs) <check_validity>: New field.
1664 <copy_closure>: Make argument const.
1665 (value_computed_closure): Update.
1666 (value_contents_for_printing): Declare.
1667 (value_bits_valid): Likewise.
1668 (val_print): Likewise.
1669 (set_value_component_location): Update.
1670 (value_entirely_optimized_out): Declare.
1671 * value.c (value_offset): Argument now const.
1672 (require_not_optimized_out): New function.
1673 (value_contents_for_printing): New function.
1674 (value_contents_all): Call require_not_optimized_out.
1675 (value_contents): Likewise.
1676 (value_bits_valid): New function.
1677 (value_computed_closure): Argument now const.
1678 (set_value_component_location): Make 'whole' argument const.
1679 (value_entirely_optimized_out): New function.
1680 (value_bitsize): Argument now 'const'.
1681 (value_bitpos): Likewise.
1682 (value_type): Likewise.
1683 * valprint.h (val_print_array_elements): Update.
1684 * valprint.c (val_print): Add 'val' argument. Use
1685 valprint_check_validity.
1686 (valprint_check_validity): New function.
1687 (value_check_printable): Use value_entirely_optimized_out.
1688 (common_val_print): Update.
1689 (value_print): Likewise.
1690 (val_print_array_elements): Add 'val' argument.
1691 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
1692 value_bits_valid. Reinit frame cache for lval_computed.
1693 * sh64-tdep.c (sh64_do_register): Update.
1694 * scm-valprint.c (scm_val_print): Add 'val' argument.
1695 * scm-lang.h (scm_val_print): Update.
1696 * python/python.h (apply_val_pretty_printer): Update.
1697 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
1698 argument. Call set_value_component_location.
1699 * printcmd.c (print_scalar_formatted): Update.
1700 * p-valprint.c (pascal_val_print): Add 'val' argument.
1701 (pascal_object_print_value_fields): Likewise.
1702 (pascal_object_print_value): Likewise.
1703 (pascal_object_print_static_field): Update.
1704 * p-lang.h (pascal_val_print): Update.
1705 (pascal_object_print_value_fields): Update.
1706 * mt-tdep.c (mt_registers_info): Update.
1707 * mi/mi-main.c (get_register): Update.
1708 (mi_cmd_data_evaluate_expression): Use common_val_print.
1709 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
1710 (m2_print_unbounded_array): Likewise.
1711 (m2_val_print): Likewise.
1712 * m2-lang.h (m2_val_print): Update.
1713 * language.h (struct language_defn) <la_val_print>: Add 'val'
1714 argument.
1715 (LA_VAL_PRINT): Likewise.
1716 * language.c (unk_lang_val_print): Add 'val' argument.
1717 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
1718 (java_val_print): Likewise.
1719 * jv-lang.h (java_val_print): Add 'val' argument.
1720 * infcmd.c (default_print_registers_info): Update.
1721 * f-valprint.c (f77_print_array_1): Add 'val' argument.
1722 (f77_print_array): Likewise.
1723 (f_val_print): Likewise.
1724 * f-lang.h (f_val_print): Add 'val' argument.
1725 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
1726 value_bitpos.
1727 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
1728 set_value_optimized_out.
1729 (write_pieced_value): Use value_bitsize and value_bitpos.
1730 <default>: Don't exit loop.
1731 (check_pieced_value_validity): New function.
1732 (pieced_value_funcs): Reference check_pieced_value_validity,
1733 check_pieced_value_invalid.
1734 (copy_pieced_value_closure): Update.
1735 (check_pieced_value_bits): New function.
1736 (check_pieced_value_invalid): New function.
1737 * d-valprint.c (dynamic_array_type): Add 'val' argument.
1738 (d_val_print): Likewise.
1739 * d-lang.h (d_val_print): Update.
1740 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
1741 (cp_print_value_fields_rtti): Likewise.
1742 (cp_print_value): Likewise.
1743 (cp_print_static_field): Update.
1744 * c-valprint.c (c_val_print): Add 'val' argument.
1745 (c_value_print): Update.
1746 * c-lang.h (c_val_print): Update.
1747 (cp_print_value_fields): Likewise.
1748 (cp_print_value_fields_rtti): Likewise.
1749 * ada-valprint.c (struct ada_val_print_args): Remove.
1750 (val_print_packed_array_elements): Add 'val' argument.
1751 (ada_val_print): Likewise. Rewrite.
1752 (ada_val_print_stub): Remove.
1753 (ada_val_print_array): Add 'val' argument.
1754 (ada_val_print_1): Likewise.
1755 (print_variant_part): Likewise.
1756 (ada_value_print): Update.
1757 (print_record): Add 'val' argument.
1758 (print_field_values): Likewise.
1759 * ada-lang.h (ada_val_print): Update.
1760
3cf03773
TT
17612010-06-11 Tom Tromey <tromey@redhat.com>
1762
1763 * vec.h (VEC_cleanup): New macro.
1764 (DEF_VEC_ALLOC_FUNC_I): Update.
1765 (DEF_VEC_ALLOC_FUNC_P): Likewise.
1766 (DEF_VEC_ALLOC_FUNC_O): Likewise.
1767 * dwarf2loc.c (struct axs_var_loc): Remove.
1768 (unimplemented): New function.
1769 (translate_register): Likewise.
1770 (access_memory): Likewise.
1771 (compile_dwarf_to_ax): Likewise.
1772 (dwarf2_tracepoint_var_loc): Remove.
1773 (dwarf2_tracepoint_var_access): Likewise.
1774 (dwarf2_tracepoint_var_ref): Likewise.
1775 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
1776 (loclist_tracepoint_var_ref): Likewise.
1777 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
1778 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
1779 require_composition. No longer static.
1780 (execute_stack_op): Update.
1781 * ax-gdb.h (trace_kludge): Declare.
1782
2bdf28a0
JK
17832010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1784
1785 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
1786 (should_be_inserted): Return zero also on NULL OWNER.
1787 (breakpoint_program_space_exit): New OWNER comment.
1788 (insert_breakpoint_locations): Extend comment for OWNER.
1789 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
1790 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
1791 New OWNER comment.
1792 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
1793 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
1794 (bpstat_check_location): New assert on OWNER.
1795 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
1796 and B initializations to the code block. New assert on them.
1797 (print_one_breakpoint_location): New OWNER comment.
1798 (watchpoint_locations_match): Assert on OWNER.
1799 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
1800 initializations to the code block. New assert on OWNER.
1801 (set_breakpoint_location_function): New assert on OWNER.
1802 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
1803 (bp_location_compare, update_global_location_list)
1804 (update_global_location_list): New OWNER comment.
1805
5b9a19af
UW
18062010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
1807
1808 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
1809
669211f5
UW
18102010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
1811
1812 * config/nm-linux.h (struct target_ops): Remove forward declaration.
1813 (lin_thread_get_thread_signals): Remove prototype.
1814 (GET_THREAD_SIGNALS): Remove.
1815 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
1816 * linux-thread-db.c (check_thread_signals): Directly call
1817 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
1818
b7a8b4ef
UW
18192010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
1820
1821 * gregset.h (GDB_FPXREGSET_T): Remove.
1822 (gdb_fpxregset_t): Likewise.
1823 (supply_fpxregset): Remove prototype.
1824 (fill_fpxregset): Likewise.
1825 * i386-linux-nat.c (supply_fpxregset): Remove.
1826 (fill_fpxregset): Likewise.
1827 (fetch_fpxregs): Inline supply_fpxregset call.
1828 (store_fpxregs): Inline fill_fpxregset call.
1829
1830 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
1831 * config/i386/nm-linux.h: Remove file.
1832
82892036
MS
18332010-06-09 Michael Snyder <msnyder@vmware.com>
1834
1835 * target.c (update_current_target): Fix spelling error in comment.
1836 (target_mourn_inferior): Fix spelling error in error message.
1837
5ddb52fa
PH
18382010-06-08 Paul Hilfinger <hilfingr@adacore.com>
1839
1840 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
1841 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
1842
0f2caa1b
MS
18432010-06-08 Michael Snyder <msnyder@vmware.com>
1844
1845 * remote.c (remote_close): Set inferior_ptid to null_ptid.
1846
3bebe2f2
JK
18472010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1848
1849 * configure.ac <"${have_libpython}" != no>: New workaround of
1850 python#4434.
1851 * configure: Regenerate.
1852
eaaffdf4
HZ
18532010-06-08 Hui Zhu <teawater@gmail.com>
1854
1855 * record.c (record_wait): Move signal out of replay code.
1856
5c631832
JK
18572010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1858
1859 Fix PR 10640.
1860 * dwarf2-frame.c (no_dwarf_call): New function.
1861 (execute_stack_op): Set CTX->DWARF_CALL.
1862 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
1863 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
1864 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
1865 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
1866 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
1867 (needs_frame_dwarf_call): New function.
1868 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
1869 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
1870 Update the comment. Move variables die, offset and error call to ...
1871 (follow_die_ref): ... a new function.
1872 (dwarf2_fetch_die_location_block): New function.
1873 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
1874
17ea53c3
JK
18752010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1876
1877 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
1878 (dwarf_expr_tls_address): Use per_cu instead of objfile.
1879 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
1880 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
1881 this change.
1882 (struct needs_frame_baton): New field per_cu.
1883 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
1884 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
1885
245040d7
SW
18862010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
1887
1888 * cp-support.c (make_symbol_overload_list_namespace): Only search
1889 static and global blocks.
1890 (make_symbol_overload_list_block): New function.
1891 (make_symbol_overload_list): Separate namespace search from block
1892 search.
1893 (make_symbol_overload_list_qualified): Use
1894 make_symbol_overload_list_block.
1895
4c3376c8
SW
18962010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
1897
1898 * value.h: Created oload_search_type enum.
1899 (find_overload_match): Use oload_search_type enum.
1900 * valops.c (find_overload_match): Support combined member and
1901 non-member search.
1902 * eval.c (evaluate_subexp_standard): Calls to
1903 find_overload_match now use oload_search_type enum.
1904 (oload_method_static): Verify index is a proper value.
1905 * valarith.c (value_user_defined_cpp_op): Search for and handle
1906 both member and non-member operators.
1907 (value_user_defined_cpp_op): New function.
1908 (value_user_defined_op): New function.
1909 (value_x_unop): Use value_user_defined_op.
1910 (value_x_binop): Ditto.
1911 * cp-support.c (make_symbol_overload_list_using): Added block
1912 iteration.
1913 Add check for namespace aliases and imported declarations.
1914
ee55da67
JK
19152010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1916
1917 * breakpoint.h (owner): Extend the comment.
1918
1a2ab13a
JK
19192010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1920
1921 Clear stale specific bp_location from former whole breakpoint.
1922 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
1923 code ...
1924 (free_bp_location): ... here. Rename there the called function to
1925 bpstat_remove_bp_location_callback.
1926 (bpstat_remove_breakpoint_callback): Rename to ...
1927 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
1928 to struct bp_location. Change the called function to
1929 bpstat_remove_bp_location. Create new declaration for the function.
1930 (bpstat_remove_breakpoint): Rename to ...
1931 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
1932 code for the new parameter type.
1933
16d6b4b7
NS
19342010-06-07 Nathan Sidwell <nathan@codesourcery.com>
1935
1936 * README: Make version-agnostic.
1937
7e314c57
JK
19382010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1939
1940 Fix duplicate types for single DIE.
1941 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
1942 set_die_type.
1943 (read_array_type): Remove type initialization. Recheck get_die_type
1944 after initial die_type. Move set_die_type before set_descriptive_type.
1945 (read_set_type): New variable domain_type. Recheck get_die_type after
1946 initial die_type. Move attr initialization later.
1947 (read_tag_pointer_type, read_tag_reference_type): New variable
1948 target_type. Recheck get_die_type after initial die_type.
1949 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
1950 die_type and die_containing_type.
1951 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
1952 Recheck get_die_type after initial die_type.
1953 (read_subrange_type): Recheck get_die_type after initial die_type.
1954 Move set_die_type before set_descriptive_type.
1955 (set_die_type): Extend the function comment. Call complaint if DIE has
1956 some type already set.
1957
2f296114
VP
19582010-06-05 Vladimir Prus <vladimir@codesourcery.com>
1959
1960 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
1961 for current naming of thread groups (iN, not N).
1962
554794dc
SDJ
19632010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
1964
1965 * ada-lang.c (ada_operator_length): Constify `struct expression'.
1966 * parse.c (operator_length): Likewise.
1967 (operator_length_standard): Likewise.
1968 * parser-defs.h (operator_length): Likewise.
1969 (operator_length_standard): Likewise.
1970 (struct exp_descriptor <operator_length>): Likewise.
1971
967cf477
DE
19722010-06-04 Doug Evans <dje@google.com>
1973
bddaacb9 1974 Add support for enabling/disabling individual pretty-printers.
967cf477
DE
1975 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
1976 * python/python-internal.h (gdbpy_enabled_cst): Declare.
1977 * python/python.c (gdbpy_enabled_cst): Define.
1978 (_initialize_python): Initialize gdbpy_enabled_cst.
1979 * NEWS: Add entry.
1980
2dec564e
JK
19812010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1982
1983 * breakpoint.c (update_global_location_list): Fix comment typo.
1984
44b5680a
HZ
19852010-06-04 Hui Zhu <teawater@gmail.com>
1986
1987 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
1988
e7a30f46
DE
19892010-06-03 Doug Evans <dje@google.com>
1990
1991 * configure.ac: Don't fail if python is unusable when
1992 configured with --with-python=auto.
1993 * configure: Regenerate.
1994
84b4420f
SW
19952010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
1996
1997 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
1998
df178451
PM
19992010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
2000
2001 * valprint.h (get_array_bounds): Change low and high parameter types
2002 to LONGEST *.
0407b3f1 2003 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
df178451
PM
2004 compute bounds.
2005 (val_print_array_elements): Adapt to change above.
2006 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
2007 * p-valprint.c (pascal_val_print): Likewise.
2008
fd5700c7
JK
20092010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2010
2011 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
2012 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
2013 .F08.
2014
f55ee35c
JK
20152010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2016
2017 Support DW_TAG_module as separate namespaces.
2018 * dwarf2read.c (typename_concat): New parameter physname.
2019 (read_module_type): New function and declaration.
2020 (scan_partial_symbols): Scan also DW_TAG_module children.
2021 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
2022 to typename_concat backward compatible physname value 0.
2023 (partial_die_full_name, read_namespace_type): Pass to typename_concat
2024 backward compatible physname value 0.
2025 (add_partial_module, read_module): Remove FIXME comment.
2026 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
2027 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
2028 DIEs under DW_TAG_module.
2029 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
2030 DW_AT_MIPS_linkage_name first, extend it for language_fortran
2031 && physname and return there instead of just setting NAME. Extend
2032 the main block for language_fortran. Pass physname parameter to the
2033 typename_concat call.
2034 (read_import_statement, read_func_scope, get_scope_pc_bounds)
2035 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
2036 (new_symbol): Fill in cplus_specific.demangled_name if it is still
2037 missing from SYMBOL_SET_NAMES in the language_fortran case.
2038 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
2039 variables.
2040 (read_type_die) <DW_TAG_module>: New.
2041 (MAX_SEP_LEN): Increase to 7.
2042 (typename_concat): New parameter physname. New variable lead. Support
2043 also language_fortran.
2044 * f-exp.y (yylex): Consider : also as a symbol name character class.
2045 * f-lang.c: Include cp-support.h.
2046 (f_word_break_characters, f_make_symbol_completion_list): New functions.
2047 (f_language_defn): Use cp_lookup_symbol_nonlocal,
2048 f_word_break_characters and f_make_symbol_completion_list.
2049 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
2050 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
2051 * symtab.c (symbol_init_language_specific): Support language_fortran.
2052 (symbol_find_demangled_name): New comment on language_fortran.
2053 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
2054 for language_fortran.
2055 (lookup_symbol_aux_local): Check imports also for language_fortran.
2056 (default_make_symbol_completion_list): Rename to ...
2057 (default_make_symbol_completion_list_break_on): ... this name. New
2058 parameter break_on, use it.
2059 (default_make_symbol_completion_list): New stub.
2060 * symtab.h (default_make_symbol_completion_list_break_on): New
2061 prototype.
2062
cb91c06a
JB
20632010-06-02 Joel Brobecker <brobecker@adacore.com>
2064
2065 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
2066 to error.
2067
5c315b68
JK
20682010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2069
2070 * dwarf2read.c (typename_concat): Add const to the variable sep.
2071
9eae7c52
TT
20722010-06-02 Tom Tromey <tromey@redhat.com>
2073
2074 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
2075 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
2076 type is const. Add 'def' argument. Add missing operators, remove
2077 unhandled ones.
2078 (decode_locdesc): Update.
2079 (dwarf2_always_disassemble): New global.
2080 (show_dwarf2_always_disassemble): New function.
2081 (_initialize_dwarf2_read): Add always-disassemble.
2082 (dwarf2_per_cu_offset_size): New function.
2083 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
2084 (piece_end_p): New function.
2085 (locexpr_describe_location_piece): Replace 'size' argument with
2086 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
2087 some constants. Remove errors.
2088 (disassemble_dwarf_expression): New function.
2089 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
2090 Add 'offset_size' argument.
2091 (loclist_describe_location): Change output formatting.
2092 * dwarf2expr.h (dwarf_stack_op_name): Declare.
2093
7d3fe98e
SW
20942010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
2095
2096 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
2097 anonymous type case.
2098
e77813c8
PM
20992010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
2100
2101 * dwarf2read.c (read_subrange_type): Handle missing base type
2102 according to Dwarf-2 specifications.
2103
7cf3118a
SDJ
21042010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
2105
2106 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
2107 BINOP_EXCL.
2108 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
2109 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
2110 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
2111 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
2112 UNOP_CHMAX, UNOP_CHMIN.
2113 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
2114 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
2115 UNOP_CHMIN>: Remove opcodes.
2116
ae4d0c03
PM
21172010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
2118
2119 * dwarf2read.c (read_func_scope): Do not complain for
2120 external function if bounds are not found.
2121
fa593d66
PA
21222010-06-01 Pedro Alves <pedro@codesourcery.com>
2123
2124 * NEWS: Mention gdbserver fast tracepoints support.
2125
cd44747c
PM
21262010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
2127
2128 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
2129 New macros.
2130 (windows_set_console_info): New function.
2131 (windows_create_inferior): Call windows_set_console_info
2132 if NEW_CONSOLE is true.
2133 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
2134 (_initialize_loadable): Initialize GetConsoleFontSize and
2135 GetCurrentConsoleFont.
2136
f6528abd
JK
21372010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2138
2139 * Makefile.in (RDYNAMIC): New.
2140 (SFILES): Add proc-service.list.
2141 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
2142 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
2143 * config/arm/linux.mh: Likewise.
2144 * config/i386/linux.mh: Likewise.
2145 * config/i386/linux64.mh: Likewise.
2146 * config/ia64/linux.mh: Likewise.
2147 * config/m32r/linux.mh: Likewise.
2148 * config/m68k/linux.mh: Likewise.
2149 * config/mips/linux.mh: Likewise.
2150 * config/pa/linux.mh: Likewise.
2151 * config/powerpc/linux.mh: Likewise.
2152 * config/powerpc/ppc64-linux.mh: Likewise.
2153 * config/s390/s390.mh: Likewise.
2154 * config/sparc/linux.mh: Likewise.
2155 * config/sparc/linux64.mh: Likewise.
2156 * config/xtensa/linux.mh: Likewise.
2157 * configure.ac: New RDYNAMIC on native host and GCC.
2158 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
2159 * configure: Regenerate.
2160 * proc-service.list: New.
2161
ca2a87a0
JK
21622010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2163
2164 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
2165 CONTENT.
2166
1e225492
JK
21672010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2168
2169 * linux-nat.c (linux_nat_wait_1): Do not call
2170 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
2171 TARGET_WAITKIND_SIGNALLED.
2172
e802dbe0
JB
21732010-05-27 Joel Brobecker <brobecker@adacore.com>
2174
2175 * ada-lang.c (ada_inferior_data): New struct.
2176 (ada_inferior_data): New static global.
2177 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
2178 (ada_get_tsd_type): New functions.
2179 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
2180 to look the tsd type up.
2181 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
2182 event. Set ada_inferior_data.
2183
176a6961
PA
21842010-05-27 Pedro Alves <pedro@codesourcery.com>
2185
2186 * remote.c (unpack_varlen_hex): Remove forward declaration.
2187 (remote_console_output): Make static, and add forward declaration.
2188 * remote.h: Drop FIXME comment.
2189 (unpack_varlen_hex): Declare.
2190 (remote_console_output, remote_cisco_objfile_relocate)
2191 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
2192 Delete declarations.
2193 * tracepoint.c: Include "remote.h".
2194 (unpack_varlen_hex): Delete declaration.
2195
88bfdde4
TT
21962010-05-27 Tom Tromey <tromey@redhat.com>
2197
2198 * dwarf2loc.c (struct piece_closure) <refc>: New field.
2199 (allocate_piece_closure): Initialize refc.
2200 (copy_pieced_value_closure): Use refc.
2201 (free_pieced_value_closure): Likewise.
2202
8c6363cf
TT
22032010-05-27 Tom Tromey <tromey@redhat.com>
2204
2205 * arm-tdep.c (push_stack_item): 'contents' now const.
2206 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
2207 value_contents_writeable. Introduce new temporary.
2208
7ecb917e
TT
22092010-05-27 Tom Tromey <tromey@redhat.com>
2210
2211 * findcmd.c (parse_find_args): Use value_contents, not
2212 value_contents_raw.
2213
f42a0a33
TT
22142010-05-27 Tom Tromey <tromey@redhat.com>
2215
2216 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
2217 const. Use value_contents, not value_contents_writeable.
2218
12b795ad
JB
22192010-05-27 Joel Brobecker <brobecker@adacore.com>
2220
2221 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
2222 by call to value_contents.
2223
5a2e11c7
OS
22242010-05-27 Ozkan Sezer <sezeroz@gmail.com>
2225
2226 * MAINTAINERS: Add myself for write after approval privileges.
2227
ec685c5e
DE
22282010-05-26 Doug Evans <dje@google.com>
2229
0c4a4063
DE
2230 Allow python to find its files if moved from original location.
2231 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
2232 (GDB_AC_WITH_DIR): Call it.
2233 * configure.ac: Define WITH_PYTHON_PATH if we can find the
2234 python installation directory.
2235 * config.in: Regenerate.
2236 * configure: Regenerate.
2237 * defs.h (python_libdir): Declare.
2238 * main.c (python_libdir): Define.
2239 (captured_main): Initialize python_libdir.
2240 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
2241 call Py_SetProgramName to make sure python can find its libraries
2242 and modules.
2243
ec685c5e
DE
2244 * configure.ac: Try to use python's distutils to fetch compilation
2245 parameters.
2246 * configure: Regenerate.
2247 * python/python-config.py: New file.
2248
363a6e9f
OS
22492010-05-26 Ozkan Sezer <sezeroz@gmail.com>
2250
2251 * ser-tcp.c (net_open): Check error return from socket() call by its
2252 equality to -1 not by it being negative.
2253 (net_close): Likewise.
2254
dde08ee1
PA
22552010-05-26 Pedro Alves <pedro@codesourcery.com>
2256
2257 * NEWS: Mention the `qRelocInsn' feature.
2258 * gdbarch.sh (relocate_instruction): New.
2259 * amd64-tdep.c (rip_relative_offset): New.
2260 (append_insns): New.
2261 (amd64_relocate_instruction): New.
2262 (amd64_init_abi): Install it.
2263 * i386-tdep.c (append_insns): New.
2264 (i386_relocate_instruction): New.
2265 (i386_gdbarch_init): Install it.
2266 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
2267 * gdbarch.h, gdbarch.c: Regenerate.
2268
947bb88f
TT
22692010-05-26 Tom Tromey <tromey@redhat.com>
2270
2271 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
2272 (struct dwarf2_loclist_baton) <data>: Likewise.
2273 * dwarf2loc.c (find_location_expression): Constify return type.
2274 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
2275 (dwarf2_loc_desc_needs_frame): Likewise.
2276 (loclist_read_variable): Constify.
2277 (loclist_describe_location): Likewise.
2278 (loclist_tracepoint_var_ref): Likewise.
2279
0d45f56e
TT
22802010-05-25 Tom Tromey <tromey@redhat.com>
2281
2282 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
2283 (dwarf_expr_frame_base_1): Likewise.
2284 (read_pieced_value): Update.
2285 (needs_frame_frame_base): Constify.
2286 (dwarf2_tracepoint_var_loc): Likewise.
2287 (dwarf2_tracepoint_var_access): Likewise.
2288 (locexpr_describe_location_piece): Likewise.
2289 (locexpr_describe_location_1): Likewise.
2290 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
2291 Constify.
2292 (data): Now const.
2293 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
2294 (dwarf_expr_eval, read_uleb128, read_sleb128)
2295 (dwarf2_read_address): Update.
2296 * dwarf2expr.c (dwarf_expr_eval): Constify.
2297 (read_uleb128): Likewise.
2298 (read_sleb128): Likewise.
2299 (dwarf2_read_address): Likewise.
2300 (require_composition): Likewise.
2301 (execute_stack_op): Likewise.
2302 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
2303 "const gdb_byte *".
2304 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
2305 Now const.
2306 (no_get_frame_base): Constify.
2307 (execute_stack_op): Likewise.
2308 (execute_cfa_program): Likewise.
2309 (read_encoded_value): Likewise.
2310
07ca107c
DE
23112010-05-25 Doug Evans <dje@google.com>
2312
e34838f0
DE
2313 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
2314
01f69b38
DE
2315 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
2316 * event-loop.c: ... here.
2317 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
2318 `error' for clarity.
2319 (tui_getc): Pass correct value for `error' parameter to
2320 tui_readline_output.
2321
07ca107c
DE
2322 Add python gdb.GdbError and gdb.string_to_argv.
2323 * NEWS: Document them.
2324 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
2325 the exception is gdb.GdbError. Print a second traceback if there's
2326 an error computing the error message.
2327 (gdbpy_string_to_argv): New function.
2328 * python/py-utils.c (gdbpy_obj_to_string): New function.
2329 (gdbpy_exception_to_string): New function.
2330 * python/python-internal.h (gdbpy_string_to_argv): Declare.
2331 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
2332 (gdbpy_gdberror_exc): Declare.
2333 * python/python.c (gdbpy_gdberror_exc): New global.
2334 (_initialize_python): Initialize gdbpy_gdberror_exc and create
2335 gdb.GdbError.
2336 (GdbMethods): Add string_to_argv.
2337
5572ce1f
PM
23382010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
2339
2340 * windows-nat.c (display_selector): Call GetLastError to give better
2341 failure explanation.
2342
acd5838a
PA
23432010-05-24 Pedro Alves <pedro@codesourcery.com>
2344
2345 * config.in: Regenerate.
2346
b26a4dcb
JK
23472010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2348
2349 Code cleanup.
2350 * target.c (push_target): Return only void. Remove the return value
2351 comment.
2352 * target.h (push_target): Return only void.
2353
f434ba03
PA
23542010-05-23 Pedro Alves <pedro@codesourcery.com>
2355
2356 Update gnulib from latest git.
2357 (250b80067c1e1d8faa0c42fb572f721975b929c5)
2358
2359 * gnulib/memcmp.c: Removed.
2360 * gnulib/memchr.valgrind: New.
2361 * gnulib/stddef.in.h: New.
2362 * gnulib/Makefile.am: Updated.
2363 * gnulib/memchr.c: Updated.
2364 * gnulib/memmem.c: Updated.
2365 * gnulib/stdint.in.h: Updated.
2366 * gnulib/str-two-way.h: Updated.
2367 * gnulib/string.in.h: Updated.
2368 * gnulib/wchar.in.h: Updated.
2369
2370 * gnulib/extra/link-warning.h: Removed.
2371 * gnulib/extra/c++defs.h: New.
2372 * gnulib/extra/warn-on-use.h: New.
2373 * gnulib/extra/arg-nonnull.h: Updated.
2374
2375 * gnulib/m4/extensions.m4: Updated.
2376 * gnulib/m4/gnulib-cache.m4: Updated.
2377 * gnulib/m4/gnulib-common.m4: Updated.
2378 * gnulib/m4/gnulib-comp.m4: Updated.
2379 * gnulib/m4/gnulib-tool.m4: Updated.
2380 * gnulib/m4/include_next.m4: Updated.
2381 * gnulib/m4/longlong.m4: Updated.
2382 * gnulib/m4/memchr.m4: Updated.
2383 * gnulib/m4/memmem.m4: Updated.
2384 * gnulib/m4/stdint.m4: Updated.
2385 * gnulib/m4/string_h.m4: Updated.
2386 * gnulib/m4/memcmp.m4: Removed.
2387 * gnulib/m4/onceonly_2_57.m4: Removed.
2388 * gnulib/m4/00gnulib.m4: New.
2389 * gnulib/m4/mmap-anon.m4: New.
2390 * gnulib/m4/multiarch.m4: New.
2391 * gnulib/m4/onceonly.m4: New.
2392 * gnulib/m4/stddef_h.m4: New.
2393 * gnulib/m4/warn-on-use.m4: New.
2394 * gnulib/m4/wchar.m4: Removed.
2395 * gnulib/m4/wchar_h.m4: New.
2396 * gnulib/m4/wchar_t.m4: New.
2397 * gnulib/m4/wint_t.m4: New.
2398
2399 * aclocal.m4: Regenerate.
2400 * config.in: Likewise.
2401 * configure: Likewise.
2402 * gnulib/Makefile.in: Likewise.
2403
d3b1e874
TT
24042010-05-21 Tom Tromey <tromey@redhat.com>
2405
2406 * dwarf2loc.c (extract_bits_primitive): New function.
2407 (extract_bits): Likewise.
2408 (insert_bits): Likewise.
2409 (copy_bitwise): Likewise.
2410 (read_pieced_value): Do all operations in bits.
2411 (write_pieced_value): Likewise.
2412 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
2413 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
2414 Always use xrealloc to resize piece array.
2415 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
2416 <DW_OP_piece>: Update.
2417 <DW_OP_bit_piece>: New case.
2418
cb826367
TT
24192010-05-21 Tom Tromey <tromey@redhat.com>
2420
2421 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
2422 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
2423 * dwarf2expr.h (enum dwarf_value_location)
2424 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
2425 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
2426 (add_piece): Handle empty piece.
2427 (execute_stack_op) <DW_OP_piece>: Handle
2428 DWARF_VALUE_OPTIMIZED_OUT.
2429
74de6778
TT
24302010-05-21 Tom Tromey <tromey@redhat.com>
2431
2432 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
2433 evaluate_subexp, not evaluate_subexp_with_coercion.
2434
f346a30d
PM
24352010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
2436
2437 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
2438 attribute.
2439
afd74c5f
TT
24402010-05-21 Tom Tromey <tromey@redhat.com>
2441
2442 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
2443 offset.
2444 (write_pieced_value): Likewise.
2445
90e7c2c5
PM
24462010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
2447
2448 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
2449 and DW_TAG_volatile_type.
2450 (new_symbol): Likewise.
2451
8148cf8d
PM
24522010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
2453
2454 * p-valprint.c (pascal_val_print): Call get_array_bounds
2455 to obtain the number of elements in an array.
2456
3a1d4620
DE
24572010-05-19 Doug Evans <dje@google.com>
2458
0bf0f8c4
DE
2459 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
2460
3a1d4620
DE
2461 * python.c (source_python_script): Add comment.
2462 (source_python_script_for_objfile): Remove unnecessary call to
2463 gdbpy_print_stack.
2464
dc21167c
JK
24652010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2466 Sergio Durigan Junior <sergiodj@redhat.com>
2467
2468 Code cleanup.
2469 * parse.c (exp_iterate): Use operator_length wrapper function.
2470
5b4ee69b
MS
24712010-05-18 Michael Snyder <msnyder@vmware.com>
2472
2473 * ada-lang.c: White space.
2474 * ada-typeprint.c: White space.
2475 * ada-valprint.c: White space.
2476 * addrmap.c: White space.
2477 * auxv.c: White space.
2478 * ax-gdb.c: White space.
2479
e17c9e56
HZ
24802010-05-18 Hui Zhu <teawater@gmail.com>
2481
2482 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
2483 for oldfp.
2484 (inferior_call_waitpid): Move make_cleanup out of check.
2485 Check the return of waitpid.
2486 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
2487
a109c7c1
MS
24882010-05-17 Michael Snyder <msnyder@vmware.com>
2489
1c5313c5
MS
2490 * tui/tui.c: White space.
2491 * tui/tui-data.c: White space.
2492 * tui/tui-disasm.c: White space.
2493 * tui/tui-file.c: White space.
2494 * tui/tui-interp.c: White space.
2495 * tui/tui-main.c: White space.
2496 * tui/tui-out.c: White space.
2497 * tui/tui-regs.c: White space.
2498 * tui/tui-source.c: White space.
2499 * tui/tui-stack.c: White space.
2500 * tui/tui-win.c: White space.
2501 * tui/tui-winsource.c: White space.
2502
f4a14ae6
MS
2503 * procfs.c: White space.
2504
d59b6f6c
MS
2505 * python/py-auto-load.c: White space.
2506 * python/py-block.c: White space.
2507 * python/py-breakpoint.c: White space.
2508 * python/py-cmd.c: White space.
2509 * python/py-function.c: White space.
2510 * python/py-lazy-string.c: White space.
2511 * python/py-objfile.c: White space.
2512 * python/py-param.c: White space.
2513 * python/py-prettyprint.c: White space.
2514 * python/py-progspace.c: White space.
2515 * python/py-symtab.c: White space.
2516 * python/python.c: White space.
2517 * python/py-type.c: White space.
2518 * python/py-utils.c: White space.
2519 * python/py-value.c: White space.
2520
102040f0
MS
2521 * mi/mi-cmd-break.c: White space.
2522 * mi/mi-cmd-env.c: White space.
2523 * mi/mi-cmds.c: White space.
2524 * mi/mi-cmd-stack.c: White space.
2525 * mi/mi-cmd-var.c: White space.
2526 * mi/mi-console.c: White space.
2527 * mi/mi-getopt.c: White space.
2528 * mi/mi-interp.c: White space.
2529 * mi/mi-main.c: White space.
2530 * mi/mi-out.c: White space.
2531 * mi/mi-parse.c: White space.
2532
cdb27c12
MS
2533 * cli/cli-cmds.c: White space.
2534 * cli/cli-decode.c: White space.
2535 * cli/cli-dump.c: White space.
2536 * cli/cli-interp.c: White space.
2537 * cli/cli-logging.c: White space.
2538 * cli/cli-script.c: White space.
2539 * cli/cli-setshow.c: White space.
2540
a109c7c1
MS
2541 * valarith.c: White space.
2542 * valops.c: White space.
2543 * valprint.c: White space.
2544 * value.c: White space.
2545 * varobj.c: White space.
2546 * xcoffread.c: White space.
2547 * xml-support.c: White space.
2548 * xml-tdesc.c: White space.
2549
3872d37d
AS
25502010-05-17 Andreas Schwab <schwab@redhat.com>
2551
2552 PR gdb/11092
2553 * c-lang.c (c_printstr): Compute real length of NUL terminated
2554 string at first.
2555
0cce5bd9
JB
25562010-05-17 Joel Brobecker <brobecker@adacore.com>
2557
2558 * parse.c (parse_exp_in_context): When block is not NULL, use
2559 its associated language to parse the expression instead of
2560 the current_language.
2561
5f19d646
JB
25622010-05-17 Joel Brobecker <brobecker@adacore.com>
2563
2564 * jv-lang.c (java_lookup_class): Remove commented out code.
2565 (type_from_class): Likewise.
2566 (java_op_print_tab): Remove commented-out elements.
2567
28c85d6c
JB
25682010-05-17 Joel Brobecker <brobecker@adacore.com>
2569
2570 * ada-lang.c (to_fixed_range_type): The the raw index type as
2571 argument instead of the raw type name. Remove orig_type parameter.
2572 Update calls throughout.
2573 (ada_fixup_array_indexes_type): New function.
2574 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
2575 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
2576 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
2577 Remove name parameter.
2578 (print_array_type): Add call to ada_fixup_array_indexes_type.
2579 Update calls to print_range_type.
2580 (ada_print_type): Update calls to print_range_type.
2581
d09039dd
PM
25822010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
2583
2584 * dwarf2read.c (read_set_type): Set type length if
2585 DW_AT_byte_size attribute is present.
2586
7a081a30
PM
25872010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
2588
2589 * p-valprint.c (pascal_val_print): Handle set type if range limits
2590 are undefined but size is known.
2591
77382aee
PA
25922010-05-17 Pedro Alves <pedro@codesourcery.com>
2593
2594 * procfs.c: Reformat.
2595
433759f7
MS
25962010-05-16 Michael Snyder <msnyder@vmware.com>
2597
5d502164
MS
2598 * target.c: White space.
2599 * target-descriptions.c: White space.
2600 * target-memory.c: White space.
2601 * thread.c: White space.
2602 * top.c: White space.
2603 * tracepoint.c: White space.
2604 * trad-frame.c: White space.
2605 * tramp-frame.c: White space.
2606 * ui-file.c: White space.
2607 * ui-out.c: White space.
2608 * user-regs.c: White space.
2609 * utils.c: White space.
2610
433759f7
MS
2611 * scm-exp.c: White space.
2612 * scm-lang.c: White space.
2613 * scm-valprint.c: White space.
2614 * sentinel-frame.c: White space.
2615 * ser-base.c: White space.
2616 * ser-go32.c: White space.
2617 * serial.c: White space.
2618 * ser-mingw.c: White space.
2619 * ser-pipe.c: White space.
2620 * ser-tcp.c: White space.
2621 * ser-unix.c: White space.
2622 * solib.c: White space.
2623 * solib-darwin.c: White space.
2624 * solib-frv.c: White space.
2625 * solib-irix.c: White space.
2626 * solib-osf.c: White space.
2627 * solib-pa64.c: White space.
2628 * solib-som.c: White space.
2629 * solib-spu.c: White space.
2630 * solib-svr4.c: White space.
2631 * solib-target.c: White space.
2632 * source.c: White space.
2633 * stabsread.c: White space.
2634 * stack.c: White space.
2635 * std-regs.c: White space.
2636 * symfile.c: White space.
2637 * symmisc.c: White space.
2638 * symtab.c: White space.
2639
dd304d53
MS
26402010-05-16 Michael Snyder <msnyder@vmware.com>
2641
2642 * source.c (_initialize_source): Add "rev" as an abbreviation
2643 for the "reverse-search" command.
2644
a744cf53
MS
26452010-05-16 Michael Snyder <msnyder@vmware.com>
2646
123f5f96
MS
2647 * record.c: White space.
2648 * regcache.c: White space.
2649 * reggroups.c: White space.
2650 * remote-fileio.c: White space.
2651 * remote-m32r-sdi.c: White space.
2652 * remote-mips.c: White space.
2653 * remote-sim.c: White space.
a744cf53
MS
2654 * remote.c: White space.
2655 (process_g_packet): Remove orphan braces.
2656
b8d56208
MS
26572010-05-15 Michael Snyder <msnyder@vmware.com>
2658
ad3bbd48
MS
2659 * parse.c: White space.
2660 * p-lang.c: White space.
2661 * posix-hdep.c: White space.
2662 * printcmd.c: White space.
2663 * progspace.c: White space.
2664 * prologue-value.c: White space.
2665 * psymtab.c: White space.
2666 * p-typeprint.c: White space.
2667 * p-valprint.c: White space.
2668
5cc80db3
MS
2669 * objc-lang.c: White space.
2670 * objfiles.c: White space.
2671 * observer.c: White space.
2672 * osabi.c: White space.
2673 * osdata.c: White space.
2674
b8d56208
MS
2675 * m2-lang.c: White space.
2676 * m2-valprint.c: White space.
2677 * macrocmd.c: White space.
2678 * macroexp.c: White space.
2679 * macroscope.c: White space.
2680 * macrotab.c: White space.
2681 * main.c: White space.
2682 * maint.c: White space.
2683 * mdebugread.c: White space.
2684 * memattr.c: White space.
2685 * minsyms.c: White space.
2686 * monitor.c: White space.
2687
9a619af0
MS
26882010-05-14 Michael Snyder <msnyder@vmware.com>
2689
e0881a8e
MS
2690 * jv-lang.c: White space.
2691 * jv-typeprint.c: White space.
2692 * jv-valprint.c: White space.
2693 * language.c: White space.
2694 * libunwind-frame.c: White space.
2695 * linespec.c: White space.
2696 * linux-nat.c: White space.
2697 * linux-record.c: White space.
2698 * linux-thread-db.c: White space.
2699
abbb1732
MS
2700 * infcall.c: White space.
2701 * inf-child.c: White space.
2702 * infcmd.c: White space.
2703 * inferior.c: White space.
2704 * inf-loop.c: White space.
2705 * inflow.c: White space.
2706 * inline-frame.c: White space.
2707 * interps.c: White space.
2708
d8734c88
MS
2709 * gcore.c: White space.
2710 * gdb.c: White space.
2711 * gdbtypes.c: White space.
2712 * gnu-nat.c: White space.
2713 * gnu-v2-abi.c: White space.
2714 * gnu-v3-abi.c: White space.
2715
bb9bcb69
MS
2716 * findcmd.c: White space.
2717 * findvar.c: White space.
2718 * fork-child.c: White space.
2719 * frame-base.c: White space.
2720 * frame.c: White space.
2721 * frame-unwind.c: White space.
2722 * f-valprint.c: White space.
2723
d7f9d729
MS
2724 * elfread.c: White space.
2725 * environ.c: White space.
2726 * eval.c: White space.
2727 * event-loop.c: White space.
2728 * event-top.c: White space.
2729 * exceptions.c: White space.
2730 * exec.c: White space.
2731 * expprint.c: White space.
2732
9a619af0
MS
2733 * dbxread.c: White space.
2734 * dcache.c: White space.
2735 * disasm.c: White space.
2736 * doublest.c: White space.
2737 * dsrec.c: White space.
2738 * dummy-frame.c: White space.
2739 * dwarf2expr.c: White space.
2740 * dwarf2-frame.c: White space.
2741 * dwarf2loc.c: White space.
2742 * dwarf2read.c: White space.
2743
88d4aea7
PM
27442010-05-14 Phil Muldoon <pmuldoon@redhat.com>
2745
2746 PR python/11482
2747
2748 * python/py-value.c (valpy_hash): New function.
2749 (value_object_type): Register valpy_hash.
2750
7a298875 27512010-05-14 Hui Zhu <teawater@gmail.com>
0407b3f1 2752 Michael Snyder <msnyder@vmware.com>
7a298875
HZ
2753
2754 * linux-fork.c (gdbthread.h): New include.
2755 (fork_info): Add parent_ptid.
2756 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
2757 functions.
2758 (delete_checkpoint_command): Call inferior_call_waitpid.
2759 (checkpoint_command): Set parent_ptid.
2760
c14feecc
MS
27612010-05-13 Michael Snyder <msnyder@vmware.com>
2762
6595d32b
MS
2763 * dictionary.c: Re-indent to GNU coding standard.
2764
c5504eaf
MS
2765 * charset.c: White space.
2766 * c-lang.c: White space.
2767 * cli-out.c: White space.
2768 * coffread.c: White space.
2769 * complaints.c: White space.
2770 * completer.c: White space.
2771 * corefile.c: White space.
2772 * corelow.c: White space.
2773 * cp-abi.c: White space.
2774 * cp-namespace.c: White space.
2775 * cp-support.c: White space.
2776 * cp-valprint.c: White space.
2777 * c-typeprint.c: White space.
2778 * c-valprint.c: White space.
cc59ec59
MS
2779 * blockframe.c: White space.
2780 * breakpoint.c: White space.
2781 * buildsym.c: White space.
2782 * blockframe.c: White space.
b6de9da4 2783 * bcache.c: White space.
05c547f6
MS
2784 * gdbarch.sh: White space, add blank lines.
2785 * arch-utils.c: Ditto.
2786 * gdbarch.c: Regenerate.
1c4d3f96 2787 * frame.c: White space, add blank lines.
f89b749f
MS
2788 * stack.c: White space, add blank lines.
2789 (initialize_stack): Remove long-dead code.
c14feecc 2790
a2d33775
JK
27912010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2792
2793 Code cleanup.
2794 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
2795 (locexpr_read_variable, loclist_read_variable): Update the callers.
2796
33ac96f0
JK
27972010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2798
2799 Code cleanup.
2800 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
2801 Remove check of NULL returned by tag_type_to_type.
2802 (die_containing_type): Remove variable type. Remove type_die variable
2803 initialization. Remove check of NULL returned by tag_type_to_type.
2804
f5a010c0
PM
28052010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
2806
2807 PR exp/11530.
2808 * gdbtypes.c (lookup_struct_elt_type): Also lookup
2809 names of unnamed structures or unions.
2810
bf701c2c
PM
28112010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
2812
2813 * procfs.c (proc_watchpoint_address): New function.
0407b3f1 2814 (procfs_stopped_by_watchpoint): Remove useless check after
bf701c2c
PM
2815 find_procinfo_or_die call.
2816 (procfs_stopped_data_address): New function.
2817 (procfs_use_watchpoints): Register new watchpoint related function.
2818
d02691ef
TT
28192010-05-11 Tom Tromey <tromey@redhat.com>
2820
2821 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
2822
e0627e85
MS
28232010-05-10 Michael Snyder <msnyder@vmware.com>
2824
2825 * utils.c: White space cleanup.
2826
cc73bb8c
TT
28272010-05-10 Tom Tromey <tromey@redhat.com>
2828
2829 * eval.c (ptrmath_type_p): Add 'lang' argument.
2830 (evaluate_subexp_standard): Update.
2831 (evaluate_subexp_with_coercion): Update.
2832 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
2833
c02866a0
MS
28342010-05-10 Michael Snyder <msnyder@vmware.com>
2835
2836 * utils.c (do_fclose_cleanup) Restore local variable.
2837
06280d23
DE
28382010-05-09 Doug Evans <dje@google.com>
2839
2840 * record.c (init_record_core_ops): Rename record_core to record-core.
2841
fa07e785
JB
28422010-05-08 Joel Brobecker <brobecker@adacore.com>
2843
2844 Implement task switching on pa-hpux.
2845 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
2846 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
2847
4c680d1d
PM
28482010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
2849
2850 * valops.c (find_overload_match): Add missing i18n markup.
2851
28e176a6
PM
28522010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
2853
2854 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
2855
48cb83fd
JK
28562010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2857
2858 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
2859 list for the obconcat call.
2860 * mdebugread.c (parse_symbol): Likewise.
2861 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
2862 Likewise.
2863 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
2864 New variable ap. Remove variables len and val.
2865 * symfile.h (obconcat): Likewise for the prototype.
2866
f92adf3c
MS
28672010-05-07 Michael Snyder <msnyder@vmware.com>
2868
2869 * python/python.c (execute_gdb_command): Remove unused variables.
2870 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
0407b3f1 2871 * python/py-breakpoint.c (gdbpy_breakpoint_created):
f92adf3c
MS
2872 Remove unused variable.
2873 * python/py-cmd.c (cmdpy_function): Remove unused variable.
2874 (cmdpy_completer): Remove unused variable.
2875 * python/py-frame.c (frapy_find_sal): Remove unused variable.
2876 * python/py-function.c (fnpy_call): Remove unused variable.
2877 * python/py-objfile.c (objfile_to_objfile_object):
2878 Remove unused variable.
2879 * python/py-param.c (parmpy_init): Remove unused variable.
0407b3f1 2880 * python/py-prettyprint.c (apply_varobj_pretty_printer):
f92adf3c
MS
2881 Remove unused variable.
2882 (gdbpy_default_visualizer): Remove unused variable.
2883 * python/py-progspace.c (pspace_to_pspace_object):
2884 Remove unused variable.
0407b3f1 2885 * python/py-symtab.c (symtab_and_line_to_sal_object):
f92adf3c 2886 Remove unused variable.
0407b3f1 2887 * python/py-type.c (typy_template_argument):
f92adf3c
MS
2888 Remove unused variable.
2889 * python/py-value.c (valpy_string): Remove unused variable.
2890 (convert_value_from_python): Remove unused variables.
2891
d160942f
MS
28922010-05-07 Michael Snyder <msnyder@vmware.com>
2893
2894 * valops.c (value_cast_pointers): Restore unused variable 'type1',
2895 and use it to compute variable 't1'.
2896
587542ab
JB
28972010-05-07 Joel Brobecker <brobecker@adacore.com>
2898
2899 * ada-lang.c (assign_aggregate): Remove unused variable.
2900
7322dca9
SW
29012010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
2902
2903 PR C++/7943:
2904 * valops.c (find_overload_match): Handle fsym == NULL case.
2905 Add int no_adl argument.
2906 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
2907 when appropriate.
2908 Add int no_adl argument.
2909 (find_oload_champ_namespace): Add int no_adl argument.
2910 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
2911 expression.
2912 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
2913 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
2914 Evaluate arguments and use them to perform ADL lookup.
2915 Pass no_adl argument to find_overload_match.
2916 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
2917 * cp-support.h: Added prototype for
2918 make_symbol_overload_list_namespace.
2919 * cp-support.c (make_symbol_overload_list_namespace): New function.
2920 (make_symbol_overload_list_adl_namespace): New function.
2921 (make_symbol_overload_list_adl): New function.
2922 (make_symbol_overload_list_using): Moved code to add function to
2923 overload set to make_symbol_overload_list_namespace.
2924 * c-exp.y: create UNKNOWN_CPP_NAME token.
2925 Add parse rule for ADL functions.
2926 (classify_name): Recognize an UNKNOWN_CPP_NAME.
2927
3f1f6884
JK
29282010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2929
2930 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
2931 sentinel.
2932
3caf13b4
JB
29332010-05-07 Joel Brobecker <brobecker@adacore.com>
2934
2935 Implement task switching on solaris targets.
2936 * sol-thread.c (thread_db_find_thread_from_tid)
2937 (sol_get_ada_task_ptid): New functions.
2938 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
2939
94b0dee1
PA
29402010-05-07 Pedro Alves <pedro@codesourcery.com>
2941
2942 * remote.c (remote_query_supported_append): Use reconcat.
2943 (remote_query_supported): Install a cleanup. Use reconcat.
2944
1408c251
PA
29452010-05-07 Pedro Alves <pedro@codesourcery.com>
2946
2947 * gdbarch.sh (qsupported): Delete.
2948 * gdbarch.h, gdbarch.c: Regenerate.
2949 * remote.c (remote_query_supported): Remove use of
2950 gdbarch_qsupported.
2951
f8e50cfe
SDJ
29522010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
2953
2954 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
2955 function.
2956
8ea13695
MS
29572010-05-06 Michael Snyder <msnyder@vmware.com>
2958
c6913b7d
MS
2959 * xml-support.c (xinclude_start_include): Delete unused variable.
2960 (xml_process_xincludes): Delete unused variable.
2961 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
2962 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
2963 (tdesc_find_arch_register): Delete unused variable.
2964 (tdesc_use_registers): Delete unused variable.
2965 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
2966 * inferior.c (print_inferior): Delete unused variable.
2967 * record.c (record_open_1): Delete unused variable.
2968 (record_restore): Delete unused variable.
2969 (cmd_record_save): Delete unused variable.
2970 * gcore.c (derive_heap_segment): Delete unused variable.
2971 (objfile_find_memory_regions): Use unused variable.
2972 * jit.c (jit_inferior_init): Delete unused variable.
2973 * progspace.c (clone_program_space): Delete unused variable.
2974 (pspace_empty_p): Delete unused variable.
0407b3f1
AS
2975
2976 * frame-unwind.c (frame_unwind_find_by_frame):
1c5465ac
MS
2977 Delete unused variable.
2978 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
2979 * cp-support.c (mangled_name_to_comp): Delete unused variable.
2980 (method_name_from_physname): Delete unused variable.
2981 (cp_func_name): Delete unused variable.
2982 (cp_validate_operator): Delete unused variable.
0407b3f1 2983 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
1c5465ac 2984 Delete unused variable.
0407b3f1 2985 * trad-frame.c (trad_frame_get_prev_register):
1c5465ac
MS
2986 Delete unused variable.
2987 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
2988
1be757cf
MS
2989 * serial.c (serial_for_fd): Delete unused variable.
2990 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
2991 * top.c (execute_command): Delete unused variable.
2992 (init_main): Delete unused variable.
2993 * utils.c (do_fclose_cleanup): Delete unused variable.
2994 (do_all_inferior_continuations): Delete unused variable.
2995 (initialize_utils): Delete unused variable.
2996 (internal_problem_mode): Delete unused global.
2997 * frame.c (get_prev_frame): Delete unused global.
2998 (get_frame_locals_address): Delete unused global.
2999 (get_frame_args_address): Delete unused global.
3000
9216103f
MS
3001 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
3002 (pascal_type_print_varspec_prefix): Delete unused variable.
3003 * f-typeprint.c (f_type_print_base): Delete unused variable.
3004 (f_type_print_varspec_suffix): Delete unused variable.
3005 * m2-typeprint.c (m2_print_type): Delete unused variable.
3006 (m2_long_set): Delete unused variable.
3007 * ada-valprint.c (ada_val_print_1): Delete unused variable.
3008 * d-valprint.c (dynamic_array_type): Delete unused variable.
0407b3f1 3009 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
9216103f
MS
3010 Delete unused variable.
3011 (f77_create_arrayprint_offset_tbl): Delete unused variable.
3012 * m2-valprint.c (m2_val_print): Delete unused variable.
3013
34fa1d9d
MS
3014 * ui-out.c (ui_out_field_int): Delete unused variable.
3015 (ui_out_field_fmt_int): Delete unused variable.
3016 * varobj.c (varobj_list_children): Delete unused variable.
3017 (varobj_set_value): Delete unused variable.
3018 (install_new_value_visualizer): Delete unused variable.
3019 (varobj_set_visualizer): Delete unused variable.
3020 (varobj_update): Delete unused variable.
3021 (varobj_editable_p): Delete unused variable.
3022 (c_value_of_root): Delete unused variable.
3023 (cplus_describe_child): Delete unused variable.
3024
b5385fc0
MS
3025 * ada-lang.c (add_defn_to_vec): Delete unused variable.
3026 (decode_constrained_packed_array_type): Delete unused variable.
3027 (add_defn_to_vec): Delete unused variable.
3028 (symbol_completion_match): Delete unused variable.
3029 (value_tag_from_contents_and_address): Delete unused variable.
3030 (ada_evaluate_subexp): Delete unused variable.
3031 * c-lang.c (classify_type): Delete unused variable.
3032 * f-lang.c (f_printstr): Delete unused variable.
3033 * objc-lang.c (objc_printstr): Delete unused variable.
3034 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
3035 * jv-lang.c (type_from_class): ifdef unused variable.
3036 (java_class_name_from_physname): Delete unused variable.
3037 * m2-lang.c (m2_printstr): Delete unused variable.
3038
4fc06681
MS
3039 * objfiles.c (objfile_relocate): Delete unused variable.
3040 * maint.c (_initialize_maint_cmds): Delete unused variable.
3041 * demangle.c (_initialize_demangler): Delete unused variable.
3042 * corefile.c (reopen_exec_file): Delete unused variable.
3043 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
3044 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
3045
6b4398f7
MS
3046 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
3047 * memattr.c (mem_delete): Delete unused variable.
3048 (invalidate_target_mem_regions): Delete unused variable.
3049 * mem-break.c (default_memory_insert_breakpoint):
3050 Delete unused variable.
3051 * target.c (target_get_osdata): Delete unused variable.
3052 * parse.c (length_of_subexp): Delete unused variable.
3053 (prefixify_subexp): Delete unused variable.
3054 (exp_iterate): Delete unused variable.
3055 * reverse.c (delete_bookmark_command): Delete unused variable.
3056
308d96ed
MS
3057 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
3058 * macroexp.c (gather_arguments): Delete unused variable.
3059 (substitute_args): Delete unused variable.
3060 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
3061 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
3062 (_initialize_gdbarch): Delete unused variable.
3063 * gdbarch.c, gdbarch.h: Regenerate.
0407b3f1 3064 * arch-utils.c (initialize_current_architecture):
308d96ed
MS
3065 Delete unused variable.
3066 (_initialize_gdbarch_utils): Delete unused variable.
3067 * gdbtypes.c (make_cv_type): Delete unused variable.
3068 (make_type_with_address_space): Delete unused variable.
3069
167e4384
MS
3070 * linespec.c (decode_compound): Delete unused variable.
3071 * dictionary.c (iterator_next_hashed): Delete unused variable.
3072 * infcall.c (call_function_by_hand): Delete unused variable.
3073 * infcmd.c (step_1): Delete unused variable.
3074 (registers_info): Delete unused variable.
3075 (attach_command): Delete unused variable.
3076 * infrun.c (follow_exec): Delete unused variable.
3077 (handle_step_into_function_backwards): Delete unused variable.
3078 (_initialize_infrun): Delete unused variable.
3079 * stack.c (parse_frame_specification_1): Delete unused variable.
3080 (frame_info): Delete unused variable.
3081 (backtrace_command_1): Delete unused variable.
3082 (catch_info): Delete unused variable.
3083
8f78b329
MS
3084 * eval.c (evaluate_subexp_standard): Delete unused variable.
3085 * valops.c (value_cast_pointers): Delete unused variable.
3086 (value_dynamic_cast): Delete unused variable.
3087 (value_array): Delete unused variable.
3088 (find_overload_match): Delete unused variable.
3089 * valarith.c (value_subscript): Delete unused variable.
3090 (value_binop): Delete unused variable.
3091 * valprint.c (_initialize_valprint): Delete unused variable.
3092 * printcmd.c (print_command_1): Delete unused variable.
3093 (address_info): Delete unused variable.
3094 (printf_command): Delete unused variable.
3095
8ea13695
MS
3096 * auxv.c (target_auxv_search): Delete unused variable.
3097 * blockframe.c (get_frame_block): Delete unused variable.
3098 * regcache.c (regcache_cpy): Delete unused variable.
3099 (regcache_cpy_no_passthrough): Delete unused variable.
3100 * charset.c (wchar_iterate): Delete unused variable.
3101 (find_charset_names): Delete unused variable.
3102 (_initialize_charset): Delete unused variable.
0407b3f1 3103 * disasm.c (do_mixed_source_and_assembly):
8ea13695 3104 Delete unused variable.
0407b3f1 3105 * source.c (set_default_source_symtab_and_line):
8ea13695
MS
3106 Delete unused variable.
3107 (set_substitute_path_command): Delete unused variable.
3108 * value.c (preserve_values): Delete unused variable.
3109 (value_from_double): Delete unused variable.
3110
afe38095
MS
31112010-05-05 Michael Snyder <msnyder@vmware.com>
3112
952a6d41
MS
3113 * psymtab.c (lookup_partial_symbol): Delete unused variable.
3114 (find_last_source_symtab_from_partial): Delete unused variable.
3115 * symfile.c (place_section): Delete unused variable.
3116 (default_symfile_offsets): Delete unused variable.
3117 (get_debug_link_info): Delete unused variable.
3118 (find_separate_debug_file_by_debuglink): Delete unused variable.
3119 (add_symbol_file_command): Delete unused variable.
3120 (symfile_find_segment_sections): Delete unused variable.
3121 * symmisc.c (free_symtab): Delete unused variable.
3122 (dump_symtab_1): Delete unused variable.
3123 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
3124 (find_pc_sect_symtab): Delete unused variable.
3125 (skip_prologue_using_lineinfo): Delete unused variable.
3126 (sources_info): Delete unused variable.
3127 (completion_list_add_name): Delete unused variable.
3128 (expand_line_sal): Delete unused variable.
3129
0407b3f1 3130 * breakpoint.c (validate_commands_for_breakpoint):
afe38095
MS
3131 Delete unused variables.
3132 (insert_catchpoint): Delete unused variable.
3133 (update_watchpoint): Delete unused variable.
3134 (insert_bp_location): Delete unused variable.
3135 (insert_breakpoint_locations): Delete unused variable.
3136 (remove_breakpoint_1): Delete unused variable.
3137 (software_breakpoint_inserted_here_p): Delete unused variable.
3138 (watchpoints_triggered): Delete unused variable.
3139 (bpstat_check_watchpoint): Delete unused variable.
3140 (bpstat_stop_status): Delete unused variable.
3141 (print_one_breakpoint_location): Delete unused variable.
3142 (allocate_bp_location): Delete unused variable.
3143 (create_breakpoint): Delete unused variable.
3144 (watch_command_1): Delete unused variable.
3145 (catch_exception_command_1): Delete unused variable.
3146 (catch_ada_exception_command): Delete unused variable.
3147 (delete_breakpoint): Delete unused variable.
3148 (breakpoint_re_set_one): Delete unused variable.
3149 (do_enable_breakpoint): Delete unused variable.
3150
eda5a4d7
PA
31512010-05-06 Pedro Alves <pedro@codesourcery.com>
3152
3153 * amd64-tdep.c: Include disasm.h.
3154 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
3155 (amd64_insn_length): Moved to disasm.c and renamed.
3156 (fixup_riprel): Adjust.
3157 * disasm.c (do_ui_file_delete): New.
3158 (gdb_insn_length): New.
3159 (gdb_buffered_insn_length_fprintf)
3160 (gdb_buffered_insn_length_init_dis)
3161 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
3162 renamed.
3163 * disasm.h (gdb_insn_length): Declare.
3164 (gdb_buffered_insn_length): Declare.
3165
02357a4a
PA
31662010-05-06 Pedro Alves <pedro@codesourcery.com>
3167
3168 * remote.c (clear_threads_parsing_context): New.
3169 (remote_threads_info): Delete unused null_cleanup. Install a
3170 cleanup to clear the threads_parsing_context in case parsing
3171 throws.
3172
8c5630cb
MS
31732010-05-05 Michael Snyder <msnyder@vmware.com>
3174
3175 * c-exp.y (parse_string_or_char): Delete unused variable.
3176 (c_lex): Delete unused variable.
3177 * cp-name-parser.y (cpname_lex): Delete unused variable.
3178 * ada-exp.y (find_primitive_type): Delete unused variable.
3179 (write_var_or_type): Delete unused variable.
3180 * jv-exp.y (java_parse): Delete unused variable.
3181 (push_expression_name): Delete unused variable.
3182 * p-exp.y (pascal_lex): Delete unused variable.
3183
46c162d4
PA
31842010-05-05 Pedro Alves <pedro@codesourcery.com>
3185
3186 * remote.c (remote_threads_info): Really revert previous previous
3187 change.
3188
0043e6a5
MS
31892010-05-05 Michael Snyder <msnyder@vmware.com>
3190
fa238c03
MS
3191 * elfread.c (elf_symtab_read): Delete unused variable.
3192 (find_separate_debug_file_by_buildid): Delete unused variables.
3193 (elf_symfile_read): Delete unused variable.
3194
3195 * coffread.c (coff_symfile_read): Delete unused variables.
3196
3197 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
3198 (read_pe_exported_syms): Delete unused variable.
3199
3200 * stabsread.c (define_symbol): Delete unused variable.
3201
3202 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
3203 (process_psymtab_comp_unit): Delete unused variable.
3204 (dwarf2_build_psymtabs_hard): Delete unused variable.
3205 (load_partial_comp_unit): Delete unused variable.
3206 (create_all_comp_units): Delete unused variable.
3207 (scan_partial_symbols): Delete unused variable.
3208 (add_partial_symbol): Delete unused variable.
3209 (add_partial_namespace): Delete unused variable.
3210 (add_partial_enumeration): Delete unused variable.
3211 (load_full_comp_unit): Delete unused variable.
3212 (process_full_comp_unit): Delete unused variable.
3213 (read_file_scope): Delete unused variable.
3214 (read_type_unit_scope): Delete unused variable.
3215 (process_structure_scope): Delete unused variable.
3216 (process_enumeration_scope): Delete unused variable.
3217 (read_tag_ptr_to_member_type): Delete unused variable.
3218 (read_typedef): Delete unused variable.
3219 (read_partial_die): Delete unused variable.
3220 (decode_locdesc): Delete unused variable.
3221 (zeroed_partial_die): Delete unused global variable.
3222
0407b3f1 3223 * tui/tui-interp.c (_initialize_tui_interp):
0043e6a5 3224 Delete unused variable.
0407b3f1 3225 * tui/tui-regs.c tui_display_registers_from):
0043e6a5
MS
3226 Delete unused variable.
3227 (tui_check_register_values): Delete unused variable.
3228 (tui_register_format): Delete unused variable.
3229 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
0407b3f1 3230 * tui/tui-windata.c (tui_display_data_from_line):
0043e6a5
MS
3231 Delete unused variables.
3232 (tui_vertical_data_scroll): Delete unused variables.
3233
75721c66
MS
32342010-05-05 Michael Snyder <msnyder@vmware.com>
3235
c31a71f4
MS
3236 * remote.c (remote_threads_info): Revert questionable part of
3237 the previous change.
3238
32392010-05-05 Michael Snyder <msnyder@vmware.com>
3240
3241 * mi/mi-out.c (mi_table_begin): Delete unused variable.
3242 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
3243 (mi_cmd_var_list_children): Delete unused variable.
3244 (varobj_update_one): Delete unused variable.
3245 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
0407b3f1 3246 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
c31a71f4
MS
3247 Delete unused variable.
3248 (mi_cmd_stack_list_variables): Delete unused variable.
3249 (list_args_or_locals): Delete unused variable.
0407b3f1 3250 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
c31a71f4
MS
3251 Delete unused variables.
3252 (mi_cmd_file_list_exec_source_files): Delete unused variable.
0407b3f1 3253 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
c31a71f4
MS
3254 Delete unused variable.
3255 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
3256 (mi_cmd_interpreter_exec): Delete unused variable.
3257 (mi_on_normal_stop): Delete unused variable.
3258 * mi/mi-main.c (run_one_inferior): Delete unused variable.
3259 (print_one_inferior): Delete unused variables.
3260 (mi_execute_command): Delete unused variable.
3261 (mi_cmd_execute): Delete unused variable.
3262 (timestamp): Delete unused variable.
3263
3264 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
d36fc00b 3265 (restore_binary_file): Delete unused variable.
c31a71f4
MS
3266 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
3267 * cli/cli-script.c (define_command): Delete unused variables.
d36fc00b
MS
3268 (recurse_read_control_structure): Delete unused variable.
3269 (script_from_file): Delete unused variable.
c31a71f4 3270 * cli/cli-cmds.c (complete_command): Delete unused variable.
d36fc00b
MS
3271 (disassemble_command): Delete unused variable.
3272
3273 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
0407b3f1 3274 * tracepoint.c (delete_trace_variable_command):
d36fc00b
MS
3275 Delete unused variables.
3276 (encode_actions_1): Delete unused variables.
3277 (start_tracing): Delete unused variable.
3278 (trace_status_mi): Delete unused variable.
3279 (tfind_1): Delete unused variable.
3280 (trace_find_pc_command): Delete unused variable.
3281 (trace_find_line_command): Delete unused variables.
3282 (trace_find_range_command): Delete unused variables.
3283 (trace_find_outside_command): Delete unused variables.
3284 (parse_tracepoint_definition): Delete unused variables.
3285 (tfile_fetch_registers): Delete unused variable.
3286
9128a503
MS
3287 * dcache.c (dcache_init): Delete unused variable.
3288 (dcache_info): Delete unused variable.
3289
aa369b55 3290 * remote.c (remote_threads_info): Delete unused variable.
9128a503 3291 (process_stop_reply) :Delete unused variable.
aa369b55
MS
3292 (remote_get_trace_status): Delete unused variables.
3293
9e9547e4
MS
3294 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
3295 (thread_from_lwp): Delete unused variable.
3296 (enable_thread_event_reporting): Delete unused variable.
3297 (check_for_thread_db): Delete unused variables.
3298 (thread_db_find_new_threads_2): Delete unused variable.
0407b3f1 3299
9e9547e4
MS
3300 * linux-fork.c (info_checkpoints_command): Delete unused variables.
3301 (checkpoint_command): Delete unused variable.
3302 (linux_fork_context): Delete unused variables.
3303
fa238c03 3304 * linux-nat.c (linux_parent_pid): Delete unused global variable.
75083f7e
MS
3305 (linux_tracefork_child): Delete unused variable.
3306 (linux_child_follow_fork): Delete unused variable.
3307 (linux_nat_detach): Delete unused variable.
3308 (linux_handle_extended_wait): Delete unused variable.
3309 (linux_nat_has_pending_sigint): Delete unused variable.
3310 (linux_nat_find_memory_regions): Delete unused variable.
3311 (linux_nat_make_corefile_notes): Delete unused variables.
3312 (linux_nat_info_proc_cmd): Delete unused variable.
3313 (linux_proc_pending_signals): Delete unused variable.
3314 (linux_nat_stop_lwp): Delete unused variables.
3315 (_initialize_linux_nat): Delete unused variable.
3316
fa238c03 3317 * ser-pipe.c (pipe_ops): Delete unused global variable.
2d148b94 3318
0407b3f1 3319 * linux-record.c (record_linux_system_call):
e0f069a3
MS
3320 Delete unused variables.
3321
789d24f0
MS
3322 * corelow.c (core_xfer_partial): Delete unused variables.
3323
1cd337a5 3324 * solib-svr4.c (find_program_interpreter): Delete unused variable.
0407b3f1 3325 (svr4_solib_create_inferior_hook): Add ifdef around
1cd337a5
MS
3326 conditionally-used variable declarations.
3327
b00e3f56
MS
3328 * solib.c (solib_find): Delete unused variable.
3329 (free_so_symbols): Delete unused variable.
3330 (info_sharedlibrary_command): Delete unused variable.
3331 (reload_shared_libraries_1): Delete unused variable.
3332 (_initialize_solib): Delete unused variable.
3333
90f62196
MS
3334 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
3335 (i386_collect_xstateregset): Delete unused variable.
3336 * i387-tdep.c (i387_print_float_info): Delete unused variable.
3337
75721c66
MS
3338 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
3339 Delete unused variable 'type'.
3340
af33db37
JB
33412010-05-05 Joel Brobecker <brobecker@adacore.com>
3342
90f62196 3343 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
63db82b2
JB
3344 ada-lang.c: Remove comment mentioning these macros.
3345 * m2-exp.y: Delete commented out code.
af33db37 3346
0497f5b0
JB
33472010-05-05 Joel Brobecker <brobecker@adacore.com>
3348
3349 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
3350 for array types.
3351 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
3352
6e39997a
PM
33532010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
3354
3355 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
0407b3f1 3356 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
6e39997a
PM
3357 ATTRIBUTE_UNUSED.
3358 (cleanup_kernel_helper_return): Likewise.
3359 * arm-tdep.c (copy_unmodified): Likewise.
3360 (copy_preload): Likewise.
3361 (copy_copro_load_store): Likewise.
3362 (cleanup_branch): Likewise.
3363 (copy_b_bl_blx): Likewise.
3364 (copy_bx_blx_reg): Likewise.
3365 (copy_alu_imm): Likewise.
3366 (copy_alu_reg): Likewise.
3367 (copy_alu_shifted_reg): Likewise.
3368 (cleanup_load): Likewise.
3369 (cleanup_store): Likewise.
3370 (cleanup_block_load_pc): Likewise.
3371 (cleanup_svc): Likewise.
3372 (copy_undef): Likewise.
3373 (copy_unpred): Likewise.
3374 * remote.c (register_remote_support_xml): Likewise.
3375
1412f70b
HZ
33762010-05-05 Hui Zhu <teawater@gmail.com>
3377
3378 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
3379
c4f7c687
MK
33802010-05-04 Mark Kettenis <kettenis@gnu.org>
3381
3382 * remote.c (register_remote_support_xml)
3383 (remote_query_supported_append, remote_query_supported): Add cast
3384 to NULL used as sentinel.
3385 * tracepoint.c (tvariables_info_1): Likewise.
3386 * utils.c (add_internal_problem_command): Likewise.
3387
63b4f126
MGD
33882010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
3389
3390 * dwarf2loc.c (read_pieced_value, write_pieced_value,
3391 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
3392 registers gracefully.
3393
2f1bdd26
MGD
33942010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
3395
0407b3f1 3396 * exec.c (print_section_info): Display entry point without arch
2f1bdd26
MGD
3397 specific parts.
3398
e1c34c5d
PM
33992010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
3400
3401 PR exp/11349.
3402 * printcmd.c (x_command): Only dereference once implicitly for
3403 TYPE_CODE_REF.
3404
ae462839
DE
34052010-05-03 Doug Evans <dje@google.com>
3406
3407 * event-loop.c (gdb_timer): Delete unused global.
3408 (create_timer): Update.
3409
1ac77ea1
JK
34102010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
3411
3412 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
3413 CURRENT->DECLARATION case.
3414 * cp-support.h (struct using_direct): Provide extended comment.
3415
7c54a108
MK
34162010-05-03 Mark Kettenis <kettenis@gnu.org>
3417
3418 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
3419 HPPABSD_SIZEOF_GREGS.
3420 (HPPAOBSD_SIZEOF_FPREGS): New define.
3421 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
3422 (hppaobsd_supply_fpregset): New function.
3423 (hppaobsd_gregset): Renamed from hppabsd_gregset.
3424 (hppaobsd_fpregset): New variable.
3425 (hppaobsd_regset_from_core_section): Handle floating-point registers.
3426 (_initialize_hppabsd_tdep): Remove spurious blank line.
3427
278582cb
PM
34282010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
3429
3430 PR pascal/11349.
3431 * p-valprint.c (pascal_value_print): Always dereference a value with
3432 type code TYPE_CODE_REF.
0407b3f1 3433
f0223081
PA
34342010-05-03 Pedro Alves <pedro@codesourcery.com>
3435
3436 * remote.c (remote_notice_signals): New.
3437 (remote_start_remote): In non-stop mode, update the remote end on
3438 which signals it can silently pass.
3439 (init_remote_ops): Install remote_notice_signals.
3440
c25c4a8b
JK
34412010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3442
3443 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
3444 * command.h (error_no_arg): ... here. Remove NORETURN, change
3445 ATTR_NORETURN to ATTRIBUTE_NORETURN.
3446 * defs.h (NORETURN, ATTR_NORETURN): Remove.
3447 (perror_with_name, verror, error, error_stream, vfatal, fatal)
3448 (internal_verror, internal_error, nomem): Remove NORETURN, change
3449 ATTR_NORETURN to ATTRIBUTE_NORETURN.
3450 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
3451 (throw_vfatal, throw_error): Remove NORETURN.
3452 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
3453 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
3454 (throw_error, deprecated_throw_reason): Remove NORETURN, change
3455 ATTR_NORETURN to ATTRIBUTE_NORETURN.
3456 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
3457 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
3458 NORETURN.
3459 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
3460 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
3461 ATTRIBUTE_NORETURN.
3462 * target.c (tcomplain): Likewise.
3463 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
3464 ATTRIBUTE_NORETURN.
3465 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
3466 (internal_error, perror_with_name, nomem): Remove NORETURN.
3467 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
3468 ATTRIBUTE_NORETURN.
3469
a0b31db1
JK
34702010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3471
3472 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
3473 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
3474 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
3475 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
3476 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
3477 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
3478 * complaints.h (complaint, internal_complaint): Likewise.
3479 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
3480 (ATTR_FORMAT): Remove.
3481 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
3482 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
3483 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
3484 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
3485 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
3486 (internal_error, internal_vwarning, internal_warning, warning)
3487 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
3488 * disasm.c (fprintf_disasm): Likewise.
3489 * exceptions.c (throw_it): Likewise.
3490 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
3491 (throw_error): Likewise.
3492 * language.h (type_error, range_error): Likewise.
3493 * linespec.c (cplusplus_error): Likewise.
3494 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
3495 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
3496 * monitor.c (monitor_debug): Likewise.
3497 * parser-defs.h (parser_fprintf): Likewise.
3498 * serial.h (serial_printf): Likewise.
3499 * tui/tui-hooks.c (tui_query_hook): Likewise.
3500 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
3501 (uo_message): Likewise.
3502 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
3503 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
3504 Likewise.
3505 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
3506
02a45ac0
PA
35072010-05-02 Pedro Alves <pedro@codesourcery.com>
3508
3509 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
3510 (cli_table_header, cli_begin, cli_end, cli_field_int)
3511 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
3512 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
3513 Delete forward declarations.
3514 (cli_ui_out_impl): Move below the callbacks.
3515 (_initialize_cli_out): Delete.
3516
1915ef4f
PA
35172010-05-02 Pedro Alves <pedro@codesourcery.com>
3518
3519 * README: Use consistent `GDB' and `GDBserver' spellings.
3520
0dfb946f
JK
35212010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3522
3523 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
3524
4d533103
PA
35252010-05-01 Pedro Alves <pedro@codesourcery.com>
3526
3527 * infrun.c (prepare_for_detach): In non-stop, context switch to
3528 the thread that got the event before handling the event.
3529
705b5767
TT
35302010-04-30 Tom Tromey <tromey@redhat.com>
3531
3532 * symtab.c (symbol_set_names): Fix typo.
3533
3c0ee1a4
PM
35342010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
3535
3536 * python/py-param.c (parm_constants): Avoid ARI warning
3537 by adding ARI comment.
3538 (parmpy_init): Likewise.
3539
ea1fae46
PM
35402010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
3541
3542 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
3543 and created type for re-use.
3544
c24d0242
PM
35452010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
3546
3547 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
3548
a26d8d11
DE
35492010-04-29 Doug Evans <dje@google.com>
3550
3551 * ser-base.h (reschedule): Delete prototype.
3552 * ser-base.c (reschedule): Make static.
3553
f8624c62
MGD
35542010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
3555
3556 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
3557 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
0407b3f1 3558 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
f8624c62 3559 EABI.
0407b3f1 3560 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
f8624c62
MGD
3561 use.
3562
e66408ed
PA
35632010-04-29 Pedro Alves <pedro@codesourcery.com>
3564
3565 PR gdb/11557
3566
3567 * regcache.c (registers_changed): Rename to ...
3568 (registers_changed_ptid): ... this, and only delete register cache
3569 entries matching the ptid filter argument.
3570 (registers_changed): Reimplement on top of registers_changed_ptid.
3571 * regcache.h (registers_changed_ptid): Declare.
3572 * target.c (target_resume): Flush register caches.
3573
d7b32ed3 35742010-04-29 Phil Muldoon <pmuldoon@redhat.com>
0407b3f1
AS
3575 Tom Tromey <tromey@redhat.com>
3576 Thiago Jung Bauermann <bauerman@br.ibm.com>
3577
3578 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
3579 (SUBDIR_PYTHON_SRCS): Likewise.
3580 (py-parameter.o): New rule.
3581 * python/py-parameter.c: New file.
3582 * python/python-internal.h (gdbpy_initialize_parameter)
3583 (gdbpy_parameter, gdbpy_parameter_value)
3584 (gdbpy_parse_command_name): Declare.
3585 * python/py-cmd.c (parse_command_name): Rename to
3586 gdbpy_parse_command_name.
3587 (gdbpy_parse_command_name): Accept a starting list parameter and
3588 use over cmdlist.
3589 (cmdpy_init): Use gdbpy_parse_command_name.
3590 * python/python.c (parameter_to_python): Rename to
3591 gdbpy_parameter_to_python. Accept enum var_types and value.
3592 (gdbpy_parameter): Use gdbpy_parameter_value.
3593 (_initialize_python): Call gdbpy_initialize_parameters.
d7b32ed3 3594
ce72ce41
MGD
35952010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
3596
3597 * MAINTAINERS: Add myself for write after approval privileges.
3598
6aecb9c2
JB
35992010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
3600
3601 D language support.
3602 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
3603 (COMMON_OBS): Add d-lang.o d-valprint.o.
3604 (HFILES_NO_SRCDIR): Add d-lang.h.
3605 * NEWS: Mention D language support.
3606 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
3607 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
3608 * d-lang.c: New file.
3609 * d-lang.h: New file.
3610 * d-valprint.c: New file.
3611 * defs.h (enum language): Add language_d.
3612 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
3613 * language.c (binop_result_type, integral_type, character_type)
3614 (string_type, boolean_type, structured_type): Add language_d.
3615 * symfile.c (init_filename_language_table): Add language_d.
3616 * symtab.c: Include d-lang.h.
3617 (symbol_init_language_specific, symbol_find_demangled_name)
3618 (symbol_natural_name, lookup_symbol_in_language)
3619 (symbol_demangled_name, symbol_matches_domain): Add language_d.
3620
6f992fbf
JB
36212010-04-27 Joel Brobecker <brobecker@adacore.com>
3622
3623 * solib-svr4.c (solib_svr4_r_map): Expand function description.
3624
dde59185
JB
36252010-04-27 Joel Brobecker <brobecker@adacore.com>
3626
3627 * symfile.c (init_filename_language_table): Register .dg files
3628 with language_ada.
3629
d09ce91e
JB
36302010-04-27 Joel Brobecker <brobecker@adacore.com>
3631
3632 * gdbtypes.h (struct main_type): Expand comment about target_type
3633 field.
3634
67f1675e
JB
36352010-04-27 Pedro Alves <pedro@codesourcery.com>
3636 Tristan Gingold <gingold@adacore.com>
02aeec7b
JB
3637
3638 * symfile.c (reread_symbols): Also search for file in libraries.
3639 Update comment.
3640
dfd0fe27
JB
36412010-04-27 Joel Brobecker <brobecker@adacore.com>
3642
3643 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
3644 in terms of configuration.
3645
0133421a
JK
36462010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
3647
3648 * objfiles.c: Include solist.h.
3649 (free_all_objfiles): New variable so. Check stale solist objfiles.
3650 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
3651 and no_shared_libraries.
3652
e78f4312
JB
36532010-04-27 Joel Brobecker <brobecker@adacore.com>
3654
3655 ARI warning fix.
3656 * python/py-auto-load.c (source_section_scripts): Remove trailing
3657 new-line in i18n string.
3658
9214d371
DE
36592010-04-26 Doug Evans <dje@google.com>
3660
3661 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
3662
3f172e24
TT
36632010-04-26 Tom Tromey <tromey@redhat.com>
3664
3665 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
3666 command list.
3667
e790e06e
PM
36682010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
3669
3670 Removal of config/i386/nm-i386sol2.h native configuration file.
3671 * config/i386/nm-i386sol2.h: Remove file.
3672 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
3673 * config/i386/sol2-64.mh: Idem.
88562582
PM
3674 * config/djgpp/fnchange.lst: Remove reference to that file.
3675 * Makefile.in (HFILES_NO_SRCDIR): Idem.
e790e06e 3676
b7da9e9f
PM
36772010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
3678
3679 PR breakpoints/11531.
3680 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
3681 macro definition and related comment.
3682 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
3683 (resume): Remove code and comment related to this macro.
3684
72f6eb52
JK
36852010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3686
3687 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
3688 Fix whitespace.
3689
ab38a727
PA
36902010-04-24 Pedro Alves <pedro@codesourcery.com>
3691
3692 * defs.h: Adjust comment.
3693 * filesystem.h, filesystem.c: New files.
3694 * Makefile.in (SFILES): Add filesystem.c.
3695 (COMMON_OBS): Add filesystem.o.
3696 * solib.c (solib_find): Handle DOS-based filesystems. Handle
3697 different target and host path flavours.
3698 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
3699 has_dos_based_file_system on the gdbarch.
3700 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
3701 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
3702 * i386-tdep.c (i386_go32_init_abi): Ditto.
3703 * gdbarch.sh (has_dos_based_file_system): New.
3704 * gdbarch.h, gdbarch.c: Regenerate.
3705 * NEWS: Mention improved support for remote targets with DOS-based
3706 filesystems. Mention new `set/show target-file-system-kind'
3707 commands.
3708
35c9c7ba
SS
37092010-04-23 Stan Shebs <stan@codesourcery.com>
3710
3711 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
3712 comments.
3713 (struct agent_reqs): Remove.
3714 (ax_reg_mask): Declare.
3715 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
3716 (free_agent_expr): Free reg_mask.
3717 (ax_print): Add scope and register mask info.
3718 (ax_reqs): Remove agent_reqs argument, use agent expression
3719 fields, and move part of register mask computation to...
3720 (ax_reg_mask): New function.
3721 * ax-gdb.c (gen_trace_static_fields): Call it.
3722 (gen_traced_pop): Ditto.
3723 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
3724 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
3725 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
3726 (gen_eval_for_expr): Ditto, and require an rvalue.
3727 (agent_command): Call ax_reqs.
3728 (agent_eval_command): Ditto.
3729 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
3730 (validate_action_line): Ditto.
3731 (collect_symbol): Ditto.
3732 (encode_actions_1): Ditto.
3733
492928e4
JK
37342010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
3735 Paul Pluzhnikov <ppluzhnikov@google.com>
3736 Jan Kratochvil <jan.kratochvil@redhat.com>
3737
3738 Fix deadlock on looped list of loaded shared objects.
3739 * solib-svr4.c (LM_PREV): New function.
3740 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
3741 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
3742 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
3743 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
3744
66d09542
DE
37452010-04-23 Doug Evans <dje@google.com>
3746
88a1906b
DE
3747 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
3748 python.
3749 * configure: Regenerate.
3750 * main.c: #include "python/python.h".
3751 (captured_main): Defer loading auto-loaded scripts until after
3752 local_gdbinit has been sourced.
3753 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
3754 (load_auto_scripts_for_objfile): New function.
3755 (auto_load_new_objfile): Call it.
3756 * python/python.h (gdbpy_global_auto_load): Declare.
3757 (load_auto_scripts_for_objfile): Declare.
3758
66d09542
DE
3759 Add support for auto-loading scripts from .debug_gdb_scripts section.
3760 * NEWS: Add entry for .debug_gdb_scripts.
3761 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
3762 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
3763 (py-auto-load.o): New rule.
3764 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
3765 * cli/cli-cmds.h (find_and_open_script): Update prototype.
3766 * python/py-auto-load.c: New file.
3767 * python/python-internal.h: #include <stdio.h>.
3768 (set_python_list, show_python_list): Declare.
3769 (gdbpy_initialize_auto_load): Declare.
3770 (source_python_script_for_objfile): Declare.
3771 * python/python.c: Remove #include of observer.h.
3772 (gdbpy_auto_load): Moved to py-auto-load.c.
3773 (GDBPY_AUTO_FILENAME): Ditto.
3774 (gdbpy_new_objfile): Delete.
3775 (source_python_script_for_objfile): New function.
3776 (set_python_list, show_python_list): Make externally visible.
3777 (_initialize_python): Move "auto-load" command to py-auto-load.c
3778 and observer_attach_new_objfile to py-auto-load.c.
3779
3a48e6ff 37802010-04-23 Jerome Guitton <guitton@adacore.com>
0407b3f1 3781
3a48e6ff
JG
3782 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
3783 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
3784 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
3785 New constants.
3786 (alpha_heuristic_analyze_probing_loop): New function.
3787 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
3788 and handle cases when a stack probe loop is generated.
3789 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
3790 (alpha_mdebug_max_frame_size_exceeded): New function.
3791 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
3792 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
3793 Return 0 when the maximum debuggable frame size has been exceeded.
3794
e4166a49
JB
37952010-04-23 Joel Brobecker <brobecker@adacore.com>
3796
3797 Fix ARI warning.
3798 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
3799
8bd10a10
CM
38002010-04-20 Chris Moller <cmoller@redhat.com>
3801
3802 PR 10179
3803
3804 * symtab.c (rbreak_command): Added code to include a filename
3805 specification in the rbreak argument.
3806 * NEWS: Added a brief description of filename-qualified rbreak.
3807
c0201579
JK
38082010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
3809
3810 Fix crashes on dangling display expressions.
3811 * ada-lang.c (ada_operator_check): New function.
3812 (ada_exp_descriptor): Fill-in the field operator_check.
3813 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
3814 * jv-lang.c (exp_descriptor_java): Likewise.
3815 * m2-lang.c (exp_descriptor_modula2): Likewise.
3816 * scm-lang.c (exp_descriptor_scm): Likewise.
3817 * parse.c (exp_descriptor_standard): Likewise.
3818 (operator_check_standard): New function.
3819 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
3820 * parser-defs.h (struct exp_descriptor): New field operator_check.
3821 (operator_check_standard, exp_uses_objfile): New declarations.
3822 * printcmd.c: Remove the inclusion of solib.h.
3823 (display_uses_solib_p): Remove the function.
3824 (clear_dangling_display_expressions): Call lookup_objfile_from_block
3825 and exp_uses_objfile instead of display_uses_solib_p.
3826 * solist.h (struct so_list) <objfile>: New comment.
3827 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
3828 * symtab.h (lookup_objfile_from_block): New declaration.
3829 (struct general_symbol_info) <obj_section>: Extend the comment.
3830
6ffbb7ab
TJB
38312010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
3832 Thiago Jung Bauermann <bauerman@br.ibm.com>
3833
3834 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
3835 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
3836 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
3837 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
3838 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
3839 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
3840 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
3841 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
3842 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
3843 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
3844 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
3845 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
3846 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
3847 Define, in case <ptrace.h> doesn't provide it.
3848 (booke_debug_info): New variable.
3849 (max_slots_number): Ditto.
3850 (hw_break_tuple): New struct.
3851 (thread_points): Ditto.
3852 (ppc_threads): New variable.
3853 (PPC_DEBUG_CURRENT_VERSION): New define.
3854 (have_ptrace_new_debug_booke): New function.
3855 (ppc_linux_check_watch_resources): Renamed to ...
3856 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
3857 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
3858 (booke_cmp_hw_point): New function.
3859 (booke_find_thread_points_by_tid): Ditto.
3860 (booke_insert_point): Ditto.
3861 (booke_remove_point): Ditto.
3862 (ppc_linux_insert_hw_breakpoint): Ditto.
3863 (ppc_linux_remove_hw_breakpoint): Ditto.
3864 (get_trigger_type): Ditto.
3865 (ppc_linux_insert_watchpoint): Handle BookE processors.
3866 (ppc_linux_remove_watchpoint): Ditto.
3867 (ppc_linux_new_thread): Ditto.
3868 (ppc_linux_thread_exit): New function..
3869 (ppc_linux_stopped_data_address): Handle BookE processors.
3870 (ppc_linux_watchpoint_addr_within_range): Ditto.
3871 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
3872 to_remove_hw_breakpoint fields of the target operations struct.
3873 Add observe for the thread_exit event.
3874
be0d2954
L
38752010-04-22 H.J. Lu <hongjiu.lu@intel.com>
3876
3877 * i386-linux-nat.c (regmap): Removed.
3878 (fetch_register): Replace regmap with
3879 i386_linux_gregset_reg_offset.
3880 (store_register): Likewise.
3881 (supply_gregset): Likewise.
3882 (fill_gregset): Likewise.
3883
3884 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
3885 global.
3886
3887 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
3888
f56dcb88
CM
38892010-04-22 Chris Moller <cmoller@redhat.com>
3890
3891 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
758afad7
L
3892 method of popping recursion-detection stack with a method based on
3893 obstack_object_size(). (Similar to the PR9167 patch below, but for
f56dcb88
CM
3894 the static array obstack rather than the static member obstack.)
3895
6cd6a2ae
L
38962010-04-22 H.J. Lu <hongjiu.lu@intel.com>
3897
3898 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
3899 (_initialize_amd64_linux_nat): Replace
3900 amd64_linux_gregset64_reg_offset with
3901 amd64_linux_gregset_reg_offset.
3902
3903 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
3904 global.
3905
3906 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
3907
621791b8
PM
39082010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
3909
3910 PR stabs/11479.
3911 * stabsread.c (set_length_in_type_chain): New function.
3912 (read_struct_type): Call set_length_in_type_chain function.
3913 (read_enum_type): Idem.
3914
105c2d85
SS
39152010-04-21 Stan Shebs <stan@codesourcery.com>
3916 Nathan Sidwell <nathan@codesourcery.com>
3917
3918 * tracepoint.c (trace_save): Open in binary mode.
3919
9a22f0d0
PM
39202010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
3921
3922 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
3923 fields.
0407b3f1 3924 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
9a22f0d0
PM
3925 builtin_char32 fields.
3926 * printcmd.c (decode_format): Set char size to '\0'
3927 for strings unless explicit size is given.
3928 (print_formatted): Correct calculation of NEXT_ADDRESS
3929 for 16 or 32 bit strings.
3930 (do_examine): Do not force byte size for strings.
3931 Use builtin_char16 and builtin_char32 types to display
0407b3f1 3932 16 or 32 bit-wide strings.
9a22f0d0
PM
3933 (x_command): Set LAST_SIZE to 'b' for string type.
3934
f335d1b3
L
39352010-04-21 H.J. Lu <hongjiu.lu@intel.com>
3936
3937 PR corefiles/11523
3938 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
3939 XCR0 first.
3940
3941 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
3942 there is no .reg-xstate section.
3943 (i386_linux_core_read_description): Check XCR0 first.
3944
a9789a6b
MF
39452010-04-21 Mike Frysinger <vapier@gentoo.org>
3946
3947 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
3948 for len <= 8.
3949
0b66f317
CM
39502010-04-21 Chris Moller <cmoller@redhat.com>
3951
3952 PR 9167
3953 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
32d7376d
L
3954 method of popping recursion-detection stack with a method based on
3955 obstack_object_size().
0b66f317 3956
6e354e5e
PM
39572010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
3958
3959 PR pascal/11492.
3960 * p-valprint.c (pascal_val_print): Fix default printing of integer
3961 arrays.
3962
57174f31
PM
39632010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
3964
3965 Fix compilation warning on gcc-4.1.2.
3966 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
3967 local variable`pc' to zero.
3968
6fbc7cd8
JB
39692010-04-20 Joel Brobecker <brobecker@adacore.com>
3970
3971 Implement thread support with core files on alpha-tru64.
3972 * dec-thread.c (dec_thread_find_new_threads): New function,
3973 extracted from resync_thread_list.
3974 (resync_thread_list): Add OPS parameter. Replace extracted-out
3975 code by call to dec_thread_find_new_threads.
3976 (dec_thread_wait): Update call to resync_thread_list.
3977 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
3978
438c98a1
JB
39792010-04-20 Joel Brobecker <brobecker@adacore.com>
3980
3981 * ada-lang.c (value_pointer): New function.
3982 (make_array_descriptor): Call value_pointer to convert addresses to
3983 pointers.
3984
2971b56b
JB
39852010-04-20 Joel Brobecker <brobecker@adacore.com>
3986
3987 * rs6000-aix-tdep.c: #include exceptions.h.
3988 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
3989 while reading the memory at ADDR, then ADDR cannot be a function
3990 descriptor.
3991
be942545
JB
39922010-04-20 Joel Brobecker <brobecker@adacore.com>
3993
3994 * ada-typeprint.c (ada_print_typedef): New function.
3995 * ada-lang.h (ada_print_typedef): Add declaration.
3996 * ada-lang.c (ada_language_defn): set la_print_typdef field
3997 to ada_print_typedef.
3998
1ca8fce0
JB
39992010-04-20 Joel Brobecker <brobecker@adacore.com>
4000
4001 * procfs.c (procfs_address_to_host_pointer): Only define when used.
4002
e9ef4f39
JB
40032010-04-20 Joel Brobecker <brobecker@adacore.com>
4004
4005 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
4006 (iterate_over_mappings): Adjust function profile. Add declaration.
4007 (insert_dbx_link_bpt_in_region, info_mappings_callback):
4008 Adjust accordingly.
4009
e294797a
JB
40102010-04-20 Joel Brobecker <brobecker@adacore.com>
4011
4012 * procfs.c (solib_mappings_callback): Move function up to avoid
4013 a compiler warning.
4014
a223f1e7
JB
40152010-04-20 Joel Brobecker <brobecker@adacore.com>
4016
4017 * procfs.c (find_signalled_thread, find_stop_signal): Move
4018 these functions down to define them only when used.
4019
0c3acc09
JB
40202010-04-20 Joel Brobecker <brobecker@adacore.com>
4021
4022 * valprint.c (common_val_print): Fix the value before extracting
4023 its contents.
4024 * ada-lang.c (ada_to_fixed_value): Make this function extern.
4025 * ada-lang.h (ada_to_fixed_value): New function declaration.
4026 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
4027 to avoid code duplication and fix a bug in the handling of
4028 fixed types contents.
4029
31ef98ae
TT
40302010-04-20 Tom Tromey <tromey@redhat.com>
4031
4032 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
4033 (read_partial_die): Likewise.
4034 (dwarf_attr_name): Likewise.
4035
ec31cde5 40362010-04-20 Chris Moller <cmoller@redhat.com>
0407b3f1 4037
ec31cde5
CM
4038 PR 10867
4039
4040 * cp-valprint.c (global): Adding new static array recursion
4041 detection obstack.
4042 (cp_print_value_fields, cp_print_static_field): Added new static
4043 array recursion detection code.
4044
e0e0e543
MK
40452010-04-20 Mark Kettenis <kettenis@gnu.org>
4046
4047 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
4048 general-purpose register set should be 68 instead of 144.
4049 (i386_linux_sse_regset_sections): Likewise.
4050 (i386_linux_avx_regset_sections): Likewise.
4051
08922a10
SS
40522010-04-20 Stan Shebs <stan@codesourcery.com>
4053 Nathan Sidwell <nathan@codesourcery.com>
4054
4055 * dwarf2loc.c (struct axs_var_loc): New struct.
4056 (dwarf2_tracepoint_var_loc): New function.
4057 (dwarf2_tracepoint_var_access): New function.
4058 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
4059 with DW_OP_piece.
4060 (locexpr_describe_location_piece): New function.
4061 (locexpr_describe_location_1): New function.
4062 (locexpr_describe_location): Call it, update signature.
4063 (loclist_describe_location): Rewrite to loop over locations,
4064 update signature.
4065 * symtab.h (struct symbol_computed_ops): Add address to
4066 describe_location arguments, return void.
4067 * printcmd.c (address_info): Get context PC, pass to computed
4068 location description.
4069 * tracepoint.c (scope_info): Ditto.
4070 * ax-gdb.c (trace_kludge): Export.
4071
2dc7f7b3
TT
40722010-04-20 Tom Tromey <tromey@redhat.com>
4073
4074 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
4075 (struct dwarf2_cie) <segment_size>: New field.
4076 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
4077 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
4078 DW_FORM_exprloc.
4079 (read_attribute_value): Handle DW_FORM_flag_present,
4080 DW_FORM_sec_offset, DW_FORM_exprloc.
4081 (dump_die_shallow): Likewise.
4082 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
4083 (dwarf2_const_value): Handle DW_FORM_exprloc.
4084 (attr_form_is_block): Likewise.
4085 (struct line_header) <maximum_ops_per_instruction>: New field.
4086 (dwarf_decode_line_header): Set new field.
4087 (dwarf_decode_lines): Handle new field.
4088
ce4b0682
SDJ
40892010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4090
4091 * f-exp.y: Add new production to recognize the `logical*8' type.
4092 (LOGICAL_S8_KEYWORD): New token.
4093 * f-lang.c (enum f_primitive_types)
4094 <f_primitive_type_logical_s8>: New field.
4095 (f_language_arch_info): Handling `logical*8' type.
4096 (build_fortran_types): Building `logical*8' type.
4097 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
4098
ff9f22f1
DE
40992010-04-19 Doug Evans <dje@google.com>
4100
4101 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
4102 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
4103 (pipe_close): Ditto.
4104
437125bd
PM
41052010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4106
4107 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
4108
e8e6c82e
PM
41092010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4110
4111 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
4112 type to void function.
4113
4136fdd2
SS
41142010-04-19 Stan Shebs <stan@codesourcery.com>
4115 Vladimir Prus <vladimir@codesourcery.com>
4116
4117 * tracepoint.c (tfind_1): Add missing newline, report exit from
4118 tfind mode as such.
4119 * target.c (update_current_target): Make default
4120 to_trace_find return -1.
4121
0c4b2e63
MF
41222010-04-19 Mike Frysinger <vapier@gentoo.org>
4123
4124 * objc-lang.c (find_methods): Move symname check up.
4125
78076abc
PA
41262010-04-19 Pedro Alves <pedro@codesourcery.com>
4127
4128 * ada-lang.c (print_recreate_exception)
4129 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
4130 not "catch unhandled".
4131
6149aea9
PA
41322010-04-19 Pedro Alves <pedro@codesourcery.com>
4133
4134 PR breakpoints/8554.
4135
4136 Implement `save-breakpoints'.
4137
4138 * breakpoint.c (save_cmdlist): New.
4139 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
4140 to save_cmdlist.
4141 (print_recreate_catch_fork): New.
4142 (catch_fork_breakpoint_ops): Install it.
4143 (print_recreate_catch_vfork): New.
4144 (catch_vfork_breakpoint_ops): Install it.
4145 (print_recreate_catch_syscall): New.
4146 (catch_syscall_breakpoint_ops): Install it.
4147 (print_recreate_catch_exec): New.
4148 (catch_exec_breakpoint_ops): Install it.
4149 (print_recreate_exception_catchpoint): New.
4150 (gnu_v3_exception_catchpoint_ops): Install it.
4151 (save_breakpoints): New, based on tracepoint_save_command, but
4152 handle all breakpoint types.
4153 (save_breakpoints_command): New.
4154 (tracepoint_save_command): Rename to...
4155 (save_tracepoints_command): ... this, and reimplement using
4156 save_breakpoints.
4157 (save_command): New.
4158 (_initialize_breakpoints): Install the "save" command prefix.
4159 Install the "save breakpoints" command. Make "save-tracepoints" a
4160 deprecated alias for "save tracepoints".
4161 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
4162 * ada-lang.c (print_recreate_exception): New.
4163 (print_recreate_catch_exception): New.
4164 (catch_exception_breakpoint_ops): Install it.
4165 (print_recreate_catch_exception_unhandled): New.
4166 (catch_exception_unhandled_breakpoint_ops): Install it.
4167 (print_recreate_catch_assert): New.
4168 (catch_assert_breakpoint_ops): Install it.
4169
4170 * NEWS: Mention the new `save breakpoints' command. Mention the
4171 new `save tracepoints' alias and that `save-tracepoints' is now
4172 deprecated.
4173
0a8fce9a
PA
41742010-04-18 Pedro Alves <pedro@codesourcery.com>
4175
4176 PR tui/9217
4177
4178 * tui/tui-out.c: Include cli-out.h.
4179 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
4180 (tui_begin, tui_end, tui_field_int, tui_field_skip)
4181 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
4182 (tui_message, tui_wrap_hint, tui_flush): Delete forward
4183 declarations.
4184 (struct ui_out_data): Rename to...
4185 (struct tui_ui_out_data): ... this. Remove `stream' and
4186 `suppress_output' fields, and inherit cli_ui_out_data.
4187 (tui_out_data): New typedef.
4188 (tui_ui_out_impl): Don't initialize fields staticaly.
4189 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
4190 (tui_begin, tui_end): Delete.
4191 (tui_field_int): Adjust to delegate most work to the base type.
4192 (tui_field_skip): Delete.
4193 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
4194 delegate most work to the base type.
4195 (tui_spaces): Delete.
4196 (tui_text): Adjust to delegate most work to the base type.
4197 (tui_message): Delete.
4198 (tui_wrap_hint): Delete.
4199 (tui_flush): Delete.
4200 (out_field_fmt): Delete.
4201 (field_separator): Delete.
4202 (tui_out_new): Adjust to initialize the base type.
4203 (_initialize_tui_out): Initialize tui_ui_out_impl.
4204 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
4205 cli_ui_out_data.
4206 (cli_out_data): Adjust.
4207 (cli_ui_out_impl): Make extern.
4208 (cli_table_header, cli_field_int, cli_field_skip): Use
4209 uo_field_string instead of cli_field_string.
4210 (cli_redirect): Adjust to use cli_out_data.
4211 (cli_out_data_ctor): New.
4212 (cli_out_new): Use it.
4213 * cli-out.h (struct ui_file): Remove forward declaration.
4214 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
4215 (cli_ui_out_impl): Declare.
4216 (cli_out_data_ctor): Declare.
4217 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
4218 (uo_field_string): No longer static.
4219 (ui_out_data): Change return type to void pointer.
4220 (ui_out_new): Change `data' parameter type to void pointer.
4221 * ui-out.h (struct ui_out_data): Don't forward declare.
4222 (ui_out_data): Change return type to void pointer.
4223 (ui_out_new): Change `data' parameter type to void pointer.
4224 (uo_field_string): Declare.
4225
172240dd
PA
42262010-04-17 Pedro Alves <pedro@codesourcery.com>
4227
4228 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
4229 instead of always false.
4230
ed41462c
L
42312010-04-17 H.J. Lu <hongjiu.lu@intel.com>
4232
4233 PR corefiles/11511
4234 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
4235 orig_rax.
4236
cc60f2e3
PA
42372010-04-17 Pedro Alves <pedro@codesourcery.com>
4238
4239 * breakpoint.c (watchpoints_triggered): Use
4240 is_hardware_watchpoint.
4241 (watchpoints_triggered): Ditto.
4242 (bpstat_check_location): Use is_watchpoint and
4243 is_hardware_watchpoint.
4244 (bpstat_check_watchpoint): Use is_watchpoint and
4245 is_hardware_watchpoint.
4246 (bpstat_stop_status): Fix comment.
4247 (user_settable_breakpoint): Use is_watchpoint.
4248 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
4249 (disable_watchpoints_before_interactive_call_start): Use
4250 is_watchpoint.
4251 (enable_watchpoints_after_interactive_call_stop): Use
4252 is_watchpoint.
4253 (clear_command): Use is_watchpoint.
4254 (do_enable_breakpoint): Use is_watchpoint.
4255
cb7db0f2
MF
42562010-04-16 Mike Frysinger <vapier@gentoo.org>
4257
4258 * solib-frv.c (enable_break1_done): Delete.
4259 (enable_break2): Do not check enable_break1_done. Move the
4260 enable_break2_done setting and call to
4261 remove_solib_event_breakpoints() to the end. Return without
4262 warning when the contents of _dl_debug_addr are 0.
4263 (enable_break): Do not set enable_break1_done.
4264 (frv_clear_solib): Likewise.
4265
d77b48cf
KB
42662010-04-16 Kevin Buettner <kevinb@redhat.com>
4267
4268 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
4269 instead of an error if no PLT entry is found. Return a
4270 potentially useful result.
4271 (m32c_m16c_pointer_to_address): Add code to search for function
4272 address when no .plt entry is found.
4273
f90824dc
SS
42742010-04-16 Stan Shebs <stan@codesourcery.com>
4275
4276 * tracepoint.c (trace_variable_command): Run a cleanup.
4277
9b79b476
PM
42782010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
4279
4280 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
4281
711e434b
PM
42822010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
4283
4284 Support for Windows OS Thread Information Block.
4285 * NEWS: Document new feature.
4286 * remote.c (PACKET_qGetTIBAddr): New enum element.
4287 (remote_get_tib_address): New function.
4288 (init_remote_ops): Set to_get_tib_address field
4289 to remote_get_tib_address.
4290 (_initialize_remote): Add add_packet_config_cmd
4291 for PACKET_qGetTIBAddr.
4292 * target.c (update_current_target): Set default value for
4293 new to_get_tib_address field.
4294 * target.h (target_ops): New field to_get_tib_address.
4295 (target_get_tib_address): New macro.
4296 * windows-nat.c (thread_info): Add thread_local_base field.
4297 (windows_add_thread): Add tlb argument of type 'void *'.
4298 (fake_create_process): Adapt windows_add_thread call.
4299 (get_windows_debug_event): Idem.
4300 (windows_get_tib_address): New function.
4301 (init_windows_ops): Set to_get_tib_address field
4302 to remote_get_tib_address.
4303 (_initialize_windows_nat): Replace info_w32_cmdlist
4304 initialization by a call to init_w32_command_list.
4305 (info_w32_command, info_w32_cmdlist): Removed from here...
4306 to windows-tdep.c file.
4307 * windows-tdep.h (info_w32_cmdlist): Declare.
0407b3f1 4308 (init_w32_command_list): New external function
711e434b
PM
4309 declaration.
4310 * windows-tdep.c: Add several headers.
4311 (info_w32_cmdlist): to here, made global.
4312 (thread_information_32): New struct.
4313 (thread_information_64): New struct.
4314 (TIB_NAME): New char array.
4315 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
4316 (maint_display_all_tib): New static variable.
4317 (windows_get_tlb_type): New function.
4318 (tlb_value_read, tlb_value_write): New functions.
4319 (tlb_value_funcs): New static struct.
4320 (tlb_make_value): New function.
4321 (display_one_tib): New function.
4322 (display_tib): New function.
4323 (show_maint_show_all_tib):New function.
4324 (info_w32_command): Moved from windows-nat.c.
4325 (init_w32_command_list): New function.
4326 (_initialize_windows_tdep): New function.
4327 New "maint set/show show-all-tib" command
4328 New "$_tlb" internal variable.
4329
cae3f17b
JB
43302010-04-16 Joel Brobecker <brobecker@adacore.com>
4331
4332 * tui/tui-regs.c (tui_display_register): Add comment about
4333 a couple of casts.
4334 * tui/tui-stack.c (tui_show_locator_content): Ditto.
4335
2ce6d6bf
SS
43362010-04-15 Stan Shebs <stan@codesourcery.com>
4337
4338 * frame.c: Include tracepoint.h.
4339 (get_current_frame): Allow a trace frame to be an alternate source
4340 of stack frame data.
4341 * tracepoint.c (tfind_1): Don't try to get current stack frame if
4342 it won't succeed.
4343
7e559477
PA
43442010-04-15 Pedro Alves <pedro@codesourcery.com>
4345
4346 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
4347 flags.
4348 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
4349
3f7b2faa
DE
43502010-04-15 Doug Evans <dje@google.com>
4351
fa33c3cd
DE
4352 * NEWS: Add entry for python program space support.
4353 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
4354 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
4355 (py-progspace.o): New rule.
4356 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
4357 function.
4358 (find_pretty_printer_from_progspace): New function.
4359 (find_pretty_printer_from_gdb): New function.
4360 (find_pretty_printer): Rewrite.
4361 * python/py-progspace.c: New file.
4362 * python/python-internal.h (program_space): Add forward decl.
4363 (pspace_to_pspace_object, pspy_get_printers): Declare.
4364 (gdbpy_initialize_pspace): Declare.
4365 * python/python.c: #include "progspace.h".
4366 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
4367 (_initialize_python): Call gdbpy_initialize_pspace.
4368 (GdbMethods): Add current_progspace, progspaces.
4369
3f7b2faa
DE
4370 Add -s option to source command.
4371 * NEWS: Document new option.
4372 * cli/cli-cmds.c (find_and_open_script): Add function comment.
4373 Delete from_tty and cleanupp args. Split filep arg into file and
4374 full_pathp. New arg search_path.
4375 (source_script_from_stream): New function.
4376 (source_script_with_search): New function.
4377 (source_script): Rewrite.
4378 (source_command): Parse "-s" option.
4379 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
4380 * python/python.c (source_python_script): Make file arg a const char *.
4381 Don't call fclose, leave for caller.
4382 * python/python.h (source_python_script): Update.
4383
a86988f2
PA
43842010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
4385 Pedro Alves <pedro@codesourcery.com>
4386
4387 Avoid rereading shared libraries that haven't changed.
4388
4389 * solib.c (free_so_symbols): New function, from ...
4390 (free_so): ... here. Call it.
4391 (solib_read_symbols): Don't warn here if symbols have already been
4392 loaded.
4393 (solib_add): Warn here instead, if a pattern was specified.
4394 (reload_shared_libraries_1): New.
4395 (reload_shared_libraries): Rewrite to not fetch the library list.
4396
e6d9b9c2
DE
43972010-04-14 Doug Evans <dje@google.com>
4398
589390d6 4399 * source.c (openp): Strip DOS drive letter if present before
e6d9b9c2
DE
4400 concatenating string to search path.
4401
516ba659
PA
44022010-04-14 Pedro Alves <pedro@codesourcery.com>
4403
4404 * objfiles.h (gdb_bfd_close_or_warn): Declare.
4405 * objfiles.c (gdb_bfd_close_or_warn): New.
4406 * corelow.c: Include objfiles.h
4407 (core_close): Use gdb_bfd_close_or_warn.
4408 * elfread.c (build_id_verify): Ditto.
4409 * exec.c (exec_close, exec_close_1): Ditto.
4410
048d532d
PA
44112010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
4412 Pedro Alves <pedro@codesourcery.com>
4413
4414 Group errors for many missing shared libraries.
4415
4416 * solist.h (struct so_list): Remove from_tty.
4417 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
4418 (solib_map_sections): Take so_list argument. Return 0 if we
4419 failed to open a BFD. Add target sections here.
4420 (symbol_add_stub): Delete.
4421 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
4422 not from_tty copied from the so_list. Don't warn a second time
4423 for a missing library.
4424 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
4425 add to the section table here. Print out a single warning for all
4426 missing libraries.
4427 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
4428 flags.
4429
044c0f87
PM
44302010-04-14 Phil Muldoon <pmuldoon@redhat.com>
4431
4432 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
4433 error/warning messages. Capitalize and use complete sentences.
4434 (blpy_block_syms_iternext): Likewise.
4435 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
4436 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
4437 (frame_info_to_frame_object, frapy_read_var)
4438 (gdbpy_frame_stop_reason_string): Likewise.
4439 * python/py-lazy-string.c (stpy_convert_to_value)
4440 (gdbpy_create_lazy_string_object): Likewise.
4441 * python/py-objfile.c (objfpy_set_printers): Likewise.
4442 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
4443 * python/python.c (parameter_to_python): Likewise.
4444 * python/py-type.c (typy_range, typy_target): Likewise.
4445 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
4446 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
4447
4448
79f283fe
PM
44492010-04-14 Phil Muldoon <pmuldoon@redhat.com>
4450
4451 PR python/11381
4452
4453 * python/py-prettyprint.c (pretty_print_one_value): Test for
4454 Py_None.
4455 (print_string_repr): Test for Py_None. Set flags accordingly.
4456 Return value depending on return type.
4457 (print_children): Take a value indicating whether data was printed
4458 before this function was called. Alter output accordingly.
4459 (apply_val_pretty_printer): Capture return value from
4460 print_string_repr and pass to print_children.
4461
4ac5d44e
MK
44622010-04-13 Mark Kettenis <kettenis@gnu.org>
4463
e1caee70 4464 PR corefiles/11481
4ac5d44e
MK
4465 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
4466 register note sections.
4467 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
4468 New variables.
4469 (i386_linux_init_abi): Install list of supported register note
4470 sections that matches the target description.
4471
ad91cd99
PA
44722010-04-13 Pedro Alves <pedro@codesourcery.com>
4473
4474 * remote.c (remote_get_noisy_reply): Don't error out on empty
4475 replies.
4476 (remote_start_remote): Update and merge tracepoints and trace
4477 state variables as long as the target supports tracepoints.
4478 (remote_trace_init): Fix prototype.
4479 (remote_download_trace_state_variable): Validate reply.
4480 (remote_trace_set_readonly_regions): Fix prototype.
4481 (remote_trace_start): Fix prototype. Check for empty reply.
4482 (remote_get_trace_status): Small cleanup.
4483 (remote_trace_stop): Fix prototype. Check for empty reply.
4484 (remote_trace_find): Check for empty reply.
4485 (remote_save_trace_data): Validate reply.
4486 (remote_set_disconnected_tracing): Check for empty reply, and
4487 validate reply.
4488 (remote_set_circular_trace_buffer): Ditto.
4489
ae3bccd4
PM
44902010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
4491
4492 Suppress unused value warning during compilation.
4493 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
4494 calls to void.
4495 * tui/tui-stack.c (tui_show_locator_content): Likewise.
4496
523136f2
SS
44972010-04-12 Stan Shebs <stan@codesourcery.com>
4498
4499 * tracepoint.c (tfile_xfer_partial): Check read result.
4500
0d18d720
MF
45012010-04-12 Mike Frysinger <vapier@gentoo.org>
4502
4503 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
4504 * remote-sim.c (gdbsim_files_info): Likewise.
4505
3b273a55
RE
45062010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4507
4508 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
4509 * arm-linux-nat.c (arm_linux_vfp_register_count): New
4510 variable.
4511 (fetch_vfp_registers): New function to fetch VFP registers.
4512 (store_vfp_registers): New function to store VFP registers.
4513 (arm_linux_fetch_inferior_registers): Add support for VFP
4514 registers.
4515 (arm_linux_store_inferior_registers): Likewise.
4516 (arm_linux_read_description): Likewise.
4517 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
4518 until we need it.
4519
778c7095
L
45202010-04-11 H.J. Lu <hongjiu.lu@intel.com>
4521
4522 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
4523 tdep.
4524 (amd64_collect_xstateregset): Likewise.
4525
2114d44c
SS
45262010-04-09 Stan Shebs <stan@codesourcery.com>
4527
87290684
SS
4528 * tracepoint.c (trace_status_mi): Report frames created.
4529
2114d44c
SS
4530 * tracepoint.c (trace_dump_command): Include default-collect
4531 expressions.
4532
86da934b
UW
45332010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
4534
4535 * symtab.c (find_function_start_sal): Never return SAL pointing
4536 before function start address, even if line info is missing.
4537
2d6e647a 45382010-04-09 Pedro Alves <pedro@codesourcery.com>
d337e9f0
PA
4539
4540 * NEWS: Mention tracepoints support.
4541
a97153c7
PA
45422010-04-09 Pedro Alves <pedro@codesourcery.com>
4543
4544 * tracepoint.c (trace_status_mi): Report disconnected tracing and
4545 circular trace buffer statuses.
4546
7a66d603
JK
45472010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
4548
4549 * config/djgpp/fnchange.lst: Fix typo in translations for
4550 symbol-without-target_section.exp and symbol-without-target_section.c.
4551
2566ad2d
PA
45522010-04-09 Pedro Alves <pedro@codesourcery.com>
4553
4554 * breakpoint.c (condition_command): Pass condition expression to
4555 set_breakpoint_condition stripped from breakpoint number.
4556
adc36818
PM
45572010-04-09 Phil Muldoon <pmuldoon@redhat.com>
4558 Thiago Jung Bauermann <bauerman@br.ibm.com>
2566ad2d 4559 Tom Tromey <tromey@redhat.com>
adc36818
PM
4560
4561 * breakpoint.c (condition_command): Simplify. Move condition
4562 setting code to ...
4563 (set_breakpoint_condition): ... here. New function.
4564 * breakpoint.h (set_breakpoint_condition): Declare.
4565 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
4566 (SUBDIR_PYTHON_SRCS): Likewise.
4567 (py-breakpoint.o): New rule.
4568 * python/py-breakpoint.c: New file.
4569 * python/python-internal.h (gdbpy_breakpoints)
4570 (gdbpy_initialize_breakpoints): Declare.
4571 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
4572
219f2f23
PA
45732010-04-09 Pedro Alves <pedro@codesourcery.com>
4574
4575 * regformats/regdat.sh: Include server.h. Don't include
4576 regcache.h.
4577
33da3f1c
SS
45782010-04-08 Stan Shebs <stan@codesourcery.com>
4579 Pedro Alves <pedro@codesourcery.com>
4580
4581 * tracepoint.h (struct trace_status): New fields disconnected_tracing
4582 and circular_buffer.
4583 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
4584 * tracepoint.c (trace_status_command): Display target's status for
4585 disconnected tracing and circular buffer.
4586 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
4587 query for non-disconnected-tracing case, remove the stop_tracing
4588 call.
4589 (tfile_open): Clear disconnected and circular buffer status.
4590 (trace_save): Save disconnected and circular buffer status.
4591 (parse_trace_status): Parse disconnected and circular buffer status,
4592 also recognize disconnected as a stop reason.
4593 * remote.c (remote_set_disconnected_tracing): Only set
4594 QTDisconnected if the remote end supports disconnected tracing.
4595 Warn otherwise, if trying to enable disconnected tracing.
4596 * infcmd.c (detach_command): Update disconnect_tracing call.
4597 * cli/cli-cmds.c (quit_command): Ditto.
4598
4e4d8374
L
45992010-04-08 H.J. Lu <hongjiu.lu@intel.com>
4600
4601 * i387-tdep.c (i387_collect_xsave): Replace abort with
4602 internal_error.
4603
ad443146
SS
46042010-04-08 Stan Shebs <stan@codesourcery.com>
4605
4606 * breakpoint.c (default_collect_info): New function.
4607 (breakpoints_info): Call it.
4608 (maintenance_info_breakpoints): Ditto.
4609 (tracepoints_info): Ditto.
4610
40936b0d
L
46112010-04-08 H.J. Lu <hongjiu.lu@intel.com>
4612
4613 * i387-tdep.c (i387_collect_xsave): Re-indent.
4614
3a13a53b
L
46152010-04-08 H.J. Lu <hongjiu.lu@intel.com>
4616
4617 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
4618 if HAVE_PTRACE_GETFPXREGS is defined.
4619 (i386_linux_read_description): Set have_ptrace_getfpxregs and
4620 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
4621
4622 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
4623 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
4624 if .reg-xfp section doesn't exist.
4625 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
4626
4627 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
4628
4629 * i386-tdep.c: Include "features/i386/i386-mmx.c".
4630 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
4631 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
4632 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
4633 (i386_gdbarch_init): Update comments.
4634 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
4635
4636 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
4637
4638 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
4639
4640 * features/Makefile (i386/i386-mmx-expedite): New.
4641 (i386/i386-mmx-linux-expedite): Likewise.
4642 ($(outdir)/i386/i386-mmx.dat): Likewise.
4643 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
4644
4645 * features/i386/i386-mmx-linux.c: New.
4646 * features/i386/i386-mmx-linux.xml: Likewise.
4647 * features/i386/i386-mmx.c: Likewise.
4648 * features/i386/i386-mmx.xml: Likewise.
4649 * regformats/i386/i386-mmx-linux.dat: Likewise.
4650 * regformats/i386/i386-mmx.dat: Likewise.
4651
4652 * features/Makefile (WHICH): Add i386/i386-mmx and
4653 i386/i386-mmx-linux.
4654
08001717
DE
46552010-04-08 Doug Evans <dje@google.com>
4656
4657 * source.c (openp): Skip $cdir in PATH.
4658
fff5cc64
PM
46592010-04-08 Phil Muldoon <pmuldoon@redhat.com>
4660
4661 PR python/11417
fff5cc64 4662 * python/py-lazy-string.c (stpy_convert_to_value): Check for
3a13a53b
L
4663 a NULL address.
4664 (gdbpy_create_lazy_string_object): Allow strings with a NULL
4665 address and a zero length.
fff5cc64 4666
f8c4f480
HZ
46672010-04-08 Hui Zhu <teawater@gmail.com>
4668
4669 * i386-tdep.c (i386_process_record): Add support for insn
4670 rdtsc.
4671
eb5cda86
DE
46722010-04-07 Doug Evans <dje@google.com>
4673
4674 * python/python.c (source_python_script): Use ensure_python_env
4675 to prepare environment for script.
4676
a055a187
L
46772010-04-07 H.J. Lu <hongjiu.lu@intel.com>
4678
4679 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
4680 <sys/uio.h> and "i386-xstate.h".
4681 (PTRACE_GETREGSET): New.
4682 (PTRACE_SETREGSET): Likewise.
4683 (have_ptrace_getregset): Likewise.
4684 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
4685 registers.
4686 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
4687 registers.
4688 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
4689 (amd64_linux_store_inferior_registers): Likewise.
4690 (amd64_linux_read_description): Check and enable AVX target
4691 descriptions.
4692
4693 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
4694 and "features/i386/amd64-avx-linux.c".
4695 (amd64_linux_regset_sections): New.
4696 (amd64_linux_core_read_description): Check and enable AVX
4697 target description.
4698 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
4699 set_gdbarch_core_regset_sections.
4700 (_initialize_amd64_linux_tdep): Call
4701 initialize_tdesc_amd64_avx_linux.
4702
4703 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
4704 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
4705 (tdesc_amd64_avx_linux): New.
4706 (amd64_linux_update_xstateregset): Likewise.
4707
4708 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
4709 (amd64_ymm_names): New.
4710 (amd64_ymmh_names): Likewise.
4711 (amd64_register_name): Likewise.
4712 (amd64_supply_xstateregset): Likewise.
4713 (amd64_collect_xstateregset): Likewise.
4714 (amd64_supply_xsave): Likewise.
4715 (amd64_collect_xsave): Likewise.
4716 (AMD64_NUM_REGS): Removed.
4717 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
4718 %xmmN if AVX is available.
4719 (amd64_pseudo_register_name): Support pseudo YMM registers.
4720 (amd64_regset_from_core_section): Support .reg-xstate section.
4721 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
4722 and ymm0h_regnum. Call set_gdbarch_register_name.
4723 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
4724
4725 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
4726 AMD64_YMM15H_REGNUM.
4727 (AMD64_NUM_REGS): New.
4728 (amd64_supply_xsave): Likewise.
4729 (amd64_collect_xsave): Likewise.
4730 (amd64_register_name): Removed.
4731 (amd64_register_type): Likewise.
4732
31aeac78
L
47332010-04-07 H.J. Lu <hongjiu.lu@intel.com>
4734
4735 * i387-tdep.c: Include "i386-xstate.h".
4736 (XSAVE_XSTATE_BV_ADDR): New.
4737 (xsave_avxh_offset): Likewise.
4738 (XSAVE_AVXH_ADDR): Likewise.
4739 (i387_supply_xsave): Likewise.
4740 (i387_collect_xsave): Likewise.
4741
4742 * i387-tdep.h (I387_NUM_YMM_REGS): New.
4743 (I387_YMM0H_REGNUM): Likewise.
4744 (I387_YMMENDH_REGNUM): Likewise.
4745 (i387_supply_xsave): Likewise.
4746 (i387_collect_xsave): Likewise.
4747
c131fcee
L
47482010-04-07 H.J. Lu <hongjiu.lu@intel.com>
4749
4750 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
4751 <sys/uio.h> and "i386-xstate.h".
4752 (PTRACE_GETREGSET): New.
4753 (PTRACE_SETREGSET): Likewise.
4754 (fetch_xstateregs): Likewise.
4755 (store_xstateregs): Likewise.
4756 (GETXSTATEREGS_SUPPLIES): Likewise.
4757 (regmap): Include 8 upper YMM registers.
4758 (i386_linux_fetch_inferior_registers): Support XSAVE extended
4759 state.
4760 (i386_linux_store_inferior_registers): Likewise.
4761 (i386_linux_read_description): Check and enable AVX target
4762 descriptions.
4763
4764 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
4765 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
4766 (i386_linux_regset_sections): Add ".reg-xstate".
4767 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
4768 (i386_linux_core_read_xcr0): New.
4769 (i386_linux_core_read_description): Check and enable AVX target
4770 description.
4771 (i386_linux_init_abi): Set xsave_xcr0_offset.
4772 (_initialize_i386_linux_tdep): Call
4773 initialize_tdesc_i386_avx_linux.
4774
4775 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
4776 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
4777 (i386_linux_core_read_xcr0): New.
4778 (tdesc_i386_avx_linux): Likewise.
4779 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
4780
4781 * i386-tdep.c: Include "i386-xstate.h" and
4782 "features/i386/i386-avx.c".
4783 (i386_ymm_names): New.
4784 (i386_ymmh_names): Likewise.
4785 (i386_ymmh_regnum_p): Likewise.
4786 (i386_ymm_regnum_p): Likewise.
4787 (i386_xmm_regnum_p): Likewise.
4788 (i386_register_name): Likewise.
4789 (i386_ymm_type): Likewise.
4790 (i386_supply_xstateregset): Likewise.
4791 (i386_collect_xstateregset): Likewise.
4792 (i386_sse_regnum_p): Removed.
4793 (i386_pseudo_register_name): Support pseudo YMM registers.
4794 (i386_pseudo_register_type): Likewise.
4795 (i386_pseudo_register_read): Likewise.
4796 (i386_pseudo_register_write): Likewise.
4797 (i386_dbx_reg_to_regnum): Return %ymmN register number for
4798 %xmmN if AVX is available.
4799 (i386_regset_from_core_section): Support .reg-xstate section.
4800 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
4801 (i386_process_record): Replace i386_sse_regnum_p with
4802 i386_xmm_regnum_p.
4803 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
4804 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
8d95cc3b 4805 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
c131fcee
L
4806 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
4807 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
4808 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
4809 Set ymm0_regnum.
4810 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
4811
4812 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
4813 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
4814 i386_ymm_type.
4815 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
4816 (I386_AVX_NUM_REGS): New.
4817 (i386_xmm_regnum_p): Likewise.
4818 (i386_ymm_regnum_p): Likewise.
4819 (i386_ymmh_regnum_p): Likewise.
4820
4821 * common/i386-xstate.h: New.
4822
98adf0f3
L
48232010-04-07 H.J. Lu <hongjiu.lu@intel.com>
4824
4825 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
4826
4827 * features/Makefile (WHICH): Add i386/i386-avx,
4828 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
4829 (i386/i386-avx-expedite): New.
4830 (i386/i386-avx-linux-expedite): Likewise.
4831 (i386/x86-64-avx-expedite):Likewise.
4832 (i386/x86-64-avx-linux-expedite): Likewise.
4833 ($(outdir)/i386/i386-avx.dat): New dependency.
4834 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
4835 ($(outdir)/i386/x86-avx-64.dat): Likewise.
4836 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
4837
4838 * features/i386/32bit-avx.xml: New.
4839 * features/i386/64bit-avx.xml: Likewise.
4840 * features/i386/i386-avx-linux.c: Likewise.
4841 * features/i386/i386-avx-linux.xml: Likewise.
4842 * features/i386/i386-avx.c: Likewise.
4843 * features/i386/i386-avx.xml: Likewise.
4844 * features/i386/x86-64-avx-linux.c: Likewise.
4845 * features/i386/x86-64-avx-linux.xml: Likewise.
4846 * features/i386/x86-64-avx.c: Likewise.
4847 * features/i386/x86-64-avx.xml: Likewise.
4848 * regformats/i386/i386-avx-linux.dat: Likewise.
4849 * regformats/i386/i386-avx.dat: Likewise.
4850 * regformats/i386/x86-64-avx-linux.dat: Likewise.
4851 * regformats/i386/x86-64-avx.dat: Likewise.
4852
05159abe
DE
48532010-04-07 Doug Evans <dje@google.com>
4854
4855 * top.c (source_file_name): Make const char *.
4856 * top.h (source_file_name): Update.
4857 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
4858 const char *.
4859 (script_from_file): Change `file' arg to const char *.
4860 * cli/cli-script.h (script_from_file): Update.
4861
96e39866
DE
48622010-04-06 Doug Evans <dje@google.com>
4863
4864 * cli/cli-cmds.c (source_command): Run cleanups.
4865
3149d8c1
SS
48662010-04-06 Stan Shebs <stan@codesourcery.com>
4867
4868 * defs.h (char_ptr): Move typedef here from...
4869 * ada-lang.c (char_ptr): Remove.
4870 * charset.c (char_ptr): Remove.
4871 * tracepoint.h (struct uploaded_string): Remove.
4872 (struct uploaded_tp): Use vectors for string arrays.
4873 * tracepoint.c (trace_save): Use vectors of actions.
4874 (parse_tracepoint_definition): Ditto.
4875 (get_uploaded_tp): Clear vectors.
4876 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
4877 (next_cmd): Change to an int.
4878 (read_next_cmd): Use vector of command strings.
4879
4cc23ede
DE
48802010-04-06 Doug Evans <dje@google.com>
4881
4882 * top.h (source_script, cd_command): Delete.
4883 * main.c: #include "cli/cli-cmds.h"
4884
bd333fb7
KB
48852010-04-06 Kevin Buettner <kevinb@redhat.com>
4886
4887 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
4888 type in bytes, not bits.
4889
ec8a089a
PM
48902010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
4891
4892 * stabsread.c (define_symbol): Add support for char
4893 and string constants.
4894
2244ba2e
PM
48952010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
4896
4897 Remove remaining "%ll" uses.
4898 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
4899 hex_string call.
4900 * rs6000-nat.c (rs6000_ptrace64): Idem.
4901 * solib-pa64.c (pa64_current_sos): Idem.
4902 * solib-spu.c (spu_current_sos): Idem.
4903 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
4904 plongest call.
4905 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
4906 phex (VAR, 8) call.
4907 * sh64-tdep.c (sh64_show_media_regs): Idem.
4908
fce3c1f0
SS
49092010-04-05 Stan Shebs <stan@codesourcery.com>
4910
4911 * tracepoint.c: Include gdbcore.h.
4912 (tfile_xfer_partial): Return partial results, also try reading
4913 from executable.
4914 (tfile_has_all_memory): New function.
4915 (init_tfile_ops): Use it.
4916
626ea16d
SDJ
49172010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
4918
4919 PR gdb/10736:
4920 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
4921 the changes in data-directory.
4922 (init_sysinfo): Reload the syscall XML file if the data-directory
4923 has changed.
4924
1f7ccab2
JK
49252010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4926
4927 Code cleanup.
4928 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
4929
d77f58be
SS
49302010-04-04 Stan Shebs <stan@codesourcery.com>
4931 Nathan Sidwell <nathan@codesourcery.com>
4932
4933 * breakpoint.c (breakpoint_1): Add filter argument, return number of
4934 breakpoints printed.
4935 (is_hardware_watchpoint): Make argument const.
4936 (is_watchpoint): Ditto.
4937 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
4938 use it everywhere.
4939 (breakpoints_info): Pass NULL to breakpoint_1.
4940 (maintenance_info_breakpoints): Ditto.
4941 (watchpoints_info): New function.
4942 (tracepoints_info): Use breakpoint_1 filter.
4943 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
4944 (_initialize_breakpoint): Make "info watchpoints" its own command.
4945 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
4946 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
4947
af54718e
SS
49482010-04-04 Stan Shebs <stan@codesourcery.com>
4949
4950 * tracepoint.c (tfile_fetch_registers): Add fallback case.
4951
74d1f91e
JK
49522010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4953
4954 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
4955 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
4956
91d91ceb
JK
49572010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4958
4959 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
4960 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
4961
60531b24
JK
49622010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4963
4964 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
4965 code form.
4966
a3c4230a
HZ
49672010-04-02 Hui Zhu <teawater@gmail.com>
4968
4969 * i386-tdep.c (OT_DQUAD): New enum.
4970 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
4971 SSE3, SSSE3 and SSE4.
4972
b15758fe
HZ
49732010-04-02 Hui Zhu <teawater@gmail.com>
4974
4975 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
4976 "*addr = 0".
4977
afd02f27
PA
49782010-04-02 Pedro Alves <pedro@codesourcery.com>
4979
4980 * tracepoint.c (trace_dump_actions): New, factored out from
4981 trace_dump_command, and adjusted to recurse into while-stepping's
4982 action list.
4983 (trace_dump_command): Use it.
4984
5cea2a26
PA
49852010-04-02 Pedro Alves <pedro@codesourcery.com>
4986
4987 * breakpoint.h (struct counted_command_line): Moved definition to
4988 breakpoint.c, and forward declare.
4989 (breakpoint_commands): Declare.
4990 * breakpoint.c (struct counted_command_line): Moved here.
4991 (breakpoint_commands): New.
4992 * tracepoint.c (encode_actions): Use breakpoint_commands.
4993 * remote.c (remote_download_tracepoint): Ditto.
4994
7c47795c
L
49952010-04-01 H.J. Lu <hongjiu.lu@intel.com>
4996
4997 * remote.c (remote_parse_stop_reply): Use hex_string instead
4998 of phex_nz for error.
4999
fff87407
SS
50002010-04-01 Stan Shebs <stan@codesourcery.com>
5001 Nathan Sidwell <nathan@codesourcery.com>
5002
5003 * tracepoint.h (enum actionline_type): Remove.
5004 (validate_actionline): Change return to void.
5005 * tracepoint.c (report_agent_reqs_errors): New function.
5006 (validate_actionline): Call it, change return to void, report errors
5007 more consistently.
5008 (collect_symbol): Call report_agent_reqs_errors.
5009 (encode_actions_1): Ditto.
5010 (encode_actions): Don't expect a result from validate_actionline.
5011
615bcdef
SS
50122010-04-01 Stan Shebs <stan@codesourcery.com>
5013
5014 * tracepoint.c (trace_start_command): Confirm if trace is running.
5015 (trace_stop_command): Error if trace not running.
5016
fe01d668
L
50172010-04-01 H.J. Lu <hongjiu.lu@intel.com>
5018
5019 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
5020 (AMD64_NUM_LOWER_BYTE_REGS): New.
5021 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
5022 (amd64_pseudo_register_write): Likewise.
5023 (amd64_init_abi): Set num_byte_regs to 20.
5024
86b17b60
PA
50252010-04-01 Pedro Alves <pedro@codesourcery.com>
5026
5027 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
5028 (prev_breakpoint_count): New.
5029 (set_breakpoint_count): Adjust.
5030 (rbreak_start_breakpoint_count): New.
5031 (start_rbreak_breakpoints): Adjust.
5032 (end_rbreak_breakpoints): Adjust.
5033 (struct commands_info) <arg>: New field.
5034 (do_map_commands_command): Tweak output to include breakpoint spec
5035 range.
5036 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
5037 ARG was empty on entry. Set INFO's arg.
5038 (create_breakpoint): Adjust.
5039
5040 * NEWS: Clarify `commands' changes.
5041
2c58c0a9
PA
50422010-04-01 Pedro Alves <pedro@codesourcery.com>
5043
5044 * tracepoint.c: Include stack.h.
5045 (struct add_local_symbols_data): New.
5046 (do_collect_symbol): New.
5047 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
5048 iterate_over_block_local_vars.
5049 * stack.c (print_block_frame_locals): Rewrite as ...
5050 (iterate_over_block_locals): ... this. Take a callback function
5051 pointer and generic data pointer, and call that instead of
5052 print_variable_and_value.
5053 (struct print_variable_and_value_data): New.
5054 (do_print_variable_and_value): New.
5055 (iterate_over_block_local_vars): New, abstracted out from
5056 print_frame_local_vars.
5057 (print_frame_local_vars): Rewrite using
5058 iterate_over_block_local_vars.
5059 (iterate_over_block_arg_vars): New, abstracted out from
5060 print_frame_arg_vars.
5061 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
5062 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
5063 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
5064
d476da0e
RE
50652010-03-31 Richard Earnshaw <rearnsha@arm.com>
5066
5067 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
8d95cc3b 5068 instructions. Use the PC+4 if the base of the TBB or TBH is the
d476da0e
RE
5069 PC register.
5070
8072405b
JK
50712010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5072
5073 Fix crash on reading wrong function declaration DWARF.
5074 * dwarf2read.c (read_subroutine_type): New variable void_type.
5075 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
5076 more close to their use.
5077
8bf6485c
SS
50782010-03-31 Stan Shebs <stan@codesourcery.com>
5079
5080 * breakpoint.c (tracepoint_save_command): Include variables,
8d95cc3b 5081 conditionals, tracepoint types, and default-collect.
8bf6485c
SS
5082 * tracepoint.c (save_trace_state_variables): New function.
5083 * tracepoint.h (save_trace_state_variables): Declare it.
5084
2ae2a0b7
PM
50852010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
5086
1a161f72 5087 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
2ae2a0b7 5088
86ffb506
KS
50892010-03-30 Keith Seitz <keiths@redhat.com>
5090
5091 * c-typeprint.c (c_type_print_args): Don't print "void"
5092 for java, regardless of whether it is TYPE_PROTOTYPED.
5093 Use the passed-in language instead of current_language.
5094 (c_type_print_varspec_suffix): Use current_language instead
5095 of assuming language_c.
5096 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
5097 any return type specifier from the physname.
5098
956c2c8b
PA
50992010-03-30 Pedro Alves <pedro@codesourcery.com>
5100
5101 * tui/tui-interp.c (tui_is_toplevel): New.
5102 (tui_init): Set it.
5103 (tui_allowed_p): New.
5104 * tui/tui.c (tui_enable): Check if the TUI is allowed before
5105 enabling it.
5106 * tui/tui.h (tui_allowed_p): Declare.
5107
98e5a990
TT
51082010-03-30 Ozkan Sezer <sezeroz@gmail.com>
5109
5110 * serial.h: Include winsock2.h before windows.h.
5111
c8d5aac9
L
51122010-03-30 H.J. Lu <hongjiu.lu@intel.com>
5113
5114 * NEWS: Mention xmlRegisters= in qSupported packet.
5115
5116 * i386-tdep.c: Include "remote.h".
5117 (_initialize_i386_tdep): Call register_remote_support_xml.
5118
5119 * remote.c (remote_support_xml): New.
5120 (register_remote_support_xml): Likewise.
5121 (remote_query_supported_append): Likewise.
5122 (remote_query_supported): Support remote_support_xml.
5123
5124 * remote.h (register_remote_support_xml): New.
5125
76a2b958
SS
51262010-03-29 Stan Shebs <stan@codesourcery.com>
5127
42e08e69
SS
5128 * tracepoint.c (trace_find_line_command): Remove dead code.
5129
409873ef
SS
5130 * tracepoint.h (struct uploaded_string): New struct.
5131 (struct uploaded_tp): New fields for source strings.
5132 * breakpoint.c (this_utp, next_cmd): New globals.
5133 (read_uploaded_action): New function.
5134 (create_tracepoint_from_upload): Fill in more parts
5135 of a tracepoint.
5136 * tracepoint.c (encode_source_string): New function.
5137 (trace_save): Write out source strings, fix error checks.
5138 (parse_tracepoint_definition): Add source string parsing.
5139 * remote.c (PACKET_TracepointSource): New packet type.
5140 (remote_download_command_source): New function.
5141 (remote_download_tracepoint): Download source pieces also.
5142 (_initialize_remote): Add packet config command.
5143
a0405854
SS
5144 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
5145 expression handler.
5146
76a2b958
SS
5147 * tracepoint.c (start_tracing): Check tracepoints before sending
5148 commands to target, don't start if all tracepoints disabled.
5149
d350db38
PA
51502010-03-28 Pedro Alves <pedro@codesourcery.com>
5151
12f2d601 5152 * cli/cli-script.c (process_next_line): Handle 'stepping'.
d350db38 5153
8b9b7ef8
SS
51542010-03-26 Stan Shebs <stan@codesourcery.com>
5155
5156 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
5157
9766ced4
SS
51582010-03-26 Tom Tromey <tromey@redhat.com>
5159
5160 * breakpoint.c (commands_command_1): Duplicate 'arg'.
5161
059acae7
UW
51622010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5163
5164 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
5165 (skip_prologue_sal): Remove local definition.
5166 (resolve_sal_pc): Remove now unnecessary code.
5167 * linespec.c (minsym_found): Call skip_prologue_sal.
5168 * symtab.c (find_function_start_pc): Remove.
5169 (find_function_start_sal): Extract prologue skipping into ...
5170 (skip_prologue_sal): ... this new function. Handle code both
5171 with and without debug info. Respect SAL's explicit_pc and
5172 explicit_line flags. Inline old find_function_start_pc.
5173 * symtab.h (find_function_start_pc): Remove.
5174 (skip_prologue_sal): Add prototype.
5175
4a811a97
UW
51762010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5177
5178 * dwarf2read.c (read_func_scope): Also scan specification DIEs
5179 for DW_TAG_imported_module children.
5180
907af001
UW
51812010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5182
5183 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
5184 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
5185 * completer.c (add_struct_fields): Fix inverted logic.
5186
dde2d684
UW
51872010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5188
5189 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
5190
a609a0c8
PA
51912010-03-26 Pedro Alves <pedro@codesourcery.com>
5192
5193 * tracepoint.c (current_trace_status): Don't make sure error_desc
5194 is non-NULL here.
5195 (parse_trace_status): Release a previous error_desc string, and
5196 set it to NULL by default. If stop reason is tracepoint_error,
5197 make sure error_desc is not left NULL.
5198
610197fd
PA
51992010-03-26 Pedro Alves <pedro@codesourcery.com>
5200
5201 * tracepoint.c (trace_save): Remove X from tracepoint error
5202 description.
5203
99b5e152
PA
52042010-03-26 Pedro Alves <pedro@codesourcery.com>
5205
5206 * tracepoint.c (parse_trace_status): Don't allow plain strings in
5207 the terror description. Don't expect an X prefix.
5208
6c28cbf2
SS
52092010-03-25 Stan Shebs <stan@codesourcery.com>
5210
5211 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
5212 (struct trace_status): New field error_desc.
5213 * tracepoint.c (stop_reason_names): Add terror.
5214 (current_trace_status): Ensure non-NULL error description.
5215 (trace_status_command): Add error report.
5216 (trace_status_mi): Ditto.
5217 (trace_save): Add special case for error description.
5218 (parse_trace_status): Add case for errors.
5219
418835cc
KS
52202010-03-25 Keith Seitz <keiths@redhat.com>
5221
5222 * dwarf2read.c (read_subroutine_type): If the compilation unit
5223 language is Java, mark any formal parameter named "this" as
5224 artificial (GCC/43521).
5225 (dwarf2_name): Add special handling for Java constructors.
5226
aa7d318d
TT
52272010-03-25 Tom Tromey <tromey@redhat.com>
5228
5229 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
5230 * infrun.c (handle_inferior_event): Change initialization of
5231 stop_stack_dummy.
5232 (handle_inferior_event): Change assignment to stop_stack_dummy.
5233 (normal_stop): Update use of stop_stack_dummy.
5234 (struct inferior_status) <stop_stack_dummy>: Change type.
5235 * inferior.h (stop_stack_dummy): Update.
5236 * infcmd.c (stop_stack_dummy): Change type.
5237 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
5238 function.
5239 (call_function_by_hand): Call set_std_terminate_breakpoint.
5240 Rewrite std::terminate handling.
5241 * breakpoint.h (enum bptype) <bp_std_terminate,
5242 bp_std_terminate_master>: New.
5243 (enum stop_stack_kind): New.
5244 (struct bpstat_what) <call_dummy>: Change type.
5245 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
5246 Declare.
5247 * breakpoint.c (create_std_terminate_master_breakpoint): New
5248 function.
5249 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
5250 Call create_std_terminate_master_breakpoint.
5251 (print_it_typical): Handle new breakpoint kinds.
5252 (bpstat_stop_status): Handle bp_std_terminate_master.
5253 (bpstat_what): Correctly set call_dummy field. Handle
5254 bp_std_terminate_master and bp_std_terminate.
5255 (print_one_breakpoint_location): Update.
5256 (allocate_bp_location): Update.
5257 (set_std_terminate_breakpoint): New function.
5258 (delete_std_terminate_breakpoint): Likewise.
5259 (create_thread_event_breakpoint): Update.
5260 (delete_command): Update.
5261 (breakpoint_re_set_one): Update.
5262 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
5263
82ccf5a5
JK
52642010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
5265
5266 * symfile.c (build_section_addr_info_from_bfd): New.
5267 (build_section_addr_info_from_objfile): Base it on
5268 build_section_addr_info_from_bfd.
5269 (addrs_section_compar, addrs_section_sort): New.
5270 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
5271 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
5272 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
5273
737c4c52
MS
52742010-03-24 Michael Snyder <msnyder@localhost.localdomain>
5275
8d95cc3b 5276 * elfread.c (find_separate_debug_file_by_buildid):
737c4c52
MS
5277 Remove unused local variable.
5278
95a42b64
TT
52792010-03-24 Tom Tromey <tromey@redhat.com>
5280
5281 PR breakpoints/9352:
5282 * NEWS: Mention changes to `commands' and `rbreak'.
5283 * symtab.c (do_end_rbreak_breakpoints): New function.
5284 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
5285 end_rbreak_breakpoints.
5286 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
5287 (set_breakpoint_count): Likewise. Clear last_was_multi.
5288 (multi_start, multi_end, last_was_multi): New globals.
5289 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
5290 functions.
5291 (struct commands_info): New
5292 (do_map_commands_command): New function.
5293 (commands_command_1): New function.
5294 (commands_command): Use it.
5295 (commands_from_control_command): Likewise.
5296 (do_delete_breakpoint): New function.
5297 (delete_command): Use it.
5298 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
5299 (do_map_disable_breakpoint): New function.
5300 (disable_command): Use it.
5301 (do_map_enable_breakpoint): New function.
5302 (enable_command): Use it.
5303 (enable_once_breakpoint): Add argument.
5304 (enable_once_command): Update.
5305 (enable_delete_breakpoint): Add argument.
5306 (enable_delete_command): Update.
5307 (break_command_really): Set last_was_multi when needed.
5308 (check_tracepoint_command): Fix formatting.
5309 (validate_commands_for_breakpoint): New function.
5310 (breakpoint_set_commands): Use it.
5311 (tracepoint_save_command): Update.
5312 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
5313 Declare.
5314
9add0f1b
TT
53152010-03-24 Tom Tromey <tromey@redhat.com>
5316
5317 * breakpoint.h (struct counted_command_line): New struct.
5318 (struct breakpoint) <commands>: Change type.
5319 (struct bpstats) <commands>: Change type.
5320 <commands_left>: New field.
5321 * breakpoint.c (alloc_counted_command_line): New function.
5322 (incref_counted_command_line): Likewise.
5323 (decref_counted_command_line): Likewise.
5324 (do_cleanup_counted_command_line): Likewise.
5325 (make_cleanup_decref_counted_command_line): Likewise.
5326 (breakpoint_set_commands): Use decref_counted_command_line and
5327 alloc_counted_command_line.
5328 (commands_command): Don't error if breakpoint commands are
5329 executing.
5330 (commands_from_control_command): Likewise.
5331 (bpstat_free): Update.
5332 (bpstat_copy): Likewise.
5333 (bpstat_clear_actions): Likewise.
5334 (bpstat_do_actions_1): Likewise.
5335 (bpstat_stop_status): Likewise.
5336 (print_one_breakpoint_location): Likewise.
5337 (delete_breakpoint): Likewise.
5338 (bpstat_alloc): Initialize new field.
5339 (tracepoint_save_command): Update.
5340 * tracepoint.c (encode_actions): Update.
5341 (trace_dump_command): Update.
5342
a6c727b2
DJ
53432010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
5344
5345 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
5346 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
5347 (read_structure_type): For RealView, set TYPE_STUB on structures with
5348 no byte size and no children.
5349 (read_subroutine_type): Mark functions as prototyped by default.
5350 * symtab.c (producer_is_realview): New function.
5351 * symtab.h (expand_line_sal): Fix declaration formatting.
5352 (producer_is_realview): Declare.
5353
0d39a070
DJ
53542010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
5355
5356 * arm-tdep.c (skip_prologue_function): New function.
5357 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
5358 (thumb_analyze_prologue): Document return value. Recognize more
5359 Thumb instructions, skippable calls, and some Thumb-2 instructions.
5360 Add debug output.
5361 (arm_skip_prologue): Remove call dummy check. Check the prologue
5362 for non-GNU compilers.
5363 (arm_instruction_changes_pc): New function.
5364 (arm_analyze_prologue): New function, broken out from
5365 arm_scan_prologue. Recognize more ARM instructions and skippable
5366 calls. Update comments. Handle NULL cache. Return the address
5367 of the first unrecognized instruction. Do not skip past other
5368 instructions which change control flow. Add debug output.
5369 (arm_scan_prologue): Use arm_analyze_prologue.
5370 (ARM_PC_32): Delete.
5371 (shifted_reg_val): Simplify ARM_PC_32 check.
5372
4baf5cf4
VP
53732010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5374
5375 * tracepoint.c (tvariables_info_1): Actually compute
5376 the number of rows in the result.
5377
4a5e7a5b
PA
53782010-03-24 Pedro Alves <pedro@codesourcery.com>
5379
5380 * remote.c (crc32): Constify `buf' parameter.
5381 (remote_verify_memory): New, abstracted out from...
5382 (compare_sections_command): ... this. Remove hardcoded target
5383 checks.
5384 (init_remote_ops): Install remote_verify_memory.
5385 * target.c (target_verify_memory): New.
5386 * target.h (struct target_ops) <to_verify_memory>: New field.
5387 (target_verify_memory): Declare.
5388
011aacb0
VP
53892010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5390
5391 Implement -trace-save.
5392
5393 * mi-cmds.h (mi_cmds_trace_save): Declare.
5394 * mi-cmds.c (mi_cmds): Register -trace-save.
5395 * mi/mi-main.c (mi_cmd_trace_save): New.
5396 * remote.c (remote_save_trace_data): Take const parameter.
5397 * target.h (struct target_ops::to_save_trace_data): Take
5398 const parameter.
5399 * target.c (update_current_target): Adjust to the above.
5400 * tracepoint.c (trave_save): New, extracted from
5401 (trace_save_command): ...this.
5402 (tfile_trace_find): Remove message that is unnecessary now
5403 that 'tfind' reports found frame.
5404 * tracepoint.h (trace_save): Declare.
5405
f197e0f1
VP
54062010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5407
5408 Implement -trace-find.
5409
5410 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
5411 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
5412 * mi/mi-main.c (mi_cmd_trace_find): New.
5413 * target.h (struct target_ops): Document to_trace_find.
5414 * tracepoint.h (tfind_1): Declare.
5415 * tracepoint.c (finish_tfind_command): Rename to...
5416 (tfind_1): ...this.
5417 * remote.c (remote_trace_find): Return -1 if target say
5418 there's no frame. Improve error diagnostics.
5419
40e1c229
VP
54202010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5421
5422 -trace-define-variable and -trace-list-variables.
5423
5424 * tracepoint.c (create_trace_state_variable): Make
5425 private copy of name, as opposed to assuming the
5426 pointer lives forever.
5427 (tvariables_info_1): New.
5428 (tvariables_info): Use the above.
5429 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
5430 Declare.
5431 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
5432 and -trace-list-variables.
5433 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
5434 (mi_cmd_trace_list_variables): New.
5435 * mi/mi-main.c (mi_cmd_trace_define_variable)
5436 (mi_cmd_trace_list_variables): New.
5437
9b4c786c
VP
54382010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5439
5440 Implement -break-passcount.
5441
5442 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
5443 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
5444 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
5445
f224b49d
VP
54462010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5447
5448 -trace-start/-trace-end/-trace-status.
5449
5450 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
5451 and -trace-stop.
5452 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
5453 (mi_cmd_trace_stop): Declare.
5454 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
5455 (mi_cmd_trace_stop): New.
5456 * tracepoint.c (start_tracing): New, extracted from...
5457 (trace_start_command): ...this.
5458 (trace_status_mi): New.
5459 * tracepoint.h (struct trace_status): Document
5460 stopping_tracepoint.
5461 (start_tracing, stop_tracing, trace_status_mi): Declare.
5462
6534d786
VP
54632010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5464
5465 Implement creating tracepoints with -break-insert.
5466
5467 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
5468 to mean that tracepoint should be created.
5469
51661e93
VP
54702010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5471
5472 * breakpoint.c (check_no_tracepoint_commands): Use
5473 current spelling of 'teval'.
5474
a7bdde9e
VP
54752010-03-24 Vladimir Prus <vladimir@codesourcery.com>
5476
5477 Unify actions and commands
5478
5479 * defs.h (read_command_lines, read_command_lines_1): New
5480 parameters validator and closure.
5481 * tracepoint.h (struct action_line): Remove.
5482 * breakpoint.h (struct breakpoint): Remove the 'actions'
5483 field.
5484 * defs.h (enum command_control_type): New value
5485 while_stepping_control.
5486 (struct command_line): Add comments.
5487 * breakpoint.c (breakoint_is_tracepoint): New.
5488 (breakpoint_set_commands): For tracepoints,
5489 verify the commands are permissible.
5490 (check_tracepoint_commands): New.
5491 (commands_command): Require that each new line is validated using
5492 check_tracepoint_command, if we set commands for a tracepoint.
5493 (create_tracepoint_from_upload): Likewise.
5494 (print_one_breakpoint_location): Remove the code to print
5495 actions specifically.
5496 (tracepoint_save_command): Relay to print_command_lines.
5497 * cli/cli-script.c (process_next_line): New parameters validator
5498 and closure. Handle 'while-stepping'. Call validator if not null.
5499 (read_command_lines, read_command_lines1): Likewise.
5500 (recurse_read_control_structure): New parameters validator and
5501 closure. Handle while_stepping_control.
5502 (print_command_lines): Handle while-stepping.
5503 (get_command_line, define_command, document_command): Adjust.
5504 * remote.c (remote_download_tracepoint): Adjust.
5505 * tracepoint.c (make_cleanup_free_actions, read_actions)
5506 (free_actions, do_free_actions_cleanup): Remove.
5507 (trace_actions_command): Use read_command_lines.
5508 (validate_actionline): Use error in one place.
5509 (encode_actions_1): New, extracted from...
5510 (encode_actions): ...this. Also use cleanups for exception
5511 safety.
5512 (trace_dump_command): Adjust.
5513 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
5514 it's tracepoint.
5515
64e3cf3d
MF
55162010-03-23 Mike Frysinger <vapier@gentoo.org>
5517
5518 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
5519
52e9fde8
SS
55202010-03-22 Stan Shebs <stan@codesourcery.com>
5521
5522 * value.c (value_static_field): Be lazy about the field's value.
5523
508ccb1f
TT
55242010-03-22 Reid Kleckner <reid@kleckner.net>
5525
5526 PR gdb/11094
5527 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
5528 bp_jit_event.
5529 (disable_breakpoints_in_shlibs): Likewise.
5530
acebe513
UW
55312010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
5532
5533 * dwarf2read.c (partial_die_parent_scope): Work around buggy
5534 GCC 4.1 debug info generation (GCC PR c++/28460).
5535 (determine_prefix): Likewise.
5536
957b8b5a
DJ
55372010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
5538
5539 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
5540 get_current_arch.
5541 * tui/tui-layout.c (extract_display_start_addr): Likewise.
5542
3b11a015
SS
55432010-03-19 Stan Shebs <stan@codesourcery.com>
5544
5545 * ax-gdb.c (gen_fetch): Handle bool.
5546 (gen_usual_unary): Ditto.
5547 (gen_cast): Ditto.
5548 (gen_equal): New function.
5549 (gen_less): New function.
5550 (gen_expr_binop_rest): Call them, also return integer type from
5551 logical operations.
5552 (gen_expr): Ditto.
5553
20781792
TT
55542010-03-19 Tom Tromey <tromey@redhat.com>
5555
5556 * jv-lang.c (jv_dynamics_objfile_data_key)
5557 (jv_type_objfile_data_key): New globals.
5558 (class_symtab): Move earlier.
5559 (jv_per_objfile_free): New function.
5560 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
5561 parameter.
5562 Remove ancient #if 1.
5563 (add_class_symbol): Remove redundant declaration.
5564 (java_lookup_class): Use alloc_type, not alloc_type_arch.
5565 (java_link_class_type): Mark as static. Update.
5566 (jv_clear_object_type): New function.
5567 (set_java_object_type): Likewise.
5568 (get_java_object_type): Use set_java_object_type.
5569 (is_object_type): Likewise.
5570 (_initialize_java_language): Register new objfile keys.
5571 (get_java_class_symtab): Add 'gdbarch' parameter.
5572 (add_class_symtab_symbol): Update.
5573 (type_from_class): Update.
5574
cf3e25ca
SS
55752010-03-19 Stan Shebs <stan@codesourcery.com>
5576
8d95cc3b 5577 * ax-general.c (ax_const_l): Fix a sizing bug.
cf3e25ca 5578
f1ae44c9 55792010-03-18 Joel Brobecker <brobecker@adacore.com>
5580
5581 GDB 7.1 released.
5582
4daf5ac0
SS
55832010-03-18 Stan Shebs <stan@codesourcery.com>
5584 Pedro Alves <pedro@codesourcery.com>
5585
5586 * target.h (struct target_ops): New method
5587 to_set_circular_trace_buffer.
5588 (target_set_circular_trace_buffer): New macro.
5589 * target.c (update_current_target): Add
5590 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
5591 default behavior.
5592 * remote.c (remote_set_circular_trace_buffer): New function.
5593 (init_remote_ops): Add it to vector.
5594 * tracepoint.h (struct trace_status): New field traceframes_created,
5595 change buffer_size and buffer_free to int.
5596 * tracepoint.c (circular_trace_buffer): New global.
5597 (start_tracing): Send values of disconnected tracing and circular
5598 trace buffer settings.
5599 (set_circular_trace_buffer): New function.
5600 (parse_trace_state): Handle total space and frames created.
5601 (trace_status_command): Display total space and total frames
5602 created.
5603 (trace_save): Write out new status values.
5604 (parse_trace_status): Set traceframe_count, traceframes_created,
5605 buffer_free and buffer_size to -1 by default.
5606 (_initialize_tracepoint): New setshow for circular-trace-buffer.
5607 * NEWS: Mention the circular trace buffer option.
5608
40c549d6
TT
56092010-03-18 Tom Tromey <tromey@redhat.com>
5610
5611 * infcmd.c (finish_command_continuation): Wrap print_return_value
5612 in TRY_CATCH.
5613
e8d05480
JB
56142010-03-18 Joel Brobecker <brobecker@adacore.com>
5615
5616 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
5617 DIE has a name before creating the associated partial symbol.
5618 (read_func_scope): Emit a complaint if the subprogram does not
5619 have a name or when we can't extract the subprogram PC bounds.
5620
441b986a
UW
56212010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
5622
5623 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
5624 instead of selected frame architecture.
5625
4247603b
PA
56262010-03-18 Pedro Alves <pedro@codesourcery.com>
5627
5628 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
5629 a valid selected thread, and that it is not running.
5630 (advance_command): Ditto.
5631 (finish_command): Ditto.
5632
400c6af0
SS
56332010-03-17 Stan Shebs <stan@codesourcery.com>
5634
3a96536b
SS
5635 * ax-gdb.c (require_rvalue): Disallow non-scalars.
5636
573cda03
SS
5637 * infcall.c: Include tracepoint.h.
5638 (call_function_by_hand): Disallow calls in tfind mode.
5639 * infcmd.c: Include tracepoint.h.
5640 (ensure_not_tfind_mode): New function.
5641 (continue_1): Call it.
5642 (step_1) Ditto.
5643 (jump_command): Ditto.
5644 (signal_command): Ditto.
5645 (advance_command): Ditto.
5646 (until_command): Ditto.
5647 (finish_command): Ditto.
5648 * tracepoint.h (disconnect_or_stop_tracing): Declare.
5649
400c6af0
SS
5650 * ax-gdb.h (struct axs_value): New field optimized_out.
5651 (gen_trace_for_var): Add gdbarch argument.
5652 * ax-gdb.c (gen_trace_static_fields): New function.
5653 (gen_traced_pop): Call it, add gdbarch argument.
5654 (gen_trace_for_expr): Update call to it.
5655 (gen_trace_for_var): Ditto, and report optimized-out variables.
5656 (gen_struct_ref_recursive): Check for optimized-out value.
5657 (gen_struct_elt_for_reference): Ditto.
5658 (gen_static_field): Pass gdbarch instead of expression, assume
5659 optimization if field not found.
5660 (gen_var_ref): Set the optimized_out flag.
5661 (gen_expr): Error on optimized-out variable.
5662 * tracepoint.c (collect_symbol): Handle struct-valued vars as
5663 expressions, skip optimized-out variables with computed locations.
5664 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
5665 erroring out if location expression missing.
5666 (loclist_tracepoint_var_ref): Don't error out here.
5667
a3b2a86b
TT
56682010-03-17 Tom Tromey <tromey@redhat.com>
5669
5670 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
5671 DWARF data is available.
5672
38963c97
DJ
56732010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
5674
5675 * symfile.c (generic_load): Reset breakpoints after loading.
5676
ddabfc73
TT
56772010-03-17 Tom Tromey <tromey@redhat.com>
5678
5679 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
5680
d8c09fb5
JK
56812010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5682
5683 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
5684 create_breakpoint call, adjust the parameters.
5685
bbb0eef6
JK
56862010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
5687 Chandru <chandru@in.ibm.com>
5688
5689 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
5690 * valarith.c (value_subscripted_rvalue): Suppress error if
5691 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
5692
46956e39
HZ
56932010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
5694
5695 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
5696
b8d088ac
JB
56972010-03-16 Joel Brobecker <brobecker@adacore.com>
5698
5699 * ada-tasks.c (task_command_1): Check that the task ptid is valid
5700 before doing the associated thread switch.
5701
322be962
DJ
57022010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
5703
5704 * MAINTAINERS: Update my email address.
5705
8cdf0e15
VP
57062010-03-16 Vladimir Prus <vladimir@codesourcery.com>
5707
5708 Simplify MI breakpoint setting.
5709
5710 * breakpoint.c (break_command_really): Make nonstatic and
5711 rename to...
5712 (create_breakpoint): ...this. Rename prior function by this name
5713 to...
5714 (create_breakpoint_sal): ...this.
5715 (create_breakpoints): Rename to...
5716 (create_breakpoints_sal): ...this.
5717 (set_breakpoint): Remove.
5718 * breakpoint.h: Adjust to above changes.
5719 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
5720
b6e7192f
SS
57212010-03-15 Stan Shebs <stan@codesourcery.com>
5722
5723 * ax-gdb.c: Include cp-support.h.
5724 (find_field): Remove.
5725 (gen_primitive_field): New function.
5726 (gen_struct_ref_recursive): New function.
5727 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
5728 of find_field.
5729 (gen_static_field): New function.
5730 (gen_struct_elt_for_reference): New.
5731 (gen_namespace_elt): New.
5732 (gen_maybe_namespace_elt): New.
5733 (gen_aggregate_elt_ref): New.
5734 (gen_expr): Add OP_SCOPE, display opcode name in error message.
5735
1054b214
TT
57362010-03-15 Tom Tromey <tromey@redhat.com>
5737
5738 * dwarf2read.c (die_needs_namespace): Also return 0 for
5739 DW_TAG_subprogram.
5740
13387711
SW
57412010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
5742
5743 PR c++/7936:
5744 * cp-support.h: Added char *declaration element to using_direct
5745 data struct.
5746 (cp_add_using): Added char *declaration argument.
5747 (cp_add_using_directive): Ditto.
5748 (cp_lookup_symbol_imports): made extern.
5749 * cp-namespace.c: Updated with the above changes.
5750 * dwarf2read.c (read_import_statement): Ditto.
5751 (read_namespace): Ditto.
5752 (read_import_statement): Support import declarations.
5753 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
5754 declarations.
5755 Added support for 'declaration_only' search.
5756 (cp_lookup_symbol_namespace): Attempt to search for the name as
5757 is before consideration of imports.
5758 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
5759 search at every block level search.
5760 Now takes language argument.
5761 (lookup_symbol_aux): Updated.
5762
6e31430b
TT
57632010-03-15 Tom Tromey <tromey@redhat.com>
5764
5765 * c-exp.y (name_not_typename): Add 'operator' clause.
5766
4dea3bb7 57672010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
bf307134
JB
5768
5769 * configure.ac: Exit if ${gdb_target_obs}" is not set.
5770 * configure: Regenerate.
5771
4d9743af
JK
57722010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5773
5774 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
5775 and ".sdynbss". Update the comment.
5776
f75150fe
JZ
57772010-03-15 Jie Zhang <jie@codesourcery.com>
5778
5779 * MAINTAINERS: Update my email address.
5780
3c13bc11
DJ
57812010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
5782
5783 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
5784
43484f03
DJ
57852010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
5786
5787 * charset.c [USE_WIN32API]: Include <windows.h>.
5788 (_initialize_charset): Correct type of w32_host_default_charset.
5789
5f25d77d
PA
57902010-03-14 Pedro Alves <pedro@codesourcery.com>
5791
5792 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
5793
1c809c68
TT
57942010-03-12 Tom Tromey <tromey@redhat.com>
5795
5796 PR c++/9708:
5797 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
5798 in a lexical block does not need a namespace.
5799 (new_symbol) <DW_TAG_variable>: Put extern variables on
5800 list_in_scope in all cases.
5801
948103cf
SS
58022010-03-12 Stan Shebs <stan@codesourcery.com>
5803
5804 * ax-gdb.c (gen_expr): Add shift expressions.
5805 (gen_expr_binop_rest): Ditto.
5806
00ae8fef
SW
58072010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
5808
5809 * buildsym.c (finish_block): Reset using_directives pointer
5810 after block initialization.
5811
9cad29ac
L
58122010-03-12 H.J. Lu <hongjiu.lu@intel.com>
5813
5814 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
5815 * i386-tdep.c (i386_word_names): Likewise.
5816
2f4d8875
PA
58172010-03-12 Pedro Alves <pedro@codesourcery.com>
5818
5819 * target.c (memory_xfer_partial): Don't use the stack cache if
5820 inspecting trace frames.
5821 * tracepoint.c (finish_tfind_command): Invalidate the target
5822 dcache.
5823
ccf26247
JK
58242010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5825
5826 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
5827 for the PIC displacement, print also the displacement value.
5828 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
5829
477c84a7
KB
58302010-03-10 Kevin Buettner <kevinb@redhat.com>
5831
5832 * remote-mips.c (close_ports, mips_initialize_cleanups)
5833 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
5834 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
5835 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
5836 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
5837 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
5838 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
5839 comments describing each of these functions.
5840 (mips_enter_debug, mips_exit_debug, common_open)
5841 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
5842 blank line after the comment describing the function.
5843
01c30d6e
JK
58442010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
5845
5846 * solib-svr4.c (svr4_exec_displacement): Return now success, new
5847 parameter displacementp. Update comment.
5848 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
5849 element exists. Return if svr4_exec_displacement was not successful.
5850 Update comment.
5851
09919ac2
JK
58522010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
5853 Daniel Jacobowitz <dan@codesourcery.com>
5854
5855 * solib-svr4.c (read_program_header): Support type == -1 to read
5856 all program headers.
5857 (read_program_headers_from_bfd): New function.
5858 (svr4_static_exec_displacement): Remove and move the comment ...
5859 (svr4_exec_displacement): ... here. Remove variable found. New
5860 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
5861 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
5862 targets using read_program_headers_from_bfd. Remove the call of
5863 svr4_static_exec_displacement.
5864
d146bf1e
TT
58652010-03-10 Tom Tromey <tromey@redhat.com>
5866
5867 * dwarf2read.c (struct pubnames_header): Remove.
5868 (_PUBNAMES_HEADER): Remove.
5869 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
5870 (struct aranges_header): Remove.
5871 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
5872 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
5873 (PUBNAMES_SECTION): Remove.
5874 (ARANGES_SECTION): Remove.
5875 (dwarf2_locate_sections): Don't handle pubnames or aranges.
5876 (dwarf2_build_psymtabs): Remove dead code.
5877 (dwarf2_build_psymtabs_easy): Remove.
5878
be391dca
TT
58792010-03-10 Tom Tromey <tromey@redhat.com>
5880
5881 * elfread.c (elf_symfile_read): Don't call
5882 dwarf2_build_frame_info.
5883 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
5884 (struct dwarf2_per_objfile) <objfile>: New field.
5885 (dwarf2_has_info): Now idempotent. Set objfile field.
5886 (dwarf2_read_section): Check and set readin field. Call
5887 posix_madvise.
5888 (dwarf2_build_psymtabs): Don't read all sections.
5889 (read_type_comp_unit_head): Read types section.
5890 (create_debug_types_hash_table): Likewise.
5891 (init_cu_die_reader): Add asserts.
5892 (process_type_comp_unit): Add assert.
5893 (dwarf2_build_psymtabs_hard): Read info section.
5894 (load_partial_comp_unit): Add assert.
5895 (create_all_comp_units): Read info section.
5896 (load_full_comp_unit): Likewise.
5897 (dwarf2_ranges_read): Read ranges section.
5898 (dwarf2_record_block_ranges): Add assert.
5899 (dwarf2_read_abbrevs): Read abbrev section.
5900 (read_indirect_string): Read str section.
5901 (dwarf_decode_line_header): Read line section.
5902 (read_signatured_type_at_offset): Read types section.
5903 (dwarf_decode_macros): Read macinfo section.
5904 (dwarf2_symbol_mark_computed): Read loc section.
5905 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
5906 dwarf2_build_frame_info.
5907 (dwarf2_build_frame_info): Unconditionally set
5908 dwarf2_frame_objfile_data on the objfile.
5909 * configure.ac: Check for posix_madvise.
5910 * config.in, configure: Rebuild.
5911
ccefe4c4
TT
59122010-03-10 Tom Tromey <tromey@redhat.com>
5913
e38df1d0
TT
5914 * xcoffread.c (xcoff_start_psymtab): Update.
5915 (xcoff_end_psymtab): Update.
5916 * psymtab.c (allocate_psymtab): Remove dead code.
5917 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
5918 void*.
5919 * mdebugread.c (parse_partial_symbols): Update.
5920 (new_psymtab): Likewise.
5921 * dwarf2read.c (process_psymtab_comp_unit): Update.
5922 (psymtab_to_symtab_1): Update.
5923 * dbxread.c (start_psymtab): Update.
5924 (end_psymtab): Likewise.
5925
be391dca 59262010-03-10 Tom Tromey <tromey@redhat.com>
e38df1d0 5927
ccefe4c4
TT
5928 * xcoffread.c: Include psymtab.h.
5929 (xcoff_sym_fns): Update.
5930 * symtab.h (struct partial_symbol): Remove.
5931 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
5932 (struct partial_symtab): Remove.
5933 (PSYMTAB_TO_SYMTAB): Remove.
5934 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
5935 (find_pc_sect_psymtab): Remove.
5936 (find_pc_sect_symtab_via_partial): Declare.
5937 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
5938 (find_main_psymtab): Remove.
5939 (find_main_filename): Declare.
5940 (fixup_psymbol_section): Remove.
5941 (fixup_section): Declare.
5942 * symtab.c: Include psymtab.h.
5943 (lookup_symtab): Use lookup_symtab method.
5944 (lookup_partial_symtab): Remove.
5945 (find_pc_sect_psymtab_closer): Remove.
5946 (find_pc_sect_psymtab): Remove.
5947 (find_pc_sect_symtab_via_partial): New function.
5948 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
5949 (fixup_section): No longer static.
5950 (fixup_psymbol_section): Remove.
5951 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
5952 (lookup_global_symbol_from_objfile): Likewise.
5953 (lookup_symbol_aux_psymtabs): Remove.
5954 (lookup_symbol_aux_quick): New function.
5955 (lookup_symbol_global): Use lookup_symbol_aux_quick.
5956 (lookup_partial_symbol): Remove.
5957 (basic_lookup_transparent_type_quick): New function.
5958 (basic_lookup_transparent_type): Use it.
5959 (find_main_psymtab): Remove.
5960 (find_main_filename): New function.
5961 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
5962 (find_line_symtab): Use expand_symtabs_with_filename method.
5963 (output_partial_symbol_filename): New function.
5964 (sources_info): Use map_partial_symbol_filenames.
5965 (struct search_symbols_data): New type.
5966 (search_symbols_file_matches): New function.
5967 (search_symbols_name_matches): Likewise.
5968 (search_symbols): Use expand_symtabs_matching method.
5969 (struct add_name_data): Rename from add_macro_name_data.
5970 (add_macro_name): Update.
5971 (add_partial_symbol_name): New function.
5972 (default_make_symbol_completion_list): Use
5973 map_partial_symbol_names.
5974 (struct add_partial_symbol_name): New type.
5975 (maybe_add_partial_symtab_filename): New function.
5976 (make_source_files_completion_list): Use
5977 map_partial_symbol_filenames.
5978 (expand_line_sal): Use expand_symtabs_with_filename method.
5979 * symmisc.c: Include psymtab.h.
5980 (print_objfile_statistics): Use print_stats method.
5981 (dump_objfile): Use dump method.
5982 (dump_psymtab, maintenance_print_psymbols)
5983 (maintenance_info_psymtabs, maintenance_check_symtabs)
5984 (extend_psymbol_list): Remove.
5985 * symfile.h (struct quick_symbol_functions): New struct.
5986 (struct sym_fns) <qf>: New field.
5987 (sort_pst_symbols): Remove.
5988 (increment_reading_symtab): Declare.
5989 * symfile.c: Include psymtab.h.
5990 (compare_psymbols, sort_pst_symbols): Remove.
5991 (psymtab_to_symtab): Remove.
5992 (increment_reading_symtab): New function.
5993 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
5994 method.
5995 (set_initial_language): Use find_main_filename.
5996 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
5997 (free_named_symtabs): Remove unused code.
5998 (start_psymtab_common, add_psymbol_to_bcache)
5999 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
6000 Remove.
6001 * stack.c: Include psymtab.h, symfile.h.
6002 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
6003 * source.h (psymtab_to_fullname): Don't declare.
6004 * source.c: Include psymtab.h.
6005 (select_source_symtab): Use find_last_source_symtab method.
6006 (forget_cached_source_info): Use forget_cached_source_info
6007 method.
6008 (find_and_open_source): No longer static.
6009 (psymtab_to_fullname): Remove.
6010 * somread.c: Include psymtab.h.
6011 (som_sym_fns): Update.
6012 * psympriv.h: New file.
6013 * psymtab.h: New file.
6014 * psymtab.c: New file.
6015 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
6016 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
6017 * objfiles.c: Include psymtab.h.
6018 (objfile_relocate1): Use relocate method.
6019 (objfile_has_partial_symbols): Use has_symbols method.
6020 * mipsread.c: Include psymtab.h.
6021 (ecoff_sym_fns): Update.
6022 * mi/mi-cmd-file.c: Include psymtab.h.
6023 (print_partial_file_name): New function.
6024 (mi_cmd_file_list_exec_source_files): Use
6025 map_partial_symbol_filenames.
6026 * mdebugread.c: Include psympriv.h.
6027 * machoread.c: Include psympriv.h.
6028 (macho_sym_fns): Update.
6029 * m2-exp.y (yylex): Use lookup_symtab.
6030 * elfread.c: Include psympriv.h.
6031 (elf_sym_fns): Update.
6032 * dwarf2read.c: Include psympriv.h.
6033 * dbxread.c: Include psympriv.h.
6034 (aout_sym_fns): Update.
6035 * cp-support.c: Include psymtab.h.
6036 (read_in_psymtabs): Remove.
6037 (make_symbol_overload_list_qualified): Use
6038 expand_symtabs_for_function method.
6039 * coffread.c: Include psympriv.h.
6040 (coff_sym_fns): Update.
6041 * blockframe.c: Include psymtab.h.
6042 (find_pc_partial_function): Use find_pc_sect_symtab method.
6043 * ada-lang.h (ada_update_initial_language): Update.
6044 * ada-lang.c: Include psymtab.h.
6045 (ada_update_initial_language): Remove 'main_pst' argument.
6046 (ada_lookup_partial_symbol): Remove.
6047 (struct ada_psym_data): New type.
6048 (ada_add_psyms): New function.
6049 (ada_add_non_local_symbols): Use map_ada_symtabs method.
6050 (struct add_partial_datum): New type.
6051 (ada_add_partial_symbol_completions): New function.
6052 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
6053 (ada_exception_support_info_sniffer): Update.
6054 * Makefile.in (SFILES): Add psymtab.c.
6055 (COMMON_OBS): Add psymtab.o.
6056 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
6057
7d8500b7
PM
60582010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
6059
6060 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
6061
c0cc3a76
SW
60622010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
6063
6064 PR C++/11236:
6065 * cp-namespace.c (cp_add_using): Deleted.
6066 (cp_add_using_directive): Use obstack allocations.
6067 Merged the function cp_add_using into this one.
6068 Added 'struct obstack *' argument.
6069 (cp_scan_for_anonymous_namespaces): Updated.
6070 * cp-support.h: Updated.
6071 * dwarf2read.c (read_import_statement): Updated.
6072 (read_namespace): Updated.
6073
452fa064
CF
60742010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
6075
6076 * windows-nat.c (cygwin_conv_path): Remove old macro.
6077
60e1c644
PA
60782010-03-10 Pedro Alves <pedro@codesourcery.com>
6079
6080 * breakpoint.c (condition_command): Handle watchpoint conditions.
6081 (is_hardware_watchpoint): Add comment.
6082 (is_watchpoint): New.
6083 (update_watchpoint): Don't reparse the watchpoint's condition
6084 unless necessary.
6085 (WP_IGNORE): New.
6086 (watchpoint_check): Use it.
6087 (bpstat_check_watchpoint): Handle it.
6088 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
6089 conditions in a frame where it makes sense.
6090 (watch_command_1): Store the innermost block of the condition
6091 expression.
6092 (delete_breakpoint): Delete the watchpoint condition expression.
6093 * breakpoint.h (struct bp_location) <cond>: Update comment.
6094 (struct breakpoint): New field `cond_exp_valid_block'.
6095
af6b7be1
JB
60962010-03-09 Joel Brobecker <brobecker@adacore.com>
6097
6098 Adjust handling of Ada DIEs after dwarf2_physname patch.
6099 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
6100
60c5c021
CF
61012010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
6102 Pierre Muller <muller@ics.u-strasbg.fr>
6103
6104 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
6105 from/to posix/win32.
6106 (windows_make_so): Use non-Cygwin 1.7 specific function.
6107 (windows_create_inferior): Make sure that cygallargs points to
6108 original args in non Cygwin 1.7. case.
6109
60a1502a
MS
61102010-03-09 Michael Snyder <msnyder@vmware.com>
6111
6112 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
6113 after target_read_memory to get host byte order.
6114 (i386_process_record): Ditto.
6115
94af9270
KS
61162010-03-09 Keith Seitz <keiths@redhat.com>
6117
6118 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
6119 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
6120 print out const or volatile qualifiers, too.
6121 (c_type_print_args): Add parameters show_artificial and language.
6122 Skip artificial parameters when requested.
6123 Use the appropriate language printer.
6124 (c_type_print_varspec): Tell c_type_print_args to skip artificial
6125 parameters and pass language_c.
6126 * dwarf2read.c (die_list): New file global.
6127 (struct partial_die_info): Update comments for name field.
6128 (pdi_needs_namespace): Renamed to ...
6129 (die_needs_namespace): ... this. Rewrite.
6130 (dwarf2_linkage_name): Remove.
6131 (add_partial_symbol): Do not predicate the call to
6132 partial_die_full_name based on pdi_needs_namespace.
6133 Remove call to cp_check_possible_namespace_symbols and associated
6134 outdated comments.
6135 (guess_structure_name): Do not inspect child subprogram DIEs.
6136 (dwarf2_fullname): Update comments.
6137 Use die_needs_namespace to assist in computing the name.
6138 (read_func_scope): Use dwarf2_name to get the DIE's name.
6139 Use dwarf2_physname to get the "linkage name" of the DIE.
6140 (dwarf2_add_member_field): Use dwarf2_physname instead of
6141 dwarf2_linkage_name.
6142 (read_structure_type): For structs and classes, set TYPE_NAME, too.
6143 (determine_class): Remove.
6144 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
6145 except Ada.
6146 (new_symbol): Unconditionally call dwarf2_name.
6147 Compute the "linkage name" using dwarf2_physname.
6148 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
6149 When determining to scan for anonymous C++ namespaces, ignore
6150 the linkage name.
6151 (dwarf2_physname): New function.
6152 (dwarf2_full_name): Move content to new function and call
6153 that.
6154 (dwarf2_compute_name): "New" function.
6155 (_initialize_dwarf2_read): Initialize die_list.
6156 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
6157 physname.
6158 (gnu_v3_print_method_ptr): Use the physname for virtual methods
6159 without a demangled name.
6160 Print out type information for non-virtual methods.
c8d5aac9 6161 * linespec.c (decode_line_1): Force ANY string using "::" (or
94af9270 6162 "." for java) to use decode_compound, and clean up any stray quoting.
c8d5aac9
L
6163 If we found a file symtab, re-evaluate whether the remainder is_quoted.
6164 (decode_compound): Stop consuming at an open parenthesis.
6165 Keep template parameters.
6166 Keep any overload information.
6167 Keep keywords like "const".
6168 Remove paren_pointer.
6169 Move is_quoted check from set_flags to here.
6170 Remove #if 0 code from 2000. Ten years is long enough.
6171 (find_method): Before comparing symbol names, canonicalize the string
6172 from the user.
6173 If a specific overload is requested, find it. Otherwise throw an error.
94af9270
KS
6174 (find_method_overload_end): New function.
6175 (set_flags): Remove.
c8d5aac9
L
6176 (decode_compound): Assume that parentheses are matched.
6177 It's a lot easier.
94af9270
KS
6178 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
6179 to cplus_demangle.
6180 * linespec.c (decode_line_1): Keep important keywords like
6181 "const" and "volatile".
6182 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
6183 * typeprint.h (c_type_print_args): Add declaration.
6184 * ui-file.c (do_ui_file_obsavestring): New function.
6185 (ui_file_obsavestring): New function.
6186 * ui-file.h (ui_file_obsavestring): Add declaration.
6187 * valops.c (find_overload_match): Resolve the object to
6188 a non-pointer type.
6189 If the object is a data member, search the object for the member
6190 and return with staticp set.
6191 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
6192 Do not attempt to extract a function name from non-function types.
6193 If the extracted function name and the original name are the same,
6194 we don't have a C++ method.
6195
8d95cc3b
PA
6196 From Jan Kratochvil <jan.kratochvil@redhat.com>:
6197 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
94af9270
KS
6198
6199 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
6200 and arguments from symbol lookups.
6201 * ax-gdb.c (gen_expr): Likewise.
6202 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
6203 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
6204 lookup_possible_namespace_symbol): Likewise.
6205 * cp-support.c (read_in_psymtabs): Likewise.
6206 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
6207 * language.h (la_lookup_symbol_nonlocal): Likewise.
6208 * scm-valprint.c (scm_inferior_print): Likewise.
6209 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
6210 * solib-svr.c (elf_lookup_lib): Likewise.
6211 * solib.c (show_auto_solib_add): Likewise.
6212 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
6213 * symmisc.c (maintenance_check_symtabs): Likewise.
6214 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
6215 lookup_symbol_aux_local, lookup_symbol_aux_block,
6216 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
6217 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
6218 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
6219 basic_lookup_transparent_type, find_main_psymtab,
6220 lookup_block_symbol): Likewise.
6221 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
6222 lookup_symbol_global, lookup_symbol_aux_block,
6223 lookup_symbol_partial_symbol, lookup_block_symbol,
6224 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
6225
9cb74f47
PM
62262010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
6227
6228 * python/python-internal.h: Include symtab.h.
6229
af6b7be1
JB
62302010-03-09 Joel Brobecker <brobecker@adacore.com>
6231 Pierre Muller <muller@ics.u-strasbg.fr>
e13eedd5
PM
6232
6233 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
6234 * p-valprint.c (pascal_val_print): Remove undeed block and fix
6235 indentation.
6236
bad56014
TT
62372010-03-08 Tom Tromey <tromey@redhat.com>
6238
6239 * breakpoint.c (breakpoint_1): Add "QUIT".
6240
08105857
PA
62412010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
6242 Pedro Alves <pedro@codesourcery.com>
6243
6244 * solib.c (solib_find): Replace extension if
6245 solib_symbols_extension is set in the target gdbarch.
6246 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
6247 solib_symbols_extension to "sym".
6248 * gdbarch.sh (solib_symbols_extension): New variable.
6249 (pstring): New function.
6250 * gdbarch.h, gdbarch.c: Regenerate.
6251
7c953934
TT
62522010-03-08 Tom Tromey <tromey@redhat.com>
6253
6254 PR cli/9591:
6255 * NEWS: Update.
6256 * utils.c: Include main.h.
6257 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
6258 (defaulted_query): Use default answer if `batch_flag'.
6259 * main.h (batch_flag): Declare.
6260 * main.c (batch_flag): New global.
6261 (captured_main): Remove 'batch'. Update.
6262
bbd2783e
KB
62632010-03-08 Kevin Buettner <kevinb@redhat.com>
6264
6265 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
6266 and Kevin Buettner:
6267
6268 * remote-mips.c (rockhopper_ops): New target_ops struct.
6269 (MON_ROCKHOPPER): New mips_monitor_type.
6270 (read_hex_value): New function.
6271 (mips_request): Send 8-byte values with a 'T' packet. Read the
8d95cc3b 6272 packet argument as a string and use read_hex_value to parse it.
bbd2783e
KB
6273 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
6274 (rockhopper_open): New function.
6275 (mips_wait): Read the PC, FP and SP fields as strings. Use
6276 read_hex_value to parse them and mips_set_register to commit them.
6277 (mips_set_register): New function.
6278 (mips_fetch_registers): Do not cast register value to "unsigned"
6279 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
6280 (mips_store_registers): Use a 'T' packet to set registers when
6281 using MON_ROCKHOPPER.
6282 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
6283 and expect the total to be printed before the entry address.
6284 (_initialize_remote_mips): Initialize and add rockhopper_ops.
6285
566f3d17
KB
62862010-03-08 Kevin Buettner <kevinb@redhat.com>
6287
6288 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
6289 Change return value to int. Store value fetched in location
6290 addressed by `val'. Use function's return value as success
6291 or failure indicator. Adjust all callers.
6292
9c8ee2ab 62932010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
f72d4b77
PM
6294
6295 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
6296
7155de5a
HZ
62972010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6298 Hui Zhu <teawater@gmail.com>
6299
6300 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
6301 tmp_to_stopped_data_address.
6302 (record_open): Reset tmp_to_stopped_by_watchpoint and
6303 tmp_to_stopped_data_address.
6304 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
6305 to_stopped_data_address.
6306
580879fc
HZ
63072010-03-08 Hui Zhu <teawater@gmail.com>
6308
6309 * i386-tdep.c (i386_process_record): Initialize regnum.
6310
b0fcb67f
JK
63112010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6312
6313 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
6314 Do not warn on ".gnu.liblist" and ".gnu.conflict".
6315
08597104
JB
63162010-03-08 Joel Brobecker <brobecker@adacore.com>
6317
6318 Memory error when reading wrong core file.
6319 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
6320 errors while reading the inferior memory, and return zero if
6321 an exception was raised.
6322
425b824a
MS
63232010-03-07 Michael Snyder <msnyder@vmware.com>
6324
ec6dbf37
MS
6325 * record.c (record_restore): Rename tmpu8 to rectype.
6326
648d0c8b
MS
6327 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
6328 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
6329
6330 (i386_record_push): Rename local tmpulongest to addr.
6331
6332 (i386_process_record): Rename local tmpulongest to addr.
6333
6334 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
6335 addr64.
955db0c0
MS
6336
6337 Rename local variable tmpu8 to opcode8 and regnum.
425b824a 6338
10760264
JB
63392010-03-07 Joel Brobecker <brobecker@adacore.com>
6340
6341 * remote.c (remote_get_ada_task_ptid): New function.
c8d5aac9 6342 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
10760264 6343
b3c613f2
CF
63442010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
6345
6346 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
6347 block. Define helper macros to reduce ifdefs in code.
6348 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
6349 size. Call unadorned GetModuleFileNameEx rather than
6350 GetModuleFileNameEx*.
6351 (windows_make_so): Use __PMAX to denote maximum buffer size and
6352 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
6353 appropriate.
6354 (get_image_name): Use __PMAX to denote maximum buffer size.
6355 (handle_load_dll): Likewise.
6356 (windows_pid_to_exec_file): Likewise.
6357 (windows_create_inferior): Add many accommodations for older Cygwin and
6358 non-Cygwin.
6359 (bad_GetModuleFileNameExW): Control inclusion of this function based on
6360 __USEWIDE conditional.
6361 (bad_GetModuleFileNameExA): Likewise.
6362 (_initialize_loadable): Just use real function names without the dyn_
6363 part since they are defined earlier.
6364
f870a310
TT
63652010-03-05 Corinna Vinschen <vinschen@redhat.com>
6366 Tom Tromey <tromey@redhat.com>
6367
6368 * utils.c (host_char_to_target): Add 'gdbarch' argument.
6369 (parse_escape): Likewise.
6370 * python/py-utils.c (unicode_to_target_string): Update.
6371 (unicode_to_target_python_string): Update.
6372 (target_string_to_unicode): Update.
6373 * printcmd.c (printf_command): Update.
6374 * p-exp.y (yylex): Update.
6375 * objc-exp.y (yylex): Update.
6376 * mi/mi-parse.c: Include charset.h.
6377 (mi_parse_escape): New function.
6378 (mi_parse_argv): Use it.
6379 * jv-exp.y (yylex): Update.
6380 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
6381 function.
6382 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
6383 * gdbarch.sh (auto_charset, auto_wide_charset): New.
6384 * gdbarch.c: Rebuild.
6385 * gdbarch.h: Rebuild.
6386 * defs.h (parse_escape): Update.
6387 * cli/cli-setshow.c: Include arch-utils.h.
6388 (do_setshow_command): Update.
6389 * cli/cli-cmds.c (echo_command): Update.
6390 * charset.h (target_charset, target_wide_charset): Update.
6391 * charset.c: Include arch-utils.h.
6392 (target_charset_name): Default to "auto".
6393 (target_wide_charset_name): Likewise.
6394 (show_target_charset_name): Handle "auto".
6395 (show_target_wide_charset_name): Likewise.
6396 (be_le_arch): New global.
6397 (set_be_le_names): Add 'gdbarch' argument.
6398 (validate): Likewise. Don't call set_be_le_names.
6399 (set_charset_sfunc, set_host_charset_sfunc)
6400 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
6401 Update.
6402 (target_charset): Add 'gdbarch' argument.
6403 (target_wide_charset): Likewise. Remove 'byte_order' argument.
6404 (auto_target_charset_name): New global.
6405 (default_auto_charset, default_auto_wide_charset): New functions.
6406 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
6407 for target charsets. Copy result of nl_langinfo. Use GetACP if
6408 USE_WIN32API.
6409 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
6410 remove 'byte_order' argument. Update.
6411 (classify_type): Likewise.
6412 (c_emit_char): Update.
6413 (c_printchar): Update.
6414 (c_printstr): Update.
6415 (c_get_string): Update.
6416 (evaluate_subexp_c): Update.
6417 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
6418 Declare.
6419 * python/python.c (gdbpy_target_charset): New function.
6420 (gdbpy_target_wide_charset): Likewise.
6421 (GdbMethods): Update.
6422 * NEWS: Update.
6423
4e7386b0
UW
64242010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
6425
6426 * symfile.c (build_section_addr_info_from_objfile): Do not mask
6427 off high address bits.
6428
aab48ede
UW
64292010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
6430
6431 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
6432 address as UnsignedLongLong, not LongLong.
6433
8eeafb51 64342010-03-05 Kevin Buettner <kevinb@redhat.com>
c8d5aac9 6435 Pedro Alves <pedro@codesourcery.com>
8eeafb51
KB
6436
6437 * remote-mips.c (gdbthread.h): Include.
6438 (remote_mips_ptid): Declare.
6439 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
6440 (common_open): Set inferior_ptid, add it as an inferior, and
6441 as a thread too. Delete FIXME comment regarding start_remote().
6442 (mips_close): Invoke generic_mourn_inferior().
6443 (mips_kill): Make sure that target_mourn_inferior is invoked.
6444 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
6445 it's now invoked from mips_close().
6446 (mips_load): Don't null out inferior_ptid. Don't call
6447 clear_symtab_users().
6448 (mips_thread_alive, mips_pid_to_str): New functions.
6449 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
6450 to_thread_alive and to_pid_to_str operations.
6451
ae411497
TT
64522010-03-04 Tom Tromey <tromey@redhat.com>
6453
6454 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
6455 in DWARF 3 and later.
6456 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
6457
0e0b460e
KS
64582010-03-04 Keith Seitz <keiths@redhat.com>
6459
6460 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
6461 If the filename portion of the linespec was quoted, recheck the
6462 remainder for additional quoting.
6463 (locate_first_half): Skip over completer chars, too.
6464
1b93ff13
TT
64652010-03-04 Tom Tromey <tromey@redhat.com>
6466
6467 * printcmd.c (printf_command): Pass dummy argument to
6468 printf_filtered.
6469
fc36e839
DE
64702010-03-04 Doug Evans <dje@google.com>
6471
111f853c
DE
6472 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
6473 unwound_fp.
6474
fc36e839
DE
6475 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
6476
c7437ca6
PA
64772010-03-04 Pedro Alves <pedro@codesourcery.com>
6478
6479 * breakpoint.c (update_watchpoint): Create a sentinel location if
6480 the software watchpoint isn't watching any memory.
6481 (breakpoint_address_bits): Skip dummy software watchpoint locations.
6482
58dadb1b
PA
64832010-03-04 Pedro Alves <pedro@codesourcery.com>
6484
6485 * utils.c (fputs_maybe_filtered): Check if there's already a top
6486 level interpreter before dereferencing it. If there isn't one,
6487 don't paginate either.
6488
50e98be4
DJ
64892010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6490
6491 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
6492 the state right when single stepping.
6493 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
6494 Get the next PC along with the instruction state.
6495 (thumb_get_next_pc): Remove.
6496 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
6497
2e3ceee9
HZ
64982010-03-04 Hui Zhu <teawater@gmail.com>
6499
6500 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
6501
390a8aca
PA
65022010-03-03 Pedro Alves <pedro@codesourcery.com>
6503
6504 * utils.c (fputs_maybe_filtered): Always disable pagination if the
6505 top level interpreter is MI.
6506
9355b391
SS
65072010-03-03 Stan Shebs <stan@codesourcery.com>
6508
6509 * remote.c (remote_download_tracepoint): Iterate over locations.
6510 * tracepoint.c (validate_actionline): Ditto.
6511 (encode_actions): Add location argument.
6512 (trace_dump_command): Check all locations to see if stepping
6513 frame.
390a8aca 6514
8685c86f
L
65152010-03-03 H.J. Lu <hongjiu.lu@intel.com>
6516 Eli Zaretskii <eliz@gnu.org>
6517
6518 * NEWS: Add X86 general purpose registers section.
6519
e8f781e2
TT
65202010-03-03 Tom Tromey <tromey@redhat.com>
6521
6522 PR mi/11098:
6523 * varobj.c (install_new_value): Handle case where new print_value
6524 is NULL.
6525
a0e0ef55
TT
65262010-03-03 Dainis Jonitis <jonitis@gmail.com>
6527
6528 PR gdb/11345:
6529 * printcmd.c (printf_command): Print end of format string using
6530 printf_filtered.
6531
a58d7472
TT
65322010-03-02 Tom Tromey <tromey@redhat.com>
6533
6534 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
6535 * defs.h (read_command_lines_1): Add missing 'void'.
6536 * cli/cli-script.c (recurse_read_control_structure): Add missing
6537 'void'.
6538 (read_next_line): Likewise.
6539 (read_command_lines_1): Likewise.
6540
ce50d78b
UW
65412010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
6542
6543 * spu-tdep.c (spu_analyze_prologue): Track instruction to
6544 store backchain as part of prologue.
6545
7e9af34a
DJ
65462010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
6547
6548 * progspace.c (update_address_spaces): Update inferior address spaces
6549 also.
6550
01637564
DE
65512010-03-02 Doug Evans <dje@google.com>
6552
6553 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
6554 lowpc,highpc args to addrmap_set_empty.
6555
1ba53b71
L
65562010-03-02 H.J. Lu <hongjiu.lu@intel.com>
6557
6558 * amd64-tdep.c (amd64_byte_names): New.
6559 (amd64_word_names): Likewise.
6560 (amd64_dword_names): Likewise.
6561 (amd64_pseudo_register_name): Likewise.
6562 (amd64_pseudo_register_read): Likewise.
6563 (amd64_pseudo_register_write): Likewise.
6564 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
6565 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
6566 set_gdbarch_pseudo_register_write and
6567 set_tdesc_pseudo_register_name. Don't call
6568 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
6569
6570 * i386-tdep.c (i386_num_mmx_regs): Removed.
6571 (i386_num_pseudo_regs): Likewise.
6572 (i386_byte_names): New.
6573 (i386_word_names): Likewise.
6574 (i386_byte_regnum_p): Likewise.
6575 (i386_word_regnum_p): Likewise.
6576 (i386_mmx_regnum_p): Updated.
6577 (i386_pseudo_register_name): Make it global. Handle byte and
6578 word pseudo-registers.
6579 (i386_pseudo_register_read): Likewise.
6580 (i386_pseudo_register_write): Likewise.
6581 (i386_pseudo_register_type): Handle byte, word and dword
6582 pseudo-registers
6583 (i386_register_reggroup_p): Don't include pseudo
6584 registers, except for MXX, in any register groups. Don't
6585 include pseudo byte, word, dword registers in general_reggroup.
6586 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
6587 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
6588 pseudo-registers after word pseudo-registers. Call
6589 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
6590
6591 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
6592 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
6593 eax_regnum.
6594 (i386_byte_regnum_p): New.
6595 (i386_word_regnum_p): Likewise.
6596 (i386_dword_regnum_p): Likewise.
6597 (i386_pseudo_register_name): Likewise.
6598 (i386_pseudo_register_read): Likewise.
6599 (i386_pseudo_register_write): Likewise.
6600
a6f5ef51
L
66012010-03-01 H.J. Lu <hongjiu.lu@intel.com>
6602
6603 * target-descriptions.c (tdesc_type): Remove
6604 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
6605 (tdesc_predefined_types): Likewise.
6606 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
6607 if flag name is empty.
6608 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
6609
6610 * features/i386/32bit-core.xml: Define i386_eflags.
6611 * features/i386/64bit-core.xml: Likewise.
6612
6613 * features/i386/32bit-sse.xml: Define i386_mxcsr.
6614 * features/i386/64bit-sse.xml: Likewise.
6615
6616 * features/i386/amd64-linux.c: Regenerated.
6617 * features/i386/amd64.c: Likewise.
6618 * features/i386/i386-linux.c: Likewise.
6619 * features/i386/i386.c: Likewise.
6620
f5dff777
DJ
66212010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
6622
6623 * gdbtypes.c (append_composite_type_field_raw): New.
6624 (append_composite_type_field_aligned): Use the new function.
6625 * gdbtypes.h (append_composite_type_field_raw): Declare.
6626 * target-descriptions.c (struct tdesc_type_field): Add start and end.
6627 (struct tdesc_type_flag): New type.
6628 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
6629 kind. Add size to u.u. Add u.f for flags.
6630 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
6631 (tdesc_free_type): Likewise.
6632 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
6633 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
6634 (tdesc_add_bitfield, tdesc_add_flag): New.
6635 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
6636 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
6637 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
6638 current_type. Add current_type_size and current_type_is_flags.
6639 (tdesc_start_union): Clear the new fields.
6640 (tdesc_start_struct, tdesc_start_flags): New.
6641 (tdesc_start_field): Handle struct fields, including bitfields.
6642 (field_attributes): Make type optional. Add start and end.
6643 (union_children): Rename to struct_union_children.
6644 (union_attributes): Rename to struct_union_attributes. Add optional
6645 size.
6646 (flags_attributes): New.
6647 (feature_children): Add struct and flags.
6648 * features/gdb-target.dtd: Add flags and struct to features.
6649 Make field type optional. Add field start and end.
6650
90884b2b
L
66512010-03-01 H.J. Lu <hongjiu.lu@intel.com>
6652
6653 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
6654 (amd64_linux_read_description): Likewise.
6655 (_initialize_amd64_linux_nat): Set to_read_description to
6656 amd64_linux_read_description.
6657
6658 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
6659 (amd64_linux_register_name): Removed.
6660 (amd64_linux_register_type): Likewise.
6661 (amd64_linux_core_read_description): New.
6662 (amd64_linux_init_abi): Set target description to
6663 tdesc_amd64_linux if needed. Support orig_rax in target
6664 description. Don't call set_gdbarch_register_name nor
6665 set_gdbarch_register_type. Call
6666 set_gdbarch_core_read_description.
6667 (_initialize_amd64_linux_tdep): Call
6668 initialize_tdesc_amd64_linux.
6669
6670 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
6671
6672 * amd64-tdep.c: Include "features/i386/amd64.c".
6673 (amd64_register_names): Removed.
6674 (amd64_register_name): Likewise.
6675 (amd64_register_type): Likewise.
6676 (amd64_init_abi): Set num_core_regs and register_names. Set
8d95cc3b 6677 target description to tdesc_amd64 if needed. Don't call
90884b2b
L
6678 set_gdbarch_register_name nor set_gdbarch_register_type.
6679 (_initialize_amd64_tdep): New.
6680
6681 * i386-linux-nat.c (i386_linux_read_description): New.
6682 (_initialize_i386_linux_nat): Set to_read_description to
6683 i386_linux_read_description.
6684
6685 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
6686 (i386_linux_register_name): Removed.
6687 (i386_linux_core_read_description): New.
6688 (i386_linux_read_description): Likewise.
6689 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
6690 Set target description to tdesc_i386_linux if needed. Support
6691 orig_eax. Set register_reggroup_p. Call
6692 set_gdbarch_core_read_description.
6693 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
6694
6695 * i386-linux-tdep.h (tdesc_i386_linux): New.
6696
6697 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
6698 with I387_NUM_REGS.
6699
6700 * i386-tdep.c: Include "features/i386/i386.c".
6701 (i386_register_names): Make it const.
6702 (i386_mmx_names): Likewise.
6703 (i386_num_register_names): Removed.
6704 (i386_register_name): Likewise.
6705 (i386_eflags_type): Likewise.
6706 (i386_mxcsr_type): Likewise.
6707 (i386_sse_type): Likewise.
6708 (i386_register_type): Likewise.
6709 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
6710 (i386_pseudo_register_name): New.
6711 (i386_pseudo_register_type): Likewise.
6712 (i386_mmx_type): Make it static.
6713 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
6714 I387_NUM_REGS. Set num_core_regs and register_names. Don't
6715 call set_gdbarch_register_name nor set_gdbarch_register_type.
6716 Set register_reggroup_p. Set target description to tdesc_i386
6717 if needed. Call set_tdesc_pseudo_register_type,
6718 set_tdesc_pseudo_register_name and tdesc_use_registers.
6719 (_initialize_i386_tdep): Call initialize_tdesc_i386.
6720 initialize_tdesc_x86_64.
6721
6722 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
6723 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
6724 register_names, tdesc and register_reggroup_p.
6725 (I386_NUM_FREGS): Removed.
6726 (i386_eflags_type): Likewise.
6727 (i386_mxcsr_type): Likewise.
6728 (i386_mmx_type): Likewise.
6729 (i386_sse_type): Likewise.
6730 (i386_register_name): Likewise.
6731 (i386_regnum): Add I386_MXCSR_REGNUM.
6732 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
6733
6734 * i387-tdep.h (I387_NUM_REGS): New.
6735
6736 * regformats/i386/i386-linux.dat: Generated.
6737 * regformats/i386/i386.dat: Likewise.
6738 * regformats/i386/amd64-linux.dat: Likewise.
6739 * regformats/i386/amd64.dat: Likewise.
6740
6741 * regformats/reg-i386-linux.dat: Removed.
6742 * regformats/reg-i386.dat: Likewise.
6743 * regformats/reg-x86-64-linux.dat: Likewise.
6744 * regformats/reg-x86-64.dat: Likewise.
6745
d0d0ab16
CV
67462010-03-01 Corinna Vinschen <vinschen@redhat.com>
6747
6748 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
6749 cygwin_conv_path API rather than the deprecated
6750 cygwin_conv_to_full_posix_path.
6751 * windows-nat.c:
6752 (GetModuleFileNameExA): Undefine for Cygwin.
6753 (GetModuleFileNameExW): Define for Cygwin.
6754 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
6755 Call GetModuleFileNameExW and convert path to POSIX using
6756 cygwin_conv_path.
6757 (windows_make_so): Always define p. Drop unused variable m.
6758 Don't use Win32 functions to check file existance, rather use
6759 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
6760 Use canonicalize_file_name to get full path.
6761 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
6762 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
6763 use correct target buffer size in call to WideCharToMultiByte.
6764 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
6765 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
6766 (windows_create_inferior): Convert all paths and arguments to wchar_t
6767 and use CreateProcessW on Cygwin.
6768 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
6769 (bad_GetModuleFileNameExA): Undefine for Cygwin.
6770 (bad_GetModuleFileNameExW): Define for Cygwin.
6771 (_initialize_loadable): Load GetModuleFileNameExW into
6772 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
6773
dc00d89f
PM
67742010-02-28 Phil Muldoon <pmuldoon@redhat.com>
6775
6776 PR python/11036
6777 * python/py-frame.c (frapy_read_var): Add block argument and logic
6778 to cope with user provided blocks.
6779
0e095b7e
JK
67802010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6781
6782 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
6783 New comment.
6784
2f9e05b4
CV
67852010-02-28 Corinna Vinschen <vinschen@redhat.com>
6786
6787 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
6788 (COMMON_OBS): ... to here since it's used unconditionally.
6789 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
6790 (SFILES): To here.
6791
eb195664
DD
67922010-02-26 David Daney <ddaney@caviumnetworks.com>
6793
6794 * mips-linux-tdep.c: Update struct sigframe comments.
6795 (SIGFRAME_CODE_OFFSET): Delete macro.
6796 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
6797 this_frame's sp.
6798 (mips_linux_n32n64_sigframe_init): Same.
6799
97b0f3e2
KB
68002010-02-26 Kevin Buettner <kevinb@redhat.com>
6801
6802 * remote-mips.c (mips_load): Don't use pseudo-register when
6803 invalidating regcache.
6804
4069ebbe
DJ
68052010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
6806
6807 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
6808
05071a4d
PA
68092010-02-26 Pedro Alves <pedro@codesourcery.com>
6810
6811 * NEWS: Add "New targets" section, and mention ARM Symbian
6812 support.
6813
6063c216
UW
68142010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
6815
6816 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
6817 add ADDR_SIZE member.
6818 (allocate_piece_closure): Update.
6819 (copy_pieced_value_closure): Likewise.
6820 (dwarf2_evaluate_loc_desc): Likewise.
6821 (read_pieced_value): Use DWARF address size instead of
6822 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
6823
5107b149 68242010-02-26 Phil Muldoon <pmuldoon@redhat.com>
c8d5aac9 6825 Tom Tromey <tromey@redhat.com>
5107b149
PM
6826
6827 * python/py-type.c (typy_lookup_typename): Add in block argument.
6828 If provided restrict lookup to specified blocks.
6829 (gdbpy_lookup_type): Likewise.
6830 (typy_lookup_type): Likewise.
6831
78664fa3 68322010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8d95cc3b 6833
78664fa3
PA
6834 Symbian config
6835
6836 gdb/
6837 * arm-symbian-tdep.c: New.
6838 * configure.tgt (arm*-*-symbianelf*): New target.
6839 (*-*-symbianelf*): New OS.
6840 * osabi.c (gdb_osabi_names): Add Symbian.
6841 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
6842 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
6843 (ALLDEPFILES): Add arm-symbian-tdep.c.
6844
eb73e134
DJ
68452010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
6846
6847 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
6848
46ef47e5
PA
68492010-02-24 Pedro Alves <pedro@codesourcery.com>
6850
6851 * mi/mi-main.c (mi_cmd_execute): Fix typo.
6852
f3e9a817 68532010-02-24 Phil Muldoon <pmuldoon@redhat.com>
8d95cc3b 6854 Tom Tromey <tromey@redhat.com>
f3e9a817
PM
6855 Thiago Jung Bauermann <bauerman@br.ibm.com>
6856
6857 * python/python.c (_initialize_python): Call
6858 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
6859 gdbpy_initialize_blocks.
6860 * python/python-internal.h: Declare struct symbol, block and
6861 symtab_and_line. Declare block_object_type and
6862 symbol_object_type
6863 (gdbpy_lookup_symbol gdbpy_block_for_pc)
6864 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
6865 (symbol_to_symbol_object, block_to_block_object)
6866 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
6867 (gdbpy_initialize_blocks ): Declare.
6868 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
6869 (frapy_select): Add methods.
6870 (frapy_read_var): Add symbol branch.
6871 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
6872 py-block.
6873 (SUBDIR_PYTHON_SRCS): Likewise.
6874 (py-symbol.o): New rule.
6875 (py-symtab.o): Likewise.
6876 (py-block.o): Likewise.
6877 * python/py-symbol.c: New file.
6878 * python/py-symtab.c: Likewise.
6879 * python/py-block.c: Likewise.
6880
24291992
PA
68812010-02-24 Pedro Alves <pedro@codesourcery.com>
6882
6883 PR gdb/11321
6884
6885 * inferior.h (prepare_for_detach): Declare.
6886 (struct inferior) <detaching>: New field.
6887 * infrun.c (prepare_for_detach): New.
6888 (handle_inferior_event) <random signal>: Don't stop if detaching.
6889 * target.c (target_detach): Call prepare_for_detach.
6890
fc1cf338
PA
68912010-02-24 Pedro Alves <pedro@codesourcery.com>
6892
6893 Per-process displaced stepping queue.
6894
6895 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
6896 (displaced_step_gdbarch, displaced_step_closure,
6897 (displaced_step_original, displaced_step_copy): Move globals to
6898 this...
6899 (struct displaced_step_inferior_state): ... new structure.
6900 (displaced_step_inferior_states): New global.
6901 (get_displaced_stepping_state, add_displaced_stepping_state)
6902 (remove_displaced_stepping_state, infrun_inferior_exit): New
6903 functions.
6904 (displaced_step_clear): Add displaced_step_inferior_state
6905 parameter, and adjust to handle it.
6906 (displaced_step_clear_cleanup): Parameter is now a
6907 displaced_step_inferior_state. Adjust.
6908 (displaced_step_prepare): Adjust.
6909 (displaced_step_fixup, displaced_step_fixup)
6910 (infrun_thread_ptid_changed, resume): Adjust.
6911 (init_wait_for_inferior): Don't call displaced_step_clear.
6912 (infrun_thread_stop_requested): Rewrite.
6913 (_initialize_infrun): Install infrun_inferior_exit as
6914 inferior_exit observer.
6915
0723dbf5
PA
69162010-02-24 Pedro Alves <pedro@codesourcery.com>
6917
6918 * inferior.h (ptid_match): Declare.
6919 * infrun.c (ptid_match): New.
6920 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
6921 (handle_notification): Add debug output.
6922 * linux-nat.c (ptid_match): Delete.
6923
09de9781
DM
69242010-02-24 David S. Miller <davem@davemloft.net>
6925
6926 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
6927 * syscalls/sparc-linux.xml: New.
6928 * syscalls/sparc64-linux.xml: New.
6929 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
6930 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
6931 (sparc32_linux_get_syscall_number): New function.
6932 (sparc32_linux_init_abi): Set syscall XML file name and hook up
6933 syscall number fetcher.
6934 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
6935 (sparc64_linux_get_syscall_number): New function.
6936 (sparc64_linux_init_abi): Set syscall XML file name and hook up
6937 syscall number fetcher.
6938
a79b8f6e
VP
69392010-02-24 Vladimir Prus <vladimir@codesourcery.com>
6940
6941 Multiexec MI
6942
6943 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
6944 * inferior.c (add_inferior_silent): Notify inferior_added
6945 observer.
6946 (delete_inferior_1): Notify inferior_removed observer.
6947 (exit_inferior_1): Pass inferior, not pid, to observer.
6948 (inferior_appeared): Likewise.
6949 (add_inferior_with_spaces): New.
6950 (add_inferior_command): Use the above.
6951 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
6952 Declare.
6953
6954 * inflow.c (inflow_inferior_exit): Likewise.
6955 * jit.c (jit_inferior_exit_hook): Likewise.
6956
6957 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
6958 remove-inferior.
6959 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
6960 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
6961 (report_initial_inferior): New.
6962 (mi_inferior_removed): Register the above. Make sure
6963 inferior_added observer is called on the first inferior.
6964 (mi_new_thread, mi_thread_exit): Thread group is now identified by
6965 inferior number, not pid.
6966 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
6967 affected.
6968 * mi/mi-main.c (current_context): New.
6969 (proceed_thread_callback): Use typed closure.
6970 Proceed everything if pid is 0. Most implementation split into
6971 (proceed_thread): ... this.
6972 (run_one_inferior): New.
6973 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
6974 Adjust for multiexec behaviour.
6975 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
6976 (mi_cmd_execute): Handle the 'thread-group' option here.
6977 Do some extra checks.
6978 * mi-parse.c (mi_parse): Handle the --all and --thread-group
6979 options.
6980 * mi-parse.h (struct mi_parse): New fields all and thread_group.
6981
115d30f9
VP
69822010-02-24 Vladimir Prus <vladimir@codesourcery.com>
6983
6984 Make -exec-run a proper MI commands.
6985
6986 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
6987 * mi/mi-cmds.c (mi_cmds): Adjust.
6988 * mi/mi-main.c (mi_cmd_exec_run): New.
6989
06cd862c
PA
69902010-02-24 Pedro Alves <pedro@codesourcery.com>
6991 Stan Shebs <stan@codesourcery.com>
6992
6993 * tracepoint.h (set_traceframe_number)
6994 (cleanup_restore_current_traceframe): Declare.
6995 * tracepoint.c (set_traceframe_number): New.
6996 (struct current_traceframe_cleanup): New.
6997 (do_restore_current_traceframe_cleanup)
6998 (restore_current_traceframe_cleanup_dtor)
6999 (make_cleanup_restore_current_traceframe): New.
7000 * infrun.c: Include tracepoint.h.
7001 (fetch_inferior_event): Switch out and in of tfind mode.
7002
ab92d69b
PA
70032010-02-24 Pedro Alves <pedro@codesourcery.com>
7004
7005 * breakpoint.c (breakpoint_init_inferior): Also delete
7006 bp_shlib_event breakpoints.
7007 * solib-frv.c (enable_break): Remove call to
7008 remove_solib_event_breakpoints.
7009 * solib-svr4.c (enable_break): Ditto.
7010 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
7011 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
7012 * solib-som.c (som_solib_create_inferior_hook): Ditto.
7013 * solib-spu.c (spu_enable_break): Ditto.
7014
e707a91d
PA
70152010-02-23 Harald Koenig <H.Koenig@science-computing.de>
7016
7017 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
7018
cfce2ea2
PA
70192010-02-23 Harald Koenig <H.Koenig@science-computing.de>
7020
7021 * varobj.c (varobj_update): Avoid non-constants in initializers.
7022
05566b3b
TT
70232010-02-23 Tom Tromey <tromey@redhat.com>
7024
7025 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
7026 handle big-endian values.
7027 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
7028
85d721b8
PA
70292010-02-22 Pedro Alves <pedro@codesourcery.com>
7030
7031 PR9605
7032
7033 gdb/
7034 * breakpoint.c (insert_bp_location): If inserting the read
7035 watchpoint failed, fallback to an access watchpoint.
7036 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
7037 if the value changed, if not watching the same memory for writes.
7038 (watchpoint_locations_match): Add comment.
7039 (update_global_location_list): Copy the location's watchpoint type.
7040 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
7041 handle read watchpoints here.
7042 (i386_insert_watchpoint): Read watchpoints aren't supported.
7043 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
7044 packets.
7045 * target.h (target_insert_watchpoint): Update description.
7046
48ea67a7
TT
70472010-02-19 Tom Tromey <tromey@redhat.com>
7048
7049 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
7050 * m2-typeprint.c (m2_print_type): Update.
7051 * gdbtypes.c (recursive_dump_type): Update.
7052 (copy_type_recursive): Update.
7053 * c-typeprint.c (c_type_print_varspec_prefix): Update.
7054 (c_type_print_base): Update.
7055 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
7056 Remove.
7057 (struct cplus_struct_type) <ntemplate_args>: Remove.
7058 <struct template_arg>: Remove.
7059 <is_dynamic>: Move earlier.
7060 (TYPE_TEMPLATE_ARGS): Remove.
7061 (TYPE_NTEMPLATE_ARGS): Remove.
7062 (TYPE_TEMPLATE_ARG): Remove.
7063
48e32051
TT
70642010-02-19 Tom Tromey <tromey@redhat.com>
7065
7066 PR c++/8693, PR c++/9496:
7067 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
7068 * c-exp.y (lex_one_token): Rename from yylex. Don't call
7069 write_dollar_variable. Don't try to classify NAME tokens.
7070 (token_and_value): New type.
7071 (token_fifo, popping, name_obstack): New globals.
7072 (classify_name): New function.
7073 (classify_inner_name): Likewise.
7074 (yylex): Likewise.
7075 (VARIABLE): Now has type sval.
7076 (exp : VARIABLE): Call write_dollar_variable.
7077 (qualified_name): Use TYPENAME, not typebase. Add production for
7078 multiple "::" instances.
7079 (variable): Use name_not_typename.
7080 (qualified_type): Remove.
7081 (typebase): Update.
7082
672d9c23
JK
70832010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7084
7085 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
7086 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
7087 found by bfd_get_section_by_name.
7088 * symfile.h (struct section_addr_info) <sectindex>: New comment.
7089
bfbf3774
JB
70902010-02-19 Joel Brobecker <brobecker@adacore.com>
7091
7092 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
7093 7.0 section" into "Changes in 7.1".
7094
6756b09b 70952010-02-19 Joel Brobecker <brobecker@adacore.com>
7096
7097 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
7098 * version.in: Bump version to 7.1.50.20100219-cvs.
7099
202b96c1
PA
71002010-02-18 Harald Koenig <H.Koenig@science-computing.de>
7101
7102 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
7103 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
7104
de2e5182
TT
71052010-02-17 Tom Tromey <tromey@redhat.com>
7106
7107 * NEWS: Add Python API Improvements section.
7108
7280022e
DJ
71092010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
7110
7111 * NEWS: Correct typo.
7112
6f451e5e
TT
71132010-02-17 Tom Tromey <tromey@redhat.com>
7114
7115 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
7116
012836ea
JK
71172010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7118
7119 * symfile.c (build_section_addr_info_from_objfile): Include sections
7120 only if they are SEC_ALLOC or SEC_LOAD.
7121
d182d057
L
71222010-02-17 H.J. Lu <hongjiu.lu@intel.com>
7123
7124 PR shlibs/11293
7125 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
7126 of ULONGEST for address size.
7127
4eef138c
TT
71282010-02-17 Tom Tromey <tromey@redhat.com>
7129
7130 * NEWS: Add C++ improvements section.
7131
548a926a
UW
71322010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
7133
7134 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
7135 PyThreadState_Swap): Avoid "statement with no effect" warning.
7136
ad3a0e5b
JK
71372010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7138
7139 * solib-svr4.c (enable_break <target_auxv_search>): New variable
7140 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
7141
243e2c5d 71422010-02-17 Tristan Gingold <gingold@adacore.com>
b2319725 7143 Petr Hluzin <petr.hluzin@gmail.com>
243e2c5d
TG
7144
7145 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
7146 gdb_assert. Fix info->size for SIG prologue.
7147
275f2e57
DJ
71482010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7149
7150 * infcmd.c (show_inferior_tty_command): Check for NULL.
7151 Correct output message.
7152
791dfb64
DJ
71532010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7154
7155 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
7156 FUNCTION contains parentheses. Improve removal of a trailing
7157 single quote.
7158
14d1346b
DJ
71592010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7160
7161 * gcore.c (do_bfd_delete_cleanup): New function.
7162 (gcore_command): Use it. Discard the cleanup after success.
7163 (gcore_copy_callback): Delete dead code.
7164
e76ab67f
DJ
71652010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7166
7167 * symfile.c (addr_info_make_relative): Always use
7168 find_lowest_section.
7169
71dee663
SW
71702010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
7171
7172 * NEWS: Added entry for namespace fixes.
7173
a9854bd5
TT
71742010-02-15 Tom Tromey <tromey@redhat.com>
7175
7176 * dwarf2read.c (guess_structure_name): Allocate name on the
7177 objfile obstack.
7178
fd9e29b5
TT
71792010-02-15 Tom Tromey <tromey@redhat.com>
7180
7181 * c-typeprint.c (c_type_print_base): Reverse order of test.
7182
4e1fc9c9
JK
71832010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7184
7185 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
7186 initialize it from ELF BFD. Extend the prelink condition by it.
7187
74164c56
JK
71882010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7189
7190 * defs.h (parse_pid_to_attach): New.
7191 * utils.c (parse_pid_to_attach): New.
7192 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
7193 * gnu-nat.c (gnu_attach): Likewise.
7194 * nto-procfs.c (procfs_attach): Likewise.
7195 * procfs.c (procfs_attach): Likewise.
7196 * windows-nat.c (windows_attach): Likewise.
7197 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
7198 * inf-ttrace.c (inf_ttrace_attach): Likewise.
7199 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
7200 check.
7201
bf6adea8
MM
72022010-02-14 Masaki Muranaka <monaka@monami-software.com>
7203
7204 * MAINTAINERS: Add myself for write after approval privileges.
7205
28f34a8f
JK
72062010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7207
7208 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
7209 block.
7210
701ed6dc
JK
72112010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7212
7213 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
7214 only if INFO_VERBOSE.
7215
e5829bee
MS
72162010-02-12 Tomas Holmberg <th@virtutech.com>
7217
7218 * mi/mi-main.c: Added the --reverse flag to the following MI
7219 commands: exec-continue, exec-finish, exec-next, exec-step,
7220 exec-next-instruction, exec-step-instruction. This is to
7221 support reverse execution over the MI interface to gdb.
7222
081dfbf7
PA
72232010-02-12 Pedro Alves <pedro@codesourcery.com>
7224
7225 * tracepoint.c (_initialize_tracepoint): Specify that the address
7226 range of `tfind outsize' is exclusive, and that the address range
7227 of `tfind range' is inclusive, in the commands' help strings.
7228
ecc13e53
JB
72292010-02-12 Joel Brobecker <brobecker@adacore.com>
7230
7231 Spurious "dll not found" error messages on x64-windows.
7232 * windows-nat.c: Add include of complaints.h.
7233 (handle_unload_dll): Change dll-not-found error into a complaint.
7234
15c3d785
PA
72352010-02-12 Pedro Alves <pedro@codesourcery.com>
7236
7237 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
7238 bp_tracepoint and bp_fast_tracepoint, not
7239 bp_loc_software_breakpoint.
7240 (update_global_location_list): Tracepoints are never duplicates of
7241 anything.
7242
fd9b8c24
PA
72432010-02-12 Pedro Alves <pedro@codesourcery.com>
7244
7245 * breakpoint.c (break_command_really): Change return type to int.
7246 Return false if no breakpoint was created, true otherwise.
7247 (trace_command): Don't set the tracepoint count if no tracepoint
7248 was created.
7249 (ftrace_command): Ditto.
7250 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
7251 created in the breakpoints table.
7252
5c0d192f
JK
72532010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7254 Ulrich Weigand <uweigand@de.ibm.com>
7255
7256 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
7257
5d5b640e
PA
72582010-02-11 Pedro Alves <pedro@codesourcery.com>
7259
7260 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
7261 the offset value isn't of integral type.
7262
e5a0a904
JK
72632010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7264
7265 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
7266 New.
7267
be636754
PA
72682010-02-11 Pedro Alves <pedro@codesourcery.com>
7269
7270 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
7271 non-subscriptable types.
7272 * valarith.c (binop_types_user_defined_p): New, abstracted out
7273 from ...
7274 (binop_user_defined_p): ... this.
7275 * value.h (binop_types_user_defined_p): Declare.
7276
10ef8d6a
PA
72772010-02-11 Pedro Alves <pedro@codesourcery.com>
7278
7279 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
7280 Merge uploaded TSVs before merging uploaded tracepoints.
7281
b1028c8e
PA
72822010-02-11 Pedro Alves <pedro@codesourcery.com>
7283
7284 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
7285
7a93fb82 72862010-02-11 Vladimir Prus <vladimir@codesourcery.com>
84d90c10 7287
7a93fb82
VP
7288 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
7289 whitespace character after a dot in comment.
7290 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
7291 Likewise.
7292 (list_args_or_locals): For the 'all' (that is
7293 -stack-list-variables) case, always output list of tuples.
7294 Output 'arg' field if variable is argument.
84d90c10 7295
92981e24
TT
72962010-02-10 Tom Tromey <tromey@redhat.com>
7297
7298 * parser-defs.h (parser_debug): Declare.
7299 * parse.c (_initialize_parse): Install "debug parser" set/show
7300 command.
7301 (parser_debug): New global.
7302 (show_parserdebug): New function.
7303 * c-exp.y (c_parse): Set yydebug.
7304
9fd3625f
L
73052010-02-10 H.J. Lu <hongjiu.lu@intel.com>
7306
7307 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
7308 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
7309 (tdesc_predefined_types): Add i387_ext, i386_eflags and
7310 i386_mxcsr.
7311 (tdesc_find_type): New.
7312 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
7313 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
7314
7315 * target-descriptions.h (tdesc_find_type): New.
7316
2fe842e5
MS
73172010-02-10 Michael Snyder <msnyder@vmware.com>
7318
7319 * gdb-gdb.py: Comment fix.
7320
f18b4cab
TG
73212010-02-09 Tristan Gingold <gingold@adacore.com>
7322
7323 * machoread.c (macho_symfile_relocate): New function.
7324 (macho_sym_fns): Use macho_symfile_relocate instead of
7325 default_symfile_relocate.
7326 (macho_oso_data): New type.
7327 (current_oso): New variable.
7328 (macho_add_oso_symfile): Do not compute section_addr_info, but
7329 instead set vma of sections.
7330 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
7331 Set and clear current_oso.
7332
31dbc1c5
JB
73332010-02-09 Joel Brobecker <brobecker@adacore.com>
7334
7335 Wrong type description for tagged type parameter.
7336 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
7337 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
7338 reference to a tagged type.
7339
399f313b
TG
73402010-02-09 Tristan Gingold <gingold@adacore.com>
7341
7342 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
7343 brothers of the parent.
7344
714f19d5
TT
73452010-02-08 Tom Tromey <tromey@redhat.com>
7346
7347 PR c++/8017:
7348 * value.h: Update.
7349 * valops.c (search_struct_field): Make 'name' const.
7350 (search_struct_method): Likewise.
7351 (find_method_list): Make 'method' const.
7352 (value_struct_elt): Make 'name' and 'err' const.
7353 (value_find_oload_method_list): Make 'method' const.
7354 (find_overload_match): Make 'name' const.
7355 * eval.c (evaluate_subexp_standard): New locals function,
7356 function_name.
7357 <OP_FUNCALL>: Handle OP_SCOPE specially.
7358
de0a0249
UW
73592010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
7360
7361 * infrun.c (handle_inferior_event): Do not look up regcache
7362 for exited processes.
7363
8d95cc3b 73642010-02-08 Chris Moller <moller@mollerware.com>
83b10087
CM
7365
7366 PR gdb/10728
7367 * valarith.c (value_ptrdiff): Added a test for a zero type length,
8d95cc3b 7368 warn if found, and assume length = 1.
83b10087 7369
99903ae3
CM
73702010-02-08 Chris Moller <cmoller@redhat.com>
7371
7372 PR gdb/9067
7373 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
6036c742 7374 (cp_print_static_field) Fix use of obstacks.
8d95cc3b 7375
e3e9f5a2
PA
73762010-02-08 Pedro Alves <pedro@codesourcery.com>
7377
7378 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
7379 resumed LWPs as resumed.
7380 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
7381 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
7382 of throwing an internal error. If an LWP of a process we're not
7383 waiting for reports a signal, don't force collecting a SIGSTOP,
7384 and if it was breakpoint hit in non-stop mode, cancel it. Don't
7385 go through all LWPs cancelling breakpoints in non-stop mode.
7386 (resume_stopped_resumed_lwps): New.
7387 (linux_nat_wait): Use it.
7388
46763423
L
73892010-02-07 H.J. Lu <hongjiu.lu@intel.com>
7390
7391 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
7392 i386/amd64 and i386/amd64-linux.
7393 (i386/i386-expedite): New.
7394 (i386/i386-linux-expedite): Likewise.
7395 (i386/amd64-expedite):Likewise.
7396 (i386/amd64-linux-expedite): Likewise.
7397 ($(outdir)/i386/i386-linux.dat): Likewise.
7398 ($(outdir)/i386/amd64.dat): Likewise.
7399 ($(outdir)/i386/amd64-linux.dat): Likewise.
7400
7401 * features/i386/32bit-core.xml: New.
7402 * features/i386/32bit-linux.xml: Likewise.
7403 * features/i386/32bit-sse.xml: Likewise.
7404 * features/i386/64bit-core.xml: Likewise.
7405 * features/i386/64bit-linux.xml: Likewise.
7406 * features/i386/64bit-sse.xml: Likewise.
7407 * features/i386/i386-linux.xml: Likewise.
7408 * features/i386/i386.xml: Likewise.
7409 * features/i386/amd64-linux.xml: Likewise.
7410 * features/i386/amd64.xml: Likewise.
7411 * features/i386/i386-linux.c: Likewise.
7412 * features/i386/i386.c: Likewise.
7413 * features/i386/amd64-linux.c: Likewise.
7414 * features/i386/amd64.c: Likewise.
7415
82856980
SW
74162010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
7417
7418 PR c++/7935:
7419 * cp-support.h: Added char* alias element to using_direct data
7420 struct.
7421 (cp_add_using): Added char* alias argument.
7422 (cp_add_using_directive): Ditto.
7423 * cp-namespace.c: Updated with the above changes.
7424 (cp_lookup_symbol_imports): Check for aliases.
7425 * dwarf2read.c (read_import_statement): Figure out local alias
7426 for the import and pass it on to cp_add_using.
7427 (read_namespace): Pass alias argument to cp_add_using.
7428
d18b8b7a
HZ
74292010-02-05 Hui Zhu <teawater@gmail.com>
7430
7431 * defs.h (gdb_bfd_errmsg): New extern.
7432 * exec.c (exec_file_attach): Change bfd_errmsg to
7433 gdb_bfd_errmsg.
7434 * utils.c (AMBIGUOUS_MESS1): New macro.
7435 (AMBIGUOUS_MESS2): New macro.
7436 (gdb_bfd_errmsg): New function.
7437
48379de6
DE
74382010-02-04 Doug Evans <dje@google.com>
7439
7440 * solib-svr4.c (enable_break): Add comment.
7441
4ee73e90
AG
74422010-02-04 Anthony Green <green@moxielogic.com>
7443
7444 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
7445 gracefully.
7446
1a334831
TT
74472010-02-04 Tom Tromey <tromey@redhat.com>
7448
7449 * valops.c (search_struct_field): Account for
7450 value_embedded_offset. Fix check for virtual base past the end of
7451 the object. Use value_copy when making a slice of the value.
7452
1180b2c8
L
74532010-02-04 H.J. Lu <hongjiu.lu@intel.com>
7454
7455 PR tui/9622
7456 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
7457 only if gdb_stdout is a tty.
7458
c3f08eb7
L
74592010-02-04 H.J. Lu <hongjiu.lu@intel.com>
7460
7461 * target-descriptions.c: Include "osabi.h".
7462 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
7463 OSABI.
7464
2d33f7b8
TG
74652010-02-04 Tristan Gingold <gingold@adacore.com>
7466
7467 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
7468 (macho_symtab_read): Adjust calls to macho_add_oso.
7469 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
7470 (macho_symfile_read): Adjust call to macho_oso_symfile.
7471 (macho_new_init): Move this function after declarations.
7472 (macho_symfile_init): Ditto.
7473 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
7474 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
7475
11334b82
VP
74762010-02-04 Vladimir Prus <vladimir@codesourcery.com>
7477
7478 Include MI command in remotelog.
7479
7480 * mi/mi-main.c (mi_execute_command): Call target_log_command.
7481
ff97be06
L
74822010-02-03 H.J. Lu <hongjiu.lu@intel.com>
7483
7484 * remote.c (remote_state): Remove gdbarch.
7485 (init_remote_state): Don't set gdbarch.
7486 (remote_query_supported): Pass target_gdbarch instead of
7487 rs->gdbarch to gdbarch_qsupported.
7488
75cebea9
L
74892010-02-03 H.J. Lu <hongjiu.lu@intel.com>
7490
7491 * gdbarch.sh: Add qsupported.
7492
7493 * gdbarch.c: Regenerated.
7494 * gdbarch.h: Likewise.
7495
7496 * remote.c (remote_state): Add gdbarch.
7497 (init_remote_state): Set gdbarch.
7498 (remote_query_supported): Support gdbarch_qsupported.
7499
c1dec97b
DJ
75002010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
7501
7502 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
7503 __FreeBSD_kernel_version.
7504
ac8035ab
TG
75052010-02-03 Tristan Gingold <gingold@adacore.com>
7506
7507 * symfile.h (struct sym_fns): Add sym_relocate field.
7508 (default_symfile_relocate): New prototype.
7509 (symfile_relocate_debug_section): First argument is now an objfile.
7510 * symfile.c (default_symfile_relocate): Rename from
7511 symfile_relocate_debug_section, first argument is now an objfile.
7512 (symfile_relocate_debug_section): New function.
7513 * coffread.c (coff_sym_fns): Set sym_relocate field.
7514 * somread.c (som_sym_fns): Ditto.
7515 * mipsread.c (ecoff_sym_fns): Ditto.
7516 * machoread.c (macho_sym_fns): Ditto.
7517 * elfread.c (elf_sym_fns): Ditto.
7518 * dwarf2read.c (dwarf2_read_section): Ditto.
7519 * xcoffread.c (xcoff_sym_fns): Ditto.
7520 * dbxread.c (aout_sym_fns): Ditto.
7521 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
7522 (elfstab_build_psymtabs): Ditto.
7523
be52b756
L
75242010-02-03 H.J. Lu <hongjiu.lu@intel.com>
7525
7526 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
7527
9c3c02fd
TT
75282010-02-02 Tom Tromey <tromey@redhat.com>
7529
7530 * valops.c (value_cast_structs): Try downcasting using the RTTI
7531 type.
7532
f23f4c59
TT
75332010-02-02 Tom Tromey <tromey@redhat.com>
7534
7535 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
7536 (gnuv2_baseclass_offset): Now static.
7537 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
7538 * gnu-v2-abi.h: Remove.
7539
0cc2414c
TT
75402010-02-02 Tom Tromey <tromey@redhat.com>
7541
7542 * m2-typeprint.c (m2_record_fields): Don't use
7543 TYPE_DECLARED_TYPE.
7544 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
7545 (struct main_type) <flag_declared_class>: New field.
7546 (struct cplus_struct_type) <declared_type>: Remove.
7547 <ntemplate_args>: Move earlier.
7548 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
7549 (DECLARED_TYPE_TEMPLATE): Remove.
7550 (TYPE_DECLARED_TYPE): Remove.
7551 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
7552 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
7553 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
7554 TYPE_DECLARED_TYPE.
7555
edf3d5f3
TT
75562010-02-02 Tom Tromey <tromey@redhat.com>
7557
7558 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
7559 * valops.c (search_struct_field): Compute nbases after calling
7560 CHECK_TYPEDEF.
7561 (check_field): Call CHECK_TYPEDEF.
7562 * cp-valprint.c (cp_print_value): Pass correct address to
7563 baseclass_offset. Fix check for virtual base past the end of the
7564 object. Don't offset address passed to cp_print_value_fields or
7565 apply_val_pretty_printer.
7566 (cp_print_value_fields): Fix call to val_print.
7567 (cp_print_value_fields_rtti): New function.
7568 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
7569 * p-valprint.c (pascal_object_print_value_fields): Fix call to
7570 val_print.
7571 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
7572 offset to address.
7573 * language.h (struct language_defn) <la_val_print>: Document.
7574 * c-lang.h (cp_print_value_fields_rtti): Declare.
7575
e4b7f41c
JK
75762010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7577
7578 PR libc/11214:
7579 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
7580 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
7581 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
7582
7618e12b
DJ
75832010-02-01 Michael Matz <matz@suse.de>
7584 Daniel Jacobowitz <dan@codesourcery.com>
7585
e4b7f41c 7586 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
7618e12b
DJ
7587 functions use a frame pointer.
7588
b381ea14
JK
75892010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7590
7591 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
7592 by a conditional setting DYN_ADDR. Use DYN_ADDR.
7593 * config/djgpp/fnchange.lst: Add translations for
7594 symbol-without-target_section.exp and symbol-without-target_section.c.
7595
0e05dfcb
DJ
75962010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
7597
7598 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
7599 (remote_breakpoint_for_pc): Correct invalid_p check.
7600 * gdbarch.c: Regenerated.
7601
f9d67f43
DJ
76022010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
7603
7604 * arm-tdep.c (arm_find_mapping_symbol): New function, from
7605 arm_pc_is_thumb.
7606 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
7607 (extend_buffer_earlier): New function.
7608 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
7609 (arm_adjust_breakpoint_address): New function.
7610 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
7611
177321bd
DJ
76122010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
7613
7614 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
7615 (arm_linux_thumb2_le_breakpoint): New constants.
7616 (arm_linux_init_abi): Set thumb2_breakpoint and
7617 thumb2_breakpoint_size.
7618 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
7619 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
7620 Implement support for single stepping through IT blocks if
7621 a 32-bit Thumb breakpoint instruction is available.
7622 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
7623 is available, use it when needed.
7624 (arm_remote_breakpoint_from_pc): New function.
7625 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
7626 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
7627 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
7628
a1dcb23a
DJ
76292010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
7630
7631 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
7632 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
7633 * gdbarch.c, gdbarch.h: Regenerated.
7634 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
7635 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
7636 gdbarch_remote_breakpoint_from_pc.
7637
2b009048
DJ
76382010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
7639
7640 * infrun.c (prepare_to_proceed): Handle other signals which might
7641 match a breakpoint.
7642 (handle_inferior_event): Move the check for unusual breakpoint
7643 signals earlier.
7644
e4e2711a
JB
76452010-01-29 Paul Hilfinger <hilfinger@adacore.com>
7646
7647 amd64 - function returning record with field straddling 2 registers.
7648 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
7649 a record of length <= 16 in which a field straddles the two
7650 eightbytes.
7651
cba6fab5
JB
76522010-01-29 Joel Brobecker <brobecker@adacore.com>
7653
7654 Implement return values on amd64-windows.
7655 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
7656 (amd64_windows_return_value): New function.
7657 (amd64_windows_init_abi): Call set_gdbarch_return_value with
7658 amd64_windows_return_value.
7659
3af6ddfe
JB
76602010-01-29 Joel Brobecker <brobecker@adacore.com>
7661
7662 amd64-windows: 32 bytes allocated on stack by caller for integer
cba6fab5 7663 parameter registers.
3af6ddfe
JB
7664 * i386-tdep.h (struct gdbarch_tdep): Add new field
7665 integer_param_regs_saved_in_caller_frame.
7666 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
7667 tdep->integer_param_regs_saved_in_caller_frame to 1.
7668 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
7669 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
7670
80d19a06
JB
76712010-01-29 Joel Brobecker <brobecker@adacore.com>
7672
7673 amd64-windows: memory args passed by pointer during function calls.
7674 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
7675 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
7676 where tdep->memory_args_by_pointer is non-zero.
7677 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
7678 tdep->memory_args_by_pointer to 1.
7679
ba581dc1
JB
76802010-01-29 Joel Brobecker <brobecker@adacore.com>
7681
4966b6c2 7682 amd64-windows: Integer parameters in function calls.
ba581dc1
JB
7683 * i386-tdep.h (enum amd64_reg_class): New, moved here from
7684 amd64-tdep.c.
7685 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
7686 call_dummy_integer_regs, and classify.
7687 * amd64-tdep.h (amd64_classify): Add declaration.
7688 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
7689 (amd64_reg_class): Delete, moved to i386-tdep.h.
7690 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
7691 Replace call to amd64_classify by call to tdep->classify.
7692 (amd64_push_arguments): Get the list of registers to use for
7693 passing integer parameters from the gdbarch tdep structure,
7694 rather than using a hardcoded one. Replace calls to amd64_classify
7695 by calls to tdep->classify.
7696 (amd64_push_dummy_call): Get the register number used for
7697 the "hidden" argument from tdep->call_dummy_integer_regs.
7698 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
7699 and tdep->call_dummy_integer_regs. Set tdep->classify.
7700 * amd64-windows-tdep.c: Add include of gdbtypes.h.
7701 (amd64_windows_dummy_call_integer_regs): New static global.
7702 (amd64_windows_classify): New function.
7703 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
7704 tdep->call_dummy_integer_regs and tdep->classify.
7705
d37346f0
DJ
77062010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
7707
7708 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
7709 for the new regcache. All callers updated.
7710 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
7711 (get_thread_arch_regcache): Do not set aspace here.
7712 * regcache.h (regcache_xmalloc): Update declaration.
7713
7714 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
7715 regcache_xmalloc updated.
7716
7434dadd
JB
77172010-01-28 Joel Brobecker <brobecker@adacore.com>
7718
7719 Another -Wunused-function error in procfs.c (sparc-solaris)
7720 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
7721 Only define if SYS_syssgi is defined.
7722 (remove_dbx_link_breakpoint): Delete declaration. Move up.
7723 (dbx_link_addr, insert_dbx_link_bpt_in_file)
7724 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
7725 is itself defined.
7726
16d905e2
CF
77272010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
7728
7729 * windows-nat.c (windows_initialization_done): New variable.
7730 (get_windows_debug_event): Issue error when process dies before
7731 completely initializing.
7732 (do_initial_windows_stuff): Set flag to indicate when we are done with
7733 the initial steps of attaching to the child.
7734
cd55e50f
JK
77352010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
7736
7737 * symtab.h (struct symbol <symtab>): New comment on NULL values.
7738
99cc78aa
DE
77392010-01-27 Doug Evans <dje@google.com>
7740
4c7dcb84
DE
7741 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
7742
99cc78aa
DE
7743 * breakpoint.c (bpstat_stop_status): Delete useless code.
7744
52334bf5
JK
77452010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
7746
7747 * printcmd.c (display_uses_solib_p): Remove variable section. Access
7748 objfile via SYMBOL_SYMTAB.
7749
708ead4e
TT
77502010-01-26 Tom Tromey <tromey@redhat.com>
7751
7752 PR exp/7643:
7753 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
7754 coerce_array on result.
7755
b14e635e
SW
77562010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
7757
7758 * cp-namespace.c (cp_lookup_symbol_namespace): Added
7759 search_parent argument.
7760 (cp_add_using): Initialize 'searched' field.
7761 (reset_directive_searched): New function.
7762 * cp-support.h: Add 'searched' field to using_direct struct.
7763 (cp_lookup_symbol_imports): Ditto.
7764 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
7765 Perform recursive search.
7766 Implement non parent search.
7767 * valops.c (value_maybe_namespace_elt): Updated.
7768
8540c487
SW
77692010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
7770
7771 PR gdb/10929:
7772 * dwarf2read.c (read_lexical_block_scope): Create blocks for
7773 scopes which contain using directives even if they contain no
7774 declarations.
7775 * symtab.c (lookup_symbol_aux): Pass lowest level block to
7776 la_lookup_symbol_nonlocal.
7777 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
7778 cp_lookup_symbol_namespace.
7779 (cp_lookup_symbol_namespace): Perform an import lookup at every
7780 block level.
7781 (cp_lookup_symbol_imports): New function.
7782 (cp_lookup_symbol_in_namespace): New function.
7783
421d5d99
TT
77842010-01-25 Tom Tromey <tromey@redhat.com>
7785
7786 PR gdb/11049:
7787 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
7788 result.
7789
6bcc772d
RO
77902010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7791
7792 * configure.ac: Only use host_os part when disabling TUI on osf.
7793 Use test to check variables, prefix strings with x.
7794 * configure: Regenerate.
7795
7796 * solib-osf.c (osf_current_sos): Initialize tail.
7797
1c1238a5
TG
77982010-01-25 gingold <gingold@adacore.com>
7799
c8d5aac9
L
7800 * windows-nat.c (windows_continue): Use %x to print thread id.
7801 (get_windows_debug_event): Ditto.
1c1238a5 7802
0b92b5bb
TT
78032010-01-22 Tom Tromey <tromey@redhat.com>
7804
7805 PR symtab/11199:
7806 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
7807 type and arguments. Use smash_to_methodptr_type.
7808 (read_structure_type): Call quirk_gcc_member_function_pointer
7809 later.
7810 * gdbtypes.h (smash_to_methodptr_type): Declare.
7811 * gdbtypes.c (smash_to_methodptr_type): New function.
7812 (lookup_methodptr_type): Use it.
7813
0d5392b8
TT
78142010-01-21 Tom Tromey <tromey@redhat.com>
7815
7816 PR symtab/11198:
7817 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
7818 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
7819 * glibc-tdep.c (find_minsym_and_objfile): Remove.
7820 (glibc_skip_solib_resolver): Use
7821 lookup_minimal_symbol_and_objfile.
7822
e6d088ec
KT
78232010-01-21 Kai Tietz <kai.tietz@onevision.com>
7824
7825 * inflow.c (check_syscall): Guard by #if clause for GO32 and
7826 WIN32 targets.
7827
b966cb8a
TT
78282010-01-20 Tom Tromey <tromey@redhat.com>
7829
7830 PR backtrace/10770:
7831 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
7832 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
7833 * dwarf2expr.c (new_dwarf_expr_context): Allocate
7834 dwarf_stack_values, not CORE_ADDRs.
7835 (execute_stack_op): Change DW_OP_div and comparison operators to
7836 use signed operands.
7837
3f81c18a
VP
78382010-01-20 Vladimir Prus <vladimir@codesourcery.com>
7839
7840 Per-inferior args and tty and environment.
7841
7842 * infcmd.c (inferior_args): Rename to ...
7843 (inferior_args_scratch): ... this.
7844 (inferior_io_terminal): Rename to ...
7845 (inferior_io_terminal_scratch): ... this.
7846 (inferior_argc, inferior_argv): Remove.
7847 (set_inferior_io_terminal, get_inferior_io_terminal): Store
7848 inside current_inferior().
7849 (set_inferior_tty_command, show_inferior_tty_command): New.
7850 (get_inferior_args, set_inferior_args): Store inside
7851 current_inferior().
7852 (notice_args_set): Likewise and rename to...
7853 (set_args_command): ... this.
7854 (set_inferior_args_vector): Likewise.
7855 (notice_args_read): Rename to...
7856 (show_args_command): ...new.
7857 (tty_command): Remove.
7858 (run_command_1): Don't free old args, as they are freed by
7859 set_inferior_arg now.
7860 (run_no_args_command): Likewise.
7861 (inferior_environ): Remove.
7862 (run_command_1): Use environment of the current inferior.
7863 (environment_info, set_environment_command)
7864 (unset_environment_command, path_info, path_command): Likewise.
7865 (_initialize_infcmd): Adjust for function and variable renames.
7866 Do not init inferior_environ.
7867 * inferior.h (set_inferior_arg): Adjust prototype.
7868 (struct inferior): New fields args, argc, argv, terminal, environment.
7869 (inferior_environ): Remove declaration.
7870 * inferior.c (free_inferior): Free new fields.
7871 (add_inferior_silent): Initialize 'environment' field.
7872 * main.c (captured_main): Set arguments only after the initial
7873 inferior has been created. Set set_inferior_io_terminal,
7874 not tty_command.
7875 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
7876 inferior.
7877 (_initialize_mi_cmd_env): Adjust for disappearance of global
7878 inferior_environ.
7879 * solib.c (solib_find): Use environment of the current inferior.
7880
d8b65138
JK
78812010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7882
7883 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
7884 HAVE_PYTHON.
7885 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
7886
692465f1
JB
78872010-01-20 Joel Brobecker <brobecker@adacore.com>
7888
7889 Get rid of ada-lang.c:function_name_from_pc.
7890 * ada-lang.c: Add "stack.h" #include.
7891 (function_name_from_pc): Delete.
7892 (is_known_support_routine): Replace call to function_name_from_pc
7893 by call to find_frame_funname.
7894 (ada_unhandled_exception_name_addr_from_raise): Likewise.
7895
95519e0e
TT
78962010-01-19 Tom Tromey <tromey@redhat.com>
7897
7898 PR c++/11026:
7899 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
7900 objfile obstack.
7901
95c11dc7
TT
79022010-01-19 Tom Tromey <tromey@redhat.com>
7903
7904 * top.c (stop_sig, float_handler, do_nothing): Remove.
7905
a0f49112
JK
79062010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7907
7908 * breakpoint.c (watchpoint_check): Check the call
7909 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
7910 Extend the comment.
8d95cc3b 7911 * config/djgpp/fnchange.lst: Add translations for
a0f49112
JK
7912 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
7913 watchpoint-cond-gone-stripped.c.
7914
ceeb3d5a
TT
79152010-01-19 Tom Tromey <tromey@redhat.com>
7916
7917 PR c++/8000:
7918 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
7919 into parent scope, and enumerator into grandparent scope.
7920
2b71fc8e
JB
79212010-01-19 Joel Brobecker <brobecker@adacore.com>
7922
7923 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
7924
03564ed9
JB
79252010-01-19 Joel Brobecker <brobecker@adacore.com>
7926
7927 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
7928 i[34567]86-*-solaris2.1[0-9]*.
7929 * configure.tgt: Likewise.
7930
fb2e7cb4
JB
79312010-01-19 Joel Brobecker <brobecker@adacore.com>
7932
7933 * NEWS: Document the source command enhancement allowing it
7934 to load Python scripts. Document the "set/show script-extension"
7935 commands.
7936
1cb5e2a4
JB
79372010-01-19 Joel Brobecker <brobecker@adacore.com>
7938
7939 Add -Wunused-function to compile flags.
7940 * configure.ac: Add -Wunused-function to build_warnings.
7941 * configure: Regenerate.
7942
0ec6cd0c
JB
79432010-01-19 Joel Brobecker <brobecker@adacore.com>
7944
7945 "delete" ada-lex.c:input function, not used.
7946 * ada-lex.l: #define YY_NO_INPUT.
7947
b74845da
JB
79482010-01-19 Joel Brobecker <brobecker@adacore.com>
7949
7950 Delete free_named_symtabs and associated cleanup.
7951 * symfile.h (free_named_symtabs): Delete declaration.
7952 * symfile.c: Remove some commented out code (clear_symtab_users_once).
7953 (cashier_psymtab): Comment function out.
7954 Delete declaration.
7955 (free_named_symtabs): Delete.
7956 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
7957 * dbxread.c (end_psymtab): Likewise.
7958 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
7959 * exec.c (exec_close_1): Ditto.
7960 * xcoffread.c (xcoff_end_psymtab): Likewise.
7961
65c06092
JB
79622010-01-19 Joel Brobecker <brobecker@adacore.com>
7963
7964 * stack.c (print_block_frame_labels): Comment function out.
7965
d5cd6034
JB
79662010-01-19 Joel Brobecker <brobecker@adacore.com>
7967
7968 Delete unused or undefined functions.
7969 * breakpoint.c (ep_parse_optional_filename): Delete.
7970 * dcache.c (dcache_write_line): Remove declaration.
7971 * infrun.c (build_infrun): Remove declaration.
7972 * tracepoint.c (tracepoint_save_command): Remove declaration.
7973 * linux-nat.c (init_lwp_list): Delete. No longer used.
7974 * event-loop.c (check_async_signal_handlers): Delete declaration.
7975 * infrun.c (init_execution_control_state): Delete.
7976 (proceed): Update comment to avoid mentioning
7977 init_execution_control_state.
7978 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
7979 * ada-lang.c (ada_to_static_fixed_value): Delete.
7980 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
7981 * cp-namespace.c (cp_copy_usings): Delete.
7982 * xml-syscall.c (xml_number_of_syscalls): Delete.
7983 * progspace.c (find_program_space_by_num): Delete.
7984 * inflow.c (handle_sigio): Delete declaration.
7985 * hppa-tdep.c (hppa_alignof): Delete.
7986 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
7987 (mipsnbsd_core_osabi_sniffer): Delete.
7988
4e8f195d
TT
79892010-01-18 Tom Tromey <tromey@redhat.com>
7990
7991 PR c++/9680:
7992 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
7993 (CONST_CAST): New tokens.
7994 (exp): Add new productions.
7995 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
7996 reinterpret_cast.
7997 (is_cast_operator): New function.
7998 (yylex): Handle cast operators specially.
7999 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
8000 UNOP_REINTERPRET_CAST>: New cases.
8001 * expprint.c (print_subexp_standard): Likewise.
8002 (op_name_standard): Likewise.
8003 (dump_subexp_body_standard): Likewise.
8004 * parse.c (operator_length_standard): Likewise.
8005 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
8006 UNOP_REINTERPRET_CAST.
8007 * gdbtypes.c (class_types_same_p): New function.
8008 (is_ancestor): Use it.
8009 (is_public_ancestor): New function.
8010 (is_unique_ancestor_worker): Likewise.
8011 (is_unique_ancestor): Likewise.
8012 * gdbtypes.h (class_types_same_p, is_public_ancestor)
8013 (is_unique_ancestor): Declare.
8014 * valops.c (value_reinterpret_cast): New function.
8015 (dynamic_cast_check_1): Likewise.
8016 (dynamic_cast_check_2): Likewise.
8017 (value_dynamic_cast): Likewise.
8018 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
8019
d9c57d9f
JB
80202010-01-18 Joel Brobecker <brobecker@adacore.com>
8021
8022 Fix build failure when building without Python support.
8023 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
8024 is not defined.
8025
f80d3ff2
JB
80262010-01-18 Joel Brobecker <brobecker@adacore.com>
8027
8028 Use XVS field type instead of doing a parallel lookup.
8029 * ada-lang.c (ada_get_base_type): Follow the XVS field type
8030 if it is a reference type instead of doing a type lookup using
8031 the XVS field name.
8032
5bf03f13
JB
80332010-01-18 Joel Brobecker <brobecker@adacore.com>
8034
8035 Trust PAD types instead of using PAD___XVS.
8036 * ada-lang.c (trust_pad_over_xvs): New static variable.
8037 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
8038 parallel XVS type, follow the XVS type instead of the PAD type.
8039 (unwrap_value): Make sure that there is no parallel XVE type
8040 before returning the value as is.
8041 (set_ada_list, show_ada_list): New static variables.
8042 (set_ada_command, show_ada_command): New functions.
8043 (_initialize_ada_language): Add new "set/show ada" prefix commands.
8044 Add new "set/show ada trust-PAD-over-XVS" setting.
8045
973817a3
JB
80462010-01-18 Tom Tromey <tromey@redhat.com>
8047 Thiago Jung Bauermann <bauerman@br.ibm.com>
8048
8049 Allow "source" to load python scripts.
8050 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
8051 * python/python.c (source_python_script): New function.
8052 * python/python.h (source_python_script): Add declaration.
8053 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
8054 (script_ext_off, script_ext_soft, script_ext_strict)
8055 (script_ext_enums, script_ext_mode): New static constants.
8056 (show_script_ext_mode, find_and_open_script): New functions.
8057 (source_script): Enhance to handle Python scripts.
8058 (init_cli_cmds): Add set/show script-extension commands.
8059
98e03262
SS
80602010-01-16 Stan Shebs <stan@codesourcery.com>
8061
8062 * tracepoint.h (struct trace_status): Use unsigned long long
8063 instead of size_t.
8064 * tracepoint.c (trace_status_command): Fix printf directive.
8065 (trace_save_command): Check fwrite returns, fix printf directive.
8066 (trace_filename): New global.
8067 (tfile_open): Set it, check read returns.
8068 (tfile_close): Free trace_filename.
8069 (tfile_get_traceframe_address): Check read returns.
8070 (tfile_trace_find): Ditto.
8071 (tfile_fetch_registers): Ditto.
8072 (tfile_xfer_partial): Ditto.
8073 (tfile_get_trace_state_variable_value): Ditto.
8074
00bf0b85
SS
80752010-01-15 Stan Shebs <stan@codesourcery.com>
8076
8077 Add trace file support.
8078 * tracepoint.h (enum trace_stop_reason): New enum.
8079 (struct trace_status): New struct.
8080 (parse_trace_status): Declare.
8081 (struct uploaded_tp): Move here from remote.c,
8082 add fields for actions.
8083 (struct uploaded_tsv): New struct.
8084 * tracepoint.c (tfile_ops): New target vector.
8085 (trace_fd): New global.
8086 (tfile_open): New function.
8087 (tfile_close): New function.
8088 (tfile_files_info): New function.
8089 (tfile_get_trace_status): New function.
8090 (tfile_get_traceframe_address): New function.
8091 (tfile_trace_find): New function.
8092 (tfile_fetch_registers): New function.
8093 (tfile_xfer_partial): New function.
8094 (tfile_get_trace_state_variable_value): New function.
8095 (init_tfile_ops): New function.
8096 (_initialize_tracepoint): Call it, add tfile target.
8097 (trace_status): New global.
8098 (current_trace_status): New function.
8099 (trace_running_p): Remove, change all users to get from
8100 current_trace_status()->running.
8101 (get_trace_status): Remove.
8102 (trace_status_command): Call target_get_trace_status directly,
8103 report more detail including tracing stop reasons.
8104 (trace_find_command): Always allow tfind on a file.
8105 (trace_find_pc_command): Ditto.
8106 (trace_find_tracepoint_command): Ditto.
8107 (trace_find_line_command): Ditto.
8108 (trace_find_range_command): Ditto.
8109 (trace_find_outside_command): Ditto.
8110 (trace_frames_offset, cur_offset): Declare as off_t.
8111 (trace_regblock_size): Rename from reg_size, update users.
8112 (parse_trace_status): New function.
8113 (tfile_interp_line): New function.
8114 (disconnect_or_stop_tracing): Ensure current trace
8115 status before asking what to do.
8116 (stop_reason_names): New global.
8117 (trace_save_command): New command.
8118 (get_uploaded_tp): Move here from remote.c.
8119 (find_matching_tracepoint): Ditto.
8120 (merge_uploaded_tracepoints): New function.
8121 (parse_trace_status): Use stop_reason_names.
8122 (_initialize_tracepoint): Define tsave command.
8123 * target.h (target_ops): New fields to_save_trace_data,
8124 to_upload_tracepoints, to_upload_trace_state_variables,
8125 to_get_raw_trace_data, change to_get_trace_status
8126 to take a pointer to a status struct.
8127 (target_save_trace_data): New macro.
8128 (target_upload_tracepoints): New macro.
8129 (target_upload_trace_state_variables): New macro.
8130 (target_get_raw_trace_data): New macro.
8131 * target.c (update_current_target): Add new methods, change
8132 signature of to_get_trace_status.
8133 * remote.c (hex2bin): Make globally visible.
8134 (bin2hex): Ditto.
8135 (remote_download_trace_state_variable): Download name also.
8136 (remote_get_trace_status): Update parameter, use
8137 parse_trace_status.
8138 (remote_save_trace_data): New function.
8139 (remote_upload_tracepoints): New function.
8140 (remote_upload_trace_state_variables): New function.
8141 (remote_get_raw_trace_data): New function.
8142 (remote_start_remote): Use them.
8143 (_initialize_remote_ops): Add operations.
8144 * ax-gdb.c: Include breakpoint.h.
8145 * breakpoint.c (create_tracepoint_from_upload): Use
8146 break_command_really, return tracepoint, warn about unimplemented
8147 parts.
8148 * NEWS: Mention trace file addition.
8149
d904de5b
JK
81502010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8151
8152 Fix compilation warning on gcc-3.4.
8153 * exec.c (print_section_info): Move the `displacement' variable
8154 initialization to its declaration.
8155
64aa9731
JK
81562010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8157
8158 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
8159 comparison.
8160
ca1f5def 81612010-01-15 Eric Botcazou <botcazou@adacore.com>
9f0dec2d
JB
8162
8163 "info tasks" broken by typedefs in ATCB type definitions.
8164 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
8165 ada_check_typedef before retrieving the length of the type for
8166 regular fields.
8167
12ab9e09
JB
81682010-01-15 Joel Brobecker <brobecker@adacore.com>
8169
8170 Do not use name-based lookup for unconstrained packed arrays.
8171 * ada-lang.c (find_parallel_type_by_descriptive_type):
8172 Limit the fallback to name-based lookups to the case where
8173 the type is a constrained packed array.
8174
c389c3dc
JB
81752010-01-15 Joel Brobecker <brobecker@adacore.com>
8176
8177 Enhance gdb-gdb.py to handle main_type.type_specific.
8178 * gdb-gdb.py: Print the type-specific part of struct main_type.
8179
7991dee7
JK
81802010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8181
8182 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
8183 * configure: Regenerate.
8184 * config.in: Regenerate.
8185 * utils.c: Include sys/resource.h.
8186 (dump_core, can_dump_core): New.
8187 (internal_vproblem): Update the comment. Check can_dump_core while
8188 setting dump_core_p. Replace two abort calls by dump_core calls.
8189
93c26624
JK
81902010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8191 Eli Zaretskii <eliz@gnu.org>
8192
8193 * NEWS: Document the PIE support.
8194
55235ad7
JK
81952010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8196
8197 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
8198 (check_is_pie_binary, _initialize_linux_tdep): Remove.
8199
41752192
JK
82002010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8201
8202 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
8203 Replace exec_entry_point call by bfd_get_start_address.
8204
9f2982ff
JK
82052010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8206
8207 Support Valgrind attachments broken by the PIE support.
8208 * auxv.c: Include gdbcore.h.
8209 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
8210 parameters ops, object and annex. Remove their assertions.
8211 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
8212 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
8213 (memory_xfer_auxv): ... here.
8214 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
8215 memory_xfer_auxv.
8216 * procfs.c (procfs_xfer_partial): Likewise.
8217 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
8218 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
8219 (svr4_solib_create_inferior_hook): Conditionalize the
8220 svr4_relocate_main_executable call.
8221
61f0d762
JK
82222010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8223
8224 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
8225 target_section. Find SECT in current_target_sections, gdb_assert it.
8226 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
8227 New variable abfd.
8228 * symtab.c (lookup_objfile_from_block): Return the binary file instead
8229 of separate debug info file.
8230
51bee8e9
JK
82312010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8232
8233 Support PIEs with no symfile_objfile.
8234 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
8235 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
8236
b8040f19
JK
82372010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8238
8239 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
8240 code part to ...
8241 (svr4_static_exec_displacement): ... a new function.
8242 (svr4_exec_displacement): New function.
8243 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
8244 new_offsets using alloca now. Remove variable old_chain and changed.
8245 Call objfile_relocate unconditionally now.
8246
eb90ce83
DE
82472010-01-14 Doug Evans <dje@google.com>
8248
8249 * gdbtypes.c (arch_flags_type): Fix comment.
8250 * gdbtypes.h (arch_composite_type): Fix comment.
8251
bdfed3bc
TG
82522009-01-14 Tristan Gingold <gingold@adacore.com>
8253
8254 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
8255 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
8256 to symbol_file_add_from_bfd. Add OSO as separate objfile.
8257 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
8258 macho_add_oso_symfile.
8259 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
8260
1596ad23
JB
82612010-01-14 Joel Brobecker <brobecker@adacore.com>
8262
8263 Tru64: Dead threads are never deleted.
8264 * dec-thread.c (dec_thread_ptid_is_alive): New function.
8265 (dec_thread_count_gdb_threads): Fix counter increment.
8266 (dec_thread_add_gdb_thread): Fix *listp increment.
8267 (resync_thread_list): Fix bug in deletion of dead threads that
8268 caused all threads to be deleted, instead of just the dead ones.
8269
be759fcf
PM
82702010-01-13 Phil Muldoon <pmuldoon@redhat.com>
8271
8272 PR python/10705
8273
8274 * python/python-internal.h: Add lazy_string_object_type
8275 definition.
8276 (create_lazy_string_object, gdbpy_initialize_lazy_string)
8277 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
8278 * python/py-value.c (valpy_lazy_string): New function.
8279 (convert_value_from_python): Add lazy string conversion.
8280 * python/py-prettyprint.c (pretty_print_one_value): Check if
8281 return is also a lazy string.
8282 (print_string_repr): Add lazy string printing branch.
8283 (print_children): Likewise.
8284 * python/py-lazy-string.c: New file. Implement lazy strings.
8285 * python/python.c (_initialize_python): Call
8286 gdbpy_initialize_lazy_string.
8287 * varobj.c (value_get_print_value): Add lazy string printing
8288 branch. Account for encoding.
8289 * c-lang.c (c_printstr): Account for new encoding argument. If
8290 encoding is NULL, find encoding suited for type, otherwise use
8291 user encoding.
8292 * language.h (language_defn): Add encoding argument.
8293 (LA_PRINT_STRING): Likewise.
8294 * language.c (unk_lang_printstr): Update to reflect new encoding
8295 argument to language_defn.
8296 * ada-lang.h (ada_printstr): Likewise.
8297 * c-lang.h (c_printstr): Likewise.
8298 * p-lang.h (pascal_printstr);
8299 * f-lang.c (f_printstr): Likewise.
8300 * m2-lang.c (m2_printstr): Likewise.
8301 * objc-lang.c (objc_printstr): Likewise.
8302 * p-lang.c (pascal_printstr): Likewise.
8303 * scm-lang.c (scm_printstr): Likewise.
8304 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
8305 encoding argument.
8306 * ada-valprint.c (ada_printstr): Likewise.
8307 * f-valprint.c (f_val_print): Likewise
8308 * m2-valprint.c (m2_val_print): Likewise.
8309 * p-valprint.c (pascal_val_print): Likewise.
8310 * expprint.c (print_subexp_standard): Likewise.
8311 * valprint.c (val_print_string): Likewise.
8312 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
8313 (SUBDIR_PYTHON_SRCS): Likewise.
8314 (py-lazy-string.o): New rule.
8315
1fe72117 83162010-01-13 Doug Evans <dje@google.com>
8eee9c5a
DE
8317
8318 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
8319 uninitialized" warning from gcc on local `tree'.
8320
dc146f7c
VP
83212010-01-13 Vladimir Prus <vladimir@codesourcery.com>
8322
8323 Implement core awareness.
8324
8325 * bcache.c (compare_ints): Remove
8326 (print_percentage): Use compare_positive_ints.
8327 * defs.h (compare_positive_ints): Declare.
8328 * linux-nat.h (struct lin_lwp): New field core.
8329 (linux_nat_core_of_thread_1): Declare.
8330 * linux-nat.c (add_lwp): Init the 'core' field.
8331 (linux_nat_wait_1): Record the core.
8332 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
8333 (linux_nat_add_target): Register the above.
8334 * linux-thread-db.c (update_thread_core): New.
8335 (thread_db_find_new_threads): Update core information for
8336 every thread.
8337 * remote.c (struct private_thread_info): New.
8338 (free_private_thread_info, demand_private_info): New.
8339 (PACKET_qXfer_threads, use_osdata_threads): New.
8340 (struct thread_item, threads_parsing_context
8341 (start_thread, end_thread, thread_attributes)
8342 (thread_children, threads_children, threads_elements): New.
8343 (remote_threads_info): Try qXfer:threads before anything
8344 else.
8345 (remote_protocol_packets): Register qXfer:threads.
8346 (remote_open_1): Init use_osdata_threads.
8347 (struct stop_reply): New field 'core'.
8348 (remote_parse_stop_reply): Parse core number.
8349 (process_stop_reply): Record core number.
8350 (remote_xfer_partial): Handle qXfer:threads.
8351 (remote_core_of_thread): New.
8352 (init_remote_ops): Register remote_core_of_thread.
8353 (_initialize_remote): Register qXfer:read.
8354 * target.c (target_core_of_thread): New
8355 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
8356 (struct target_ops): New field to_core_of_threads.
8357 (target_core_of_thread): Declare.
8358 * gdbthread.h (struct thread_info): New field private_dtor.
8359 * thread.c (print_thread_info): Report the core.
8360 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
8361 * utils.c (compare_positive_ints): New.
8362 * features/threads.dtd: New.
8363 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
8364 * mi/mi-main.c (struct collect_cores_data, collect_cores)
8365 (do_nothing, free_vector_of_osdata_items)
8366 (splay_tree_int_comparator, free_splay_tree): New.
8367 (print_one_inferior_data): Implemented printing of selected
8368 inferiors. Collect and print cores.
8369 (output_cores): New.
8370 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
8371 thread groups together with --available.
8372
d30c5336
JK
83732010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8374
8375 * configure: Regenerate (for _STRUCTURED_PROC).
8376
02893727
JB
83772010-01-12 Joel Brobecker <brobecker@adacore.com>
8378
8379 Delete dead function.
8380 * ada-lang.c (extract_string): Delete. No longer used.
8381
46ed2d6f
JB
83822010-01-12 Joel Brobecker <brobecker@adacore.com>
8383
8384 Fix -Wunused warning in dec-thread.c.
8385 * dec-thread.c (dec_thread_count_gdb_threads)
8386 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
8387
606b8d1a
JB
83882010-01-12 Joel Brobecker <brobecker@adacore.com>
8389
8390 * ada-valprint.c (ada_print_floating): Remove trailing space.
8391
b4ba55a1
JB
83922010-01-12 Joel Brobecker <brobecker@adacore.com>
8393
8394 Add support for DW_AT_GNAT_descriptive_type.
8395 * gdbtypes.h (enum type_specific_kind): New enum.
8396 (struct main_type) [type_specific_field]: New component.
8397 [type_specific]: Add new component "gnat_stuff".
8398 (struct gnat_aux_type): New type.
8399 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
8400 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
8401 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
8402 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
8403 (TYPE_SPECIFIC_FIELD): New macros.
8404 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
8405 type does not hold any cplus-specific data.
8406 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
8407 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
8408 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
8409 cplus-specific data.
8410 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
8411 Set new component TYPE_SPECIFIC_FIELD (type).
8412 (gnat_aux_default): New constant.
8413 (allocate_gnat_aux_type): New function.
8414 (init_type): Add initialization the type-specific stuff for
8415 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
8416 (print_gnat_stuff): New function.
8417 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
8418 specific data. Adjust code that prints the contents of the
8419 type-specific union using the TYPE_SPECIFIC_FIELD value.
8420 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
8421 the type cplus stuff for Ada types.
8422 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
8423 Error out if these routines are called with an Ada type.
8424 (read_structure_type, read_array_type, read_subrange_type):
8425 Add call to set_descriptive_type.
8426 (set_die_type): Initialize the gnat-specific data if necessary.
8427 (need_gnat_info, die_descriptive_type, set_descriptive_type):
8428 New functions.
8429 * ada-lang.c (decode_constrained_packed_array_type): Use
8430 decode_constrained_packed_array_type instead of doing a standard
8431 lookup to locate a parallel type.
8432 (find_parallel_type_by_descriptive_type): New function.
8433 (ada_find_parallel_type_with_name): New function.
8434 (ada_find_parallel_type): Reimplement using
8435 ada_find_parallel_type_with_name.
8436 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
8437 to check if type has a cplus stuff.
8438 * linespec.c (total_number_of_methods): Likewise.
8439 * mdebugread.c (new_type): Likewise.
8440
b0f02ee9
JK
84412010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8442
8443 * NEWS: Document the 0b binary number prefix parsing.
8444
b260e109
JK
84452010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8446
8447 * objfiles.c (objfile_relocate1): Change the return type to int.
8448 Describe the new return value. Return non-zero if data changed.
8449 (objfile_relocate): New variable changed. Set it. Call
8450 breakpoint_re_set depending on CHANGED.
8451
b5cfddf5
JK
84522010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8453
8454 Implement binary numbers parsing.
8455 * c-exp.y (parse_number): New case 'b' and 'B'.
8456
e0ae4240
JK
84572010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8458 Tristan Gingold <gingold@adacore.com>
8459
8460 * solib.c (info_sharedlibrary_command): Replace
8461 objfile_has_partial_symbols and objfile_has_full_symbols calls by
8462 objfile_has_symbols.
8463
6e0e5977
JB
84642010-01-10 Joel Brobecker <brobecker@adacore.com>
8465
8466 * NEWS: Document the improvements made to the mips-irix port.
8467
7348c5e1
JB
84682010-01-09 Joel Brobecker <brobecker@adacore.com>
8469
8470 Fix the documentation of valprint.c:value_print.
8471 * valprint.c (value_print): Update the function description to
8472 mention that the syntax of the output follows the current_language,
8473 not necessarily C.
8474
567995e1
JK
84752010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
8476
8477 Fix displacement of separate debug info files.
8478 * objfiles.c (objfile_relocate): Rename to ...
8479 (objfile_relocate1): ... here and make it static. Extend the comment.
8480 (objfile_relocate): New function.
8481 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
8482 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
8483 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
8484 allocated using alloca.
8485 * symfile.c (copy_section_addr_info): Remove.
8486 (build_section_addr_info_from_objfile): Make it global. New variables
8487 addr_bit and mask, use them.
8488 * symfile.h (build_section_addr_info_from_objfile): New prototype.
8489 (copy_section_addr_info): Remove.
8490
6d8eadbd
JB
84912010-01-09 Joel Brobecker <brobecker@adacore.com>
8492
8493 Signal unwinder for mips-irix N32.
8494 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
8495 tramp-frame.h.
8496 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
8497 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
8d95cc3b
PA
8498 (SIGCONTEXT_LO_OFF): New macros.
8499 (mips_irix_n32_tramp_frame_init): New function.
6d8eadbd
JB
8500 (mips_irix_n32_tramp_frame): New static constant.
8501 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
8502
27087a3d
JB
85032010-01-09 Joel Brobecker <brobecker@adacore.com>
8504
8505 Breakpoint in shared library does not work on mips-irix.
8506 * procfs.c: #include "observer.h".
8507 (procfs_inferior_created): New function, moving here the code
8508 which unsets the syssgi syscall-exit notifications.
8509 (procfs_create_inferior): Remove the code which unsets the syssgi
8510 syscall-exit notifications. It is too early to do this here.
8511 (_initialize_procfs): Attach the procfs_inferior_created observer.
8512
f08877ba
JB
85132010-01-09 Joel Brobecker <brobecker@adacore.com>
8514
8515 Wrong return convention for arrays (mips-irix).
8516 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
8517 128 bits or smaller are returned the same way as structs
8518 and unions of the the same size.
8519
e4b97d48
JB
85202010-01-09 Joel Brobecker <brobecker@adacore.com>
8521
8522 Cannot set the PC on mips-irix.
8523 * irix5-nat.c (fill_gregset): Check regno against the raw PC
8524 register number, no the cooked one.
8525
11377e68
JB
85262010-01-09 Joel Brobecker <brobecker@adacore.com>
8527
8528 Error while loading core file on mips-irix.
8529 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
8530 if debugging from a core file.
8531
b2391021
JB
85322010-01-09 Joel Brobecker <brobecker@adacore.com>
8533
8534 GDB hangs when attaching to process on mips-irix.
8535 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
8536 attaching to a process.
8537
f2ec0ecf
JB
85382010-01-09 Joel Brobecker <brobecker@adacore.com>
8539
8540 Use the correct breakpoint instruction on mips-irix.
8541 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
8542 containing the correct breakpoint instruction to use on mips-irix.
8543 Use it when the osabi is GDB_OSABI_IRIX.
8544
3c95f01c
JB
85452010-01-09 Joel Brobecker <brobecker@adacore.com>
8546
8547 -Wunused warning in procfs.c (mips-irix only).
8548 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
8549 throughout instead of using praddset and prdelset respectively.
8550
4b7703ad
JB
85512010-01-09 Joel Brobecker <brobecker@adacore.com>
8552
8553 GDB crash while stepping into function.
8554 * infrun.c (handle_inferior_event): Refetch the current frame
8555 after handling what.main_action, in case that pointer became
8556 dangling.
8557
12c89474
JB
85582010-01-09 Joel Brobecker <brobecker@adacore.com>
8559
8560 Fix build failure of solaris-hosted cross debuggers.
8561 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
8562
1a3fd262 85632010-01-09 Daniel Gutson <dgutson@codesourcery.com>
4c490650
JB
8564
8565 Fix build failure on sparc-solaris.
8566 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
8567
75242ef4
JK
85682010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8569
8570 Move some symfile code into subroutines.
8571 * symfile.h (relative_addr_info_to_section_offsets)
8572 (addr_info_make_relative): New prototypes.
8573 * symfile.c (default_symfile_offsets): Move a part to ...
8574 (relative_addr_info_to_section_offsets): ... this new function.
8575 (default_symfile_offsets): Call it.
8576 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
8577 this part to ...
8578 (addr_info_make_relative): ... this new function.
8579
268a4a75
JK
85802010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8581
8582 Add from_tty to solib_create_inferior_hook.
8583 * infcmd.c (post_create_inferior): Move solib_add after
8584 solib_create_inferior_hook. Pass from_tty to
8585 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
8586 0 from_tty and comment why.
8587 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
8588 * linux-nat.c (linux_child_follow_fork): Likewise.
8589 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
8590 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
8591 from_tty.
8592 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
8593 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
8594 * solib-null.c (null_solib_create_inferior_hook): Likewise.
8595 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
8596 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
8597 * solib-som.c (som_solib_create_inferior_hook): Likewise.
8598 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
8599 Pass it to svr4_so_ops.solib_create_inferior_hook.
8600 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
8601 from_tty.
8602 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
8603 solib_add.
8604 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
8605 enable_break.
8606 * solib-target.c (solib_target_solib_create_inferior_hook): New
8607 parameter from_tty.
8608 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
8609 it to ops->solib_create_inferior_hook.
8610 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
8611 Move solib_add after solib_create_inferior_hook, call it now with
8612 from_tty as 0. New comment there.
8613 * solib.h (solib_create_inferior_hook): New parameter from_tty.
8614 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
8615 Likewise.
8616
cf00dfa7
VP
86172010-01-08 Vladimir Prus <vladimir@codesourcery.com>
8618
8619 Fix multiexec race.
8620 * infrun.c (handle_inferior_event): Use get_thread_regcache
8621 with events ptid, not get_current_regcache.
8622
f91e5ac3
JB
86232009-01-08 Joel Brobecker <brobecker@adacore.com>
8624
8625 GDB crash with empty executable name (MinGW).
8626 * source.c (openp): Add assert that parameter string is not NULL.
8627 if parameter string is an empty string, then return with a failure
8628 immediately.
8629
92b9ce5b
JB
86302009-01-08 Joel Brobecker <brobecker@adacore.com>
8631
8632 Get rid of support for VAX Floats.
8633 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
8634 (ada_vax_float_print_function): Delete.
8635 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
8636 (ada_vax_float_print_function): Delete.
8637 * ada-typeprint.c (print_vax_floating_point_type): Delete.
8638 (ada_print_type): Remove support for VAX floats.
8639 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
8640
268a4a75 86412010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
d24d8548
JK
8642
8643 * stabsread.c (read_args): Handle zero arguments.
8644
f0f20949
JB
86452009-01-08 Joel Brobecker <brobecker@adacore.com>
8646
8647 Cannot find in-tree libiconv.a after reconfigure.
8648 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
8649 that we can use, then cache the path to this archive.
8650 * configure: Regenerate.
8651
6b6218c5
SS
86522010-01-07 Stan Shebs <stan@codesourcery.com>
8653
35b1e5cc
SS
8654 Make tracepoint operations go through target vector.
8655 * target.h (enum trace_find_type): New enum.
8656 (struct target_ops): New fields to_trace_init,
8657 to_download_tracepoint, to_download_trace_state_variable,
8658 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
8659 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
8660 to_set_disconnected_tracing.
8661 (target_trace_init): New macro.
8662 (target_download_tracepoint): New macro.
8663 (target_download_trace_state_variable): New macro.
8664 (target_trace_start): New macro.
8665 (target_trace_set_readonly_regions): New macro.
8666 (target_get_trace_status): New macro.
8667 (target_trace_stop): New macro.
8668 (target_trace_find): New macro.
8669 (target_get_trace_state_variable_value): New macro.
8670 (target_set_disconnected_tracing): New macro.
8671 * target.c (update_current_target): Inherit and set defaults for
8672 tracepoint operations.
8673 * tracepoint.c (default_collect): Make globally visible.
8674 (target_is_remote): Remove, along with all calls.
8675 (tvariables_info): Call target_get_trace_state_variable_value.
8676 (remote_set_transparent_ranges): Remove.
8677 (trace_start_command): Call target_trace_init,
8678 target_download_tracepoint, etc.
8679 (download_tracepoint): Remove.
8680 (trace_stop_command): Simplify.
8681 (stop_tracing): Call target_trace_stop.
8682 (get_trace_status): Call target_get_trace_status.
8683 (trace_status_command): Add case for targets that cannot trace.
8684 (finish_tfind_command): Change to take numerical arguments, call
8685 target_trace_find.
8686 (trace_find_command): Update call to finish_tfind_command.
8687 (trace_find_pc_command): Ditto.
8688 (trace_find_tracepoint_command): Ditto.
8689 (trace_find_line_command): Ditto.
8690 (trace_find_range_command): Ditto.
8691 (trace_find_outside_command): Ditto.
8692 (set_disconnected_tracing_value): Call
8693 target_set_disconnected_tracing.
8694 * remote.c: Add protocol encoding bits from tracepoint.c.
8695 (trace_error): Move from tracepoint.c.
8696 (remote_get_noisy_reply): Ditto.
8697 (free_actions_list_cleanup_wrapper): Ditto.
8698 (free_actions_list): Ditto.
8699 (remote_trace_init): New function.
8700 (remote_download_tracepoint): New function.
8701 (remote_download_trace_state_variable): New function.
8702 (remote_trace_set_readonly_regions): New function.
8703 (remote_trace_start): New function.
8704 (remote_get_trace_status): New function.
8705 (remote_trace_stop): New function.
8706 (remote_trace_find): New function.
8707 (remote_download_trace_state_variable): New function.
8708 (remote_set_disconnected_tracing): New function.
8709 (init_remote_ops): Add tracepoint operations.
8710
6b6218c5
SS
8711 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
8712
089b4803
TG
87132010-01-07 Tristan Gingold <gingold@adacore.com>
8714
8715 * symfile.c (build_section_addr_info_from_objfile): New function.
8716 (symbol_file_add_separate): Don't use offsets from objfile but
8717 built an addr info.
8718
d5551862
SS
87192010-01-06 Stan Shebs <stan@codesourcery.com>
8720
8721 Support disconnected tracing.
8722 * infcmd.c (detach_command): Ask whether to stop tracing.
8723 * cli/cli-cmds.c (quit_command): Ditto.
8724 * breakpoint.h (struct breakpoint): New field number_on_target.
8725 * breakpoint.c (create_tracepoint_from_upload): New function.
8726 (get_tracepoint_by_number_on_target): New function.
8727 * remote.c (struct remote): New field disconnected_tracing.
8728 (remote_disconnected_tracing_feature): New function.
8729 (remote_protocol_features): Add DisconnectedTracing.
8730 (struct uploaded_tp): New struct.
8731 (uploaded_tps): New global.
8732 (get_uploaded_tp): New function.
8733 (find_matching_tracepoint): New function.
8734 (remote_get_tracing_state): New function.
8735 (remote_start_remote): Call it.
8736 * tracepoint.c (disconnected_tracing): New global.
8737 (trace_start_command): Initialize number_on_target.
8738 (stop_tracing): New function, split out from...
8739 (trace_stop_command): Call stop_tracing.
8740 (get_trace_status): New function, split out from...
8741 (trace_status_command): Call get_trace_status, add info on
8742 disconnection behavior.
8743 (disconnect_or_stop_tracing): New function.
8744 (finish_tfind_command): Translate from number on target.
8745 (trace_find_tracepoint_command): Translate to number on target.
8746 (send_disconnected_tracing_value): New function.
8747 (set_disconnected_tracing): New function.
8748 (_initialize_tracepoint): Add disconnected-tracing variable.
8749 * NEWS: Mention disconnected tracing.
8750
15d123c9
TG
87512010-01-06 Tristan Gingold <gingold@adacore.com>
8752
8753 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
8754 parameter to main_objfile. Iterate on all separate debug objfiles.
8755 * symfile.h (symbol_file_add_separate)
8756 (find_separate_debug_file_by_debuglink): Remove parameter names.
8757 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
8758 (reread_symbols): Use free_objfile_separate_debug.
8759 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
8760 Adjust comment.
8761 (objfile_separate_debug_iterate, add_separate_debug_objfile)
8762 (free_objfile_separate_debug): New prototypes.
8763 * objfiles.c (objfile_separate_debug_iterate): New function.
8764 (add_separate_debug_objfile, free_objfile_separate_debug): New
8765 functions.
8766 (free_objfile): Use free_objfile_separate_debug. Adjust for
8767 multiple separate debug objfile.
8768 (objfile_has_symbols): Adjust comment. Iterate on all separate
8769 debug objfiles.
8770 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
8771 debug objfile.
8772 (lookup_minimal_symbol_text): Ditto.
8773 (lookup_minimal_symbol_by_pc_name): Ditto.
8774 (lookup_minimal_symbol_solib_trampoline): Ditto.
8775 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
8776 debug objfiles.
8777
7a697b8d
SS
87782010-01-05 Stan Shebs <stan@codesourcery.com>
8779
8780 Add fast tracepoints.
8781 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
8782 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
8783 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
8784 * breakpoint.c (tracepoint_type): New function.
8785 (ALL_TRACEPOINTS): Use it.
8786 (should_be_inserted): Ditto.
8787 (bpstat_check_location): Ditto.
8788 (print_one_breakpoint_location): Ditto.
8789 (user_settable_breakpoint): Ditto.
8790 (set_breakpoint_location_function): Ditto.
8791 (disable_breakpoints_in_shlibs): Ditto.
8792 (delete_trace_command): Ditto.
8793 (print_it_typical): Add bp_fast_tracepoint case.
8794 (bpstat_what): Ditto.
8795 (print_one_breakpoint_location): Ditto.
8796 (allocate_bp_location): Ditto.
8797 (mention): Ditto.
8798 (breakpoint_re_set_one): Ditto.
8799 (disable_command): Ditto.
8800 (enable_command): Ditto.
8801 (check_fast_tracepoint_sals): New function.
8802 (break_command_really): Call it.
8803 (ftrace_command): New function.
8804 (_initialize_breakpoint): Add ftrace command.
8805 * gdbarch.sh (fast_tracepoint_valid_at): New.
8806 * gdbarch.h, gdbarch.c: Regenerate.
8807 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
8808 (i386_gdbarch_init): Use it.
8809 * remote.c (struct remote_state): New field fast_tracepoints.
8810 (PACKET_FastTracepoints): New packet config type.
8811 (remote_fast_tracepoint_feature): New function.
8812 (remote_protocol_features): Add FastTracepoints.
8813 (remote_supports_fast_tracepoints): New function.
8814 (_initialize_remote): Add FastTracepoints.
8815 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
8816 * NEWS: Mention fast tracepoints.
8817
737a160e
JB
88182010-01-06 Joel Brobecker <brobecker@adacore.com>
8819
8820 * gdb-gdb.py: New file.
8821
ce6cca6d
MS
88222010-01-05 Michael Snyder <msnyder@vmware.com>
8823
8824 * infrun.c (handle_inferior_event): Fix typo in comment.
8825
0d15807d
JK
88262010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8827
8828 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
8829
7803799a
UW
88302010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
8831
c8d5aac9 8832 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
7803799a
UW
8833 and s390x-linux64.
8834 (s390-linux32-expedite): Define.
8835 (s390-linux64-expedite): Define.
8836 (s390x-linux64-expedite): Define.
8837 * features/s390-acr.xml: New file.
8838 * features/s390-fpr.xml: New file.
8839 * features/s390-core32.xml: New file.
8840 * features/s390-core64.xml: New file.
8841 * features/s390x-core64.xml: New file.
8842 * features/s390-linux32.xml: New file.
8843 * features/s390-linux64.xml: New file.
8844 * features/s390x-linux64.xml: New file.
8845 * features/s390-linux32.c: New generated file.
8846 * features/s390-linux64.c: New generated file.
8847 * features/s390x-linux64.c: New generated file.
8848
8849 * regformats/s390-linux32.dat: New generated file.
8850 * regformats/s390-linux64.dat: New generated file.
8851 * regformats/s390x-linux64.dat: New generated file.
8852 * regformats/reg-s390.dat: Remove.
8853 * regformats/reg-s390x.dat: Remove.
8854
8855 * s390-nat.c: Include "auxv.h" and <elf.h>.
8856 (HWCAP_S390_HIGH_GPRS): Define if undefined.
8857 (s390_target_wordsize): New function.
8858 (s390_auxv_parse): Likewise.
8859 (s390_get_hwcap): Likewise.
8860 (s390_read_description): Likewise.
8861 (_initialize_s390_nat): Install s390_auxv_parse and
8862 s390_read_description.
8863
8864 * s390-tdep.c: Include "features/s390-linux32.c",
8865 "features/s390-linux64.c", and "features/s390x-linux64.c".
8866 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
8867 (s390_register_call_saved): New function.
8868 (s390_register_name): Remove.
8869 (s390_register_type): Remove.
8870 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
8871 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
8872 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
8873 (s390_pseudo_register_name): New function.
8874 (s390_pseudo_register_type): New function.
8875 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
8876 Handle full GPR pesudos and varying pseudo register numbers.
8877 (s390_pseudo_register_write): Likewise
8878 (s390x_pseudo_register_read): Remove.
8879 (s390x_pseudo_register_write): Likewise.
8880 (s390_register_group): Remove.
8881 (s390_pseudo_register_group): New function.
8882 (s390_regmap_gregset): Add GPR upper halves.
8883 (s390x_regmap_gregset): Likewise.
8884 (s390_regmap_fpregset): Likewise.
8885 (s390_regmap_upper): New global variable.
8886 (s390_upper_regset): New global variable.
8887 (s390_upper_regset_sections): New global variable.
8888 (s390_regset_from_core_section): Handle GPR upper halves.
8889 (s390_core_read_description): New function.
8890 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
8891 register information. Handle varying pseudo register numbers.
8892 (s390_backchain_frame_unwind_cache): Likewise.
8893 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
8894 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
8895 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
8896 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
8897 Handle varying pseudo register numbers.
8898 (s390_unwind_pc): Handle varying pseudo register numbers.
8899 (s390_dwarf2_prev_register): New function.
8900 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
8901 register information. Handle varying pseudo register numbers.
8902 Install s390_dwarf2_prev_register to unwind full GPRs.
8903 (s390_gdbarch_init): Handle target descriptions. Assign varying
8904 pseudo register numbers. Install s390_adjust_frame_regnum.
8905 (_initialize_s390_tdep): Initialize target descriptions.
8906
8907 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
8908 (S390_NUM_REGS): Redefine to include upper half registers.
8909 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
8910 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
8911 (tdesc_s390_linux32): Add declaration.
8912 (tdesc_s390_linux64): Likewise.
8913 (tdesc_s390x_linux64): Likewise.
8914
1b1818e4
UW
89152010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
8916
8917 * regset.h (struct core_regset_section): Add HUMAN_NAME.
8918 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
8919 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
8920 (ppc_linux_vmx_regset_sections): Likewise.
8921 (ppc_linux_fp_regset_sections): Likewise.
8922
8923 * corelow.c (get_core_register_section): Constify arguments.
8924 (get_core_registers): Use gdbarch_core_regset_sections instead
8925 of hard-coded platform-specific register section names.
8926
dcbf108f
UW
89272010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
8928
8929 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
b3f41522 8930 a register, assume the least-significant part is used.
dcbf108f
UW
8931 (write_pieced_value): Likewise.
8932
704e9165
UW
89332010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
8934
8935 * printcmd.c: Include "arch-utils.h".
8936 (do_one_display): Re-parse expression if current architecture changed.
8937
c54eabfa
JK
89382010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8939 Joel Brobecker <brobecker@adacore.com>
8940
8941 * gdbtypes.c (check_typedef): New comment on type length.
8942 * value.c (allocate_value_lazy): Remove the unused atype variable. New
8943 comment on type length.
8944 (value_primitive_field): Keep the original TYPE value, new comment.
8945
50cb2941
JK
89462010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8947
8948 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
8949 p_start. Change != comparisons to > and < comparisons.
8950
be66db07
JK
89512010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8952
8953 * cli/cli-script.c (process_next_line): Check P2 overrun.
8954
abd775ce
JB
89552009-01-01 Joel Brobecker <brobecker@adacore.com>
8956
8957 Update the copyright hearder to add year 2010 for most GDB files.
8958
6479260d
JB
89592009-01-01 Joel Brobecker <brobecker@adacore.com>
8960
8961 Fix build failure in inf-ptrace.c.
8962 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
8963
4a70f654
JB
89642010-01-01 Joel Brobecker <brobecker@adacore.com>
8965
8966 * top.c (print_gdb_version): Update copyright year.
8967
595939de 89682010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
b9ee2233
JB
8969
8970 Fix break *FUN'address thread NUM.
8971 * ada-lex.l (task): Expand rule to also match the thread keyword.
8972
70575d34
JB
89732010-01-01 Joel Brobecker <brobecker@adacore.com>
8974
8975 Fix break *FUN'address task NUM.
8976 * ada-lex.l (task): New rule.
8977 * ada-lang.c (valid_task_id): Make sure the Ada task list has
8978 been built before using it.
8979
e1e4d4a4 8980For older changes see ChangeLog-2009.
c906108c
SS
8981\f
8982Local Variables:
8983mode: change-log
8984left-margin: 8
8985fill-column: 74
8986version-control: never
57da7796 8987coding: utf-8
c906108c 8988End:
This page took 1.497448 seconds and 4 git commands to generate.