*** empty log message ***
[binutils-gdb.git] / gdb / ChangeLog
1 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
2
3 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
4 value instead of hard-coded SPU_LS_SIZE.
5 (spu_software_single_step): Likewise.
6 * spu-tdep.h (SPU_LS_SIZE): Remove.
7
8 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
9
10 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
11 limit on local store memory accesses.
12 * spu-linux-nat.c (spu_xfer_partial): Likewise.
13 * spu-tdep.c (spu_lslr): Remove.
14 (spu_pointer_to_address): Do not truncate addresses.
15 (spu_integer_to_address): Likewise.
16 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
17 * spu-tdep.h: Add comments.
18 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
19 (SPU_OVERLAY_LMA): Define.
20
21 2010-06-18 Stan Shebs <stan@codesourcery.com>
22
23 * osdata.c (get_osdata): Warn separately if target does not report
24 type list.
25 (info_osdata_command): Allow empty type, report error if target
26 does not return available types of OS data.
27 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
28 types if no annex supplied.
29
30 * thread.c (thread_id_make_value): Make a value representing the
31 current thread.
32 (_initialize_thread): Create $_thread.
33
34 2010-06-17 Joel Brobecker <brobecker@adacore.com>
35
36 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
37 last local variable declaration. No real code change.
38
39 2010-06-17 Tom Tromey <tromey@redhat.com>
40
41 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
42 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
43 temporary obstack.
44
45 2010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
46 Jan Kratochvil <jan.kratochvil@redhat.com>
47
48 * breakpoint.c: Include parser-defs.h.
49 (watchpoint_exp_is_const): New function.
50 (watch_command_1): Call watchpoint_exp_is_const to check
51 if the expression is constant.
52
53 2010-06-15 Andreas Schwab <schwab@linux-m68k.org>
54
55 * configure.ac: Check for RDYNAMIC also for cross builds.
56 * configure: Regenerate.
57
58 2010-06-15 Pedro Alves <pedro@codesourcery.com>
59
60 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
61 (SFILES): Remove solib-null.c, add solib-target.c.
62 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
63 (ALLDEPFILES): Remove solib-target.c.
64 * solib-target.c (_initialize_solib_target): Set
65 current_target_so_ops to solib_target_so_ops if not already set.
66 * solib-null.c: Delete.
67
68 2010-06-14 Pedro Alves <pedro@codesourcery.com>
69
70 * NEWS: Mention GDBserver's JIT compilation of tracepoint
71 bytecode.
72
73 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
74
75 * cp-valprint.c (cp_print_static_field): Members of
76 dont_print_stat_array_obstack are of type "struct type *".
77 (_initialize_cp_valprint): Likewise.
78
79 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
80
81 * frame.c (frame_register_unwind): Do not access contents
82 of "optimized out" unwound register value.
83
84 2010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
85
86 * ada-lang.h (ada_print_type): Make varstring const.
87 * ada-typeprint.c (print_func_type): Make name const.
88 (ada_print_type): Make varstring const.
89 * c-lang.h (c_print_type): Make varstring const.
90 * c-typeprint.c (c_print_type): Likewise.
91 * f-lang.h (f_print_type): Likewise.
92 * f-typeprint.c (f_print_type): Likewise.
93 * jv-lang.h (java_print_type): Likewise.
94 * jv-typeprint.c (java_print_type): Likewise.
95 * language.c (unk_lang_print_type): Likewise.
96 * language.h (struct language_defn) <la_print_type>: Likewise.
97 * m2-lang.h (m2_print_type): Likewise.
98 * m2-typeprint.c (m2_print_type): Likewise.
99 * p-lang.h (pascal_print_type): Likewise.
100 * p-typeprint.c (pascal_print_type): Likewise.
101
102 2010-06-11 Stan Shebs <stan@codesourcery.com>
103
104 Add per-operation permission flags.
105
106 * target.h (struct target_ops): New method to_set_permissions.
107 (target_set_permissions): New macro.
108 (target_insert_breakpoint): Change macro to function.
109 (target_remove_breakpoint): Ditto.
110 (target_stop): Ditto.
111 (may_write_registers): Declare.
112 (may_write_memory): Declare.
113 (may_insert_breakpoints): Declare.
114 (may_insert_tracepoints): Declare.
115 (may_insert_fast_tracepoints): Declare.
116 (may_stop): Declare.
117 * target.c (may_write_registers, may_write_registers_1): New globals.
118 (may_write_memory, may_write_memory_1): New globals.
119 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
120 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
121 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
122 globals.
123 (may_stop, may_stop_1): New global.
124 (target_xfer_partial): Test for write permission.
125 (target_store_registers): Ditto.
126 (target_insert_breakpoint): New function.
127 (target_remove_breakpoint): New function.
128 (target_stop): New function.
129 (_initialize_targets): Add new set/show variables.
130 (set_write_memory_permission): New function.
131 (update_target_permissions): New function.
132 (set_target_permissions): New function.
133 (update_current_target): Default to_set_permissions.
134 (_initialize_targets): Use new globals and setter function.
135 * tracepoint.c (start_tracing): Test for permission.
136 * inferior.h (update_observer_mode): Declare.
137 * infrun.c (non_stop_1): Define earlier.
138 (observer_mode, observer_mode_1): New globals.
139 (set_observer_mode, show_observer_mode): New functions.
140 (update_observer_mode): New function.
141 (_initialize_infrun): Define "set observer" command.
142 * remote.c (PACKET_QAllow): New optional packet.
143 (remote_protocol_features): Add QAllow.
144 (remote_set_permissions): New function.
145 (remote_start_remote): Call it.
146 (init_remote_ops): Add it to target vector.
147 (_initialize_remote): Add config command for QAllow.
148
149 2010-06-11 Tom Tromey <tromey@redhat.com>
150
151 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
152 DW_AT_vtable_elem_location even when GCC extension is seen.
153
154 2010-06-11 Tom Tromey <tromey@redhat.com>
155
156 PR gdb/9977, PR exp/11636:
157 * value.h (value_offset): Update.
158 (struct lval_funcs) <check_validity>: New field.
159 <copy_closure>: Make argument const.
160 (value_computed_closure): Update.
161 (value_contents_for_printing): Declare.
162 (value_bits_valid): Likewise.
163 (val_print): Likewise.
164 (set_value_component_location): Update.
165 (value_entirely_optimized_out): Declare.
166 * value.c (value_offset): Argument now const.
167 (require_not_optimized_out): New function.
168 (value_contents_for_printing): New function.
169 (value_contents_all): Call require_not_optimized_out.
170 (value_contents): Likewise.
171 (value_bits_valid): New function.
172 (value_computed_closure): Argument now const.
173 (set_value_component_location): Make 'whole' argument const.
174 (value_entirely_optimized_out): New function.
175 (value_bitsize): Argument now 'const'.
176 (value_bitpos): Likewise.
177 (value_type): Likewise.
178 * valprint.h (val_print_array_elements): Update.
179 * valprint.c (val_print): Add 'val' argument. Use
180 valprint_check_validity.
181 (valprint_check_validity): New function.
182 (value_check_printable): Use value_entirely_optimized_out.
183 (common_val_print): Update.
184 (value_print): Likewise.
185 (val_print_array_elements): Add 'val' argument.
186 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
187 value_bits_valid. Reinit frame cache for lval_computed.
188 * sh64-tdep.c (sh64_do_register): Update.
189 * scm-valprint.c (scm_val_print): Add 'val' argument.
190 * scm-lang.h (scm_val_print): Update.
191 * python/python.h (apply_val_pretty_printer): Update.
192 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
193 argument. Call set_value_component_location.
194 * printcmd.c (print_scalar_formatted): Update.
195 * p-valprint.c (pascal_val_print): Add 'val' argument.
196 (pascal_object_print_value_fields): Likewise.
197 (pascal_object_print_value): Likewise.
198 (pascal_object_print_static_field): Update.
199 * p-lang.h (pascal_val_print): Update.
200 (pascal_object_print_value_fields): Update.
201 * mt-tdep.c (mt_registers_info): Update.
202 * mi/mi-main.c (get_register): Update.
203 (mi_cmd_data_evaluate_expression): Use common_val_print.
204 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
205 (m2_print_unbounded_array): Likewise.
206 (m2_val_print): Likewise.
207 * m2-lang.h (m2_val_print): Update.
208 * language.h (struct language_defn) <la_val_print>: Add 'val'
209 argument.
210 (LA_VAL_PRINT): Likewise.
211 * language.c (unk_lang_val_print): Add 'val' argument.
212 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
213 (java_val_print): Likewise.
214 * jv-lang.h (java_val_print): Add 'val' argument.
215 * infcmd.c (default_print_registers_info): Update.
216 * f-valprint.c (f77_print_array_1): Add 'val' argument.
217 (f77_print_array): Likewise.
218 (f_val_print): Likewise.
219 * f-lang.h (f_val_print): Add 'val' argument.
220 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
221 value_bitpos.
222 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
223 set_value_optimized_out.
224 (write_pieced_value): Use value_bitsize and value_bitpos.
225 <default>: Don't exit loop.
226 (check_pieced_value_validity): New function.
227 (pieced_value_funcs): Reference check_pieced_value_validity,
228 check_pieced_value_invalid.
229 (copy_pieced_value_closure): Update.
230 (check_pieced_value_bits): New function.
231 (check_pieced_value_invalid): New function.
232 * d-valprint.c (dynamic_array_type): Add 'val' argument.
233 (d_val_print): Likewise.
234 * d-lang.h (d_val_print): Update.
235 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
236 (cp_print_value_fields_rtti): Likewise.
237 (cp_print_value): Likewise.
238 (cp_print_static_field): Update.
239 * c-valprint.c (c_val_print): Add 'val' argument.
240 (c_value_print): Update.
241 * c-lang.h (c_val_print): Update.
242 (cp_print_value_fields): Likewise.
243 (cp_print_value_fields_rtti): Likewise.
244 * ada-valprint.c (struct ada_val_print_args): Remove.
245 (val_print_packed_array_elements): Add 'val' argument.
246 (ada_val_print): Likewise. Rewrite.
247 (ada_val_print_stub): Remove.
248 (ada_val_print_array): Add 'val' argument.
249 (ada_val_print_1): Likewise.
250 (print_variant_part): Likewise.
251 (ada_value_print): Update.
252 (print_record): Add 'val' argument.
253 (print_field_values): Likewise.
254 * ada-lang.h (ada_val_print): Update.
255
256 2010-06-11 Tom Tromey <tromey@redhat.com>
257
258 * vec.h (VEC_cleanup): New macro.
259 (DEF_VEC_ALLOC_FUNC_I): Update.
260 (DEF_VEC_ALLOC_FUNC_P): Likewise.
261 (DEF_VEC_ALLOC_FUNC_O): Likewise.
262 * dwarf2loc.c (struct axs_var_loc): Remove.
263 (unimplemented): New function.
264 (translate_register): Likewise.
265 (access_memory): Likewise.
266 (compile_dwarf_to_ax): Likewise.
267 (dwarf2_tracepoint_var_loc): Remove.
268 (dwarf2_tracepoint_var_access): Likewise.
269 (dwarf2_tracepoint_var_ref): Likewise.
270 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
271 (loclist_tracepoint_var_ref): Likewise.
272 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
273 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
274 require_composition. No longer static.
275 (execute_stack_op): Update.
276 * ax-gdb.h (trace_kludge): Declare.
277
278 2010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
279
280 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
281 (should_be_inserted): Return zero also on NULL OWNER.
282 (breakpoint_program_space_exit): New OWNER comment.
283 (insert_breakpoint_locations): Extend comment for OWNER.
284 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
285 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
286 New OWNER comment.
287 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
288 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
289 (bpstat_check_location): New assert on OWNER.
290 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
291 and B initializations to the code block. New assert on them.
292 (print_one_breakpoint_location): New OWNER comment.
293 (watchpoint_locations_match): Assert on OWNER.
294 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
295 initializations to the code block. New assert on OWNER.
296 (set_breakpoint_location_function): New assert on OWNER.
297 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
298 (bp_location_compare, update_global_location_list)
299 (update_global_location_list): New OWNER comment.
300
301 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
302
303 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
304
305 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
306
307 * config/nm-linux.h (struct target_ops): Remove forward declaration.
308 (lin_thread_get_thread_signals): Remove prototype.
309 (GET_THREAD_SIGNALS): Remove.
310 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
311 * linux-thread-db.c (check_thread_signals): Directly call
312 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
313
314 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
315
316 * gregset.h (GDB_FPXREGSET_T): Remove.
317 (gdb_fpxregset_t): Likewise.
318 (supply_fpxregset): Remove prototype.
319 (fill_fpxregset): Likewise.
320 * i386-linux-nat.c (supply_fpxregset): Remove.
321 (fill_fpxregset): Likewise.
322 (fetch_fpxregs): Inline supply_fpxregset call.
323 (store_fpxregs): Inline fill_fpxregset call.
324
325 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
326 * config/i386/nm-linux.h: Remove file.
327
328 2010-06-09 Michael Snyder <msnyder@vmware.com>
329
330 * target.c (update_current_target): Fix spelling error in comment.
331 (target_mourn_inferior): Fix spelling error in error message.
332
333 2010-06-08 Paul Hilfinger <hilfingr@adacore.com>
334
335 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
336 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
337
338 2010-06-08 Michael Snyder <msnyder@vmware.com>
339
340 * remote.c (remote_close): Set inferior_ptid to null_ptid.
341
342 2010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
343
344 * configure.ac <"${have_libpython}" != no>: New workaround of
345 python#4434.
346 * configure: Regenerate.
347
348 2010-06-08 Hui Zhu <teawater@gmail.com>
349
350 * record.c (record_wait): Move signal out of replay code.
351
352 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
353
354 Fix PR 10640.
355 * dwarf2-frame.c (no_dwarf_call): New function.
356 (execute_stack_op): Set CTX->DWARF_CALL.
357 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
358 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
359 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
360 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
361 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
362 (needs_frame_dwarf_call): New function.
363 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
364 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
365 Update the comment. Move variables die, offset and error call to ...
366 (follow_die_ref): ... a new function.
367 (dwarf2_fetch_die_location_block): New function.
368 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
369
370 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
371
372 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
373 (dwarf_expr_tls_address): Use per_cu instead of objfile.
374 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
375 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
376 this change.
377 (struct needs_frame_baton): New field per_cu.
378 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
379 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
380
381 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
382
383 * cp-support.c (make_symbol_overload_list_namespace): Only search
384 static and global blocks.
385 (make_symbol_overload_list_block): New function.
386 (make_symbol_overload_list): Separate namespace search from block
387 search.
388 (make_symbol_overload_list_qualified): Use
389 make_symbol_overload_list_block.
390
391 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
392
393 * value.h: Created oload_search_type enum.
394 (find_overload_match): Use oload_search_type enum.
395 * valops.c (find_overload_match): Support combined member and
396 non-member search.
397 * eval.c (evaluate_subexp_standard): Calls to
398 find_overload_match now use oload_search_type enum.
399 (oload_method_static): Verify index is a proper value.
400 * valarith.c (value_user_defined_cpp_op): Search for and handle
401 both member and non-member operators.
402 (value_user_defined_cpp_op): New function.
403 (value_user_defined_op): New function.
404 (value_x_unop): Use value_user_defined_op.
405 (value_x_binop): Ditto.
406 * cp-support.c (make_symbol_overload_list_using): Added block
407 iteration.
408 Add check for namespace aliases and imported declarations.
409
410 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
411
412 * breakpoint.h (owner): Extend the comment.
413
414 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
415
416 Clear stale specific bp_location from former whole breakpoint.
417 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
418 code ...
419 (free_bp_location): ... here. Rename there the called function to
420 bpstat_remove_bp_location_callback.
421 (bpstat_remove_breakpoint_callback): Rename to ...
422 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
423 to struct bp_location. Change the called function to
424 bpstat_remove_bp_location. Create new declaration for the function.
425 (bpstat_remove_breakpoint): Rename to ...
426 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
427 code for the new parameter type.
428
429 2010-06-07 Nathan Sidwell <nathan@codesourcery.com>
430
431 * README: Make version-agnostic.
432
433 2010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
434
435 Fix duplicate types for single DIE.
436 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
437 set_die_type.
438 (read_array_type): Remove type initialization. Recheck get_die_type
439 after initial die_type. Move set_die_type before set_descriptive_type.
440 (read_set_type): New variable domain_type. Recheck get_die_type after
441 initial die_type. Move attr initialization later.
442 (read_tag_pointer_type, read_tag_reference_type): New variable
443 target_type. Recheck get_die_type after initial die_type.
444 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
445 die_type and die_containing_type.
446 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
447 Recheck get_die_type after initial die_type.
448 (read_subrange_type): Recheck get_die_type after initial die_type.
449 Move set_die_type before set_descriptive_type.
450 (set_die_type): Extend the function comment. Call complaint if DIE has
451 some type already set.
452
453 2010-06-05 Vladimir Prus <vladimir@codesourcery.com>
454
455 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
456 for current naming of thread groups (iN, not N).
457
458 2010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
459
460 * ada-lang.c (ada_operator_length): Constify `struct expression'.
461 * parse.c (operator_length): Likewise.
462 (operator_length_standard): Likewise.
463 * parser-defs.h (operator_length): Likewise.
464 (operator_length_standard): Likewise.
465 (struct exp_descriptor <operator_length>): Likewise.
466
467 2010-06-04 Doug Evans <dje@google.com>
468
469 Add support for enabling/disabling individual pretty-printers.
470 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
471 * python/python-internal.h (gdbpy_enabled_cst): Declare.
472 * python/python.c (gdbpy_enabled_cst): Define.
473 (_initialize_python): Initialize gdbpy_enabled_cst.
474 * NEWS: Add entry.
475
476 2010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
477
478 * breakpoint.c (update_global_location_list): Fix comment typo.
479
480 2010-06-04 Hui Zhu <teawater@gmail.com>
481
482 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
483
484 2010-06-03 Doug Evans <dje@google.com>
485
486 * configure.ac: Don't fail if python is unusable when
487 configured with --with-python=auto.
488 * configure: Regenerate.
489
490 2010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
491
492 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
493
494 2010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
495
496 * valprint.h (get_array_bounds): Change low and high parameter types
497 to LONGEST *.
498 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
499 compute bounds.
500 (val_print_array_elements): Adapt to change above.
501 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
502 * p-valprint.c (pascal_val_print): Likewise.
503
504 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
505
506 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
507 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
508 .F08.
509
510 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
511
512 Support DW_TAG_module as separate namespaces.
513 * dwarf2read.c (typename_concat): New parameter physname.
514 (read_module_type): New function and declaration.
515 (scan_partial_symbols): Scan also DW_TAG_module children.
516 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
517 to typename_concat backward compatible physname value 0.
518 (partial_die_full_name, read_namespace_type): Pass to typename_concat
519 backward compatible physname value 0.
520 (add_partial_module, read_module): Remove FIXME comment.
521 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
522 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
523 DIEs under DW_TAG_module.
524 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
525 DW_AT_MIPS_linkage_name first, extend it for language_fortran
526 && physname and return there instead of just setting NAME. Extend
527 the main block for language_fortran. Pass physname parameter to the
528 typename_concat call.
529 (read_import_statement, read_func_scope, get_scope_pc_bounds)
530 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
531 (new_symbol): Fill in cplus_specific.demangled_name if it is still
532 missing from SYMBOL_SET_NAMES in the language_fortran case.
533 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
534 variables.
535 (read_type_die) <DW_TAG_module>: New.
536 (MAX_SEP_LEN): Increase to 7.
537 (typename_concat): New parameter physname. New variable lead. Support
538 also language_fortran.
539 * f-exp.y (yylex): Consider : also as a symbol name character class.
540 * f-lang.c: Include cp-support.h.
541 (f_word_break_characters, f_make_symbol_completion_list): New functions.
542 (f_language_defn): Use cp_lookup_symbol_nonlocal,
543 f_word_break_characters and f_make_symbol_completion_list.
544 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
545 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
546 * symtab.c (symbol_init_language_specific): Support language_fortran.
547 (symbol_find_demangled_name): New comment on language_fortran.
548 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
549 for language_fortran.
550 (lookup_symbol_aux_local): Check imports also for language_fortran.
551 (default_make_symbol_completion_list): Rename to ...
552 (default_make_symbol_completion_list_break_on): ... this name. New
553 parameter break_on, use it.
554 (default_make_symbol_completion_list): New stub.
555 * symtab.h (default_make_symbol_completion_list_break_on): New
556 prototype.
557
558 2010-06-02 Joel Brobecker <brobecker@adacore.com>
559
560 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
561 to error.
562
563 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
564
565 * dwarf2read.c (typename_concat): Add const to the variable sep.
566
567 2010-06-02 Tom Tromey <tromey@redhat.com>
568
569 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
570 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
571 type is const. Add 'def' argument. Add missing operators, remove
572 unhandled ones.
573 (decode_locdesc): Update.
574 (dwarf2_always_disassemble): New global.
575 (show_dwarf2_always_disassemble): New function.
576 (_initialize_dwarf2_read): Add always-disassemble.
577 (dwarf2_per_cu_offset_size): New function.
578 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
579 (piece_end_p): New function.
580 (locexpr_describe_location_piece): Replace 'size' argument with
581 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
582 some constants. Remove errors.
583 (disassemble_dwarf_expression): New function.
584 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
585 Add 'offset_size' argument.
586 (loclist_describe_location): Change output formatting.
587 * dwarf2expr.h (dwarf_stack_op_name): Declare.
588
589 2010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
590
591 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
592 anonymous type case.
593
594 2010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
595
596 * dwarf2read.c (read_subrange_type): Handle missing base type
597 according to Dwarf-2 specifications.
598
599 2010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
600
601 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
602 BINOP_EXCL.
603 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
604 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
605 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
606 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
607 UNOP_CHMAX, UNOP_CHMIN.
608 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
609 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
610 UNOP_CHMIN>: Remove opcodes.
611
612 2010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
613
614 * dwarf2read.c (read_func_scope): Do not complain for
615 external function if bounds are not found.
616
617 2010-06-01 Pedro Alves <pedro@codesourcery.com>
618
619 * NEWS: Mention gdbserver fast tracepoints support.
620
621 2010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
622
623 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
624 New macros.
625 (windows_set_console_info): New function.
626 (windows_create_inferior): Call windows_set_console_info
627 if NEW_CONSOLE is true.
628 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
629 (_initialize_loadable): Initialize GetConsoleFontSize and
630 GetCurrentConsoleFont.
631
632 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
633
634 * Makefile.in (RDYNAMIC): New.
635 (SFILES): Add proc-service.list.
636 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
637 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
638 * config/arm/linux.mh: Likewise.
639 * config/i386/linux.mh: Likewise.
640 * config/i386/linux64.mh: Likewise.
641 * config/ia64/linux.mh: Likewise.
642 * config/m32r/linux.mh: Likewise.
643 * config/m68k/linux.mh: Likewise.
644 * config/mips/linux.mh: Likewise.
645 * config/pa/linux.mh: Likewise.
646 * config/powerpc/linux.mh: Likewise.
647 * config/powerpc/ppc64-linux.mh: Likewise.
648 * config/s390/s390.mh: Likewise.
649 * config/sparc/linux.mh: Likewise.
650 * config/sparc/linux64.mh: Likewise.
651 * config/xtensa/linux.mh: Likewise.
652 * configure.ac: New RDYNAMIC on native host and GCC.
653 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
654 * configure: Regenerate.
655 * proc-service.list: New.
656
657 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
658
659 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
660 CONTENT.
661
662 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
663
664 * linux-nat.c (linux_nat_wait_1): Do not call
665 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
666 TARGET_WAITKIND_SIGNALLED.
667
668 2010-05-27 Joel Brobecker <brobecker@adacore.com>
669
670 * ada-lang.c (ada_inferior_data): New struct.
671 (ada_inferior_data): New static global.
672 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
673 (ada_get_tsd_type): New functions.
674 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
675 to look the tsd type up.
676 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
677 event. Set ada_inferior_data.
678
679 2010-05-27 Pedro Alves <pedro@codesourcery.com>
680
681 * remote.c (unpack_varlen_hex): Remove forward declaration.
682 (remote_console_output): Make static, and add forward declaration.
683 * remote.h: Drop FIXME comment.
684 (unpack_varlen_hex): Declare.
685 (remote_console_output, remote_cisco_objfile_relocate)
686 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
687 Delete declarations.
688 * tracepoint.c: Include "remote.h".
689 (unpack_varlen_hex): Delete declaration.
690
691 2010-05-27 Tom Tromey <tromey@redhat.com>
692
693 * dwarf2loc.c (struct piece_closure) <refc>: New field.
694 (allocate_piece_closure): Initialize refc.
695 (copy_pieced_value_closure): Use refc.
696 (free_pieced_value_closure): Likewise.
697
698 2010-05-27 Tom Tromey <tromey@redhat.com>
699
700 * arm-tdep.c (push_stack_item): 'contents' now const.
701 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
702 value_contents_writeable. Introduce new temporary.
703
704 2010-05-27 Tom Tromey <tromey@redhat.com>
705
706 * findcmd.c (parse_find_args): Use value_contents, not
707 value_contents_raw.
708
709 2010-05-27 Tom Tromey <tromey@redhat.com>
710
711 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
712 const. Use value_contents, not value_contents_writeable.
713
714 2010-05-27 Joel Brobecker <brobecker@adacore.com>
715
716 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
717 by call to value_contents.
718
719 2010-05-27 Ozkan Sezer <sezeroz@gmail.com>
720
721 * MAINTAINERS: Add myself for write after approval privileges.
722
723 2010-05-26 Doug Evans <dje@google.com>
724
725 Allow python to find its files if moved from original location.
726 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
727 (GDB_AC_WITH_DIR): Call it.
728 * configure.ac: Define WITH_PYTHON_PATH if we can find the
729 python installation directory.
730 * config.in: Regenerate.
731 * configure: Regenerate.
732 * defs.h (python_libdir): Declare.
733 * main.c (python_libdir): Define.
734 (captured_main): Initialize python_libdir.
735 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
736 call Py_SetProgramName to make sure python can find its libraries
737 and modules.
738
739 * configure.ac: Try to use python's distutils to fetch compilation
740 parameters.
741 * configure: Regenerate.
742 * python/python-config.py: New file.
743
744 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
745
746 * ser-tcp.c (net_open): Check error return from socket() call by its
747 equality to -1 not by it being negative.
748 (net_close): Likewise.
749
750 2010-05-26 Pedro Alves <pedro@codesourcery.com>
751
752 * NEWS: Mention the `qRelocInsn' feature.
753 * gdbarch.sh (relocate_instruction): New.
754 * amd64-tdep.c (rip_relative_offset): New.
755 (append_insns): New.
756 (amd64_relocate_instruction): New.
757 (amd64_init_abi): Install it.
758 * i386-tdep.c (append_insns): New.
759 (i386_relocate_instruction): New.
760 (i386_gdbarch_init): Install it.
761 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
762 * gdbarch.h, gdbarch.c: Regenerate.
763
764 2010-05-26 Tom Tromey <tromey@redhat.com>
765
766 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
767 (struct dwarf2_loclist_baton) <data>: Likewise.
768 * dwarf2loc.c (find_location_expression): Constify return type.
769 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
770 (dwarf2_loc_desc_needs_frame): Likewise.
771 (loclist_read_variable): Constify.
772 (loclist_describe_location): Likewise.
773 (loclist_tracepoint_var_ref): Likewise.
774
775 2010-05-25 Tom Tromey <tromey@redhat.com>
776
777 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
778 (dwarf_expr_frame_base_1): Likewise.
779 (read_pieced_value): Update.
780 (needs_frame_frame_base): Constify.
781 (dwarf2_tracepoint_var_loc): Likewise.
782 (dwarf2_tracepoint_var_access): Likewise.
783 (locexpr_describe_location_piece): Likewise.
784 (locexpr_describe_location_1): Likewise.
785 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
786 Constify.
787 (data): Now const.
788 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
789 (dwarf_expr_eval, read_uleb128, read_sleb128)
790 (dwarf2_read_address): Update.
791 * dwarf2expr.c (dwarf_expr_eval): Constify.
792 (read_uleb128): Likewise.
793 (read_sleb128): Likewise.
794 (dwarf2_read_address): Likewise.
795 (require_composition): Likewise.
796 (execute_stack_op): Likewise.
797 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
798 "const gdb_byte *".
799 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
800 Now const.
801 (no_get_frame_base): Constify.
802 (execute_stack_op): Likewise.
803 (execute_cfa_program): Likewise.
804 (read_encoded_value): Likewise.
805
806 2010-05-25 Doug Evans <dje@google.com>
807
808 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
809
810 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
811 * event-loop.c: ... here.
812 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
813 `error' for clarity.
814 (tui_getc): Pass correct value for `error' parameter to
815 tui_readline_output.
816
817 Add python gdb.GdbError and gdb.string_to_argv.
818 * NEWS: Document them.
819 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
820 the exception is gdb.GdbError. Print a second traceback if there's
821 an error computing the error message.
822 (gdbpy_string_to_argv): New function.
823 * python/py-utils.c (gdbpy_obj_to_string): New function.
824 (gdbpy_exception_to_string): New function.
825 * python/python-internal.h (gdbpy_string_to_argv): Declare.
826 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
827 (gdbpy_gdberror_exc): Declare.
828 * python/python.c (gdbpy_gdberror_exc): New global.
829 (_initialize_python): Initialize gdbpy_gdberror_exc and create
830 gdb.GdbError.
831 (GdbMethods): Add string_to_argv.
832
833 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
834
835 * windows-nat.c (display_selector): Call GetLastError to give better
836 failure explanation.
837
838 2010-05-24 Pedro Alves <pedro@codesourcery.com>
839
840 * config.in: Regenerate.
841
842 2010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
843
844 Code cleanup.
845 * target.c (push_target): Return only void. Remove the return value
846 comment.
847 * target.h (push_target): Return only void.
848
849 2010-05-23 Pedro Alves <pedro@codesourcery.com>
850
851 Update gnulib from latest git.
852 (250b80067c1e1d8faa0c42fb572f721975b929c5)
853
854 * gnulib/memcmp.c: Removed.
855 * gnulib/memchr.valgrind: New.
856 * gnulib/stddef.in.h: New.
857 * gnulib/Makefile.am: Updated.
858 * gnulib/memchr.c: Updated.
859 * gnulib/memmem.c: Updated.
860 * gnulib/stdint.in.h: Updated.
861 * gnulib/str-two-way.h: Updated.
862 * gnulib/string.in.h: Updated.
863 * gnulib/wchar.in.h: Updated.
864
865 * gnulib/extra/link-warning.h: Removed.
866 * gnulib/extra/c++defs.h: New.
867 * gnulib/extra/warn-on-use.h: New.
868 * gnulib/extra/arg-nonnull.h: Updated.
869
870 * gnulib/m4/extensions.m4: Updated.
871 * gnulib/m4/gnulib-cache.m4: Updated.
872 * gnulib/m4/gnulib-common.m4: Updated.
873 * gnulib/m4/gnulib-comp.m4: Updated.
874 * gnulib/m4/gnulib-tool.m4: Updated.
875 * gnulib/m4/include_next.m4: Updated.
876 * gnulib/m4/longlong.m4: Updated.
877 * gnulib/m4/memchr.m4: Updated.
878 * gnulib/m4/memmem.m4: Updated.
879 * gnulib/m4/stdint.m4: Updated.
880 * gnulib/m4/string_h.m4: Updated.
881 * gnulib/m4/memcmp.m4: Removed.
882 * gnulib/m4/onceonly_2_57.m4: Removed.
883 * gnulib/m4/00gnulib.m4: New.
884 * gnulib/m4/mmap-anon.m4: New.
885 * gnulib/m4/multiarch.m4: New.
886 * gnulib/m4/onceonly.m4: New.
887 * gnulib/m4/stddef_h.m4: New.
888 * gnulib/m4/warn-on-use.m4: New.
889 * gnulib/m4/wchar.m4: Removed.
890 * gnulib/m4/wchar_h.m4: New.
891 * gnulib/m4/wchar_t.m4: New.
892 * gnulib/m4/wint_t.m4: New.
893
894 * aclocal.m4: Regenerate.
895 * config.in: Likewise.
896 * configure: Likewise.
897 * gnulib/Makefile.in: Likewise.
898
899 2010-05-21 Tom Tromey <tromey@redhat.com>
900
901 * dwarf2loc.c (extract_bits_primitive): New function.
902 (extract_bits): Likewise.
903 (insert_bits): Likewise.
904 (copy_bitwise): Likewise.
905 (read_pieced_value): Do all operations in bits.
906 (write_pieced_value): Likewise.
907 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
908 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
909 Always use xrealloc to resize piece array.
910 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
911 <DW_OP_piece>: Update.
912 <DW_OP_bit_piece>: New case.
913
914 2010-05-21 Tom Tromey <tromey@redhat.com>
915
916 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
917 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
918 * dwarf2expr.h (enum dwarf_value_location)
919 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
920 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
921 (add_piece): Handle empty piece.
922 (execute_stack_op) <DW_OP_piece>: Handle
923 DWARF_VALUE_OPTIMIZED_OUT.
924
925 2010-05-21 Tom Tromey <tromey@redhat.com>
926
927 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
928 evaluate_subexp, not evaluate_subexp_with_coercion.
929
930 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
931
932 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
933 attribute.
934
935 2010-05-21 Tom Tromey <tromey@redhat.com>
936
937 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
938 offset.
939 (write_pieced_value): Likewise.
940
941 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
942
943 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
944 and DW_TAG_volatile_type.
945 (new_symbol): Likewise.
946
947 2010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
948
949 * p-valprint.c (pascal_val_print): Call get_array_bounds
950 to obtain the number of elements in an array.
951
952 2010-05-19 Doug Evans <dje@google.com>
953
954 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
955
956 * python.c (source_python_script): Add comment.
957 (source_python_script_for_objfile): Remove unnecessary call to
958 gdbpy_print_stack.
959
960 2010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
961 Sergio Durigan Junior <sergiodj@redhat.com>
962
963 Code cleanup.
964 * parse.c (exp_iterate): Use operator_length wrapper function.
965
966 2010-05-18 Michael Snyder <msnyder@vmware.com>
967
968 * ada-lang.c: White space.
969 * ada-typeprint.c: White space.
970 * ada-valprint.c: White space.
971 * addrmap.c: White space.
972 * auxv.c: White space.
973 * ax-gdb.c: White space.
974
975 2010-05-18 Hui Zhu <teawater@gmail.com>
976
977 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
978 for oldfp.
979 (inferior_call_waitpid): Move make_cleanup out of check.
980 Check the return of waitpid.
981 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
982
983 2010-05-17 Michael Snyder <msnyder@vmware.com>
984
985 * tui/tui.c: White space.
986 * tui/tui-data.c: White space.
987 * tui/tui-disasm.c: White space.
988 * tui/tui-file.c: White space.
989 * tui/tui-interp.c: White space.
990 * tui/tui-main.c: White space.
991 * tui/tui-out.c: White space.
992 * tui/tui-regs.c: White space.
993 * tui/tui-source.c: White space.
994 * tui/tui-stack.c: White space.
995 * tui/tui-win.c: White space.
996 * tui/tui-winsource.c: White space.
997
998 * procfs.c: White space.
999
1000 * python/py-auto-load.c: White space.
1001 * python/py-block.c: White space.
1002 * python/py-breakpoint.c: White space.
1003 * python/py-cmd.c: White space.
1004 * python/py-function.c: White space.
1005 * python/py-lazy-string.c: White space.
1006 * python/py-objfile.c: White space.
1007 * python/py-param.c: White space.
1008 * python/py-prettyprint.c: White space.
1009 * python/py-progspace.c: White space.
1010 * python/py-symtab.c: White space.
1011 * python/python.c: White space.
1012 * python/py-type.c: White space.
1013 * python/py-utils.c: White space.
1014 * python/py-value.c: White space.
1015
1016 * mi/mi-cmd-break.c: White space.
1017 * mi/mi-cmd-env.c: White space.
1018 * mi/mi-cmds.c: White space.
1019 * mi/mi-cmd-stack.c: White space.
1020 * mi/mi-cmd-var.c: White space.
1021 * mi/mi-console.c: White space.
1022 * mi/mi-getopt.c: White space.
1023 * mi/mi-interp.c: White space.
1024 * mi/mi-main.c: White space.
1025 * mi/mi-out.c: White space.
1026 * mi/mi-parse.c: White space.
1027
1028 * cli/cli-cmds.c: White space.
1029 * cli/cli-decode.c: White space.
1030 * cli/cli-dump.c: White space.
1031 * cli/cli-interp.c: White space.
1032 * cli/cli-logging.c: White space.
1033 * cli/cli-script.c: White space.
1034 * cli/cli-setshow.c: White space.
1035
1036 * valarith.c: White space.
1037 * valops.c: White space.
1038 * valprint.c: White space.
1039 * value.c: White space.
1040 * varobj.c: White space.
1041 * xcoffread.c: White space.
1042 * xml-support.c: White space.
1043 * xml-tdesc.c: White space.
1044
1045 2010-05-17 Andreas Schwab <schwab@redhat.com>
1046
1047 PR gdb/11092
1048 * c-lang.c (c_printstr): Compute real length of NUL terminated
1049 string at first.
1050
1051 2010-05-17 Joel Brobecker <brobecker@adacore.com>
1052
1053 * parse.c (parse_exp_in_context): When block is not NULL, use
1054 its associated language to parse the expression instead of
1055 the current_language.
1056
1057 2010-05-17 Joel Brobecker <brobecker@adacore.com>
1058
1059 * jv-lang.c (java_lookup_class): Remove commented out code.
1060 (type_from_class): Likewise.
1061 (java_op_print_tab): Remove commented-out elements.
1062
1063 2010-05-17 Joel Brobecker <brobecker@adacore.com>
1064
1065 * ada-lang.c (to_fixed_range_type): The the raw index type as
1066 argument instead of the raw type name. Remove orig_type parameter.
1067 Update calls throughout.
1068 (ada_fixup_array_indexes_type): New function.
1069 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
1070 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
1071 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
1072 Remove name parameter.
1073 (print_array_type): Add call to ada_fixup_array_indexes_type.
1074 Update calls to print_range_type.
1075 (ada_print_type): Update calls to print_range_type.
1076
1077 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
1078
1079 * dwarf2read.c (read_set_type): Set type length if
1080 DW_AT_byte_size attribute is present.
1081
1082 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
1083
1084 * p-valprint.c (pascal_val_print): Handle set type if range limits
1085 are undefined but size is known.
1086
1087 2010-05-17 Pedro Alves <pedro@codesourcery.com>
1088
1089 * procfs.c: Reformat.
1090
1091 2010-05-16 Michael Snyder <msnyder@vmware.com>
1092
1093 * target.c: White space.
1094 * target-descriptions.c: White space.
1095 * target-memory.c: White space.
1096 * thread.c: White space.
1097 * top.c: White space.
1098 * tracepoint.c: White space.
1099 * trad-frame.c: White space.
1100 * tramp-frame.c: White space.
1101 * ui-file.c: White space.
1102 * ui-out.c: White space.
1103 * user-regs.c: White space.
1104 * utils.c: White space.
1105
1106 * scm-exp.c: White space.
1107 * scm-lang.c: White space.
1108 * scm-valprint.c: White space.
1109 * sentinel-frame.c: White space.
1110 * ser-base.c: White space.
1111 * ser-go32.c: White space.
1112 * serial.c: White space.
1113 * ser-mingw.c: White space.
1114 * ser-pipe.c: White space.
1115 * ser-tcp.c: White space.
1116 * ser-unix.c: White space.
1117 * solib.c: White space.
1118 * solib-darwin.c: White space.
1119 * solib-frv.c: White space.
1120 * solib-irix.c: White space.
1121 * solib-osf.c: White space.
1122 * solib-pa64.c: White space.
1123 * solib-som.c: White space.
1124 * solib-spu.c: White space.
1125 * solib-svr4.c: White space.
1126 * solib-target.c: White space.
1127 * source.c: White space.
1128 * stabsread.c: White space.
1129 * stack.c: White space.
1130 * std-regs.c: White space.
1131 * symfile.c: White space.
1132 * symmisc.c: White space.
1133 * symtab.c: White space.
1134
1135 2010-05-16 Michael Snyder <msnyder@vmware.com>
1136
1137 * source.c (_initialize_source): Add "rev" as an abbreviation
1138 for the "reverse-search" command.
1139
1140 2010-05-16 Michael Snyder <msnyder@vmware.com>
1141
1142 * record.c: White space.
1143 * regcache.c: White space.
1144 * reggroups.c: White space.
1145 * remote-fileio.c: White space.
1146 * remote-m32r-sdi.c: White space.
1147 * remote-mips.c: White space.
1148 * remote-sim.c: White space.
1149 * remote.c: White space.
1150 (process_g_packet): Remove orphan braces.
1151
1152 2010-05-15 Michael Snyder <msnyder@vmware.com>
1153
1154 * parse.c: White space.
1155 * p-lang.c: White space.
1156 * posix-hdep.c: White space.
1157 * printcmd.c: White space.
1158 * progspace.c: White space.
1159 * prologue-value.c: White space.
1160 * psymtab.c: White space.
1161 * p-typeprint.c: White space.
1162 * p-valprint.c: White space.
1163
1164 * objc-lang.c: White space.
1165 * objfiles.c: White space.
1166 * observer.c: White space.
1167 * osabi.c: White space.
1168 * osdata.c: White space.
1169
1170 * m2-lang.c: White space.
1171 * m2-valprint.c: White space.
1172 * macrocmd.c: White space.
1173 * macroexp.c: White space.
1174 * macroscope.c: White space.
1175 * macrotab.c: White space.
1176 * main.c: White space.
1177 * maint.c: White space.
1178 * mdebugread.c: White space.
1179 * memattr.c: White space.
1180 * minsyms.c: White space.
1181 * monitor.c: White space.
1182
1183 2010-05-14 Michael Snyder <msnyder@vmware.com>
1184
1185 * jv-lang.c: White space.
1186 * jv-typeprint.c: White space.
1187 * jv-valprint.c: White space.
1188 * language.c: White space.
1189 * libunwind-frame.c: White space.
1190 * linespec.c: White space.
1191 * linux-nat.c: White space.
1192 * linux-record.c: White space.
1193 * linux-thread-db.c: White space.
1194
1195 * infcall.c: White space.
1196 * inf-child.c: White space.
1197 * infcmd.c: White space.
1198 * inferior.c: White space.
1199 * inf-loop.c: White space.
1200 * inflow.c: White space.
1201 * inline-frame.c: White space.
1202 * interps.c: White space.
1203
1204 * gcore.c: White space.
1205 * gdb.c: White space.
1206 * gdbtypes.c: White space.
1207 * gnu-nat.c: White space.
1208 * gnu-v2-abi.c: White space.
1209 * gnu-v3-abi.c: White space.
1210
1211 * findcmd.c: White space.
1212 * findvar.c: White space.
1213 * fork-child.c: White space.
1214 * frame-base.c: White space.
1215 * frame.c: White space.
1216 * frame-unwind.c: White space.
1217 * f-valprint.c: White space.
1218
1219 * elfread.c: White space.
1220 * environ.c: White space.
1221 * eval.c: White space.
1222 * event-loop.c: White space.
1223 * event-top.c: White space.
1224 * exceptions.c: White space.
1225 * exec.c: White space.
1226 * expprint.c: White space.
1227
1228 * dbxread.c: White space.
1229 * dcache.c: White space.
1230 * disasm.c: White space.
1231 * doublest.c: White space.
1232 * dsrec.c: White space.
1233 * dummy-frame.c: White space.
1234 * dwarf2expr.c: White space.
1235 * dwarf2-frame.c: White space.
1236 * dwarf2loc.c: White space.
1237 * dwarf2read.c: White space.
1238
1239 2010-05-14 Phil Muldoon <pmuldoon@redhat.com>
1240
1241 PR python/11482
1242
1243 * python/py-value.c (valpy_hash): New function.
1244 (value_object_type): Register valpy_hash.
1245
1246 2010-05-14 Hui Zhu <teawater@gmail.com>
1247 Michael Snyder <msnyder@vmware.com>
1248
1249 * linux-fork.c (gdbthread.h): New include.
1250 (fork_info): Add parent_ptid.
1251 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
1252 functions.
1253 (delete_checkpoint_command): Call inferior_call_waitpid.
1254 (checkpoint_command): Set parent_ptid.
1255
1256 2010-05-13 Michael Snyder <msnyder@vmware.com>
1257
1258 * dictionary.c: Re-indent to GNU coding standard.
1259
1260 * charset.c: White space.
1261 * c-lang.c: White space.
1262 * cli-out.c: White space.
1263 * coffread.c: White space.
1264 * complaints.c: White space.
1265 * completer.c: White space.
1266 * corefile.c: White space.
1267 * corelow.c: White space.
1268 * cp-abi.c: White space.
1269 * cp-namespace.c: White space.
1270 * cp-support.c: White space.
1271 * cp-valprint.c: White space.
1272 * c-typeprint.c: White space.
1273 * c-valprint.c: White space.
1274 * blockframe.c: White space.
1275 * breakpoint.c: White space.
1276 * buildsym.c: White space.
1277 * blockframe.c: White space.
1278 * bcache.c: White space.
1279 * gdbarch.sh: White space, add blank lines.
1280 * arch-utils.c: Ditto.
1281 * gdbarch.c: Regenerate.
1282 * frame.c: White space, add blank lines.
1283 * stack.c: White space, add blank lines.
1284 (initialize_stack): Remove long-dead code.
1285
1286 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1287
1288 Code cleanup.
1289 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
1290 (locexpr_read_variable, loclist_read_variable): Update the callers.
1291
1292 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1293
1294 Code cleanup.
1295 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
1296 Remove check of NULL returned by tag_type_to_type.
1297 (die_containing_type): Remove variable type. Remove type_die variable
1298 initialization. Remove check of NULL returned by tag_type_to_type.
1299
1300 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
1301
1302 PR exp/11530.
1303 * gdbtypes.c (lookup_struct_elt_type): Also lookup
1304 names of unnamed structures or unions.
1305
1306 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
1307
1308 * procfs.c (proc_watchpoint_address): New function.
1309 (procfs_stopped_by_watchpoint): Remove useless check after
1310 find_procinfo_or_die call.
1311 (procfs_stopped_data_address): New function.
1312 (procfs_use_watchpoints): Register new watchpoint related function.
1313
1314 2010-05-11 Tom Tromey <tromey@redhat.com>
1315
1316 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
1317
1318 2010-05-10 Michael Snyder <msnyder@vmware.com>
1319
1320 * utils.c: White space cleanup.
1321
1322 2010-05-10 Tom Tromey <tromey@redhat.com>
1323
1324 * eval.c (ptrmath_type_p): Add 'lang' argument.
1325 (evaluate_subexp_standard): Update.
1326 (evaluate_subexp_with_coercion): Update.
1327 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
1328
1329 2010-05-10 Michael Snyder <msnyder@vmware.com>
1330
1331 * utils.c (do_fclose_cleanup) Restore local variable.
1332
1333 2010-05-09 Doug Evans <dje@google.com>
1334
1335 * record.c (init_record_core_ops): Rename record_core to record-core.
1336
1337 2010-05-08 Joel Brobecker <brobecker@adacore.com>
1338
1339 Implement task switching on pa-hpux.
1340 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
1341 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
1342
1343 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
1344
1345 * valops.c (find_overload_match): Add missing i18n markup.
1346
1347 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
1348
1349 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
1350
1351 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1352
1353 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
1354 list for the obconcat call.
1355 * mdebugread.c (parse_symbol): Likewise.
1356 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
1357 Likewise.
1358 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
1359 New variable ap. Remove variables len and val.
1360 * symfile.h (obconcat): Likewise for the prototype.
1361
1362 2010-05-07 Michael Snyder <msnyder@vmware.com>
1363
1364 * python/python.c (execute_gdb_command): Remove unused variables.
1365 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
1366 * python/py-breakpoint.c (gdbpy_breakpoint_created):
1367 Remove unused variable.
1368 * python/py-cmd.c (cmdpy_function): Remove unused variable.
1369 (cmdpy_completer): Remove unused variable.
1370 * python/py-frame.c (frapy_find_sal): Remove unused variable.
1371 * python/py-function.c (fnpy_call): Remove unused variable.
1372 * python/py-objfile.c (objfile_to_objfile_object):
1373 Remove unused variable.
1374 * python/py-param.c (parmpy_init): Remove unused variable.
1375 * python/py-prettyprint.c (apply_varobj_pretty_printer):
1376 Remove unused variable.
1377 (gdbpy_default_visualizer): Remove unused variable.
1378 * python/py-progspace.c (pspace_to_pspace_object):
1379 Remove unused variable.
1380 * python/py-symtab.c (symtab_and_line_to_sal_object):
1381 Remove unused variable.
1382 * python/py-type.c (typy_template_argument):
1383 Remove unused variable.
1384 * python/py-value.c (valpy_string): Remove unused variable.
1385 (convert_value_from_python): Remove unused variables.
1386
1387 2010-05-07 Michael Snyder <msnyder@vmware.com>
1388
1389 * valops.c (value_cast_pointers): Restore unused variable 'type1',
1390 and use it to compute variable 't1'.
1391
1392 2010-05-07 Joel Brobecker <brobecker@adacore.com>
1393
1394 * ada-lang.c (assign_aggregate): Remove unused variable.
1395
1396 2010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
1397
1398 PR C++/7943:
1399 * valops.c (find_overload_match): Handle fsym == NULL case.
1400 Add int no_adl argument.
1401 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
1402 when appropriate.
1403 Add int no_adl argument.
1404 (find_oload_champ_namespace): Add int no_adl argument.
1405 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
1406 expression.
1407 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
1408 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
1409 Evaluate arguments and use them to perform ADL lookup.
1410 Pass no_adl argument to find_overload_match.
1411 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
1412 * cp-support.h: Added prototype for
1413 make_symbol_overload_list_namespace.
1414 * cp-support.c (make_symbol_overload_list_namespace): New function.
1415 (make_symbol_overload_list_adl_namespace): New function.
1416 (make_symbol_overload_list_adl): New function.
1417 (make_symbol_overload_list_using): Moved code to add function to
1418 overload set to make_symbol_overload_list_namespace.
1419 * c-exp.y: create UNKNOWN_CPP_NAME token.
1420 Add parse rule for ADL functions.
1421 (classify_name): Recognize an UNKNOWN_CPP_NAME.
1422
1423 2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1424
1425 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
1426 sentinel.
1427
1428 2010-05-07 Joel Brobecker <brobecker@adacore.com>
1429
1430 Implement task switching on solaris targets.
1431 * sol-thread.c (thread_db_find_thread_from_tid)
1432 (sol_get_ada_task_ptid): New functions.
1433 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
1434
1435 2010-05-07 Pedro Alves <pedro@codesourcery.com>
1436
1437 * remote.c (remote_query_supported_append): Use reconcat.
1438 (remote_query_supported): Install a cleanup. Use reconcat.
1439
1440 2010-05-07 Pedro Alves <pedro@codesourcery.com>
1441
1442 * gdbarch.sh (qsupported): Delete.
1443 * gdbarch.h, gdbarch.c: Regenerate.
1444 * remote.c (remote_query_supported): Remove use of
1445 gdbarch_qsupported.
1446
1447 2010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
1448
1449 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
1450 function.
1451
1452 2010-05-06 Michael Snyder <msnyder@vmware.com>
1453
1454 * xml-support.c (xinclude_start_include): Delete unused variable.
1455 (xml_process_xincludes): Delete unused variable.
1456 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
1457 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
1458 (tdesc_find_arch_register): Delete unused variable.
1459 (tdesc_use_registers): Delete unused variable.
1460 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
1461 * inferior.c (print_inferior): Delete unused variable.
1462 * record.c (record_open_1): Delete unused variable.
1463 (record_restore): Delete unused variable.
1464 (cmd_record_save): Delete unused variable.
1465 * gcore.c (derive_heap_segment): Delete unused variable.
1466 (objfile_find_memory_regions): Use unused variable.
1467 * jit.c (jit_inferior_init): Delete unused variable.
1468 * progspace.c (clone_program_space): Delete unused variable.
1469 (pspace_empty_p): Delete unused variable.
1470
1471 * frame-unwind.c (frame_unwind_find_by_frame):
1472 Delete unused variable.
1473 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
1474 * cp-support.c (mangled_name_to_comp): Delete unused variable.
1475 (method_name_from_physname): Delete unused variable.
1476 (cp_func_name): Delete unused variable.
1477 (cp_validate_operator): Delete unused variable.
1478 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
1479 Delete unused variable.
1480 * trad-frame.c (trad_frame_get_prev_register):
1481 Delete unused variable.
1482 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
1483
1484 * serial.c (serial_for_fd): Delete unused variable.
1485 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
1486 * top.c (execute_command): Delete unused variable.
1487 (init_main): Delete unused variable.
1488 * utils.c (do_fclose_cleanup): Delete unused variable.
1489 (do_all_inferior_continuations): Delete unused variable.
1490 (initialize_utils): Delete unused variable.
1491 (internal_problem_mode): Delete unused global.
1492 * frame.c (get_prev_frame): Delete unused global.
1493 (get_frame_locals_address): Delete unused global.
1494 (get_frame_args_address): Delete unused global.
1495
1496 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
1497 (pascal_type_print_varspec_prefix): Delete unused variable.
1498 * f-typeprint.c (f_type_print_base): Delete unused variable.
1499 (f_type_print_varspec_suffix): Delete unused variable.
1500 * m2-typeprint.c (m2_print_type): Delete unused variable.
1501 (m2_long_set): Delete unused variable.
1502 * ada-valprint.c (ada_val_print_1): Delete unused variable.
1503 * d-valprint.c (dynamic_array_type): Delete unused variable.
1504 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
1505 Delete unused variable.
1506 (f77_create_arrayprint_offset_tbl): Delete unused variable.
1507 * m2-valprint.c (m2_val_print): Delete unused variable.
1508
1509 * ui-out.c (ui_out_field_int): Delete unused variable.
1510 (ui_out_field_fmt_int): Delete unused variable.
1511 * varobj.c (varobj_list_children): Delete unused variable.
1512 (varobj_set_value): Delete unused variable.
1513 (install_new_value_visualizer): Delete unused variable.
1514 (varobj_set_visualizer): Delete unused variable.
1515 (varobj_update): Delete unused variable.
1516 (varobj_editable_p): Delete unused variable.
1517 (c_value_of_root): Delete unused variable.
1518 (cplus_describe_child): Delete unused variable.
1519
1520 * ada-lang.c (add_defn_to_vec): Delete unused variable.
1521 (decode_constrained_packed_array_type): Delete unused variable.
1522 (add_defn_to_vec): Delete unused variable.
1523 (symbol_completion_match): Delete unused variable.
1524 (value_tag_from_contents_and_address): Delete unused variable.
1525 (ada_evaluate_subexp): Delete unused variable.
1526 * c-lang.c (classify_type): Delete unused variable.
1527 * f-lang.c (f_printstr): Delete unused variable.
1528 * objc-lang.c (objc_printstr): Delete unused variable.
1529 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
1530 * jv-lang.c (type_from_class): ifdef unused variable.
1531 (java_class_name_from_physname): Delete unused variable.
1532 * m2-lang.c (m2_printstr): Delete unused variable.
1533
1534 * objfiles.c (objfile_relocate): Delete unused variable.
1535 * maint.c (_initialize_maint_cmds): Delete unused variable.
1536 * demangle.c (_initialize_demangler): Delete unused variable.
1537 * corefile.c (reopen_exec_file): Delete unused variable.
1538 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
1539 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
1540
1541 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
1542 * memattr.c (mem_delete): Delete unused variable.
1543 (invalidate_target_mem_regions): Delete unused variable.
1544 * mem-break.c (default_memory_insert_breakpoint):
1545 Delete unused variable.
1546 * target.c (target_get_osdata): Delete unused variable.
1547 * parse.c (length_of_subexp): Delete unused variable.
1548 (prefixify_subexp): Delete unused variable.
1549 (exp_iterate): Delete unused variable.
1550 * reverse.c (delete_bookmark_command): Delete unused variable.
1551
1552 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
1553 * macroexp.c (gather_arguments): Delete unused variable.
1554 (substitute_args): Delete unused variable.
1555 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
1556 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
1557 (_initialize_gdbarch): Delete unused variable.
1558 * gdbarch.c, gdbarch.h: Regenerate.
1559 * arch-utils.c (initialize_current_architecture):
1560 Delete unused variable.
1561 (_initialize_gdbarch_utils): Delete unused variable.
1562 * gdbtypes.c (make_cv_type): Delete unused variable.
1563 (make_type_with_address_space): Delete unused variable.
1564
1565 * linespec.c (decode_compound): Delete unused variable.
1566 * dictionary.c (iterator_next_hashed): Delete unused variable.
1567 * infcall.c (call_function_by_hand): Delete unused variable.
1568 * infcmd.c (step_1): Delete unused variable.
1569 (registers_info): Delete unused variable.
1570 (attach_command): Delete unused variable.
1571 * infrun.c (follow_exec): Delete unused variable.
1572 (handle_step_into_function_backwards): Delete unused variable.
1573 (_initialize_infrun): Delete unused variable.
1574 * stack.c (parse_frame_specification_1): Delete unused variable.
1575 (frame_info): Delete unused variable.
1576 (backtrace_command_1): Delete unused variable.
1577 (catch_info): Delete unused variable.
1578
1579 * eval.c (evaluate_subexp_standard): Delete unused variable.
1580 * valops.c (value_cast_pointers): Delete unused variable.
1581 (value_dynamic_cast): Delete unused variable.
1582 (value_array): Delete unused variable.
1583 (find_overload_match): Delete unused variable.
1584 * valarith.c (value_subscript): Delete unused variable.
1585 (value_binop): Delete unused variable.
1586 * valprint.c (_initialize_valprint): Delete unused variable.
1587 * printcmd.c (print_command_1): Delete unused variable.
1588 (address_info): Delete unused variable.
1589 (printf_command): Delete unused variable.
1590
1591 * auxv.c (target_auxv_search): Delete unused variable.
1592 * blockframe.c (get_frame_block): Delete unused variable.
1593 * regcache.c (regcache_cpy): Delete unused variable.
1594 (regcache_cpy_no_passthrough): Delete unused variable.
1595 * charset.c (wchar_iterate): Delete unused variable.
1596 (find_charset_names): Delete unused variable.
1597 (_initialize_charset): Delete unused variable.
1598 * disasm.c (do_mixed_source_and_assembly):
1599 Delete unused variable.
1600 * source.c (set_default_source_symtab_and_line):
1601 Delete unused variable.
1602 (set_substitute_path_command): Delete unused variable.
1603 * value.c (preserve_values): Delete unused variable.
1604 (value_from_double): Delete unused variable.
1605
1606 2010-05-05 Michael Snyder <msnyder@vmware.com>
1607
1608 * psymtab.c (lookup_partial_symbol): Delete unused variable.
1609 (find_last_source_symtab_from_partial): Delete unused variable.
1610 * symfile.c (place_section): Delete unused variable.
1611 (default_symfile_offsets): Delete unused variable.
1612 (get_debug_link_info): Delete unused variable.
1613 (find_separate_debug_file_by_debuglink): Delete unused variable.
1614 (add_symbol_file_command): Delete unused variable.
1615 (symfile_find_segment_sections): Delete unused variable.
1616 * symmisc.c (free_symtab): Delete unused variable.
1617 (dump_symtab_1): Delete unused variable.
1618 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
1619 (find_pc_sect_symtab): Delete unused variable.
1620 (skip_prologue_using_lineinfo): Delete unused variable.
1621 (sources_info): Delete unused variable.
1622 (completion_list_add_name): Delete unused variable.
1623 (expand_line_sal): Delete unused variable.
1624
1625 * breakpoint.c (validate_commands_for_breakpoint):
1626 Delete unused variables.
1627 (insert_catchpoint): Delete unused variable.
1628 (update_watchpoint): Delete unused variable.
1629 (insert_bp_location): Delete unused variable.
1630 (insert_breakpoint_locations): Delete unused variable.
1631 (remove_breakpoint_1): Delete unused variable.
1632 (software_breakpoint_inserted_here_p): Delete unused variable.
1633 (watchpoints_triggered): Delete unused variable.
1634 (bpstat_check_watchpoint): Delete unused variable.
1635 (bpstat_stop_status): Delete unused variable.
1636 (print_one_breakpoint_location): Delete unused variable.
1637 (allocate_bp_location): Delete unused variable.
1638 (create_breakpoint): Delete unused variable.
1639 (watch_command_1): Delete unused variable.
1640 (catch_exception_command_1): Delete unused variable.
1641 (catch_ada_exception_command): Delete unused variable.
1642 (delete_breakpoint): Delete unused variable.
1643 (breakpoint_re_set_one): Delete unused variable.
1644 (do_enable_breakpoint): Delete unused variable.
1645
1646 2010-05-06 Pedro Alves <pedro@codesourcery.com>
1647
1648 * amd64-tdep.c: Include disasm.h.
1649 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
1650 (amd64_insn_length): Moved to disasm.c and renamed.
1651 (fixup_riprel): Adjust.
1652 * disasm.c (do_ui_file_delete): New.
1653 (gdb_insn_length): New.
1654 (gdb_buffered_insn_length_fprintf)
1655 (gdb_buffered_insn_length_init_dis)
1656 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
1657 renamed.
1658 * disasm.h (gdb_insn_length): Declare.
1659 (gdb_buffered_insn_length): Declare.
1660
1661 2010-05-06 Pedro Alves <pedro@codesourcery.com>
1662
1663 * remote.c (clear_threads_parsing_context): New.
1664 (remote_threads_info): Delete unused null_cleanup. Install a
1665 cleanup to clear the threads_parsing_context in case parsing
1666 throws.
1667
1668 2010-05-05 Michael Snyder <msnyder@vmware.com>
1669
1670 * c-exp.y (parse_string_or_char): Delete unused variable.
1671 (c_lex): Delete unused variable.
1672 * cp-name-parser.y (cpname_lex): Delete unused variable.
1673 * ada-exp.y (find_primitive_type): Delete unused variable.
1674 (write_var_or_type): Delete unused variable.
1675 * jv-exp.y (java_parse): Delete unused variable.
1676 (push_expression_name): Delete unused variable.
1677 * p-exp.y (pascal_lex): Delete unused variable.
1678
1679 2010-05-05 Pedro Alves <pedro@codesourcery.com>
1680
1681 * remote.c (remote_threads_info): Really revert previous previous
1682 change.
1683
1684 2010-05-05 Michael Snyder <msnyder@vmware.com>
1685
1686 * elfread.c (elf_symtab_read): Delete unused variable.
1687 (find_separate_debug_file_by_buildid): Delete unused variables.
1688 (elf_symfile_read): Delete unused variable.
1689
1690 * coffread.c (coff_symfile_read): Delete unused variables.
1691
1692 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
1693 (read_pe_exported_syms): Delete unused variable.
1694
1695 * stabsread.c (define_symbol): Delete unused variable.
1696
1697 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
1698 (process_psymtab_comp_unit): Delete unused variable.
1699 (dwarf2_build_psymtabs_hard): Delete unused variable.
1700 (load_partial_comp_unit): Delete unused variable.
1701 (create_all_comp_units): Delete unused variable.
1702 (scan_partial_symbols): Delete unused variable.
1703 (add_partial_symbol): Delete unused variable.
1704 (add_partial_namespace): Delete unused variable.
1705 (add_partial_enumeration): Delete unused variable.
1706 (load_full_comp_unit): Delete unused variable.
1707 (process_full_comp_unit): Delete unused variable.
1708 (read_file_scope): Delete unused variable.
1709 (read_type_unit_scope): Delete unused variable.
1710 (process_structure_scope): Delete unused variable.
1711 (process_enumeration_scope): Delete unused variable.
1712 (read_tag_ptr_to_member_type): Delete unused variable.
1713 (read_typedef): Delete unused variable.
1714 (read_partial_die): Delete unused variable.
1715 (decode_locdesc): Delete unused variable.
1716 (zeroed_partial_die): Delete unused global variable.
1717
1718 * tui/tui-interp.c (_initialize_tui_interp):
1719 Delete unused variable.
1720 * tui/tui-regs.c tui_display_registers_from):
1721 Delete unused variable.
1722 (tui_check_register_values): Delete unused variable.
1723 (tui_register_format): Delete unused variable.
1724 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
1725 * tui/tui-windata.c (tui_display_data_from_line):
1726 Delete unused variables.
1727 (tui_vertical_data_scroll): Delete unused variables.
1728
1729 2010-05-05 Michael Snyder <msnyder@vmware.com>
1730
1731 * remote.c (remote_threads_info): Revert questionable part of
1732 the previous change.
1733
1734 2010-05-05 Michael Snyder <msnyder@vmware.com>
1735
1736 * mi/mi-out.c (mi_table_begin): Delete unused variable.
1737 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
1738 (mi_cmd_var_list_children): Delete unused variable.
1739 (varobj_update_one): Delete unused variable.
1740 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
1741 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
1742 Delete unused variable.
1743 (mi_cmd_stack_list_variables): Delete unused variable.
1744 (list_args_or_locals): Delete unused variable.
1745 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
1746 Delete unused variables.
1747 (mi_cmd_file_list_exec_source_files): Delete unused variable.
1748 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
1749 Delete unused variable.
1750 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
1751 (mi_cmd_interpreter_exec): Delete unused variable.
1752 (mi_on_normal_stop): Delete unused variable.
1753 * mi/mi-main.c (run_one_inferior): Delete unused variable.
1754 (print_one_inferior): Delete unused variables.
1755 (mi_execute_command): Delete unused variable.
1756 (mi_cmd_execute): Delete unused variable.
1757 (timestamp): Delete unused variable.
1758
1759 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
1760 (restore_binary_file): Delete unused variable.
1761 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
1762 * cli/cli-script.c (define_command): Delete unused variables.
1763 (recurse_read_control_structure): Delete unused variable.
1764 (script_from_file): Delete unused variable.
1765 * cli/cli-cmds.c (complete_command): Delete unused variable.
1766 (disassemble_command): Delete unused variable.
1767
1768 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
1769 * tracepoint.c (delete_trace_variable_command):
1770 Delete unused variables.
1771 (encode_actions_1): Delete unused variables.
1772 (start_tracing): Delete unused variable.
1773 (trace_status_mi): Delete unused variable.
1774 (tfind_1): Delete unused variable.
1775 (trace_find_pc_command): Delete unused variable.
1776 (trace_find_line_command): Delete unused variables.
1777 (trace_find_range_command): Delete unused variables.
1778 (trace_find_outside_command): Delete unused variables.
1779 (parse_tracepoint_definition): Delete unused variables.
1780 (tfile_fetch_registers): Delete unused variable.
1781
1782 * dcache.c (dcache_init): Delete unused variable.
1783 (dcache_info): Delete unused variable.
1784
1785 * remote.c (remote_threads_info): Delete unused variable.
1786 (process_stop_reply) :Delete unused variable.
1787 (remote_get_trace_status): Delete unused variables.
1788
1789 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
1790 (thread_from_lwp): Delete unused variable.
1791 (enable_thread_event_reporting): Delete unused variable.
1792 (check_for_thread_db): Delete unused variables.
1793 (thread_db_find_new_threads_2): Delete unused variable.
1794
1795 * linux-fork.c (info_checkpoints_command): Delete unused variables.
1796 (checkpoint_command): Delete unused variable.
1797 (linux_fork_context): Delete unused variables.
1798
1799 * linux-nat.c (linux_parent_pid): Delete unused global variable.
1800 (linux_tracefork_child): Delete unused variable.
1801 (linux_child_follow_fork): Delete unused variable.
1802 (linux_nat_detach): Delete unused variable.
1803 (linux_handle_extended_wait): Delete unused variable.
1804 (linux_nat_has_pending_sigint): Delete unused variable.
1805 (linux_nat_find_memory_regions): Delete unused variable.
1806 (linux_nat_make_corefile_notes): Delete unused variables.
1807 (linux_nat_info_proc_cmd): Delete unused variable.
1808 (linux_proc_pending_signals): Delete unused variable.
1809 (linux_nat_stop_lwp): Delete unused variables.
1810 (_initialize_linux_nat): Delete unused variable.
1811
1812 * ser-pipe.c (pipe_ops): Delete unused global variable.
1813
1814 * linux-record.c (record_linux_system_call):
1815 Delete unused variables.
1816
1817 * corelow.c (core_xfer_partial): Delete unused variables.
1818
1819 * solib-svr4.c (find_program_interpreter): Delete unused variable.
1820 (svr4_solib_create_inferior_hook): Add ifdef around
1821 conditionally-used variable declarations.
1822
1823 * solib.c (solib_find): Delete unused variable.
1824 (free_so_symbols): Delete unused variable.
1825 (info_sharedlibrary_command): Delete unused variable.
1826 (reload_shared_libraries_1): Delete unused variable.
1827 (_initialize_solib): Delete unused variable.
1828
1829 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
1830 (i386_collect_xstateregset): Delete unused variable.
1831 * i387-tdep.c (i387_print_float_info): Delete unused variable.
1832
1833 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
1834 Delete unused variable 'type'.
1835
1836 2010-05-05 Joel Brobecker <brobecker@adacore.com>
1837
1838 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
1839 ada-lang.c: Remove comment mentioning these macros.
1840 * m2-exp.y: Delete commented out code.
1841
1842 2010-05-05 Joel Brobecker <brobecker@adacore.com>
1843
1844 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
1845 for array types.
1846 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
1847
1848 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
1849
1850 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
1851 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
1852 ATTRIBUTE_UNUSED.
1853 (cleanup_kernel_helper_return): Likewise.
1854 * arm-tdep.c (copy_unmodified): Likewise.
1855 (copy_preload): Likewise.
1856 (copy_copro_load_store): Likewise.
1857 (cleanup_branch): Likewise.
1858 (copy_b_bl_blx): Likewise.
1859 (copy_bx_blx_reg): Likewise.
1860 (copy_alu_imm): Likewise.
1861 (copy_alu_reg): Likewise.
1862 (copy_alu_shifted_reg): Likewise.
1863 (cleanup_load): Likewise.
1864 (cleanup_store): Likewise.
1865 (cleanup_block_load_pc): Likewise.
1866 (cleanup_svc): Likewise.
1867 (copy_undef): Likewise.
1868 (copy_unpred): Likewise.
1869 * remote.c (register_remote_support_xml): Likewise.
1870
1871 2010-05-05 Hui Zhu <teawater@gmail.com>
1872
1873 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
1874
1875 2010-05-04 Mark Kettenis <kettenis@gnu.org>
1876
1877 * remote.c (register_remote_support_xml)
1878 (remote_query_supported_append, remote_query_supported): Add cast
1879 to NULL used as sentinel.
1880 * tracepoint.c (tvariables_info_1): Likewise.
1881 * utils.c (add_internal_problem_command): Likewise.
1882
1883 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1884
1885 * dwarf2loc.c (read_pieced_value, write_pieced_value,
1886 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
1887 registers gracefully.
1888
1889 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1890
1891 * exec.c (print_section_info): Display entry point without arch
1892 specific parts.
1893
1894 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
1895
1896 PR exp/11349.
1897 * printcmd.c (x_command): Only dereference once implicitly for
1898 TYPE_CODE_REF.
1899
1900 2010-05-03 Doug Evans <dje@google.com>
1901
1902 * event-loop.c (gdb_timer): Delete unused global.
1903 (create_timer): Update.
1904
1905 2010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1906
1907 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
1908 CURRENT->DECLARATION case.
1909 * cp-support.h (struct using_direct): Provide extended comment.
1910
1911 2010-05-03 Mark Kettenis <kettenis@gnu.org>
1912
1913 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
1914 HPPABSD_SIZEOF_GREGS.
1915 (HPPAOBSD_SIZEOF_FPREGS): New define.
1916 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
1917 (hppaobsd_supply_fpregset): New function.
1918 (hppaobsd_gregset): Renamed from hppabsd_gregset.
1919 (hppaobsd_fpregset): New variable.
1920 (hppaobsd_regset_from_core_section): Handle floating-point registers.
1921 (_initialize_hppabsd_tdep): Remove spurious blank line.
1922
1923 2010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
1924
1925 PR pascal/11349.
1926 * p-valprint.c (pascal_value_print): Always dereference a value with
1927 type code TYPE_CODE_REF.
1928
1929 2010-05-03 Pedro Alves <pedro@codesourcery.com>
1930
1931 * remote.c (remote_notice_signals): New.
1932 (remote_start_remote): In non-stop mode, update the remote end on
1933 which signals it can silently pass.
1934 (init_remote_ops): Install remote_notice_signals.
1935
1936 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1937
1938 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
1939 * command.h (error_no_arg): ... here. Remove NORETURN, change
1940 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1941 * defs.h (NORETURN, ATTR_NORETURN): Remove.
1942 (perror_with_name, verror, error, error_stream, vfatal, fatal)
1943 (internal_verror, internal_error, nomem): Remove NORETURN, change
1944 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1945 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
1946 (throw_vfatal, throw_error): Remove NORETURN.
1947 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
1948 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
1949 (throw_error, deprecated_throw_reason): Remove NORETURN, change
1950 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1951 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
1952 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
1953 NORETURN.
1954 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
1955 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
1956 ATTRIBUTE_NORETURN.
1957 * target.c (tcomplain): Likewise.
1958 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
1959 ATTRIBUTE_NORETURN.
1960 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
1961 (internal_error, perror_with_name, nomem): Remove NORETURN.
1962 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
1963 ATTRIBUTE_NORETURN.
1964
1965 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1966
1967 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1968 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
1969 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
1970 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1971 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
1972 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1973 * complaints.h (complaint, internal_complaint): Likewise.
1974 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
1975 (ATTR_FORMAT): Remove.
1976 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
1977 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
1978 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
1979 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
1980 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
1981 (internal_error, internal_vwarning, internal_warning, warning)
1982 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1983 * disasm.c (fprintf_disasm): Likewise.
1984 * exceptions.c (throw_it): Likewise.
1985 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
1986 (throw_error): Likewise.
1987 * language.h (type_error, range_error): Likewise.
1988 * linespec.c (cplusplus_error): Likewise.
1989 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
1990 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
1991 * monitor.c (monitor_debug): Likewise.
1992 * parser-defs.h (parser_fprintf): Likewise.
1993 * serial.h (serial_printf): Likewise.
1994 * tui/tui-hooks.c (tui_query_hook): Likewise.
1995 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
1996 (uo_message): Likewise.
1997 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
1998 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
1999 Likewise.
2000 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
2001
2002 2010-05-02 Pedro Alves <pedro@codesourcery.com>
2003
2004 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
2005 (cli_table_header, cli_begin, cli_end, cli_field_int)
2006 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
2007 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
2008 Delete forward declarations.
2009 (cli_ui_out_impl): Move below the callbacks.
2010 (_initialize_cli_out): Delete.
2011
2012 2010-05-02 Pedro Alves <pedro@codesourcery.com>
2013
2014 * README: Use consistent `GDB' and `GDBserver' spellings.
2015
2016 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2017
2018 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
2019
2020 2010-05-01 Pedro Alves <pedro@codesourcery.com>
2021
2022 * infrun.c (prepare_for_detach): In non-stop, context switch to
2023 the thread that got the event before handling the event.
2024
2025 2010-04-30 Tom Tromey <tromey@redhat.com>
2026
2027 * symtab.c (symbol_set_names): Fix typo.
2028
2029 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
2030
2031 * python/py-param.c (parm_constants): Avoid ARI warning
2032 by adding ARI comment.
2033 (parmpy_init): Likewise.
2034
2035 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
2036
2037 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
2038 and created type for re-use.
2039
2040 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
2041
2042 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
2043
2044 2010-04-29 Doug Evans <dje@google.com>
2045
2046 * ser-base.h (reschedule): Delete prototype.
2047 * ser-base.c (reschedule): Make static.
2048
2049 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
2050
2051 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
2052 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
2053 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
2054 EABI.
2055 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
2056 use.
2057
2058 2010-04-29 Pedro Alves <pedro@codesourcery.com>
2059
2060 PR gdb/11557
2061
2062 * regcache.c (registers_changed): Rename to ...
2063 (registers_changed_ptid): ... this, and only delete register cache
2064 entries matching the ptid filter argument.
2065 (registers_changed): Reimplement on top of registers_changed_ptid.
2066 * regcache.h (registers_changed_ptid): Declare.
2067 * target.c (target_resume): Flush register caches.
2068
2069 2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
2070 Tom Tromey <tromey@redhat.com>
2071 Thiago Jung Bauermann <bauerman@br.ibm.com>
2072
2073 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
2074 (SUBDIR_PYTHON_SRCS): Likewise.
2075 (py-parameter.o): New rule.
2076 * python/py-parameter.c: New file.
2077 * python/python-internal.h (gdbpy_initialize_parameter)
2078 (gdbpy_parameter, gdbpy_parameter_value)
2079 (gdbpy_parse_command_name): Declare.
2080 * python/py-cmd.c (parse_command_name): Rename to
2081 gdbpy_parse_command_name.
2082 (gdbpy_parse_command_name): Accept a starting list parameter and
2083 use over cmdlist.
2084 (cmdpy_init): Use gdbpy_parse_command_name.
2085 * python/python.c (parameter_to_python): Rename to
2086 gdbpy_parameter_to_python. Accept enum var_types and value.
2087 (gdbpy_parameter): Use gdbpy_parameter_value.
2088 (_initialize_python): Call gdbpy_initialize_parameters.
2089
2090 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
2091
2092 * MAINTAINERS: Add myself for write after approval privileges.
2093
2094 2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
2095
2096 D language support.
2097 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
2098 (COMMON_OBS): Add d-lang.o d-valprint.o.
2099 (HFILES_NO_SRCDIR): Add d-lang.h.
2100 * NEWS: Mention D language support.
2101 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
2102 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
2103 * d-lang.c: New file.
2104 * d-lang.h: New file.
2105 * d-valprint.c: New file.
2106 * defs.h (enum language): Add language_d.
2107 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
2108 * language.c (binop_result_type, integral_type, character_type)
2109 (string_type, boolean_type, structured_type): Add language_d.
2110 * symfile.c (init_filename_language_table): Add language_d.
2111 * symtab.c: Include d-lang.h.
2112 (symbol_init_language_specific, symbol_find_demangled_name)
2113 (symbol_natural_name, lookup_symbol_in_language)
2114 (symbol_demangled_name, symbol_matches_domain): Add language_d.
2115
2116 2010-04-27 Joel Brobecker <brobecker@adacore.com>
2117
2118 * solib-svr4.c (solib_svr4_r_map): Expand function description.
2119
2120 2010-04-27 Joel Brobecker <brobecker@adacore.com>
2121
2122 * symfile.c (init_filename_language_table): Register .dg files
2123 with language_ada.
2124
2125 2010-04-27 Joel Brobecker <brobecker@adacore.com>
2126
2127 * gdbtypes.h (struct main_type): Expand comment about target_type
2128 field.
2129
2130 2010-04-27 Pedro Alves <pedro@codesourcery.com>
2131 Tristan Gingold <gingold@adacore.com>
2132
2133 * symfile.c (reread_symbols): Also search for file in libraries.
2134 Update comment.
2135
2136 2010-04-27 Joel Brobecker <brobecker@adacore.com>
2137
2138 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
2139 in terms of configuration.
2140
2141 2010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2142
2143 * objfiles.c: Include solist.h.
2144 (free_all_objfiles): New variable so. Check stale solist objfiles.
2145 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
2146 and no_shared_libraries.
2147
2148 2010-04-27 Joel Brobecker <brobecker@adacore.com>
2149
2150 ARI warning fix.
2151 * python/py-auto-load.c (source_section_scripts): Remove trailing
2152 new-line in i18n string.
2153
2154 2010-04-26 Doug Evans <dje@google.com>
2155
2156 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
2157
2158 2010-04-26 Tom Tromey <tromey@redhat.com>
2159
2160 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
2161 command list.
2162
2163 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
2164
2165 Removal of config/i386/nm-i386sol2.h native configuration file.
2166 * config/i386/nm-i386sol2.h: Remove file.
2167 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
2168 * config/i386/sol2-64.mh: Idem.
2169 * config/djgpp/fnchange.lst: Remove reference to that file.
2170 * Makefile.in (HFILES_NO_SRCDIR): Idem.
2171
2172 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
2173
2174 PR breakpoints/11531.
2175 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
2176 macro definition and related comment.
2177 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
2178 (resume): Remove code and comment related to this macro.
2179
2180 2010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2181
2182 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
2183 Fix whitespace.
2184
2185 2010-04-24 Pedro Alves <pedro@codesourcery.com>
2186
2187 * defs.h: Adjust comment.
2188 * filesystem.h, filesystem.c: New files.
2189 * Makefile.in (SFILES): Add filesystem.c.
2190 (COMMON_OBS): Add filesystem.o.
2191 * solib.c (solib_find): Handle DOS-based filesystems. Handle
2192 different target and host path flavours.
2193 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
2194 has_dos_based_file_system on the gdbarch.
2195 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
2196 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
2197 * i386-tdep.c (i386_go32_init_abi): Ditto.
2198 * gdbarch.sh (has_dos_based_file_system): New.
2199 * gdbarch.h, gdbarch.c: Regenerate.
2200 * NEWS: Mention improved support for remote targets with DOS-based
2201 filesystems. Mention new `set/show target-file-system-kind'
2202 commands.
2203
2204 2010-04-23 Stan Shebs <stan@codesourcery.com>
2205
2206 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
2207 comments.
2208 (struct agent_reqs): Remove.
2209 (ax_reg_mask): Declare.
2210 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
2211 (free_agent_expr): Free reg_mask.
2212 (ax_print): Add scope and register mask info.
2213 (ax_reqs): Remove agent_reqs argument, use agent expression
2214 fields, and move part of register mask computation to...
2215 (ax_reg_mask): New function.
2216 * ax-gdb.c (gen_trace_static_fields): Call it.
2217 (gen_traced_pop): Ditto.
2218 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
2219 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
2220 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
2221 (gen_eval_for_expr): Ditto, and require an rvalue.
2222 (agent_command): Call ax_reqs.
2223 (agent_eval_command): Ditto.
2224 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
2225 (validate_action_line): Ditto.
2226 (collect_symbol): Ditto.
2227 (encode_actions_1): Ditto.
2228
2229 2010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
2230 Paul Pluzhnikov <ppluzhnikov@google.com>
2231 Jan Kratochvil <jan.kratochvil@redhat.com>
2232
2233 Fix deadlock on looped list of loaded shared objects.
2234 * solib-svr4.c (LM_PREV): New function.
2235 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
2236 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
2237 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
2238 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
2239
2240 2010-04-23 Doug Evans <dje@google.com>
2241
2242 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
2243 python.
2244 * configure: Regenerate.
2245 * main.c: #include "python/python.h".
2246 (captured_main): Defer loading auto-loaded scripts until after
2247 local_gdbinit has been sourced.
2248 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
2249 (load_auto_scripts_for_objfile): New function.
2250 (auto_load_new_objfile): Call it.
2251 * python/python.h (gdbpy_global_auto_load): Declare.
2252 (load_auto_scripts_for_objfile): Declare.
2253
2254 Add support for auto-loading scripts from .debug_gdb_scripts section.
2255 * NEWS: Add entry for .debug_gdb_scripts.
2256 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
2257 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
2258 (py-auto-load.o): New rule.
2259 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
2260 * cli/cli-cmds.h (find_and_open_script): Update prototype.
2261 * python/py-auto-load.c: New file.
2262 * python/python-internal.h: #include <stdio.h>.
2263 (set_python_list, show_python_list): Declare.
2264 (gdbpy_initialize_auto_load): Declare.
2265 (source_python_script_for_objfile): Declare.
2266 * python/python.c: Remove #include of observer.h.
2267 (gdbpy_auto_load): Moved to py-auto-load.c.
2268 (GDBPY_AUTO_FILENAME): Ditto.
2269 (gdbpy_new_objfile): Delete.
2270 (source_python_script_for_objfile): New function.
2271 (set_python_list, show_python_list): Make externally visible.
2272 (_initialize_python): Move "auto-load" command to py-auto-load.c
2273 and observer_attach_new_objfile to py-auto-load.c.
2274
2275 2010-04-23 Jerome Guitton <guitton@adacore.com>
2276
2277 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
2278 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
2279 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
2280 New constants.
2281 (alpha_heuristic_analyze_probing_loop): New function.
2282 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
2283 and handle cases when a stack probe loop is generated.
2284 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
2285 (alpha_mdebug_max_frame_size_exceeded): New function.
2286 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
2287 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
2288 Return 0 when the maximum debuggable frame size has been exceeded.
2289
2290 2010-04-23 Joel Brobecker <brobecker@adacore.com>
2291
2292 Fix ARI warning.
2293 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
2294
2295 2010-04-20 Chris Moller <cmoller@redhat.com>
2296
2297 PR 10179
2298
2299 * symtab.c (rbreak_command): Added code to include a filename
2300 specification in the rbreak argument.
2301 * NEWS: Added a brief description of filename-qualified rbreak.
2302
2303 2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2304
2305 Fix crashes on dangling display expressions.
2306 * ada-lang.c (ada_operator_check): New function.
2307 (ada_exp_descriptor): Fill-in the field operator_check.
2308 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
2309 * jv-lang.c (exp_descriptor_java): Likewise.
2310 * m2-lang.c (exp_descriptor_modula2): Likewise.
2311 * scm-lang.c (exp_descriptor_scm): Likewise.
2312 * parse.c (exp_descriptor_standard): Likewise.
2313 (operator_check_standard): New function.
2314 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
2315 * parser-defs.h (struct exp_descriptor): New field operator_check.
2316 (operator_check_standard, exp_uses_objfile): New declarations.
2317 * printcmd.c: Remove the inclusion of solib.h.
2318 (display_uses_solib_p): Remove the function.
2319 (clear_dangling_display_expressions): Call lookup_objfile_from_block
2320 and exp_uses_objfile instead of display_uses_solib_p.
2321 * solist.h (struct so_list) <objfile>: New comment.
2322 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
2323 * symtab.h (lookup_objfile_from_block): New declaration.
2324 (struct general_symbol_info) <obj_section>: Extend the comment.
2325
2326 2010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
2327 Thiago Jung Bauermann <bauerman@br.ibm.com>
2328
2329 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
2330 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
2331 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
2332 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
2333 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
2334 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
2335 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
2336 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
2337 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
2338 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
2339 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
2340 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
2341 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
2342 Define, in case <ptrace.h> doesn't provide it.
2343 (booke_debug_info): New variable.
2344 (max_slots_number): Ditto.
2345 (hw_break_tuple): New struct.
2346 (thread_points): Ditto.
2347 (ppc_threads): New variable.
2348 (PPC_DEBUG_CURRENT_VERSION): New define.
2349 (have_ptrace_new_debug_booke): New function.
2350 (ppc_linux_check_watch_resources): Renamed to ...
2351 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
2352 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
2353 (booke_cmp_hw_point): New function.
2354 (booke_find_thread_points_by_tid): Ditto.
2355 (booke_insert_point): Ditto.
2356 (booke_remove_point): Ditto.
2357 (ppc_linux_insert_hw_breakpoint): Ditto.
2358 (ppc_linux_remove_hw_breakpoint): Ditto.
2359 (get_trigger_type): Ditto.
2360 (ppc_linux_insert_watchpoint): Handle BookE processors.
2361 (ppc_linux_remove_watchpoint): Ditto.
2362 (ppc_linux_new_thread): Ditto.
2363 (ppc_linux_thread_exit): New function..
2364 (ppc_linux_stopped_data_address): Handle BookE processors.
2365 (ppc_linux_watchpoint_addr_within_range): Ditto.
2366 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
2367 to_remove_hw_breakpoint fields of the target operations struct.
2368 Add observe for the thread_exit event.
2369
2370 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
2371
2372 * i386-linux-nat.c (regmap): Removed.
2373 (fetch_register): Replace regmap with
2374 i386_linux_gregset_reg_offset.
2375 (store_register): Likewise.
2376 (supply_gregset): Likewise.
2377 (fill_gregset): Likewise.
2378
2379 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
2380 global.
2381
2382 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
2383
2384 2010-04-22 Chris Moller <cmoller@redhat.com>
2385
2386 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
2387 method of popping recursion-detection stack with a method based on
2388 obstack_object_size(). (Similar to the PR9167 patch below, but for
2389 the static array obstack rather than the static member obstack.)
2390
2391 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
2392
2393 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
2394 (_initialize_amd64_linux_nat): Replace
2395 amd64_linux_gregset64_reg_offset with
2396 amd64_linux_gregset_reg_offset.
2397
2398 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
2399 global.
2400
2401 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
2402
2403 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
2404
2405 PR stabs/11479.
2406 * stabsread.c (set_length_in_type_chain): New function.
2407 (read_struct_type): Call set_length_in_type_chain function.
2408 (read_enum_type): Idem.
2409
2410 2010-04-21 Stan Shebs <stan@codesourcery.com>
2411 Nathan Sidwell <nathan@codesourcery.com>
2412
2413 * tracepoint.c (trace_save): Open in binary mode.
2414
2415 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
2416
2417 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
2418 fields.
2419 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
2420 builtin_char32 fields.
2421 * printcmd.c (decode_format): Set char size to '\0'
2422 for strings unless explicit size is given.
2423 (print_formatted): Correct calculation of NEXT_ADDRESS
2424 for 16 or 32 bit strings.
2425 (do_examine): Do not force byte size for strings.
2426 Use builtin_char16 and builtin_char32 types to display
2427 16 or 32 bit-wide strings.
2428 (x_command): Set LAST_SIZE to 'b' for string type.
2429
2430 2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
2431
2432 PR corefiles/11523
2433 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
2434 XCR0 first.
2435
2436 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
2437 there is no .reg-xstate section.
2438 (i386_linux_core_read_description): Check XCR0 first.
2439
2440 2010-04-21 Mike Frysinger <vapier@gentoo.org>
2441
2442 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
2443 for len <= 8.
2444
2445 2010-04-21 Chris Moller <cmoller@redhat.com>
2446
2447 PR 9167
2448 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
2449 method of popping recursion-detection stack with a method based on
2450 obstack_object_size().
2451
2452 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
2453
2454 PR pascal/11492.
2455 * p-valprint.c (pascal_val_print): Fix default printing of integer
2456 arrays.
2457
2458 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
2459
2460 Fix compilation warning on gcc-4.1.2.
2461 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
2462 local variable`pc' to zero.
2463
2464 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2465
2466 Implement thread support with core files on alpha-tru64.
2467 * dec-thread.c (dec_thread_find_new_threads): New function,
2468 extracted from resync_thread_list.
2469 (resync_thread_list): Add OPS parameter. Replace extracted-out
2470 code by call to dec_thread_find_new_threads.
2471 (dec_thread_wait): Update call to resync_thread_list.
2472 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
2473
2474 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2475
2476 * ada-lang.c (value_pointer): New function.
2477 (make_array_descriptor): Call value_pointer to convert addresses to
2478 pointers.
2479
2480 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2481
2482 * rs6000-aix-tdep.c: #include exceptions.h.
2483 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
2484 while reading the memory at ADDR, then ADDR cannot be a function
2485 descriptor.
2486
2487 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2488
2489 * ada-typeprint.c (ada_print_typedef): New function.
2490 * ada-lang.h (ada_print_typedef): Add declaration.
2491 * ada-lang.c (ada_language_defn): set la_print_typdef field
2492 to ada_print_typedef.
2493
2494 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2495
2496 * procfs.c (procfs_address_to_host_pointer): Only define when used.
2497
2498 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2499
2500 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
2501 (iterate_over_mappings): Adjust function profile. Add declaration.
2502 (insert_dbx_link_bpt_in_region, info_mappings_callback):
2503 Adjust accordingly.
2504
2505 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2506
2507 * procfs.c (solib_mappings_callback): Move function up to avoid
2508 a compiler warning.
2509
2510 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2511
2512 * procfs.c (find_signalled_thread, find_stop_signal): Move
2513 these functions down to define them only when used.
2514
2515 2010-04-20 Joel Brobecker <brobecker@adacore.com>
2516
2517 * valprint.c (common_val_print): Fix the value before extracting
2518 its contents.
2519 * ada-lang.c (ada_to_fixed_value): Make this function extern.
2520 * ada-lang.h (ada_to_fixed_value): New function declaration.
2521 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
2522 to avoid code duplication and fix a bug in the handling of
2523 fixed types contents.
2524
2525 2010-04-20 Tom Tromey <tromey@redhat.com>
2526
2527 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
2528 (read_partial_die): Likewise.
2529 (dwarf_attr_name): Likewise.
2530
2531 2010-04-20 Chris Moller <cmoller@redhat.com>
2532
2533 PR 10867
2534
2535 * cp-valprint.c (global): Adding new static array recursion
2536 detection obstack.
2537 (cp_print_value_fields, cp_print_static_field): Added new static
2538 array recursion detection code.
2539
2540 2010-04-20 Mark Kettenis <kettenis@gnu.org>
2541
2542 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
2543 general-purpose register set should be 68 instead of 144.
2544 (i386_linux_sse_regset_sections): Likewise.
2545 (i386_linux_avx_regset_sections): Likewise.
2546
2547 2010-04-20 Stan Shebs <stan@codesourcery.com>
2548 Nathan Sidwell <nathan@codesourcery.com>
2549
2550 * dwarf2loc.c (struct axs_var_loc): New struct.
2551 (dwarf2_tracepoint_var_loc): New function.
2552 (dwarf2_tracepoint_var_access): New function.
2553 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
2554 with DW_OP_piece.
2555 (locexpr_describe_location_piece): New function.
2556 (locexpr_describe_location_1): New function.
2557 (locexpr_describe_location): Call it, update signature.
2558 (loclist_describe_location): Rewrite to loop over locations,
2559 update signature.
2560 * symtab.h (struct symbol_computed_ops): Add address to
2561 describe_location arguments, return void.
2562 * printcmd.c (address_info): Get context PC, pass to computed
2563 location description.
2564 * tracepoint.c (scope_info): Ditto.
2565 * ax-gdb.c (trace_kludge): Export.
2566
2567 2010-04-20 Tom Tromey <tromey@redhat.com>
2568
2569 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
2570 (struct dwarf2_cie) <segment_size>: New field.
2571 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
2572 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
2573 DW_FORM_exprloc.
2574 (read_attribute_value): Handle DW_FORM_flag_present,
2575 DW_FORM_sec_offset, DW_FORM_exprloc.
2576 (dump_die_shallow): Likewise.
2577 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
2578 (dwarf2_const_value): Handle DW_FORM_exprloc.
2579 (attr_form_is_block): Likewise.
2580 (struct line_header) <maximum_ops_per_instruction>: New field.
2581 (dwarf_decode_line_header): Set new field.
2582 (dwarf_decode_lines): Handle new field.
2583
2584 2010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2585
2586 * f-exp.y: Add new production to recognize the `logical*8' type.
2587 (LOGICAL_S8_KEYWORD): New token.
2588 * f-lang.c (enum f_primitive_types)
2589 <f_primitive_type_logical_s8>: New field.
2590 (f_language_arch_info): Handling `logical*8' type.
2591 (build_fortran_types): Building `logical*8' type.
2592 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
2593
2594 2010-04-19 Doug Evans <dje@google.com>
2595
2596 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
2597 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
2598 (pipe_close): Ditto.
2599
2600 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2601
2602 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
2603
2604 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2605
2606 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
2607 type to void function.
2608
2609 2010-04-19 Stan Shebs <stan@codesourcery.com>
2610 Vladimir Prus <vladimir@codesourcery.com>
2611
2612 * tracepoint.c (tfind_1): Add missing newline, report exit from
2613 tfind mode as such.
2614 * target.c (update_current_target): Make default
2615 to_trace_find return -1.
2616
2617 2010-04-19 Mike Frysinger <vapier@gentoo.org>
2618
2619 * objc-lang.c (find_methods): Move symname check up.
2620
2621 2010-04-19 Pedro Alves <pedro@codesourcery.com>
2622
2623 * ada-lang.c (print_recreate_exception)
2624 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
2625 not "catch unhandled".
2626
2627 2010-04-19 Pedro Alves <pedro@codesourcery.com>
2628
2629 PR breakpoints/8554.
2630
2631 Implement `save-breakpoints'.
2632
2633 * breakpoint.c (save_cmdlist): New.
2634 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
2635 to save_cmdlist.
2636 (print_recreate_catch_fork): New.
2637 (catch_fork_breakpoint_ops): Install it.
2638 (print_recreate_catch_vfork): New.
2639 (catch_vfork_breakpoint_ops): Install it.
2640 (print_recreate_catch_syscall): New.
2641 (catch_syscall_breakpoint_ops): Install it.
2642 (print_recreate_catch_exec): New.
2643 (catch_exec_breakpoint_ops): Install it.
2644 (print_recreate_exception_catchpoint): New.
2645 (gnu_v3_exception_catchpoint_ops): Install it.
2646 (save_breakpoints): New, based on tracepoint_save_command, but
2647 handle all breakpoint types.
2648 (save_breakpoints_command): New.
2649 (tracepoint_save_command): Rename to...
2650 (save_tracepoints_command): ... this, and reimplement using
2651 save_breakpoints.
2652 (save_command): New.
2653 (_initialize_breakpoints): Install the "save" command prefix.
2654 Install the "save breakpoints" command. Make "save-tracepoints" a
2655 deprecated alias for "save tracepoints".
2656 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
2657 * ada-lang.c (print_recreate_exception): New.
2658 (print_recreate_catch_exception): New.
2659 (catch_exception_breakpoint_ops): Install it.
2660 (print_recreate_catch_exception_unhandled): New.
2661 (catch_exception_unhandled_breakpoint_ops): Install it.
2662 (print_recreate_catch_assert): New.
2663 (catch_assert_breakpoint_ops): Install it.
2664
2665 * NEWS: Mention the new `save breakpoints' command. Mention the
2666 new `save tracepoints' alias and that `save-tracepoints' is now
2667 deprecated.
2668
2669 2010-04-18 Pedro Alves <pedro@codesourcery.com>
2670
2671 PR tui/9217
2672
2673 * tui/tui-out.c: Include cli-out.h.
2674 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
2675 (tui_begin, tui_end, tui_field_int, tui_field_skip)
2676 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
2677 (tui_message, tui_wrap_hint, tui_flush): Delete forward
2678 declarations.
2679 (struct ui_out_data): Rename to...
2680 (struct tui_ui_out_data): ... this. Remove `stream' and
2681 `suppress_output' fields, and inherit cli_ui_out_data.
2682 (tui_out_data): New typedef.
2683 (tui_ui_out_impl): Don't initialize fields staticaly.
2684 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
2685 (tui_begin, tui_end): Delete.
2686 (tui_field_int): Adjust to delegate most work to the base type.
2687 (tui_field_skip): Delete.
2688 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
2689 delegate most work to the base type.
2690 (tui_spaces): Delete.
2691 (tui_text): Adjust to delegate most work to the base type.
2692 (tui_message): Delete.
2693 (tui_wrap_hint): Delete.
2694 (tui_flush): Delete.
2695 (out_field_fmt): Delete.
2696 (field_separator): Delete.
2697 (tui_out_new): Adjust to initialize the base type.
2698 (_initialize_tui_out): Initialize tui_ui_out_impl.
2699 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
2700 cli_ui_out_data.
2701 (cli_out_data): Adjust.
2702 (cli_ui_out_impl): Make extern.
2703 (cli_table_header, cli_field_int, cli_field_skip): Use
2704 uo_field_string instead of cli_field_string.
2705 (cli_redirect): Adjust to use cli_out_data.
2706 (cli_out_data_ctor): New.
2707 (cli_out_new): Use it.
2708 * cli-out.h (struct ui_file): Remove forward declaration.
2709 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
2710 (cli_ui_out_impl): Declare.
2711 (cli_out_data_ctor): Declare.
2712 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
2713 (uo_field_string): No longer static.
2714 (ui_out_data): Change return type to void pointer.
2715 (ui_out_new): Change `data' parameter type to void pointer.
2716 * ui-out.h (struct ui_out_data): Don't forward declare.
2717 (ui_out_data): Change return type to void pointer.
2718 (ui_out_new): Change `data' parameter type to void pointer.
2719 (uo_field_string): Declare.
2720
2721 2010-04-17 Pedro Alves <pedro@codesourcery.com>
2722
2723 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
2724 instead of always false.
2725
2726 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
2727
2728 PR corefiles/11511
2729 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
2730 orig_rax.
2731
2732 2010-04-17 Pedro Alves <pedro@codesourcery.com>
2733
2734 * breakpoint.c (watchpoints_triggered): Use
2735 is_hardware_watchpoint.
2736 (watchpoints_triggered): Ditto.
2737 (bpstat_check_location): Use is_watchpoint and
2738 is_hardware_watchpoint.
2739 (bpstat_check_watchpoint): Use is_watchpoint and
2740 is_hardware_watchpoint.
2741 (bpstat_stop_status): Fix comment.
2742 (user_settable_breakpoint): Use is_watchpoint.
2743 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
2744 (disable_watchpoints_before_interactive_call_start): Use
2745 is_watchpoint.
2746 (enable_watchpoints_after_interactive_call_stop): Use
2747 is_watchpoint.
2748 (clear_command): Use is_watchpoint.
2749 (do_enable_breakpoint): Use is_watchpoint.
2750
2751 2010-04-16 Mike Frysinger <vapier@gentoo.org>
2752
2753 * solib-frv.c (enable_break1_done): Delete.
2754 (enable_break2): Do not check enable_break1_done. Move the
2755 enable_break2_done setting and call to
2756 remove_solib_event_breakpoints() to the end. Return without
2757 warning when the contents of _dl_debug_addr are 0.
2758 (enable_break): Do not set enable_break1_done.
2759 (frv_clear_solib): Likewise.
2760
2761 2010-04-16 Kevin Buettner <kevinb@redhat.com>
2762
2763 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
2764 instead of an error if no PLT entry is found. Return a
2765 potentially useful result.
2766 (m32c_m16c_pointer_to_address): Add code to search for function
2767 address when no .plt entry is found.
2768
2769 2010-04-16 Stan Shebs <stan@codesourcery.com>
2770
2771 * tracepoint.c (trace_variable_command): Run a cleanup.
2772
2773 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2774
2775 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
2776
2777 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2778
2779 Support for Windows OS Thread Information Block.
2780 * NEWS: Document new feature.
2781 * remote.c (PACKET_qGetTIBAddr): New enum element.
2782 (remote_get_tib_address): New function.
2783 (init_remote_ops): Set to_get_tib_address field
2784 to remote_get_tib_address.
2785 (_initialize_remote): Add add_packet_config_cmd
2786 for PACKET_qGetTIBAddr.
2787 * target.c (update_current_target): Set default value for
2788 new to_get_tib_address field.
2789 * target.h (target_ops): New field to_get_tib_address.
2790 (target_get_tib_address): New macro.
2791 * windows-nat.c (thread_info): Add thread_local_base field.
2792 (windows_add_thread): Add tlb argument of type 'void *'.
2793 (fake_create_process): Adapt windows_add_thread call.
2794 (get_windows_debug_event): Idem.
2795 (windows_get_tib_address): New function.
2796 (init_windows_ops): Set to_get_tib_address field
2797 to remote_get_tib_address.
2798 (_initialize_windows_nat): Replace info_w32_cmdlist
2799 initialization by a call to init_w32_command_list.
2800 (info_w32_command, info_w32_cmdlist): Removed from here...
2801 to windows-tdep.c file.
2802 * windows-tdep.h (info_w32_cmdlist): Declare.
2803 (init_w32_command_list): New external function
2804 declaration.
2805 * windows-tdep.c: Add several headers.
2806 (info_w32_cmdlist): to here, made global.
2807 (thread_information_32): New struct.
2808 (thread_information_64): New struct.
2809 (TIB_NAME): New char array.
2810 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
2811 (maint_display_all_tib): New static variable.
2812 (windows_get_tlb_type): New function.
2813 (tlb_value_read, tlb_value_write): New functions.
2814 (tlb_value_funcs): New static struct.
2815 (tlb_make_value): New function.
2816 (display_one_tib): New function.
2817 (display_tib): New function.
2818 (show_maint_show_all_tib):New function.
2819 (info_w32_command): Moved from windows-nat.c.
2820 (init_w32_command_list): New function.
2821 (_initialize_windows_tdep): New function.
2822 New "maint set/show show-all-tib" command
2823 New "$_tlb" internal variable.
2824
2825 2010-04-16 Joel Brobecker <brobecker@adacore.com>
2826
2827 * tui/tui-regs.c (tui_display_register): Add comment about
2828 a couple of casts.
2829 * tui/tui-stack.c (tui_show_locator_content): Ditto.
2830
2831 2010-04-15 Stan Shebs <stan@codesourcery.com>
2832
2833 * frame.c: Include tracepoint.h.
2834 (get_current_frame): Allow a trace frame to be an alternate source
2835 of stack frame data.
2836 * tracepoint.c (tfind_1): Don't try to get current stack frame if
2837 it won't succeed.
2838
2839 2010-04-15 Pedro Alves <pedro@codesourcery.com>
2840
2841 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
2842 flags.
2843 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
2844
2845 2010-04-15 Doug Evans <dje@google.com>
2846
2847 * NEWS: Add entry for python program space support.
2848 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
2849 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
2850 (py-progspace.o): New rule.
2851 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
2852 function.
2853 (find_pretty_printer_from_progspace): New function.
2854 (find_pretty_printer_from_gdb): New function.
2855 (find_pretty_printer): Rewrite.
2856 * python/py-progspace.c: New file.
2857 * python/python-internal.h (program_space): Add forward decl.
2858 (pspace_to_pspace_object, pspy_get_printers): Declare.
2859 (gdbpy_initialize_pspace): Declare.
2860 * python/python.c: #include "progspace.h".
2861 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
2862 (_initialize_python): Call gdbpy_initialize_pspace.
2863 (GdbMethods): Add current_progspace, progspaces.
2864
2865 Add -s option to source command.
2866 * NEWS: Document new option.
2867 * cli/cli-cmds.c (find_and_open_script): Add function comment.
2868 Delete from_tty and cleanupp args. Split filep arg into file and
2869 full_pathp. New arg search_path.
2870 (source_script_from_stream): New function.
2871 (source_script_with_search): New function.
2872 (source_script): Rewrite.
2873 (source_command): Parse "-s" option.
2874 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
2875 * python/python.c (source_python_script): Make file arg a const char *.
2876 Don't call fclose, leave for caller.
2877 * python/python.h (source_python_script): Update.
2878
2879 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2880 Pedro Alves <pedro@codesourcery.com>
2881
2882 Avoid rereading shared libraries that haven't changed.
2883
2884 * solib.c (free_so_symbols): New function, from ...
2885 (free_so): ... here. Call it.
2886 (solib_read_symbols): Don't warn here if symbols have already been
2887 loaded.
2888 (solib_add): Warn here instead, if a pattern was specified.
2889 (reload_shared_libraries_1): New.
2890 (reload_shared_libraries): Rewrite to not fetch the library list.
2891
2892 2010-04-14 Doug Evans <dje@google.com>
2893
2894 * source.c (openp): Strip DOS drive letter if present before
2895 concatenating string to search path.
2896
2897 2010-04-14 Pedro Alves <pedro@codesourcery.com>
2898
2899 * objfiles.h (gdb_bfd_close_or_warn): Declare.
2900 * objfiles.c (gdb_bfd_close_or_warn): New.
2901 * corelow.c: Include objfiles.h
2902 (core_close): Use gdb_bfd_close_or_warn.
2903 * elfread.c (build_id_verify): Ditto.
2904 * exec.c (exec_close, exec_close_1): Ditto.
2905
2906 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2907 Pedro Alves <pedro@codesourcery.com>
2908
2909 Group errors for many missing shared libraries.
2910
2911 * solist.h (struct so_list): Remove from_tty.
2912 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
2913 (solib_map_sections): Take so_list argument. Return 0 if we
2914 failed to open a BFD. Add target sections here.
2915 (symbol_add_stub): Delete.
2916 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
2917 not from_tty copied from the so_list. Don't warn a second time
2918 for a missing library.
2919 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
2920 add to the section table here. Print out a single warning for all
2921 missing libraries.
2922 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
2923 flags.
2924
2925 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
2926
2927 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
2928 error/warning messages. Capitalize and use complete sentences.
2929 (blpy_block_syms_iternext): Likewise.
2930 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
2931 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
2932 (frame_info_to_frame_object, frapy_read_var)
2933 (gdbpy_frame_stop_reason_string): Likewise.
2934 * python/py-lazy-string.c (stpy_convert_to_value)
2935 (gdbpy_create_lazy_string_object): Likewise.
2936 * python/py-objfile.c (objfpy_set_printers): Likewise.
2937 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
2938 * python/python.c (parameter_to_python): Likewise.
2939 * python/py-type.c (typy_range, typy_target): Likewise.
2940 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
2941 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
2942
2943
2944 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
2945
2946 PR python/11381
2947
2948 * python/py-prettyprint.c (pretty_print_one_value): Test for
2949 Py_None.
2950 (print_string_repr): Test for Py_None. Set flags accordingly.
2951 Return value depending on return type.
2952 (print_children): Take a value indicating whether data was printed
2953 before this function was called. Alter output accordingly.
2954 (apply_val_pretty_printer): Capture return value from
2955 print_string_repr and pass to print_children.
2956
2957 2010-04-13 Mark Kettenis <kettenis@gnu.org>
2958
2959 PR corefiles/11481
2960 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
2961 register note sections.
2962 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
2963 New variables.
2964 (i386_linux_init_abi): Install list of supported register note
2965 sections that matches the target description.
2966
2967 2010-04-13 Pedro Alves <pedro@codesourcery.com>
2968
2969 * remote.c (remote_get_noisy_reply): Don't error out on empty
2970 replies.
2971 (remote_start_remote): Update and merge tracepoints and trace
2972 state variables as long as the target supports tracepoints.
2973 (remote_trace_init): Fix prototype.
2974 (remote_download_trace_state_variable): Validate reply.
2975 (remote_trace_set_readonly_regions): Fix prototype.
2976 (remote_trace_start): Fix prototype. Check for empty reply.
2977 (remote_get_trace_status): Small cleanup.
2978 (remote_trace_stop): Fix prototype. Check for empty reply.
2979 (remote_trace_find): Check for empty reply.
2980 (remote_save_trace_data): Validate reply.
2981 (remote_set_disconnected_tracing): Check for empty reply, and
2982 validate reply.
2983 (remote_set_circular_trace_buffer): Ditto.
2984
2985 2010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
2986
2987 Suppress unused value warning during compilation.
2988 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
2989 calls to void.
2990 * tui/tui-stack.c (tui_show_locator_content): Likewise.
2991
2992 2010-04-12 Stan Shebs <stan@codesourcery.com>
2993
2994 * tracepoint.c (tfile_xfer_partial): Check read result.
2995
2996 2010-04-12 Mike Frysinger <vapier@gentoo.org>
2997
2998 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
2999 * remote-sim.c (gdbsim_files_info): Likewise.
3000
3001 2010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
3002
3003 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
3004 * arm-linux-nat.c (arm_linux_vfp_register_count): New
3005 variable.
3006 (fetch_vfp_registers): New function to fetch VFP registers.
3007 (store_vfp_registers): New function to store VFP registers.
3008 (arm_linux_fetch_inferior_registers): Add support for VFP
3009 registers.
3010 (arm_linux_store_inferior_registers): Likewise.
3011 (arm_linux_read_description): Likewise.
3012 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
3013 until we need it.
3014
3015 2010-04-11 H.J. Lu <hongjiu.lu@intel.com>
3016
3017 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
3018 tdep.
3019 (amd64_collect_xstateregset): Likewise.
3020
3021 2010-04-09 Stan Shebs <stan@codesourcery.com>
3022
3023 * tracepoint.c (trace_status_mi): Report frames created.
3024
3025 * tracepoint.c (trace_dump_command): Include default-collect
3026 expressions.
3027
3028 2010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
3029
3030 * symtab.c (find_function_start_sal): Never return SAL pointing
3031 before function start address, even if line info is missing.
3032
3033 2010-04-09 Pedro Alves <pedro@codesourcery.com>
3034
3035 * NEWS: Mention tracepoints support.
3036
3037 2010-04-09 Pedro Alves <pedro@codesourcery.com>
3038
3039 * tracepoint.c (trace_status_mi): Report disconnected tracing and
3040 circular trace buffer statuses.
3041
3042 2010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
3043
3044 * config/djgpp/fnchange.lst: Fix typo in translations for
3045 symbol-without-target_section.exp and symbol-without-target_section.c.
3046
3047 2010-04-09 Pedro Alves <pedro@codesourcery.com>
3048
3049 * breakpoint.c (condition_command): Pass condition expression to
3050 set_breakpoint_condition stripped from breakpoint number.
3051
3052 2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
3053 Thiago Jung Bauermann <bauerman@br.ibm.com>
3054 Tom Tromey <tromey@redhat.com>
3055
3056 * breakpoint.c (condition_command): Simplify. Move condition
3057 setting code to ...
3058 (set_breakpoint_condition): ... here. New function.
3059 * breakpoint.h (set_breakpoint_condition): Declare.
3060 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
3061 (SUBDIR_PYTHON_SRCS): Likewise.
3062 (py-breakpoint.o): New rule.
3063 * python/py-breakpoint.c: New file.
3064 * python/python-internal.h (gdbpy_breakpoints)
3065 (gdbpy_initialize_breakpoints): Declare.
3066 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
3067
3068 2010-04-09 Pedro Alves <pedro@codesourcery.com>
3069
3070 * regformats/regdat.sh: Include server.h. Don't include
3071 regcache.h.
3072
3073 2010-04-08 Stan Shebs <stan@codesourcery.com>
3074 Pedro Alves <pedro@codesourcery.com>
3075
3076 * tracepoint.h (struct trace_status): New fields disconnected_tracing
3077 and circular_buffer.
3078 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
3079 * tracepoint.c (trace_status_command): Display target's status for
3080 disconnected tracing and circular buffer.
3081 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
3082 query for non-disconnected-tracing case, remove the stop_tracing
3083 call.
3084 (tfile_open): Clear disconnected and circular buffer status.
3085 (trace_save): Save disconnected and circular buffer status.
3086 (parse_trace_status): Parse disconnected and circular buffer status,
3087 also recognize disconnected as a stop reason.
3088 * remote.c (remote_set_disconnected_tracing): Only set
3089 QTDisconnected if the remote end supports disconnected tracing.
3090 Warn otherwise, if trying to enable disconnected tracing.
3091 * infcmd.c (detach_command): Update disconnect_tracing call.
3092 * cli/cli-cmds.c (quit_command): Ditto.
3093
3094 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
3095
3096 * i387-tdep.c (i387_collect_xsave): Replace abort with
3097 internal_error.
3098
3099 2010-04-08 Stan Shebs <stan@codesourcery.com>
3100
3101 * breakpoint.c (default_collect_info): New function.
3102 (breakpoints_info): Call it.
3103 (maintenance_info_breakpoints): Ditto.
3104 (tracepoints_info): Ditto.
3105
3106 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
3107
3108 * i387-tdep.c (i387_collect_xsave): Re-indent.
3109
3110 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
3111
3112 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
3113 if HAVE_PTRACE_GETFPXREGS is defined.
3114 (i386_linux_read_description): Set have_ptrace_getfpxregs and
3115 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
3116
3117 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
3118 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
3119 if .reg-xfp section doesn't exist.
3120 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
3121
3122 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
3123
3124 * i386-tdep.c: Include "features/i386/i386-mmx.c".
3125 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
3126 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
3127 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
3128 (i386_gdbarch_init): Update comments.
3129 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
3130
3131 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
3132
3133 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
3134
3135 * features/Makefile (i386/i386-mmx-expedite): New.
3136 (i386/i386-mmx-linux-expedite): Likewise.
3137 ($(outdir)/i386/i386-mmx.dat): Likewise.
3138 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
3139
3140 * features/i386/i386-mmx-linux.c: New.
3141 * features/i386/i386-mmx-linux.xml: Likewise.
3142 * features/i386/i386-mmx.c: Likewise.
3143 * features/i386/i386-mmx.xml: Likewise.
3144 * regformats/i386/i386-mmx-linux.dat: Likewise.
3145 * regformats/i386/i386-mmx.dat: Likewise.
3146
3147 * features/Makefile (WHICH): Add i386/i386-mmx and
3148 i386/i386-mmx-linux.
3149
3150 2010-04-08 Doug Evans <dje@google.com>
3151
3152 * source.c (openp): Skip $cdir in PATH.
3153
3154 2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
3155
3156 PR python/11417
3157 * python/py-lazy-string.c (stpy_convert_to_value): Check for
3158 a NULL address.
3159 (gdbpy_create_lazy_string_object): Allow strings with a NULL
3160 address and a zero length.
3161
3162 2010-04-08 Hui Zhu <teawater@gmail.com>
3163
3164 * i386-tdep.c (i386_process_record): Add support for insn
3165 rdtsc.
3166
3167 2010-04-07 Doug Evans <dje@google.com>
3168
3169 * python/python.c (source_python_script): Use ensure_python_env
3170 to prepare environment for script.
3171
3172 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
3173
3174 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
3175 <sys/uio.h> and "i386-xstate.h".
3176 (PTRACE_GETREGSET): New.
3177 (PTRACE_SETREGSET): Likewise.
3178 (have_ptrace_getregset): Likewise.
3179 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
3180 registers.
3181 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
3182 registers.
3183 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
3184 (amd64_linux_store_inferior_registers): Likewise.
3185 (amd64_linux_read_description): Check and enable AVX target
3186 descriptions.
3187
3188 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
3189 and "features/i386/amd64-avx-linux.c".
3190 (amd64_linux_regset_sections): New.
3191 (amd64_linux_core_read_description): Check and enable AVX
3192 target description.
3193 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
3194 set_gdbarch_core_regset_sections.
3195 (_initialize_amd64_linux_tdep): Call
3196 initialize_tdesc_amd64_avx_linux.
3197
3198 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
3199 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
3200 (tdesc_amd64_avx_linux): New.
3201 (amd64_linux_update_xstateregset): Likewise.
3202
3203 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
3204 (amd64_ymm_names): New.
3205 (amd64_ymmh_names): Likewise.
3206 (amd64_register_name): Likewise.
3207 (amd64_supply_xstateregset): Likewise.
3208 (amd64_collect_xstateregset): Likewise.
3209 (amd64_supply_xsave): Likewise.
3210 (amd64_collect_xsave): Likewise.
3211 (AMD64_NUM_REGS): Removed.
3212 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
3213 %xmmN if AVX is available.
3214 (amd64_pseudo_register_name): Support pseudo YMM registers.
3215 (amd64_regset_from_core_section): Support .reg-xstate section.
3216 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
3217 and ymm0h_regnum. Call set_gdbarch_register_name.
3218 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
3219
3220 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
3221 AMD64_YMM15H_REGNUM.
3222 (AMD64_NUM_REGS): New.
3223 (amd64_supply_xsave): Likewise.
3224 (amd64_collect_xsave): Likewise.
3225 (amd64_register_name): Removed.
3226 (amd64_register_type): Likewise.
3227
3228 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
3229
3230 * i387-tdep.c: Include "i386-xstate.h".
3231 (XSAVE_XSTATE_BV_ADDR): New.
3232 (xsave_avxh_offset): Likewise.
3233 (XSAVE_AVXH_ADDR): Likewise.
3234 (i387_supply_xsave): Likewise.
3235 (i387_collect_xsave): Likewise.
3236
3237 * i387-tdep.h (I387_NUM_YMM_REGS): New.
3238 (I387_YMM0H_REGNUM): Likewise.
3239 (I387_YMMENDH_REGNUM): Likewise.
3240 (i387_supply_xsave): Likewise.
3241 (i387_collect_xsave): Likewise.
3242
3243 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
3244
3245 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
3246 <sys/uio.h> and "i386-xstate.h".
3247 (PTRACE_GETREGSET): New.
3248 (PTRACE_SETREGSET): Likewise.
3249 (fetch_xstateregs): Likewise.
3250 (store_xstateregs): Likewise.
3251 (GETXSTATEREGS_SUPPLIES): Likewise.
3252 (regmap): Include 8 upper YMM registers.
3253 (i386_linux_fetch_inferior_registers): Support XSAVE extended
3254 state.
3255 (i386_linux_store_inferior_registers): Likewise.
3256 (i386_linux_read_description): Check and enable AVX target
3257 descriptions.
3258
3259 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
3260 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
3261 (i386_linux_regset_sections): Add ".reg-xstate".
3262 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
3263 (i386_linux_core_read_xcr0): New.
3264 (i386_linux_core_read_description): Check and enable AVX target
3265 description.
3266 (i386_linux_init_abi): Set xsave_xcr0_offset.
3267 (_initialize_i386_linux_tdep): Call
3268 initialize_tdesc_i386_avx_linux.
3269
3270 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
3271 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
3272 (i386_linux_core_read_xcr0): New.
3273 (tdesc_i386_avx_linux): Likewise.
3274 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
3275
3276 * i386-tdep.c: Include "i386-xstate.h" and
3277 "features/i386/i386-avx.c".
3278 (i386_ymm_names): New.
3279 (i386_ymmh_names): Likewise.
3280 (i386_ymmh_regnum_p): Likewise.
3281 (i386_ymm_regnum_p): Likewise.
3282 (i386_xmm_regnum_p): Likewise.
3283 (i386_register_name): Likewise.
3284 (i386_ymm_type): Likewise.
3285 (i386_supply_xstateregset): Likewise.
3286 (i386_collect_xstateregset): Likewise.
3287 (i386_sse_regnum_p): Removed.
3288 (i386_pseudo_register_name): Support pseudo YMM registers.
3289 (i386_pseudo_register_type): Likewise.
3290 (i386_pseudo_register_read): Likewise.
3291 (i386_pseudo_register_write): Likewise.
3292 (i386_dbx_reg_to_regnum): Return %ymmN register number for
3293 %xmmN if AVX is available.
3294 (i386_regset_from_core_section): Support .reg-xstate section.
3295 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
3296 (i386_process_record): Replace i386_sse_regnum_p with
3297 i386_xmm_regnum_p.
3298 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
3299 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
3300 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
3301 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
3302 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
3303 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
3304 Set ymm0_regnum.
3305 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
3306
3307 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
3308 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
3309 i386_ymm_type.
3310 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
3311 (I386_AVX_NUM_REGS): New.
3312 (i386_xmm_regnum_p): Likewise.
3313 (i386_ymm_regnum_p): Likewise.
3314 (i386_ymmh_regnum_p): Likewise.
3315
3316 * common/i386-xstate.h: New.
3317
3318 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
3319
3320 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
3321
3322 * features/Makefile (WHICH): Add i386/i386-avx,
3323 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
3324 (i386/i386-avx-expedite): New.
3325 (i386/i386-avx-linux-expedite): Likewise.
3326 (i386/x86-64-avx-expedite):Likewise.
3327 (i386/x86-64-avx-linux-expedite): Likewise.
3328 ($(outdir)/i386/i386-avx.dat): New dependency.
3329 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
3330 ($(outdir)/i386/x86-avx-64.dat): Likewise.
3331 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
3332
3333 * features/i386/32bit-avx.xml: New.
3334 * features/i386/64bit-avx.xml: Likewise.
3335 * features/i386/i386-avx-linux.c: Likewise.
3336 * features/i386/i386-avx-linux.xml: Likewise.
3337 * features/i386/i386-avx.c: Likewise.
3338 * features/i386/i386-avx.xml: Likewise.
3339 * features/i386/x86-64-avx-linux.c: Likewise.
3340 * features/i386/x86-64-avx-linux.xml: Likewise.
3341 * features/i386/x86-64-avx.c: Likewise.
3342 * features/i386/x86-64-avx.xml: Likewise.
3343 * regformats/i386/i386-avx-linux.dat: Likewise.
3344 * regformats/i386/i386-avx.dat: Likewise.
3345 * regformats/i386/x86-64-avx-linux.dat: Likewise.
3346 * regformats/i386/x86-64-avx.dat: Likewise.
3347
3348 2010-04-07 Doug Evans <dje@google.com>
3349
3350 * top.c (source_file_name): Make const char *.
3351 * top.h (source_file_name): Update.
3352 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
3353 const char *.
3354 (script_from_file): Change `file' arg to const char *.
3355 * cli/cli-script.h (script_from_file): Update.
3356
3357 2010-04-06 Doug Evans <dje@google.com>
3358
3359 * cli/cli-cmds.c (source_command): Run cleanups.
3360
3361 2010-04-06 Stan Shebs <stan@codesourcery.com>
3362
3363 * defs.h (char_ptr): Move typedef here from...
3364 * ada-lang.c (char_ptr): Remove.
3365 * charset.c (char_ptr): Remove.
3366 * tracepoint.h (struct uploaded_string): Remove.
3367 (struct uploaded_tp): Use vectors for string arrays.
3368 * tracepoint.c (trace_save): Use vectors of actions.
3369 (parse_tracepoint_definition): Ditto.
3370 (get_uploaded_tp): Clear vectors.
3371 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
3372 (next_cmd): Change to an int.
3373 (read_next_cmd): Use vector of command strings.
3374
3375 2010-04-06 Doug Evans <dje@google.com>
3376
3377 * top.h (source_script, cd_command): Delete.
3378 * main.c: #include "cli/cli-cmds.h"
3379
3380 2010-04-06 Kevin Buettner <kevinb@redhat.com>
3381
3382 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
3383 type in bytes, not bits.
3384
3385 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
3386
3387 * stabsread.c (define_symbol): Add support for char
3388 and string constants.
3389
3390 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
3391
3392 Remove remaining "%ll" uses.
3393 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
3394 hex_string call.
3395 * rs6000-nat.c (rs6000_ptrace64): Idem.
3396 * solib-pa64.c (pa64_current_sos): Idem.
3397 * solib-spu.c (spu_current_sos): Idem.
3398 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
3399 plongest call.
3400 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
3401 phex (VAR, 8) call.
3402 * sh64-tdep.c (sh64_show_media_regs): Idem.
3403
3404 2010-04-05 Stan Shebs <stan@codesourcery.com>
3405
3406 * tracepoint.c: Include gdbcore.h.
3407 (tfile_xfer_partial): Return partial results, also try reading
3408 from executable.
3409 (tfile_has_all_memory): New function.
3410 (init_tfile_ops): Use it.
3411
3412 2010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
3413
3414 PR gdb/10736:
3415 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
3416 the changes in data-directory.
3417 (init_sysinfo): Reload the syscall XML file if the data-directory
3418 has changed.
3419
3420 2010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3421
3422 Code cleanup.
3423 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
3424
3425 2010-04-04 Stan Shebs <stan@codesourcery.com>
3426 Nathan Sidwell <nathan@codesourcery.com>
3427
3428 * breakpoint.c (breakpoint_1): Add filter argument, return number of
3429 breakpoints printed.
3430 (is_hardware_watchpoint): Make argument const.
3431 (is_watchpoint): Ditto.
3432 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
3433 use it everywhere.
3434 (breakpoints_info): Pass NULL to breakpoint_1.
3435 (maintenance_info_breakpoints): Ditto.
3436 (watchpoints_info): New function.
3437 (tracepoints_info): Use breakpoint_1 filter.
3438 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
3439 (_initialize_breakpoint): Make "info watchpoints" its own command.
3440 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
3441 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
3442
3443 2010-04-04 Stan Shebs <stan@codesourcery.com>
3444
3445 * tracepoint.c (tfile_fetch_registers): Add fallback case.
3446
3447 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3448
3449 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
3450 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
3451
3452 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3453
3454 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
3455 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
3456
3457 2010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3458
3459 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
3460 code form.
3461
3462 2010-04-02 Hui Zhu <teawater@gmail.com>
3463
3464 * i386-tdep.c (OT_DQUAD): New enum.
3465 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
3466 SSE3, SSSE3 and SSE4.
3467
3468 2010-04-02 Hui Zhu <teawater@gmail.com>
3469
3470 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
3471 "*addr = 0".
3472
3473 2010-04-02 Pedro Alves <pedro@codesourcery.com>
3474
3475 * tracepoint.c (trace_dump_actions): New, factored out from
3476 trace_dump_command, and adjusted to recurse into while-stepping's
3477 action list.
3478 (trace_dump_command): Use it.
3479
3480 2010-04-02 Pedro Alves <pedro@codesourcery.com>
3481
3482 * breakpoint.h (struct counted_command_line): Moved definition to
3483 breakpoint.c, and forward declare.
3484 (breakpoint_commands): Declare.
3485 * breakpoint.c (struct counted_command_line): Moved here.
3486 (breakpoint_commands): New.
3487 * tracepoint.c (encode_actions): Use breakpoint_commands.
3488 * remote.c (remote_download_tracepoint): Ditto.
3489
3490 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
3491
3492 * remote.c (remote_parse_stop_reply): Use hex_string instead
3493 of phex_nz for error.
3494
3495 2010-04-01 Stan Shebs <stan@codesourcery.com>
3496 Nathan Sidwell <nathan@codesourcery.com>
3497
3498 * tracepoint.h (enum actionline_type): Remove.
3499 (validate_actionline): Change return to void.
3500 * tracepoint.c (report_agent_reqs_errors): New function.
3501 (validate_actionline): Call it, change return to void, report errors
3502 more consistently.
3503 (collect_symbol): Call report_agent_reqs_errors.
3504 (encode_actions_1): Ditto.
3505 (encode_actions): Don't expect a result from validate_actionline.
3506
3507 2010-04-01 Stan Shebs <stan@codesourcery.com>
3508
3509 * tracepoint.c (trace_start_command): Confirm if trace is running.
3510 (trace_stop_command): Error if trace not running.
3511
3512 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
3513
3514 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
3515 (AMD64_NUM_LOWER_BYTE_REGS): New.
3516 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
3517 (amd64_pseudo_register_write): Likewise.
3518 (amd64_init_abi): Set num_byte_regs to 20.
3519
3520 2010-04-01 Pedro Alves <pedro@codesourcery.com>
3521
3522 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
3523 (prev_breakpoint_count): New.
3524 (set_breakpoint_count): Adjust.
3525 (rbreak_start_breakpoint_count): New.
3526 (start_rbreak_breakpoints): Adjust.
3527 (end_rbreak_breakpoints): Adjust.
3528 (struct commands_info) <arg>: New field.
3529 (do_map_commands_command): Tweak output to include breakpoint spec
3530 range.
3531 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
3532 ARG was empty on entry. Set INFO's arg.
3533 (create_breakpoint): Adjust.
3534
3535 * NEWS: Clarify `commands' changes.
3536
3537 2010-04-01 Pedro Alves <pedro@codesourcery.com>
3538
3539 * tracepoint.c: Include stack.h.
3540 (struct add_local_symbols_data): New.
3541 (do_collect_symbol): New.
3542 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
3543 iterate_over_block_local_vars.
3544 * stack.c (print_block_frame_locals): Rewrite as ...
3545 (iterate_over_block_locals): ... this. Take a callback function
3546 pointer and generic data pointer, and call that instead of
3547 print_variable_and_value.
3548 (struct print_variable_and_value_data): New.
3549 (do_print_variable_and_value): New.
3550 (iterate_over_block_local_vars): New, abstracted out from
3551 print_frame_local_vars.
3552 (print_frame_local_vars): Rewrite using
3553 iterate_over_block_local_vars.
3554 (iterate_over_block_arg_vars): New, abstracted out from
3555 print_frame_arg_vars.
3556 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
3557 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
3558 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
3559
3560 2010-03-31 Richard Earnshaw <rearnsha@arm.com>
3561
3562 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
3563 instructions. Use the PC+4 if the base of the TBB or TBH is the
3564 PC register.
3565
3566 2010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
3567
3568 Fix crash on reading wrong function declaration DWARF.
3569 * dwarf2read.c (read_subroutine_type): New variable void_type.
3570 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
3571 more close to their use.
3572
3573 2010-03-31 Stan Shebs <stan@codesourcery.com>
3574
3575 * breakpoint.c (tracepoint_save_command): Include variables,
3576 conditionals, tracepoint types, and default-collect.
3577 * tracepoint.c (save_trace_state_variables): New function.
3578 * tracepoint.h (save_trace_state_variables): Declare it.
3579
3580 2010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
3581
3582 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
3583
3584 2010-03-30 Keith Seitz <keiths@redhat.com>
3585
3586 * c-typeprint.c (c_type_print_args): Don't print "void"
3587 for java, regardless of whether it is TYPE_PROTOTYPED.
3588 Use the passed-in language instead of current_language.
3589 (c_type_print_varspec_suffix): Use current_language instead
3590 of assuming language_c.
3591 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
3592 any return type specifier from the physname.
3593
3594 2010-03-30 Pedro Alves <pedro@codesourcery.com>
3595
3596 * tui/tui-interp.c (tui_is_toplevel): New.
3597 (tui_init): Set it.
3598 (tui_allowed_p): New.
3599 * tui/tui.c (tui_enable): Check if the TUI is allowed before
3600 enabling it.
3601 * tui/tui.h (tui_allowed_p): Declare.
3602
3603 2010-03-30 Ozkan Sezer <sezeroz@gmail.com>
3604
3605 * serial.h: Include winsock2.h before windows.h.
3606
3607 2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
3608
3609 * NEWS: Mention xmlRegisters= in qSupported packet.
3610
3611 * i386-tdep.c: Include "remote.h".
3612 (_initialize_i386_tdep): Call register_remote_support_xml.
3613
3614 * remote.c (remote_support_xml): New.
3615 (register_remote_support_xml): Likewise.
3616 (remote_query_supported_append): Likewise.
3617 (remote_query_supported): Support remote_support_xml.
3618
3619 * remote.h (register_remote_support_xml): New.
3620
3621 2010-03-29 Stan Shebs <stan@codesourcery.com>
3622
3623 * tracepoint.c (trace_find_line_command): Remove dead code.
3624
3625 * tracepoint.h (struct uploaded_string): New struct.
3626 (struct uploaded_tp): New fields for source strings.
3627 * breakpoint.c (this_utp, next_cmd): New globals.
3628 (read_uploaded_action): New function.
3629 (create_tracepoint_from_upload): Fill in more parts
3630 of a tracepoint.
3631 * tracepoint.c (encode_source_string): New function.
3632 (trace_save): Write out source strings, fix error checks.
3633 (parse_tracepoint_definition): Add source string parsing.
3634 * remote.c (PACKET_TracepointSource): New packet type.
3635 (remote_download_command_source): New function.
3636 (remote_download_tracepoint): Download source pieces also.
3637 (_initialize_remote): Add packet config command.
3638
3639 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
3640 expression handler.
3641
3642 * tracepoint.c (start_tracing): Check tracepoints before sending
3643 commands to target, don't start if all tracepoints disabled.
3644
3645 2010-03-28 Pedro Alves <pedro@codesourcery.com>
3646
3647 * cli/cli-script.c (process_next_line): Handle 'stepping'.
3648
3649 2010-03-26 Stan Shebs <stan@codesourcery.com>
3650
3651 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
3652
3653 2010-03-26 Tom Tromey <tromey@redhat.com>
3654
3655 * breakpoint.c (commands_command_1): Duplicate 'arg'.
3656
3657 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3658
3659 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
3660 (skip_prologue_sal): Remove local definition.
3661 (resolve_sal_pc): Remove now unnecessary code.
3662 * linespec.c (minsym_found): Call skip_prologue_sal.
3663 * symtab.c (find_function_start_pc): Remove.
3664 (find_function_start_sal): Extract prologue skipping into ...
3665 (skip_prologue_sal): ... this new function. Handle code both
3666 with and without debug info. Respect SAL's explicit_pc and
3667 explicit_line flags. Inline old find_function_start_pc.
3668 * symtab.h (find_function_start_pc): Remove.
3669 (skip_prologue_sal): Add prototype.
3670
3671 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3672
3673 * dwarf2read.c (read_func_scope): Also scan specification DIEs
3674 for DW_TAG_imported_module children.
3675
3676 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3677
3678 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
3679 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
3680 * completer.c (add_struct_fields): Fix inverted logic.
3681
3682 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
3683
3684 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
3685
3686 2010-03-26 Pedro Alves <pedro@codesourcery.com>
3687
3688 * tracepoint.c (current_trace_status): Don't make sure error_desc
3689 is non-NULL here.
3690 (parse_trace_status): Release a previous error_desc string, and
3691 set it to NULL by default. If stop reason is tracepoint_error,
3692 make sure error_desc is not left NULL.
3693
3694 2010-03-26 Pedro Alves <pedro@codesourcery.com>
3695
3696 * tracepoint.c (trace_save): Remove X from tracepoint error
3697 description.
3698
3699 2010-03-26 Pedro Alves <pedro@codesourcery.com>
3700
3701 * tracepoint.c (parse_trace_status): Don't allow plain strings in
3702 the terror description. Don't expect an X prefix.
3703
3704 2010-03-25 Stan Shebs <stan@codesourcery.com>
3705
3706 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
3707 (struct trace_status): New field error_desc.
3708 * tracepoint.c (stop_reason_names): Add terror.
3709 (current_trace_status): Ensure non-NULL error description.
3710 (trace_status_command): Add error report.
3711 (trace_status_mi): Ditto.
3712 (trace_save): Add special case for error description.
3713 (parse_trace_status): Add case for errors.
3714
3715 2010-03-25 Keith Seitz <keiths@redhat.com>
3716
3717 * dwarf2read.c (read_subroutine_type): If the compilation unit
3718 language is Java, mark any formal parameter named "this" as
3719 artificial (GCC/43521).
3720 (dwarf2_name): Add special handling for Java constructors.
3721
3722 2010-03-25 Tom Tromey <tromey@redhat.com>
3723
3724 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
3725 * infrun.c (handle_inferior_event): Change initialization of
3726 stop_stack_dummy.
3727 (handle_inferior_event): Change assignment to stop_stack_dummy.
3728 (normal_stop): Update use of stop_stack_dummy.
3729 (struct inferior_status) <stop_stack_dummy>: Change type.
3730 * inferior.h (stop_stack_dummy): Update.
3731 * infcmd.c (stop_stack_dummy): Change type.
3732 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
3733 function.
3734 (call_function_by_hand): Call set_std_terminate_breakpoint.
3735 Rewrite std::terminate handling.
3736 * breakpoint.h (enum bptype) <bp_std_terminate,
3737 bp_std_terminate_master>: New.
3738 (enum stop_stack_kind): New.
3739 (struct bpstat_what) <call_dummy>: Change type.
3740 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
3741 Declare.
3742 * breakpoint.c (create_std_terminate_master_breakpoint): New
3743 function.
3744 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
3745 Call create_std_terminate_master_breakpoint.
3746 (print_it_typical): Handle new breakpoint kinds.
3747 (bpstat_stop_status): Handle bp_std_terminate_master.
3748 (bpstat_what): Correctly set call_dummy field. Handle
3749 bp_std_terminate_master and bp_std_terminate.
3750 (print_one_breakpoint_location): Update.
3751 (allocate_bp_location): Update.
3752 (set_std_terminate_breakpoint): New function.
3753 (delete_std_terminate_breakpoint): Likewise.
3754 (create_thread_event_breakpoint): Update.
3755 (delete_command): Update.
3756 (breakpoint_re_set_one): Update.
3757 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
3758
3759 2010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3760
3761 * symfile.c (build_section_addr_info_from_bfd): New.
3762 (build_section_addr_info_from_objfile): Base it on
3763 build_section_addr_info_from_bfd.
3764 (addrs_section_compar, addrs_section_sort): New.
3765 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
3766 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
3767 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
3768
3769 2010-03-24 Michael Snyder <msnyder@localhost.localdomain>
3770
3771 * elfread.c (find_separate_debug_file_by_buildid):
3772 Remove unused local variable.
3773
3774 2010-03-24 Tom Tromey <tromey@redhat.com>
3775
3776 PR breakpoints/9352:
3777 * NEWS: Mention changes to `commands' and `rbreak'.
3778 * symtab.c (do_end_rbreak_breakpoints): New function.
3779 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
3780 end_rbreak_breakpoints.
3781 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
3782 (set_breakpoint_count): Likewise. Clear last_was_multi.
3783 (multi_start, multi_end, last_was_multi): New globals.
3784 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
3785 functions.
3786 (struct commands_info): New
3787 (do_map_commands_command): New function.
3788 (commands_command_1): New function.
3789 (commands_command): Use it.
3790 (commands_from_control_command): Likewise.
3791 (do_delete_breakpoint): New function.
3792 (delete_command): Use it.
3793 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
3794 (do_map_disable_breakpoint): New function.
3795 (disable_command): Use it.
3796 (do_map_enable_breakpoint): New function.
3797 (enable_command): Use it.
3798 (enable_once_breakpoint): Add argument.
3799 (enable_once_command): Update.
3800 (enable_delete_breakpoint): Add argument.
3801 (enable_delete_command): Update.
3802 (break_command_really): Set last_was_multi when needed.
3803 (check_tracepoint_command): Fix formatting.
3804 (validate_commands_for_breakpoint): New function.
3805 (breakpoint_set_commands): Use it.
3806 (tracepoint_save_command): Update.
3807 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
3808 Declare.
3809
3810 2010-03-24 Tom Tromey <tromey@redhat.com>
3811
3812 * breakpoint.h (struct counted_command_line): New struct.
3813 (struct breakpoint) <commands>: Change type.
3814 (struct bpstats) <commands>: Change type.
3815 <commands_left>: New field.
3816 * breakpoint.c (alloc_counted_command_line): New function.
3817 (incref_counted_command_line): Likewise.
3818 (decref_counted_command_line): Likewise.
3819 (do_cleanup_counted_command_line): Likewise.
3820 (make_cleanup_decref_counted_command_line): Likewise.
3821 (breakpoint_set_commands): Use decref_counted_command_line and
3822 alloc_counted_command_line.
3823 (commands_command): Don't error if breakpoint commands are
3824 executing.
3825 (commands_from_control_command): Likewise.
3826 (bpstat_free): Update.
3827 (bpstat_copy): Likewise.
3828 (bpstat_clear_actions): Likewise.
3829 (bpstat_do_actions_1): Likewise.
3830 (bpstat_stop_status): Likewise.
3831 (print_one_breakpoint_location): Likewise.
3832 (delete_breakpoint): Likewise.
3833 (bpstat_alloc): Initialize new field.
3834 (tracepoint_save_command): Update.
3835 * tracepoint.c (encode_actions): Update.
3836 (trace_dump_command): Update.
3837
3838 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
3839
3840 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
3841 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
3842 (read_structure_type): For RealView, set TYPE_STUB on structures with
3843 no byte size and no children.
3844 (read_subroutine_type): Mark functions as prototyped by default.
3845 * symtab.c (producer_is_realview): New function.
3846 * symtab.h (expand_line_sal): Fix declaration formatting.
3847 (producer_is_realview): Declare.
3848
3849 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
3850
3851 * arm-tdep.c (skip_prologue_function): New function.
3852 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
3853 (thumb_analyze_prologue): Document return value. Recognize more
3854 Thumb instructions, skippable calls, and some Thumb-2 instructions.
3855 Add debug output.
3856 (arm_skip_prologue): Remove call dummy check. Check the prologue
3857 for non-GNU compilers.
3858 (arm_instruction_changes_pc): New function.
3859 (arm_analyze_prologue): New function, broken out from
3860 arm_scan_prologue. Recognize more ARM instructions and skippable
3861 calls. Update comments. Handle NULL cache. Return the address
3862 of the first unrecognized instruction. Do not skip past other
3863 instructions which change control flow. Add debug output.
3864 (arm_scan_prologue): Use arm_analyze_prologue.
3865 (ARM_PC_32): Delete.
3866 (shifted_reg_val): Simplify ARM_PC_32 check.
3867
3868 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3869
3870 * tracepoint.c (tvariables_info_1): Actually compute
3871 the number of rows in the result.
3872
3873 2010-03-24 Pedro Alves <pedro@codesourcery.com>
3874
3875 * remote.c (crc32): Constify `buf' parameter.
3876 (remote_verify_memory): New, abstracted out from...
3877 (compare_sections_command): ... this. Remove hardcoded target
3878 checks.
3879 (init_remote_ops): Install remote_verify_memory.
3880 * target.c (target_verify_memory): New.
3881 * target.h (struct target_ops) <to_verify_memory>: New field.
3882 (target_verify_memory): Declare.
3883
3884 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3885
3886 Implement -trace-save.
3887
3888 * mi-cmds.h (mi_cmds_trace_save): Declare.
3889 * mi-cmds.c (mi_cmds): Register -trace-save.
3890 * mi/mi-main.c (mi_cmd_trace_save): New.
3891 * remote.c (remote_save_trace_data): Take const parameter.
3892 * target.h (struct target_ops::to_save_trace_data): Take
3893 const parameter.
3894 * target.c (update_current_target): Adjust to the above.
3895 * tracepoint.c (trave_save): New, extracted from
3896 (trace_save_command): ...this.
3897 (tfile_trace_find): Remove message that is unnecessary now
3898 that 'tfind' reports found frame.
3899 * tracepoint.h (trace_save): Declare.
3900
3901 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3902
3903 Implement -trace-find.
3904
3905 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
3906 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
3907 * mi/mi-main.c (mi_cmd_trace_find): New.
3908 * target.h (struct target_ops): Document to_trace_find.
3909 * tracepoint.h (tfind_1): Declare.
3910 * tracepoint.c (finish_tfind_command): Rename to...
3911 (tfind_1): ...this.
3912 * remote.c (remote_trace_find): Return -1 if target say
3913 there's no frame. Improve error diagnostics.
3914
3915 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3916
3917 -trace-define-variable and -trace-list-variables.
3918
3919 * tracepoint.c (create_trace_state_variable): Make
3920 private copy of name, as opposed to assuming the
3921 pointer lives forever.
3922 (tvariables_info_1): New.
3923 (tvariables_info): Use the above.
3924 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
3925 Declare.
3926 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
3927 and -trace-list-variables.
3928 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
3929 (mi_cmd_trace_list_variables): New.
3930 * mi/mi-main.c (mi_cmd_trace_define_variable)
3931 (mi_cmd_trace_list_variables): New.
3932
3933 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3934
3935 Implement -break-passcount.
3936
3937 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
3938 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
3939 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
3940
3941 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3942
3943 -trace-start/-trace-end/-trace-status.
3944
3945 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
3946 and -trace-stop.
3947 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
3948 (mi_cmd_trace_stop): Declare.
3949 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
3950 (mi_cmd_trace_stop): New.
3951 * tracepoint.c (start_tracing): New, extracted from...
3952 (trace_start_command): ...this.
3953 (trace_status_mi): New.
3954 * tracepoint.h (struct trace_status): Document
3955 stopping_tracepoint.
3956 (start_tracing, stop_tracing, trace_status_mi): Declare.
3957
3958 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3959
3960 Implement creating tracepoints with -break-insert.
3961
3962 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
3963 to mean that tracepoint should be created.
3964
3965 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3966
3967 * breakpoint.c (check_no_tracepoint_commands): Use
3968 current spelling of 'teval'.
3969
3970 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3971
3972 Unify actions and commands
3973
3974 * defs.h (read_command_lines, read_command_lines_1): New
3975 parameters validator and closure.
3976 * tracepoint.h (struct action_line): Remove.
3977 * breakpoint.h (struct breakpoint): Remove the 'actions'
3978 field.
3979 * defs.h (enum command_control_type): New value
3980 while_stepping_control.
3981 (struct command_line): Add comments.
3982 * breakpoint.c (breakoint_is_tracepoint): New.
3983 (breakpoint_set_commands): For tracepoints,
3984 verify the commands are permissible.
3985 (check_tracepoint_commands): New.
3986 (commands_command): Require that each new line is validated using
3987 check_tracepoint_command, if we set commands for a tracepoint.
3988 (create_tracepoint_from_upload): Likewise.
3989 (print_one_breakpoint_location): Remove the code to print
3990 actions specifically.
3991 (tracepoint_save_command): Relay to print_command_lines.
3992 * cli/cli-script.c (process_next_line): New parameters validator
3993 and closure. Handle 'while-stepping'. Call validator if not null.
3994 (read_command_lines, read_command_lines1): Likewise.
3995 (recurse_read_control_structure): New parameters validator and
3996 closure. Handle while_stepping_control.
3997 (print_command_lines): Handle while-stepping.
3998 (get_command_line, define_command, document_command): Adjust.
3999 * remote.c (remote_download_tracepoint): Adjust.
4000 * tracepoint.c (make_cleanup_free_actions, read_actions)
4001 (free_actions, do_free_actions_cleanup): Remove.
4002 (trace_actions_command): Use read_command_lines.
4003 (validate_actionline): Use error in one place.
4004 (encode_actions_1): New, extracted from...
4005 (encode_actions): ...this. Also use cleanups for exception
4006 safety.
4007 (trace_dump_command): Adjust.
4008 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
4009 it's tracepoint.
4010
4011 2010-03-23 Mike Frysinger <vapier@gentoo.org>
4012
4013 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
4014
4015 2010-03-22 Stan Shebs <stan@codesourcery.com>
4016
4017 * value.c (value_static_field): Be lazy about the field's value.
4018
4019 2010-03-22 Reid Kleckner <reid@kleckner.net>
4020
4021 PR gdb/11094
4022 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
4023 bp_jit_event.
4024 (disable_breakpoints_in_shlibs): Likewise.
4025
4026 2010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
4027
4028 * dwarf2read.c (partial_die_parent_scope): Work around buggy
4029 GCC 4.1 debug info generation (GCC PR c++/28460).
4030 (determine_prefix): Likewise.
4031
4032 2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
4033
4034 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
4035 get_current_arch.
4036 * tui/tui-layout.c (extract_display_start_addr): Likewise.
4037
4038 2010-03-19 Stan Shebs <stan@codesourcery.com>
4039
4040 * ax-gdb.c (gen_fetch): Handle bool.
4041 (gen_usual_unary): Ditto.
4042 (gen_cast): Ditto.
4043 (gen_equal): New function.
4044 (gen_less): New function.
4045 (gen_expr_binop_rest): Call them, also return integer type from
4046 logical operations.
4047 (gen_expr): Ditto.
4048
4049 2010-03-19 Tom Tromey <tromey@redhat.com>
4050
4051 * jv-lang.c (jv_dynamics_objfile_data_key)
4052 (jv_type_objfile_data_key): New globals.
4053 (class_symtab): Move earlier.
4054 (jv_per_objfile_free): New function.
4055 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
4056 parameter.
4057 Remove ancient #if 1.
4058 (add_class_symbol): Remove redundant declaration.
4059 (java_lookup_class): Use alloc_type, not alloc_type_arch.
4060 (java_link_class_type): Mark as static. Update.
4061 (jv_clear_object_type): New function.
4062 (set_java_object_type): Likewise.
4063 (get_java_object_type): Use set_java_object_type.
4064 (is_object_type): Likewise.
4065 (_initialize_java_language): Register new objfile keys.
4066 (get_java_class_symtab): Add 'gdbarch' parameter.
4067 (add_class_symtab_symbol): Update.
4068 (type_from_class): Update.
4069
4070 2010-03-19 Stan Shebs <stan@codesourcery.com>
4071
4072 * ax-general.c (ax_const_l): Fix a sizing bug.
4073
4074 2010-03-18 Joel Brobecker <brobecker@adacore.com>
4075
4076 GDB 7.1 released.
4077
4078 2010-03-18 Stan Shebs <stan@codesourcery.com>
4079 Pedro Alves <pedro@codesourcery.com>
4080
4081 * target.h (struct target_ops): New method
4082 to_set_circular_trace_buffer.
4083 (target_set_circular_trace_buffer): New macro.
4084 * target.c (update_current_target): Add
4085 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
4086 default behavior.
4087 * remote.c (remote_set_circular_trace_buffer): New function.
4088 (init_remote_ops): Add it to vector.
4089 * tracepoint.h (struct trace_status): New field traceframes_created,
4090 change buffer_size and buffer_free to int.
4091 * tracepoint.c (circular_trace_buffer): New global.
4092 (start_tracing): Send values of disconnected tracing and circular
4093 trace buffer settings.
4094 (set_circular_trace_buffer): New function.
4095 (parse_trace_state): Handle total space and frames created.
4096 (trace_status_command): Display total space and total frames
4097 created.
4098 (trace_save): Write out new status values.
4099 (parse_trace_status): Set traceframe_count, traceframes_created,
4100 buffer_free and buffer_size to -1 by default.
4101 (_initialize_tracepoint): New setshow for circular-trace-buffer.
4102 * NEWS: Mention the circular trace buffer option.
4103
4104 2010-03-18 Tom Tromey <tromey@redhat.com>
4105
4106 * infcmd.c (finish_command_continuation): Wrap print_return_value
4107 in TRY_CATCH.
4108
4109 2010-03-18 Joel Brobecker <brobecker@adacore.com>
4110
4111 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
4112 DIE has a name before creating the associated partial symbol.
4113 (read_func_scope): Emit a complaint if the subprogram does not
4114 have a name or when we can't extract the subprogram PC bounds.
4115
4116 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
4117
4118 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
4119 instead of selected frame architecture.
4120
4121 2010-03-18 Pedro Alves <pedro@codesourcery.com>
4122
4123 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
4124 a valid selected thread, and that it is not running.
4125 (advance_command): Ditto.
4126 (finish_command): Ditto.
4127
4128 2010-03-17 Stan Shebs <stan@codesourcery.com>
4129
4130 * ax-gdb.c (require_rvalue): Disallow non-scalars.
4131
4132 * infcall.c: Include tracepoint.h.
4133 (call_function_by_hand): Disallow calls in tfind mode.
4134 * infcmd.c: Include tracepoint.h.
4135 (ensure_not_tfind_mode): New function.
4136 (continue_1): Call it.
4137 (step_1) Ditto.
4138 (jump_command): Ditto.
4139 (signal_command): Ditto.
4140 (advance_command): Ditto.
4141 (until_command): Ditto.
4142 (finish_command): Ditto.
4143 * tracepoint.h (disconnect_or_stop_tracing): Declare.
4144
4145 * ax-gdb.h (struct axs_value): New field optimized_out.
4146 (gen_trace_for_var): Add gdbarch argument.
4147 * ax-gdb.c (gen_trace_static_fields): New function.
4148 (gen_traced_pop): Call it, add gdbarch argument.
4149 (gen_trace_for_expr): Update call to it.
4150 (gen_trace_for_var): Ditto, and report optimized-out variables.
4151 (gen_struct_ref_recursive): Check for optimized-out value.
4152 (gen_struct_elt_for_reference): Ditto.
4153 (gen_static_field): Pass gdbarch instead of expression, assume
4154 optimization if field not found.
4155 (gen_var_ref): Set the optimized_out flag.
4156 (gen_expr): Error on optimized-out variable.
4157 * tracepoint.c (collect_symbol): Handle struct-valued vars as
4158 expressions, skip optimized-out variables with computed locations.
4159 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
4160 erroring out if location expression missing.
4161 (loclist_tracepoint_var_ref): Don't error out here.
4162
4163 2010-03-17 Tom Tromey <tromey@redhat.com>
4164
4165 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
4166 DWARF data is available.
4167
4168 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
4169
4170 * symfile.c (generic_load): Reset breakpoints after loading.
4171
4172 2010-03-17 Tom Tromey <tromey@redhat.com>
4173
4174 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
4175
4176 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4177
4178 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
4179 create_breakpoint call, adjust the parameters.
4180
4181 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4182 Chandru <chandru@in.ibm.com>
4183
4184 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
4185 * valarith.c (value_subscripted_rvalue): Suppress error if
4186 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
4187
4188 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
4189
4190 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
4191
4192 2010-03-16 Joel Brobecker <brobecker@adacore.com>
4193
4194 * ada-tasks.c (task_command_1): Check that the task ptid is valid
4195 before doing the associated thread switch.
4196
4197 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
4198
4199 * MAINTAINERS: Update my email address.
4200
4201 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
4202
4203 Simplify MI breakpoint setting.
4204
4205 * breakpoint.c (break_command_really): Make nonstatic and
4206 rename to...
4207 (create_breakpoint): ...this. Rename prior function by this name
4208 to...
4209 (create_breakpoint_sal): ...this.
4210 (create_breakpoints): Rename to...
4211 (create_breakpoints_sal): ...this.
4212 (set_breakpoint): Remove.
4213 * breakpoint.h: Adjust to above changes.
4214 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
4215
4216 2010-03-15 Stan Shebs <stan@codesourcery.com>
4217
4218 * ax-gdb.c: Include cp-support.h.
4219 (find_field): Remove.
4220 (gen_primitive_field): New function.
4221 (gen_struct_ref_recursive): New function.
4222 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
4223 of find_field.
4224 (gen_static_field): New function.
4225 (gen_struct_elt_for_reference): New.
4226 (gen_namespace_elt): New.
4227 (gen_maybe_namespace_elt): New.
4228 (gen_aggregate_elt_ref): New.
4229 (gen_expr): Add OP_SCOPE, display opcode name in error message.
4230
4231 2010-03-15 Tom Tromey <tromey@redhat.com>
4232
4233 * dwarf2read.c (die_needs_namespace): Also return 0 for
4234 DW_TAG_subprogram.
4235
4236 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
4237
4238 PR c++/7936:
4239 * cp-support.h: Added char *declaration element to using_direct
4240 data struct.
4241 (cp_add_using): Added char *declaration argument.
4242 (cp_add_using_directive): Ditto.
4243 (cp_lookup_symbol_imports): made extern.
4244 * cp-namespace.c: Updated with the above changes.
4245 * dwarf2read.c (read_import_statement): Ditto.
4246 (read_namespace): Ditto.
4247 (read_import_statement): Support import declarations.
4248 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
4249 declarations.
4250 Added support for 'declaration_only' search.
4251 (cp_lookup_symbol_namespace): Attempt to search for the name as
4252 is before consideration of imports.
4253 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
4254 search at every block level search.
4255 Now takes language argument.
4256 (lookup_symbol_aux): Updated.
4257
4258 2010-03-15 Tom Tromey <tromey@redhat.com>
4259
4260 * c-exp.y (name_not_typename): Add 'operator' clause.
4261
4262 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
4263
4264 * configure.ac: Exit if ${gdb_target_obs}" is not set.
4265 * configure: Regenerate.
4266
4267 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4268
4269 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
4270 and ".sdynbss". Update the comment.
4271
4272 2010-03-15 Jie Zhang <jie@codesourcery.com>
4273
4274 * MAINTAINERS: Update my email address.
4275
4276 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
4277
4278 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
4279
4280 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
4281
4282 * charset.c [USE_WIN32API]: Include <windows.h>.
4283 (_initialize_charset): Correct type of w32_host_default_charset.
4284
4285 2010-03-14 Pedro Alves <pedro@codesourcery.com>
4286
4287 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
4288
4289 2010-03-12 Tom Tromey <tromey@redhat.com>
4290
4291 PR c++/9708:
4292 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
4293 in a lexical block does not need a namespace.
4294 (new_symbol) <DW_TAG_variable>: Put extern variables on
4295 list_in_scope in all cases.
4296
4297 2010-03-12 Stan Shebs <stan@codesourcery.com>
4298
4299 * ax-gdb.c (gen_expr): Add shift expressions.
4300 (gen_expr_binop_rest): Ditto.
4301
4302 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
4303
4304 * buildsym.c (finish_block): Reset using_directives pointer
4305 after block initialization.
4306
4307 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
4308
4309 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
4310 * i386-tdep.c (i386_word_names): Likewise.
4311
4312 2010-03-12 Pedro Alves <pedro@codesourcery.com>
4313
4314 * target.c (memory_xfer_partial): Don't use the stack cache if
4315 inspecting trace frames.
4316 * tracepoint.c (finish_tfind_command): Invalidate the target
4317 dcache.
4318
4319 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4320
4321 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
4322 for the PIC displacement, print also the displacement value.
4323 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
4324
4325 2010-03-10 Kevin Buettner <kevinb@redhat.com>
4326
4327 * remote-mips.c (close_ports, mips_initialize_cleanups)
4328 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
4329 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
4330 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
4331 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
4332 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
4333 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
4334 comments describing each of these functions.
4335 (mips_enter_debug, mips_exit_debug, common_open)
4336 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
4337 blank line after the comment describing the function.
4338
4339 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4340
4341 * solib-svr4.c (svr4_exec_displacement): Return now success, new
4342 parameter displacementp. Update comment.
4343 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
4344 element exists. Return if svr4_exec_displacement was not successful.
4345 Update comment.
4346
4347 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4348 Daniel Jacobowitz <dan@codesourcery.com>
4349
4350 * solib-svr4.c (read_program_header): Support type == -1 to read
4351 all program headers.
4352 (read_program_headers_from_bfd): New function.
4353 (svr4_static_exec_displacement): Remove and move the comment ...
4354 (svr4_exec_displacement): ... here. Remove variable found. New
4355 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
4356 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
4357 targets using read_program_headers_from_bfd. Remove the call of
4358 svr4_static_exec_displacement.
4359
4360 2010-03-10 Tom Tromey <tromey@redhat.com>
4361
4362 * dwarf2read.c (struct pubnames_header): Remove.
4363 (_PUBNAMES_HEADER): Remove.
4364 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
4365 (struct aranges_header): Remove.
4366 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
4367 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
4368 (PUBNAMES_SECTION): Remove.
4369 (ARANGES_SECTION): Remove.
4370 (dwarf2_locate_sections): Don't handle pubnames or aranges.
4371 (dwarf2_build_psymtabs): Remove dead code.
4372 (dwarf2_build_psymtabs_easy): Remove.
4373
4374 2010-03-10 Tom Tromey <tromey@redhat.com>
4375
4376 * elfread.c (elf_symfile_read): Don't call
4377 dwarf2_build_frame_info.
4378 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
4379 (struct dwarf2_per_objfile) <objfile>: New field.
4380 (dwarf2_has_info): Now idempotent. Set objfile field.
4381 (dwarf2_read_section): Check and set readin field. Call
4382 posix_madvise.
4383 (dwarf2_build_psymtabs): Don't read all sections.
4384 (read_type_comp_unit_head): Read types section.
4385 (create_debug_types_hash_table): Likewise.
4386 (init_cu_die_reader): Add asserts.
4387 (process_type_comp_unit): Add assert.
4388 (dwarf2_build_psymtabs_hard): Read info section.
4389 (load_partial_comp_unit): Add assert.
4390 (create_all_comp_units): Read info section.
4391 (load_full_comp_unit): Likewise.
4392 (dwarf2_ranges_read): Read ranges section.
4393 (dwarf2_record_block_ranges): Add assert.
4394 (dwarf2_read_abbrevs): Read abbrev section.
4395 (read_indirect_string): Read str section.
4396 (dwarf_decode_line_header): Read line section.
4397 (read_signatured_type_at_offset): Read types section.
4398 (dwarf_decode_macros): Read macinfo section.
4399 (dwarf2_symbol_mark_computed): Read loc section.
4400 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
4401 dwarf2_build_frame_info.
4402 (dwarf2_build_frame_info): Unconditionally set
4403 dwarf2_frame_objfile_data on the objfile.
4404 * configure.ac: Check for posix_madvise.
4405 * config.in, configure: Rebuild.
4406
4407 2010-03-10 Tom Tromey <tromey@redhat.com>
4408
4409 * xcoffread.c (xcoff_start_psymtab): Update.
4410 (xcoff_end_psymtab): Update.
4411 * psymtab.c (allocate_psymtab): Remove dead code.
4412 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
4413 void*.
4414 * mdebugread.c (parse_partial_symbols): Update.
4415 (new_psymtab): Likewise.
4416 * dwarf2read.c (process_psymtab_comp_unit): Update.
4417 (psymtab_to_symtab_1): Update.
4418 * dbxread.c (start_psymtab): Update.
4419 (end_psymtab): Likewise.
4420
4421 2010-03-10 Tom Tromey <tromey@redhat.com>
4422
4423 * xcoffread.c: Include psymtab.h.
4424 (xcoff_sym_fns): Update.
4425 * symtab.h (struct partial_symbol): Remove.
4426 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
4427 (struct partial_symtab): Remove.
4428 (PSYMTAB_TO_SYMTAB): Remove.
4429 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
4430 (find_pc_sect_psymtab): Remove.
4431 (find_pc_sect_symtab_via_partial): Declare.
4432 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
4433 (find_main_psymtab): Remove.
4434 (find_main_filename): Declare.
4435 (fixup_psymbol_section): Remove.
4436 (fixup_section): Declare.
4437 * symtab.c: Include psymtab.h.
4438 (lookup_symtab): Use lookup_symtab method.
4439 (lookup_partial_symtab): Remove.
4440 (find_pc_sect_psymtab_closer): Remove.
4441 (find_pc_sect_psymtab): Remove.
4442 (find_pc_sect_symtab_via_partial): New function.
4443 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
4444 (fixup_section): No longer static.
4445 (fixup_psymbol_section): Remove.
4446 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
4447 (lookup_global_symbol_from_objfile): Likewise.
4448 (lookup_symbol_aux_psymtabs): Remove.
4449 (lookup_symbol_aux_quick): New function.
4450 (lookup_symbol_global): Use lookup_symbol_aux_quick.
4451 (lookup_partial_symbol): Remove.
4452 (basic_lookup_transparent_type_quick): New function.
4453 (basic_lookup_transparent_type): Use it.
4454 (find_main_psymtab): Remove.
4455 (find_main_filename): New function.
4456 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
4457 (find_line_symtab): Use expand_symtabs_with_filename method.
4458 (output_partial_symbol_filename): New function.
4459 (sources_info): Use map_partial_symbol_filenames.
4460 (struct search_symbols_data): New type.
4461 (search_symbols_file_matches): New function.
4462 (search_symbols_name_matches): Likewise.
4463 (search_symbols): Use expand_symtabs_matching method.
4464 (struct add_name_data): Rename from add_macro_name_data.
4465 (add_macro_name): Update.
4466 (add_partial_symbol_name): New function.
4467 (default_make_symbol_completion_list): Use
4468 map_partial_symbol_names.
4469 (struct add_partial_symbol_name): New type.
4470 (maybe_add_partial_symtab_filename): New function.
4471 (make_source_files_completion_list): Use
4472 map_partial_symbol_filenames.
4473 (expand_line_sal): Use expand_symtabs_with_filename method.
4474 * symmisc.c: Include psymtab.h.
4475 (print_objfile_statistics): Use print_stats method.
4476 (dump_objfile): Use dump method.
4477 (dump_psymtab, maintenance_print_psymbols)
4478 (maintenance_info_psymtabs, maintenance_check_symtabs)
4479 (extend_psymbol_list): Remove.
4480 * symfile.h (struct quick_symbol_functions): New struct.
4481 (struct sym_fns) <qf>: New field.
4482 (sort_pst_symbols): Remove.
4483 (increment_reading_symtab): Declare.
4484 * symfile.c: Include psymtab.h.
4485 (compare_psymbols, sort_pst_symbols): Remove.
4486 (psymtab_to_symtab): Remove.
4487 (increment_reading_symtab): New function.
4488 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
4489 method.
4490 (set_initial_language): Use find_main_filename.
4491 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
4492 (free_named_symtabs): Remove unused code.
4493 (start_psymtab_common, add_psymbol_to_bcache)
4494 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
4495 Remove.
4496 * stack.c: Include psymtab.h, symfile.h.
4497 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
4498 * source.h (psymtab_to_fullname): Don't declare.
4499 * source.c: Include psymtab.h.
4500 (select_source_symtab): Use find_last_source_symtab method.
4501 (forget_cached_source_info): Use forget_cached_source_info
4502 method.
4503 (find_and_open_source): No longer static.
4504 (psymtab_to_fullname): Remove.
4505 * somread.c: Include psymtab.h.
4506 (som_sym_fns): Update.
4507 * psympriv.h: New file.
4508 * psymtab.h: New file.
4509 * psymtab.c: New file.
4510 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
4511 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
4512 * objfiles.c: Include psymtab.h.
4513 (objfile_relocate1): Use relocate method.
4514 (objfile_has_partial_symbols): Use has_symbols method.
4515 * mipsread.c: Include psymtab.h.
4516 (ecoff_sym_fns): Update.
4517 * mi/mi-cmd-file.c: Include psymtab.h.
4518 (print_partial_file_name): New function.
4519 (mi_cmd_file_list_exec_source_files): Use
4520 map_partial_symbol_filenames.
4521 * mdebugread.c: Include psympriv.h.
4522 * machoread.c: Include psympriv.h.
4523 (macho_sym_fns): Update.
4524 * m2-exp.y (yylex): Use lookup_symtab.
4525 * elfread.c: Include psympriv.h.
4526 (elf_sym_fns): Update.
4527 * dwarf2read.c: Include psympriv.h.
4528 * dbxread.c: Include psympriv.h.
4529 (aout_sym_fns): Update.
4530 * cp-support.c: Include psymtab.h.
4531 (read_in_psymtabs): Remove.
4532 (make_symbol_overload_list_qualified): Use
4533 expand_symtabs_for_function method.
4534 * coffread.c: Include psympriv.h.
4535 (coff_sym_fns): Update.
4536 * blockframe.c: Include psymtab.h.
4537 (find_pc_partial_function): Use find_pc_sect_symtab method.
4538 * ada-lang.h (ada_update_initial_language): Update.
4539 * ada-lang.c: Include psymtab.h.
4540 (ada_update_initial_language): Remove 'main_pst' argument.
4541 (ada_lookup_partial_symbol): Remove.
4542 (struct ada_psym_data): New type.
4543 (ada_add_psyms): New function.
4544 (ada_add_non_local_symbols): Use map_ada_symtabs method.
4545 (struct add_partial_datum): New type.
4546 (ada_add_partial_symbol_completions): New function.
4547 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
4548 (ada_exception_support_info_sniffer): Update.
4549 * Makefile.in (SFILES): Add psymtab.c.
4550 (COMMON_OBS): Add psymtab.o.
4551 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
4552
4553 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
4554
4555 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
4556
4557 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
4558
4559 PR C++/11236:
4560 * cp-namespace.c (cp_add_using): Deleted.
4561 (cp_add_using_directive): Use obstack allocations.
4562 Merged the function cp_add_using into this one.
4563 Added 'struct obstack *' argument.
4564 (cp_scan_for_anonymous_namespaces): Updated.
4565 * cp-support.h: Updated.
4566 * dwarf2read.c (read_import_statement): Updated.
4567 (read_namespace): Updated.
4568
4569 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
4570
4571 * windows-nat.c (cygwin_conv_path): Remove old macro.
4572
4573 2010-03-10 Pedro Alves <pedro@codesourcery.com>
4574
4575 * breakpoint.c (condition_command): Handle watchpoint conditions.
4576 (is_hardware_watchpoint): Add comment.
4577 (is_watchpoint): New.
4578 (update_watchpoint): Don't reparse the watchpoint's condition
4579 unless necessary.
4580 (WP_IGNORE): New.
4581 (watchpoint_check): Use it.
4582 (bpstat_check_watchpoint): Handle it.
4583 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
4584 conditions in a frame where it makes sense.
4585 (watch_command_1): Store the innermost block of the condition
4586 expression.
4587 (delete_breakpoint): Delete the watchpoint condition expression.
4588 * breakpoint.h (struct bp_location) <cond>: Update comment.
4589 (struct breakpoint): New field `cond_exp_valid_block'.
4590
4591 2010-03-09 Joel Brobecker <brobecker@adacore.com>
4592
4593 Adjust handling of Ada DIEs after dwarf2_physname patch.
4594 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
4595
4596 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
4597 Pierre Muller <muller@ics.u-strasbg.fr>
4598
4599 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
4600 from/to posix/win32.
4601 (windows_make_so): Use non-Cygwin 1.7 specific function.
4602 (windows_create_inferior): Make sure that cygallargs points to
4603 original args in non Cygwin 1.7. case.
4604
4605 2010-03-09 Michael Snyder <msnyder@vmware.com>
4606
4607 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
4608 after target_read_memory to get host byte order.
4609 (i386_process_record): Ditto.
4610
4611 2010-03-09 Keith Seitz <keiths@redhat.com>
4612
4613 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
4614 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
4615 print out const or volatile qualifiers, too.
4616 (c_type_print_args): Add parameters show_artificial and language.
4617 Skip artificial parameters when requested.
4618 Use the appropriate language printer.
4619 (c_type_print_varspec): Tell c_type_print_args to skip artificial
4620 parameters and pass language_c.
4621 * dwarf2read.c (die_list): New file global.
4622 (struct partial_die_info): Update comments for name field.
4623 (pdi_needs_namespace): Renamed to ...
4624 (die_needs_namespace): ... this. Rewrite.
4625 (dwarf2_linkage_name): Remove.
4626 (add_partial_symbol): Do not predicate the call to
4627 partial_die_full_name based on pdi_needs_namespace.
4628 Remove call to cp_check_possible_namespace_symbols and associated
4629 outdated comments.
4630 (guess_structure_name): Do not inspect child subprogram DIEs.
4631 (dwarf2_fullname): Update comments.
4632 Use die_needs_namespace to assist in computing the name.
4633 (read_func_scope): Use dwarf2_name to get the DIE's name.
4634 Use dwarf2_physname to get the "linkage name" of the DIE.
4635 (dwarf2_add_member_field): Use dwarf2_physname instead of
4636 dwarf2_linkage_name.
4637 (read_structure_type): For structs and classes, set TYPE_NAME, too.
4638 (determine_class): Remove.
4639 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
4640 except Ada.
4641 (new_symbol): Unconditionally call dwarf2_name.
4642 Compute the "linkage name" using dwarf2_physname.
4643 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
4644 When determining to scan for anonymous C++ namespaces, ignore
4645 the linkage name.
4646 (dwarf2_physname): New function.
4647 (dwarf2_full_name): Move content to new function and call
4648 that.
4649 (dwarf2_compute_name): "New" function.
4650 (_initialize_dwarf2_read): Initialize die_list.
4651 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
4652 physname.
4653 (gnu_v3_print_method_ptr): Use the physname for virtual methods
4654 without a demangled name.
4655 Print out type information for non-virtual methods.
4656 * linespec.c (decode_line_1): Force ANY string using "::" (or
4657 "." for java) to use decode_compound, and clean up any stray quoting.
4658 If we found a file symtab, re-evaluate whether the remainder is_quoted.
4659 (decode_compound): Stop consuming at an open parenthesis.
4660 Keep template parameters.
4661 Keep any overload information.
4662 Keep keywords like "const".
4663 Remove paren_pointer.
4664 Move is_quoted check from set_flags to here.
4665 Remove #if 0 code from 2000. Ten years is long enough.
4666 (find_method): Before comparing symbol names, canonicalize the string
4667 from the user.
4668 If a specific overload is requested, find it. Otherwise throw an error.
4669 (find_method_overload_end): New function.
4670 (set_flags): Remove.
4671 (decode_compound): Assume that parentheses are matched.
4672 It's a lot easier.
4673 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
4674 to cplus_demangle.
4675 * linespec.c (decode_line_1): Keep important keywords like
4676 "const" and "volatile".
4677 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
4678 * typeprint.h (c_type_print_args): Add declaration.
4679 * ui-file.c (do_ui_file_obsavestring): New function.
4680 (ui_file_obsavestring): New function.
4681 * ui-file.h (ui_file_obsavestring): Add declaration.
4682 * valops.c (find_overload_match): Resolve the object to
4683 a non-pointer type.
4684 If the object is a data member, search the object for the member
4685 and return with staticp set.
4686 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
4687 Do not attempt to extract a function name from non-function types.
4688 If the extracted function name and the original name are the same,
4689 we don't have a C++ method.
4690
4691 From Jan Kratochvil <jan.kratochvil@redhat.com>:
4692 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
4693
4694 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
4695 and arguments from symbol lookups.
4696 * ax-gdb.c (gen_expr): Likewise.
4697 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
4698 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
4699 lookup_possible_namespace_symbol): Likewise.
4700 * cp-support.c (read_in_psymtabs): Likewise.
4701 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
4702 * language.h (la_lookup_symbol_nonlocal): Likewise.
4703 * scm-valprint.c (scm_inferior_print): Likewise.
4704 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
4705 * solib-svr.c (elf_lookup_lib): Likewise.
4706 * solib.c (show_auto_solib_add): Likewise.
4707 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
4708 * symmisc.c (maintenance_check_symtabs): Likewise.
4709 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
4710 lookup_symbol_aux_local, lookup_symbol_aux_block,
4711 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
4712 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
4713 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
4714 basic_lookup_transparent_type, find_main_psymtab,
4715 lookup_block_symbol): Likewise.
4716 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
4717 lookup_symbol_global, lookup_symbol_aux_block,
4718 lookup_symbol_partial_symbol, lookup_block_symbol,
4719 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
4720
4721 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
4722
4723 * python/python-internal.h: Include symtab.h.
4724
4725 2010-03-09 Joel Brobecker <brobecker@adacore.com>
4726 Pierre Muller <muller@ics.u-strasbg.fr>
4727
4728 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
4729 * p-valprint.c (pascal_val_print): Remove undeed block and fix
4730 indentation.
4731
4732 2010-03-08 Tom Tromey <tromey@redhat.com>
4733
4734 * breakpoint.c (breakpoint_1): Add "QUIT".
4735
4736 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
4737 Pedro Alves <pedro@codesourcery.com>
4738
4739 * solib.c (solib_find): Replace extension if
4740 solib_symbols_extension is set in the target gdbarch.
4741 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
4742 solib_symbols_extension to "sym".
4743 * gdbarch.sh (solib_symbols_extension): New variable.
4744 (pstring): New function.
4745 * gdbarch.h, gdbarch.c: Regenerate.
4746
4747 2010-03-08 Tom Tromey <tromey@redhat.com>
4748
4749 PR cli/9591:
4750 * NEWS: Update.
4751 * utils.c: Include main.h.
4752 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
4753 (defaulted_query): Use default answer if `batch_flag'.
4754 * main.h (batch_flag): Declare.
4755 * main.c (batch_flag): New global.
4756 (captured_main): Remove 'batch'. Update.
4757
4758 2010-03-08 Kevin Buettner <kevinb@redhat.com>
4759
4760 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
4761 and Kevin Buettner:
4762
4763 * remote-mips.c (rockhopper_ops): New target_ops struct.
4764 (MON_ROCKHOPPER): New mips_monitor_type.
4765 (read_hex_value): New function.
4766 (mips_request): Send 8-byte values with a 'T' packet. Read the
4767 packet argument as a string and use read_hex_value to parse it.
4768 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
4769 (rockhopper_open): New function.
4770 (mips_wait): Read the PC, FP and SP fields as strings. Use
4771 read_hex_value to parse them and mips_set_register to commit them.
4772 (mips_set_register): New function.
4773 (mips_fetch_registers): Do not cast register value to "unsigned"
4774 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
4775 (mips_store_registers): Use a 'T' packet to set registers when
4776 using MON_ROCKHOPPER.
4777 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
4778 and expect the total to be printed before the entry address.
4779 (_initialize_remote_mips): Initialize and add rockhopper_ops.
4780
4781 2010-03-08 Kevin Buettner <kevinb@redhat.com>
4782
4783 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
4784 Change return value to int. Store value fetched in location
4785 addressed by `val'. Use function's return value as success
4786 or failure indicator. Adjust all callers.
4787
4788 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
4789
4790 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
4791
4792 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4793 Hui Zhu <teawater@gmail.com>
4794
4795 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
4796 tmp_to_stopped_data_address.
4797 (record_open): Reset tmp_to_stopped_by_watchpoint and
4798 tmp_to_stopped_data_address.
4799 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
4800 to_stopped_data_address.
4801
4802 2010-03-08 Hui Zhu <teawater@gmail.com>
4803
4804 * i386-tdep.c (i386_process_record): Initialize regnum.
4805
4806 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4807
4808 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
4809 Do not warn on ".gnu.liblist" and ".gnu.conflict".
4810
4811 2010-03-08 Joel Brobecker <brobecker@adacore.com>
4812
4813 Memory error when reading wrong core file.
4814 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
4815 errors while reading the inferior memory, and return zero if
4816 an exception was raised.
4817
4818 2010-03-07 Michael Snyder <msnyder@vmware.com>
4819
4820 * record.c (record_restore): Rename tmpu8 to rectype.
4821
4822 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
4823 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
4824
4825 (i386_record_push): Rename local tmpulongest to addr.
4826
4827 (i386_process_record): Rename local tmpulongest to addr.
4828
4829 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
4830 addr64.
4831
4832 Rename local variable tmpu8 to opcode8 and regnum.
4833
4834 2010-03-07 Joel Brobecker <brobecker@adacore.com>
4835
4836 * remote.c (remote_get_ada_task_ptid): New function.
4837 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
4838
4839 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
4840
4841 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
4842 block. Define helper macros to reduce ifdefs in code.
4843 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
4844 size. Call unadorned GetModuleFileNameEx rather than
4845 GetModuleFileNameEx*.
4846 (windows_make_so): Use __PMAX to denote maximum buffer size and
4847 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
4848 appropriate.
4849 (get_image_name): Use __PMAX to denote maximum buffer size.
4850 (handle_load_dll): Likewise.
4851 (windows_pid_to_exec_file): Likewise.
4852 (windows_create_inferior): Add many accommodations for older Cygwin and
4853 non-Cygwin.
4854 (bad_GetModuleFileNameExW): Control inclusion of this function based on
4855 __USEWIDE conditional.
4856 (bad_GetModuleFileNameExA): Likewise.
4857 (_initialize_loadable): Just use real function names without the dyn_
4858 part since they are defined earlier.
4859
4860 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
4861 Tom Tromey <tromey@redhat.com>
4862
4863 * utils.c (host_char_to_target): Add 'gdbarch' argument.
4864 (parse_escape): Likewise.
4865 * python/py-utils.c (unicode_to_target_string): Update.
4866 (unicode_to_target_python_string): Update.
4867 (target_string_to_unicode): Update.
4868 * printcmd.c (printf_command): Update.
4869 * p-exp.y (yylex): Update.
4870 * objc-exp.y (yylex): Update.
4871 * mi/mi-parse.c: Include charset.h.
4872 (mi_parse_escape): New function.
4873 (mi_parse_argv): Use it.
4874 * jv-exp.y (yylex): Update.
4875 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
4876 function.
4877 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
4878 * gdbarch.sh (auto_charset, auto_wide_charset): New.
4879 * gdbarch.c: Rebuild.
4880 * gdbarch.h: Rebuild.
4881 * defs.h (parse_escape): Update.
4882 * cli/cli-setshow.c: Include arch-utils.h.
4883 (do_setshow_command): Update.
4884 * cli/cli-cmds.c (echo_command): Update.
4885 * charset.h (target_charset, target_wide_charset): Update.
4886 * charset.c: Include arch-utils.h.
4887 (target_charset_name): Default to "auto".
4888 (target_wide_charset_name): Likewise.
4889 (show_target_charset_name): Handle "auto".
4890 (show_target_wide_charset_name): Likewise.
4891 (be_le_arch): New global.
4892 (set_be_le_names): Add 'gdbarch' argument.
4893 (validate): Likewise. Don't call set_be_le_names.
4894 (set_charset_sfunc, set_host_charset_sfunc)
4895 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
4896 Update.
4897 (target_charset): Add 'gdbarch' argument.
4898 (target_wide_charset): Likewise. Remove 'byte_order' argument.
4899 (auto_target_charset_name): New global.
4900 (default_auto_charset, default_auto_wide_charset): New functions.
4901 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
4902 for target charsets. Copy result of nl_langinfo. Use GetACP if
4903 USE_WIN32API.
4904 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
4905 remove 'byte_order' argument. Update.
4906 (classify_type): Likewise.
4907 (c_emit_char): Update.
4908 (c_printchar): Update.
4909 (c_printstr): Update.
4910 (c_get_string): Update.
4911 (evaluate_subexp_c): Update.
4912 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
4913 Declare.
4914 * python/python.c (gdbpy_target_charset): New function.
4915 (gdbpy_target_wide_charset): Likewise.
4916 (GdbMethods): Update.
4917 * NEWS: Update.
4918
4919 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
4920
4921 * symfile.c (build_section_addr_info_from_objfile): Do not mask
4922 off high address bits.
4923
4924 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
4925
4926 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
4927 address as UnsignedLongLong, not LongLong.
4928
4929 2010-03-05 Kevin Buettner <kevinb@redhat.com>
4930 Pedro Alves <pedro@codesourcery.com>
4931
4932 * remote-mips.c (gdbthread.h): Include.
4933 (remote_mips_ptid): Declare.
4934 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
4935 (common_open): Set inferior_ptid, add it as an inferior, and
4936 as a thread too. Delete FIXME comment regarding start_remote().
4937 (mips_close): Invoke generic_mourn_inferior().
4938 (mips_kill): Make sure that target_mourn_inferior is invoked.
4939 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
4940 it's now invoked from mips_close().
4941 (mips_load): Don't null out inferior_ptid. Don't call
4942 clear_symtab_users().
4943 (mips_thread_alive, mips_pid_to_str): New functions.
4944 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
4945 to_thread_alive and to_pid_to_str operations.
4946
4947 2010-03-04 Tom Tromey <tromey@redhat.com>
4948
4949 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
4950 in DWARF 3 and later.
4951 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
4952
4953 2010-03-04 Keith Seitz <keiths@redhat.com>
4954
4955 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
4956 If the filename portion of the linespec was quoted, recheck the
4957 remainder for additional quoting.
4958 (locate_first_half): Skip over completer chars, too.
4959
4960 2010-03-04 Tom Tromey <tromey@redhat.com>
4961
4962 * printcmd.c (printf_command): Pass dummy argument to
4963 printf_filtered.
4964
4965 2010-03-04 Doug Evans <dje@google.com>
4966
4967 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
4968 unwound_fp.
4969
4970 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
4971
4972 2010-03-04 Pedro Alves <pedro@codesourcery.com>
4973
4974 * breakpoint.c (update_watchpoint): Create a sentinel location if
4975 the software watchpoint isn't watching any memory.
4976 (breakpoint_address_bits): Skip dummy software watchpoint locations.
4977
4978 2010-03-04 Pedro Alves <pedro@codesourcery.com>
4979
4980 * utils.c (fputs_maybe_filtered): Check if there's already a top
4981 level interpreter before dereferencing it. If there isn't one,
4982 don't paginate either.
4983
4984 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4985
4986 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
4987 the state right when single stepping.
4988 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
4989 Get the next PC along with the instruction state.
4990 (thumb_get_next_pc): Remove.
4991 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
4992
4993 2010-03-04 Hui Zhu <teawater@gmail.com>
4994
4995 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
4996
4997 2010-03-03 Pedro Alves <pedro@codesourcery.com>
4998
4999 * utils.c (fputs_maybe_filtered): Always disable pagination if the
5000 top level interpreter is MI.
5001
5002 2010-03-03 Stan Shebs <stan@codesourcery.com>
5003
5004 * remote.c (remote_download_tracepoint): Iterate over locations.
5005 * tracepoint.c (validate_actionline): Ditto.
5006 (encode_actions): Add location argument.
5007 (trace_dump_command): Check all locations to see if stepping
5008 frame.
5009
5010 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
5011 Eli Zaretskii <eliz@gnu.org>
5012
5013 * NEWS: Add X86 general purpose registers section.
5014
5015 2010-03-03 Tom Tromey <tromey@redhat.com>
5016
5017 PR mi/11098:
5018 * varobj.c (install_new_value): Handle case where new print_value
5019 is NULL.
5020
5021 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
5022
5023 PR gdb/11345:
5024 * printcmd.c (printf_command): Print end of format string using
5025 printf_filtered.
5026
5027 2010-03-02 Tom Tromey <tromey@redhat.com>
5028
5029 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
5030 * defs.h (read_command_lines_1): Add missing 'void'.
5031 * cli/cli-script.c (recurse_read_control_structure): Add missing
5032 'void'.
5033 (read_next_line): Likewise.
5034 (read_command_lines_1): Likewise.
5035
5036 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
5037
5038 * spu-tdep.c (spu_analyze_prologue): Track instruction to
5039 store backchain as part of prologue.
5040
5041 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
5042
5043 * progspace.c (update_address_spaces): Update inferior address spaces
5044 also.
5045
5046 2010-03-02 Doug Evans <dje@google.com>
5047
5048 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
5049 lowpc,highpc args to addrmap_set_empty.
5050
5051 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
5052
5053 * amd64-tdep.c (amd64_byte_names): New.
5054 (amd64_word_names): Likewise.
5055 (amd64_dword_names): Likewise.
5056 (amd64_pseudo_register_name): Likewise.
5057 (amd64_pseudo_register_read): Likewise.
5058 (amd64_pseudo_register_write): Likewise.
5059 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
5060 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
5061 set_gdbarch_pseudo_register_write and
5062 set_tdesc_pseudo_register_name. Don't call
5063 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
5064
5065 * i386-tdep.c (i386_num_mmx_regs): Removed.
5066 (i386_num_pseudo_regs): Likewise.
5067 (i386_byte_names): New.
5068 (i386_word_names): Likewise.
5069 (i386_byte_regnum_p): Likewise.
5070 (i386_word_regnum_p): Likewise.
5071 (i386_mmx_regnum_p): Updated.
5072 (i386_pseudo_register_name): Make it global. Handle byte and
5073 word pseudo-registers.
5074 (i386_pseudo_register_read): Likewise.
5075 (i386_pseudo_register_write): Likewise.
5076 (i386_pseudo_register_type): Handle byte, word and dword
5077 pseudo-registers
5078 (i386_register_reggroup_p): Don't include pseudo
5079 registers, except for MXX, in any register groups. Don't
5080 include pseudo byte, word, dword registers in general_reggroup.
5081 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
5082 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
5083 pseudo-registers after word pseudo-registers. Call
5084 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
5085
5086 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
5087 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
5088 eax_regnum.
5089 (i386_byte_regnum_p): New.
5090 (i386_word_regnum_p): Likewise.
5091 (i386_dword_regnum_p): Likewise.
5092 (i386_pseudo_register_name): Likewise.
5093 (i386_pseudo_register_read): Likewise.
5094 (i386_pseudo_register_write): Likewise.
5095
5096 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
5097
5098 * target-descriptions.c (tdesc_type): Remove
5099 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
5100 (tdesc_predefined_types): Likewise.
5101 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
5102 if flag name is empty.
5103 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
5104
5105 * features/i386/32bit-core.xml: Define i386_eflags.
5106 * features/i386/64bit-core.xml: Likewise.
5107
5108 * features/i386/32bit-sse.xml: Define i386_mxcsr.
5109 * features/i386/64bit-sse.xml: Likewise.
5110
5111 * features/i386/amd64-linux.c: Regenerated.
5112 * features/i386/amd64.c: Likewise.
5113 * features/i386/i386-linux.c: Likewise.
5114 * features/i386/i386.c: Likewise.
5115
5116 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
5117
5118 * gdbtypes.c (append_composite_type_field_raw): New.
5119 (append_composite_type_field_aligned): Use the new function.
5120 * gdbtypes.h (append_composite_type_field_raw): Declare.
5121 * target-descriptions.c (struct tdesc_type_field): Add start and end.
5122 (struct tdesc_type_flag): New type.
5123 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
5124 kind. Add size to u.u. Add u.f for flags.
5125 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
5126 (tdesc_free_type): Likewise.
5127 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
5128 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
5129 (tdesc_add_bitfield, tdesc_add_flag): New.
5130 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
5131 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
5132 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
5133 current_type. Add current_type_size and current_type_is_flags.
5134 (tdesc_start_union): Clear the new fields.
5135 (tdesc_start_struct, tdesc_start_flags): New.
5136 (tdesc_start_field): Handle struct fields, including bitfields.
5137 (field_attributes): Make type optional. Add start and end.
5138 (union_children): Rename to struct_union_children.
5139 (union_attributes): Rename to struct_union_attributes. Add optional
5140 size.
5141 (flags_attributes): New.
5142 (feature_children): Add struct and flags.
5143 * features/gdb-target.dtd: Add flags and struct to features.
5144 Make field type optional. Add field start and end.
5145
5146 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
5147
5148 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
5149 (amd64_linux_read_description): Likewise.
5150 (_initialize_amd64_linux_nat): Set to_read_description to
5151 amd64_linux_read_description.
5152
5153 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
5154 (amd64_linux_register_name): Removed.
5155 (amd64_linux_register_type): Likewise.
5156 (amd64_linux_core_read_description): New.
5157 (amd64_linux_init_abi): Set target description to
5158 tdesc_amd64_linux if needed. Support orig_rax in target
5159 description. Don't call set_gdbarch_register_name nor
5160 set_gdbarch_register_type. Call
5161 set_gdbarch_core_read_description.
5162 (_initialize_amd64_linux_tdep): Call
5163 initialize_tdesc_amd64_linux.
5164
5165 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
5166
5167 * amd64-tdep.c: Include "features/i386/amd64.c".
5168 (amd64_register_names): Removed.
5169 (amd64_register_name): Likewise.
5170 (amd64_register_type): Likewise.
5171 (amd64_init_abi): Set num_core_regs and register_names. Set
5172 target description to tdesc_amd64 if needed. Don't call
5173 set_gdbarch_register_name nor set_gdbarch_register_type.
5174 (_initialize_amd64_tdep): New.
5175
5176 * i386-linux-nat.c (i386_linux_read_description): New.
5177 (_initialize_i386_linux_nat): Set to_read_description to
5178 i386_linux_read_description.
5179
5180 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
5181 (i386_linux_register_name): Removed.
5182 (i386_linux_core_read_description): New.
5183 (i386_linux_read_description): Likewise.
5184 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
5185 Set target description to tdesc_i386_linux if needed. Support
5186 orig_eax. Set register_reggroup_p. Call
5187 set_gdbarch_core_read_description.
5188 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
5189
5190 * i386-linux-tdep.h (tdesc_i386_linux): New.
5191
5192 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
5193 with I387_NUM_REGS.
5194
5195 * i386-tdep.c: Include "features/i386/i386.c".
5196 (i386_register_names): Make it const.
5197 (i386_mmx_names): Likewise.
5198 (i386_num_register_names): Removed.
5199 (i386_register_name): Likewise.
5200 (i386_eflags_type): Likewise.
5201 (i386_mxcsr_type): Likewise.
5202 (i386_sse_type): Likewise.
5203 (i386_register_type): Likewise.
5204 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
5205 (i386_pseudo_register_name): New.
5206 (i386_pseudo_register_type): Likewise.
5207 (i386_mmx_type): Make it static.
5208 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
5209 I387_NUM_REGS. Set num_core_regs and register_names. Don't
5210 call set_gdbarch_register_name nor set_gdbarch_register_type.
5211 Set register_reggroup_p. Set target description to tdesc_i386
5212 if needed. Call set_tdesc_pseudo_register_type,
5213 set_tdesc_pseudo_register_name and tdesc_use_registers.
5214 (_initialize_i386_tdep): Call initialize_tdesc_i386.
5215 initialize_tdesc_x86_64.
5216
5217 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
5218 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
5219 register_names, tdesc and register_reggroup_p.
5220 (I386_NUM_FREGS): Removed.
5221 (i386_eflags_type): Likewise.
5222 (i386_mxcsr_type): Likewise.
5223 (i386_mmx_type): Likewise.
5224 (i386_sse_type): Likewise.
5225 (i386_register_name): Likewise.
5226 (i386_regnum): Add I386_MXCSR_REGNUM.
5227 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
5228
5229 * i387-tdep.h (I387_NUM_REGS): New.
5230
5231 * regformats/i386/i386-linux.dat: Generated.
5232 * regformats/i386/i386.dat: Likewise.
5233 * regformats/i386/amd64-linux.dat: Likewise.
5234 * regformats/i386/amd64.dat: Likewise.
5235
5236 * regformats/reg-i386-linux.dat: Removed.
5237 * regformats/reg-i386.dat: Likewise.
5238 * regformats/reg-x86-64-linux.dat: Likewise.
5239 * regformats/reg-x86-64.dat: Likewise.
5240
5241 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
5242
5243 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
5244 cygwin_conv_path API rather than the deprecated
5245 cygwin_conv_to_full_posix_path.
5246 * windows-nat.c:
5247 (GetModuleFileNameExA): Undefine for Cygwin.
5248 (GetModuleFileNameExW): Define for Cygwin.
5249 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
5250 Call GetModuleFileNameExW and convert path to POSIX using
5251 cygwin_conv_path.
5252 (windows_make_so): Always define p. Drop unused variable m.
5253 Don't use Win32 functions to check file existance, rather use
5254 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
5255 Use canonicalize_file_name to get full path.
5256 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
5257 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
5258 use correct target buffer size in call to WideCharToMultiByte.
5259 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
5260 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
5261 (windows_create_inferior): Convert all paths and arguments to wchar_t
5262 and use CreateProcessW on Cygwin.
5263 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
5264 (bad_GetModuleFileNameExA): Undefine for Cygwin.
5265 (bad_GetModuleFileNameExW): Define for Cygwin.
5266 (_initialize_loadable): Load GetModuleFileNameExW into
5267 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
5268
5269 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
5270
5271 PR python/11036
5272 * python/py-frame.c (frapy_read_var): Add block argument and logic
5273 to cope with user provided blocks.
5274
5275 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5276
5277 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
5278 New comment.
5279
5280 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
5281
5282 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
5283 (COMMON_OBS): ... to here since it's used unconditionally.
5284 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
5285 (SFILES): To here.
5286
5287 2010-02-26 David Daney <ddaney@caviumnetworks.com>
5288
5289 * mips-linux-tdep.c: Update struct sigframe comments.
5290 (SIGFRAME_CODE_OFFSET): Delete macro.
5291 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
5292 this_frame's sp.
5293 (mips_linux_n32n64_sigframe_init): Same.
5294
5295 2010-02-26 Kevin Buettner <kevinb@redhat.com>
5296
5297 * remote-mips.c (mips_load): Don't use pseudo-register when
5298 invalidating regcache.
5299
5300 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
5301
5302 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
5303
5304 2010-02-26 Pedro Alves <pedro@codesourcery.com>
5305
5306 * NEWS: Add "New targets" section, and mention ARM Symbian
5307 support.
5308
5309 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
5310
5311 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
5312 add ADDR_SIZE member.
5313 (allocate_piece_closure): Update.
5314 (copy_pieced_value_closure): Likewise.
5315 (dwarf2_evaluate_loc_desc): Likewise.
5316 (read_pieced_value): Use DWARF address size instead of
5317 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
5318
5319 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
5320 Tom Tromey <tromey@redhat.com>
5321
5322 * python/py-type.c (typy_lookup_typename): Add in block argument.
5323 If provided restrict lookup to specified blocks.
5324 (gdbpy_lookup_type): Likewise.
5325 (typy_lookup_type): Likewise.
5326
5327 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
5328
5329 Symbian config
5330
5331 gdb/
5332 * arm-symbian-tdep.c: New.
5333 * configure.tgt (arm*-*-symbianelf*): New target.
5334 (*-*-symbianelf*): New OS.
5335 * osabi.c (gdb_osabi_names): Add Symbian.
5336 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
5337 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
5338 (ALLDEPFILES): Add arm-symbian-tdep.c.
5339
5340 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
5341
5342 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
5343
5344 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5345
5346 * mi/mi-main.c (mi_cmd_execute): Fix typo.
5347
5348 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
5349 Tom Tromey <tromey@redhat.com>
5350 Thiago Jung Bauermann <bauerman@br.ibm.com>
5351
5352 * python/python.c (_initialize_python): Call
5353 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
5354 gdbpy_initialize_blocks.
5355 * python/python-internal.h: Declare struct symbol, block and
5356 symtab_and_line. Declare block_object_type and
5357 symbol_object_type
5358 (gdbpy_lookup_symbol gdbpy_block_for_pc)
5359 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
5360 (symbol_to_symbol_object, block_to_block_object)
5361 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
5362 (gdbpy_initialize_blocks ): Declare.
5363 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
5364 (frapy_select): Add methods.
5365 (frapy_read_var): Add symbol branch.
5366 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
5367 py-block.
5368 (SUBDIR_PYTHON_SRCS): Likewise.
5369 (py-symbol.o): New rule.
5370 (py-symtab.o): Likewise.
5371 (py-block.o): Likewise.
5372 * python/py-symbol.c: New file.
5373 * python/py-symtab.c: Likewise.
5374 * python/py-block.c: Likewise.
5375
5376 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5377
5378 PR gdb/11321
5379
5380 * inferior.h (prepare_for_detach): Declare.
5381 (struct inferior) <detaching>: New field.
5382 * infrun.c (prepare_for_detach): New.
5383 (handle_inferior_event) <random signal>: Don't stop if detaching.
5384 * target.c (target_detach): Call prepare_for_detach.
5385
5386 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5387
5388 Per-process displaced stepping queue.
5389
5390 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
5391 (displaced_step_gdbarch, displaced_step_closure,
5392 (displaced_step_original, displaced_step_copy): Move globals to
5393 this...
5394 (struct displaced_step_inferior_state): ... new structure.
5395 (displaced_step_inferior_states): New global.
5396 (get_displaced_stepping_state, add_displaced_stepping_state)
5397 (remove_displaced_stepping_state, infrun_inferior_exit): New
5398 functions.
5399 (displaced_step_clear): Add displaced_step_inferior_state
5400 parameter, and adjust to handle it.
5401 (displaced_step_clear_cleanup): Parameter is now a
5402 displaced_step_inferior_state. Adjust.
5403 (displaced_step_prepare): Adjust.
5404 (displaced_step_fixup, displaced_step_fixup)
5405 (infrun_thread_ptid_changed, resume): Adjust.
5406 (init_wait_for_inferior): Don't call displaced_step_clear.
5407 (infrun_thread_stop_requested): Rewrite.
5408 (_initialize_infrun): Install infrun_inferior_exit as
5409 inferior_exit observer.
5410
5411 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5412
5413 * inferior.h (ptid_match): Declare.
5414 * infrun.c (ptid_match): New.
5415 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
5416 (handle_notification): Add debug output.
5417 * linux-nat.c (ptid_match): Delete.
5418
5419 2010-02-24 David S. Miller <davem@davemloft.net>
5420
5421 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
5422 * syscalls/sparc-linux.xml: New.
5423 * syscalls/sparc64-linux.xml: New.
5424 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
5425 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
5426 (sparc32_linux_get_syscall_number): New function.
5427 (sparc32_linux_init_abi): Set syscall XML file name and hook up
5428 syscall number fetcher.
5429 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
5430 (sparc64_linux_get_syscall_number): New function.
5431 (sparc64_linux_init_abi): Set syscall XML file name and hook up
5432 syscall number fetcher.
5433
5434 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
5435
5436 Multiexec MI
5437
5438 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
5439 * inferior.c (add_inferior_silent): Notify inferior_added
5440 observer.
5441 (delete_inferior_1): Notify inferior_removed observer.
5442 (exit_inferior_1): Pass inferior, not pid, to observer.
5443 (inferior_appeared): Likewise.
5444 (add_inferior_with_spaces): New.
5445 (add_inferior_command): Use the above.
5446 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
5447 Declare.
5448
5449 * inflow.c (inflow_inferior_exit): Likewise.
5450 * jit.c (jit_inferior_exit_hook): Likewise.
5451
5452 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
5453 remove-inferior.
5454 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
5455 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
5456 (report_initial_inferior): New.
5457 (mi_inferior_removed): Register the above. Make sure
5458 inferior_added observer is called on the first inferior.
5459 (mi_new_thread, mi_thread_exit): Thread group is now identified by
5460 inferior number, not pid.
5461 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
5462 affected.
5463 * mi/mi-main.c (current_context): New.
5464 (proceed_thread_callback): Use typed closure.
5465 Proceed everything if pid is 0. Most implementation split into
5466 (proceed_thread): ... this.
5467 (run_one_inferior): New.
5468 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
5469 Adjust for multiexec behaviour.
5470 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
5471 (mi_cmd_execute): Handle the 'thread-group' option here.
5472 Do some extra checks.
5473 * mi-parse.c (mi_parse): Handle the --all and --thread-group
5474 options.
5475 * mi-parse.h (struct mi_parse): New fields all and thread_group.
5476
5477 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
5478
5479 Make -exec-run a proper MI commands.
5480
5481 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
5482 * mi/mi-cmds.c (mi_cmds): Adjust.
5483 * mi/mi-main.c (mi_cmd_exec_run): New.
5484
5485 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5486 Stan Shebs <stan@codesourcery.com>
5487
5488 * tracepoint.h (set_traceframe_number)
5489 (cleanup_restore_current_traceframe): Declare.
5490 * tracepoint.c (set_traceframe_number): New.
5491 (struct current_traceframe_cleanup): New.
5492 (do_restore_current_traceframe_cleanup)
5493 (restore_current_traceframe_cleanup_dtor)
5494 (make_cleanup_restore_current_traceframe): New.
5495 * infrun.c: Include tracepoint.h.
5496 (fetch_inferior_event): Switch out and in of tfind mode.
5497
5498 2010-02-24 Pedro Alves <pedro@codesourcery.com>
5499
5500 * breakpoint.c (breakpoint_init_inferior): Also delete
5501 bp_shlib_event breakpoints.
5502 * solib-frv.c (enable_break): Remove call to
5503 remove_solib_event_breakpoints.
5504 * solib-svr4.c (enable_break): Ditto.
5505 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
5506 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
5507 * solib-som.c (som_solib_create_inferior_hook): Ditto.
5508 * solib-spu.c (spu_enable_break): Ditto.
5509
5510 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
5511
5512 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
5513
5514 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
5515
5516 * varobj.c (varobj_update): Avoid non-constants in initializers.
5517
5518 2010-02-23 Tom Tromey <tromey@redhat.com>
5519
5520 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
5521 handle big-endian values.
5522 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
5523
5524 2010-02-22 Pedro Alves <pedro@codesourcery.com>
5525
5526 PR9605
5527
5528 gdb/
5529 * breakpoint.c (insert_bp_location): If inserting the read
5530 watchpoint failed, fallback to an access watchpoint.
5531 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
5532 if the value changed, if not watching the same memory for writes.
5533 (watchpoint_locations_match): Add comment.
5534 (update_global_location_list): Copy the location's watchpoint type.
5535 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
5536 handle read watchpoints here.
5537 (i386_insert_watchpoint): Read watchpoints aren't supported.
5538 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
5539 packets.
5540 * target.h (target_insert_watchpoint): Update description.
5541
5542 2010-02-19 Tom Tromey <tromey@redhat.com>
5543
5544 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
5545 * m2-typeprint.c (m2_print_type): Update.
5546 * gdbtypes.c (recursive_dump_type): Update.
5547 (copy_type_recursive): Update.
5548 * c-typeprint.c (c_type_print_varspec_prefix): Update.
5549 (c_type_print_base): Update.
5550 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
5551 Remove.
5552 (struct cplus_struct_type) <ntemplate_args>: Remove.
5553 <struct template_arg>: Remove.
5554 <is_dynamic>: Move earlier.
5555 (TYPE_TEMPLATE_ARGS): Remove.
5556 (TYPE_NTEMPLATE_ARGS): Remove.
5557 (TYPE_TEMPLATE_ARG): Remove.
5558
5559 2010-02-19 Tom Tromey <tromey@redhat.com>
5560
5561 PR c++/8693, PR c++/9496:
5562 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
5563 * c-exp.y (lex_one_token): Rename from yylex. Don't call
5564 write_dollar_variable. Don't try to classify NAME tokens.
5565 (token_and_value): New type.
5566 (token_fifo, popping, name_obstack): New globals.
5567 (classify_name): New function.
5568 (classify_inner_name): Likewise.
5569 (yylex): Likewise.
5570 (VARIABLE): Now has type sval.
5571 (exp : VARIABLE): Call write_dollar_variable.
5572 (qualified_name): Use TYPENAME, not typebase. Add production for
5573 multiple "::" instances.
5574 (variable): Use name_not_typename.
5575 (qualified_type): Remove.
5576 (typebase): Update.
5577
5578 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
5579
5580 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
5581 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
5582 found by bfd_get_section_by_name.
5583 * symfile.h (struct section_addr_info) <sectindex>: New comment.
5584
5585 2010-02-19 Joel Brobecker <brobecker@adacore.com>
5586
5587 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
5588 7.0 section" into "Changes in 7.1".
5589
5590 2010-02-19 Joel Brobecker <brobecker@adacore.com>
5591
5592 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
5593 * version.in: Bump version to 7.1.50.20100219-cvs.
5594
5595 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
5596
5597 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
5598 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
5599
5600 2010-02-17 Tom Tromey <tromey@redhat.com>
5601
5602 * NEWS: Add Python API Improvements section.
5603
5604 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
5605
5606 * NEWS: Correct typo.
5607
5608 2010-02-17 Tom Tromey <tromey@redhat.com>
5609
5610 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
5611
5612 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5613
5614 * symfile.c (build_section_addr_info_from_objfile): Include sections
5615 only if they are SEC_ALLOC or SEC_LOAD.
5616
5617 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
5618
5619 PR shlibs/11293
5620 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
5621 of ULONGEST for address size.
5622
5623 2010-02-17 Tom Tromey <tromey@redhat.com>
5624
5625 * NEWS: Add C++ improvements section.
5626
5627 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
5628
5629 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
5630 PyThreadState_Swap): Avoid "statement with no effect" warning.
5631
5632 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5633
5634 * solib-svr4.c (enable_break <target_auxv_search>): New variable
5635 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
5636
5637 2010-02-17 Tristan Gingold <gingold@adacore.com>
5638 Petr Hluzin <petr.hluzin@gmail.com>
5639
5640 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
5641 gdb_assert. Fix info->size for SIG prologue.
5642
5643 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5644
5645 * infcmd.c (show_inferior_tty_command): Check for NULL.
5646 Correct output message.
5647
5648 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5649
5650 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
5651 FUNCTION contains parentheses. Improve removal of a trailing
5652 single quote.
5653
5654 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5655
5656 * gcore.c (do_bfd_delete_cleanup): New function.
5657 (gcore_command): Use it. Discard the cleanup after success.
5658 (gcore_copy_callback): Delete dead code.
5659
5660 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5661
5662 * symfile.c (addr_info_make_relative): Always use
5663 find_lowest_section.
5664
5665 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
5666
5667 * NEWS: Added entry for namespace fixes.
5668
5669 2010-02-15 Tom Tromey <tromey@redhat.com>
5670
5671 * dwarf2read.c (guess_structure_name): Allocate name on the
5672 objfile obstack.
5673
5674 2010-02-15 Tom Tromey <tromey@redhat.com>
5675
5676 * c-typeprint.c (c_type_print_base): Reverse order of test.
5677
5678 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5679
5680 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
5681 initialize it from ELF BFD. Extend the prelink condition by it.
5682
5683 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5684
5685 * defs.h (parse_pid_to_attach): New.
5686 * utils.c (parse_pid_to_attach): New.
5687 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
5688 * gnu-nat.c (gnu_attach): Likewise.
5689 * nto-procfs.c (procfs_attach): Likewise.
5690 * procfs.c (procfs_attach): Likewise.
5691 * windows-nat.c (windows_attach): Likewise.
5692 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
5693 * inf-ttrace.c (inf_ttrace_attach): Likewise.
5694 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
5695 check.
5696
5697 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
5698
5699 * MAINTAINERS: Add myself for write after approval privileges.
5700
5701 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5702
5703 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
5704 block.
5705
5706 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5707
5708 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
5709 only if INFO_VERBOSE.
5710
5711 2010-02-12 Tomas Holmberg <th@virtutech.com>
5712
5713 * mi/mi-main.c: Added the --reverse flag to the following MI
5714 commands: exec-continue, exec-finish, exec-next, exec-step,
5715 exec-next-instruction, exec-step-instruction. This is to
5716 support reverse execution over the MI interface to gdb.
5717
5718 2010-02-12 Pedro Alves <pedro@codesourcery.com>
5719
5720 * tracepoint.c (_initialize_tracepoint): Specify that the address
5721 range of `tfind outsize' is exclusive, and that the address range
5722 of `tfind range' is inclusive, in the commands' help strings.
5723
5724 2010-02-12 Joel Brobecker <brobecker@adacore.com>
5725
5726 Spurious "dll not found" error messages on x64-windows.
5727 * windows-nat.c: Add include of complaints.h.
5728 (handle_unload_dll): Change dll-not-found error into a complaint.
5729
5730 2010-02-12 Pedro Alves <pedro@codesourcery.com>
5731
5732 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
5733 bp_tracepoint and bp_fast_tracepoint, not
5734 bp_loc_software_breakpoint.
5735 (update_global_location_list): Tracepoints are never duplicates of
5736 anything.
5737
5738 2010-02-12 Pedro Alves <pedro@codesourcery.com>
5739
5740 * breakpoint.c (break_command_really): Change return type to int.
5741 Return false if no breakpoint was created, true otherwise.
5742 (trace_command): Don't set the tracepoint count if no tracepoint
5743 was created.
5744 (ftrace_command): Ditto.
5745 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
5746 created in the breakpoints table.
5747
5748 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5749 Ulrich Weigand <uweigand@de.ibm.com>
5750
5751 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
5752
5753 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5754
5755 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
5756 the offset value isn't of integral type.
5757
5758 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5759
5760 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
5761 New.
5762
5763 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5764
5765 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
5766 non-subscriptable types.
5767 * valarith.c (binop_types_user_defined_p): New, abstracted out
5768 from ...
5769 (binop_user_defined_p): ... this.
5770 * value.h (binop_types_user_defined_p): Declare.
5771
5772 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5773
5774 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
5775 Merge uploaded TSVs before merging uploaded tracepoints.
5776
5777 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5778
5779 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
5780
5781 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
5782
5783 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
5784 whitespace character after a dot in comment.
5785 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
5786 Likewise.
5787 (list_args_or_locals): For the 'all' (that is
5788 -stack-list-variables) case, always output list of tuples.
5789 Output 'arg' field if variable is argument.
5790
5791 2010-02-10 Tom Tromey <tromey@redhat.com>
5792
5793 * parser-defs.h (parser_debug): Declare.
5794 * parse.c (_initialize_parse): Install "debug parser" set/show
5795 command.
5796 (parser_debug): New global.
5797 (show_parserdebug): New function.
5798 * c-exp.y (c_parse): Set yydebug.
5799
5800 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
5801
5802 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
5803 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
5804 (tdesc_predefined_types): Add i387_ext, i386_eflags and
5805 i386_mxcsr.
5806 (tdesc_find_type): New.
5807 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
5808 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
5809
5810 * target-descriptions.h (tdesc_find_type): New.
5811
5812 2010-02-10 Michael Snyder <msnyder@vmware.com>
5813
5814 * gdb-gdb.py: Comment fix.
5815
5816 2010-02-09 Tristan Gingold <gingold@adacore.com>
5817
5818 * machoread.c (macho_symfile_relocate): New function.
5819 (macho_sym_fns): Use macho_symfile_relocate instead of
5820 default_symfile_relocate.
5821 (macho_oso_data): New type.
5822 (current_oso): New variable.
5823 (macho_add_oso_symfile): Do not compute section_addr_info, but
5824 instead set vma of sections.
5825 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
5826 Set and clear current_oso.
5827
5828 2010-02-09 Joel Brobecker <brobecker@adacore.com>
5829
5830 Wrong type description for tagged type parameter.
5831 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
5832 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
5833 reference to a tagged type.
5834
5835 2010-02-09 Tristan Gingold <gingold@adacore.com>
5836
5837 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
5838 brothers of the parent.
5839
5840 2010-02-08 Tom Tromey <tromey@redhat.com>
5841
5842 PR c++/8017:
5843 * value.h: Update.
5844 * valops.c (search_struct_field): Make 'name' const.
5845 (search_struct_method): Likewise.
5846 (find_method_list): Make 'method' const.
5847 (value_struct_elt): Make 'name' and 'err' const.
5848 (value_find_oload_method_list): Make 'method' const.
5849 (find_overload_match): Make 'name' const.
5850 * eval.c (evaluate_subexp_standard): New locals function,
5851 function_name.
5852 <OP_FUNCALL>: Handle OP_SCOPE specially.
5853
5854 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
5855
5856 * infrun.c (handle_inferior_event): Do not look up regcache
5857 for exited processes.
5858
5859 2010-02-08 Chris Moller <moller@mollerware.com>
5860
5861 PR gdb/10728
5862 * valarith.c (value_ptrdiff): Added a test for a zero type length,
5863 warn if found, and assume length = 1.
5864
5865 2010-02-08 Chris Moller <cmoller@redhat.com>
5866
5867 PR gdb/9067
5868 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
5869 cp_print_static_field) Fix use of obstacks.
5870
5871 2010-02-08 Pedro Alves <pedro@codesourcery.com>
5872
5873 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
5874 resumed LWPs as resumed.
5875 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
5876 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
5877 of throwing an internal error. If an LWP of a process we're not
5878 waiting for reports a signal, don't force collecting a SIGSTOP,
5879 and if it was breakpoint hit in non-stop mode, cancel it. Don't
5880 go through all LWPs cancelling breakpoints in non-stop mode.
5881 (resume_stopped_resumed_lwps): New.
5882 (linux_nat_wait): Use it.
5883
5884 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
5885
5886 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
5887 i386/amd64 and i386/amd64-linux.
5888 (i386/i386-expedite): New.
5889 (i386/i386-linux-expedite): Likewise.
5890 (i386/amd64-expedite):Likewise.
5891 (i386/amd64-linux-expedite): Likewise.
5892 ($(outdir)/i386/i386-linux.dat): Likewise.
5893 ($(outdir)/i386/amd64.dat): Likewise.
5894 ($(outdir)/i386/amd64-linux.dat): Likewise.
5895
5896 * features/i386/32bit-core.xml: New.
5897 * features/i386/32bit-linux.xml: Likewise.
5898 * features/i386/32bit-sse.xml: Likewise.
5899 * features/i386/64bit-core.xml: Likewise.
5900 * features/i386/64bit-linux.xml: Likewise.
5901 * features/i386/64bit-sse.xml: Likewise.
5902 * features/i386/i386-linux.xml: Likewise.
5903 * features/i386/i386.xml: Likewise.
5904 * features/i386/amd64-linux.xml: Likewise.
5905 * features/i386/amd64.xml: Likewise.
5906 * features/i386/i386-linux.c: Likewise.
5907 * features/i386/i386.c: Likewise.
5908 * features/i386/amd64-linux.c: Likewise.
5909 * features/i386/amd64.c: Likewise.
5910
5911 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
5912
5913 PR c++/7935:
5914 * cp-support.h: Added char* alias element to using_direct data
5915 struct.
5916 (cp_add_using): Added char* alias argument.
5917 (cp_add_using_directive): Ditto.
5918 * cp-namespace.c: Updated with the above changes.
5919 (cp_lookup_symbol_imports): Check for aliases.
5920 * dwarf2read.c (read_import_statement): Figure out local alias
5921 for the import and pass it on to cp_add_using.
5922 (read_namespace): Pass alias argument to cp_add_using.
5923
5924 2010-02-05 Hui Zhu <teawater@gmail.com>
5925
5926 * defs.h (gdb_bfd_errmsg): New extern.
5927 * exec.c (exec_file_attach): Change bfd_errmsg to
5928 gdb_bfd_errmsg.
5929 * utils.c (AMBIGUOUS_MESS1): New macro.
5930 (AMBIGUOUS_MESS2): New macro.
5931 (gdb_bfd_errmsg): New function.
5932
5933 2010-02-04 Doug Evans <dje@google.com>
5934
5935 * solib-svr4.c (enable_break): Add comment.
5936
5937 2010-02-04 Anthony Green <green@moxielogic.com>
5938
5939 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
5940 gracefully.
5941
5942 2010-02-04 Tom Tromey <tromey@redhat.com>
5943
5944 * valops.c (search_struct_field): Account for
5945 value_embedded_offset. Fix check for virtual base past the end of
5946 the object. Use value_copy when making a slice of the value.
5947
5948 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
5949
5950 PR tui/9622
5951 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
5952 only if gdb_stdout is a tty.
5953
5954 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
5955
5956 * target-descriptions.c: Include "osabi.h".
5957 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
5958 OSABI.
5959
5960 2010-02-04 Tristan Gingold <gingold@adacore.com>
5961
5962 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
5963 (macho_symtab_read): Adjust calls to macho_add_oso.
5964 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
5965 (macho_symfile_read): Adjust call to macho_oso_symfile.
5966 (macho_new_init): Move this function after declarations.
5967 (macho_symfile_init): Ditto.
5968 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
5969 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
5970
5971 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
5972
5973 Include MI command in remotelog.
5974
5975 * mi/mi-main.c (mi_execute_command): Call target_log_command.
5976
5977 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5978
5979 * remote.c (remote_state): Remove gdbarch.
5980 (init_remote_state): Don't set gdbarch.
5981 (remote_query_supported): Pass target_gdbarch instead of
5982 rs->gdbarch to gdbarch_qsupported.
5983
5984 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5985
5986 * gdbarch.sh: Add qsupported.
5987
5988 * gdbarch.c: Regenerated.
5989 * gdbarch.h: Likewise.
5990
5991 * remote.c (remote_state): Add gdbarch.
5992 (init_remote_state): Set gdbarch.
5993 (remote_query_supported): Support gdbarch_qsupported.
5994
5995 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
5996
5997 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
5998 __FreeBSD_kernel_version.
5999
6000 2010-02-03 Tristan Gingold <gingold@adacore.com>
6001
6002 * symfile.h (struct sym_fns): Add sym_relocate field.
6003 (default_symfile_relocate): New prototype.
6004 (symfile_relocate_debug_section): First argument is now an objfile.
6005 * symfile.c (default_symfile_relocate): Rename from
6006 symfile_relocate_debug_section, first argument is now an objfile.
6007 (symfile_relocate_debug_section): New function.
6008 * coffread.c (coff_sym_fns): Set sym_relocate field.
6009 * somread.c (som_sym_fns): Ditto.
6010 * mipsread.c (ecoff_sym_fns): Ditto.
6011 * machoread.c (macho_sym_fns): Ditto.
6012 * elfread.c (elf_sym_fns): Ditto.
6013 * dwarf2read.c (dwarf2_read_section): Ditto.
6014 * xcoffread.c (xcoff_sym_fns): Ditto.
6015 * dbxread.c (aout_sym_fns): Ditto.
6016 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
6017 (elfstab_build_psymtabs): Ditto.
6018
6019 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
6020
6021 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
6022
6023 2010-02-02 Tom Tromey <tromey@redhat.com>
6024
6025 * valops.c (value_cast_structs): Try downcasting using the RTTI
6026 type.
6027
6028 2010-02-02 Tom Tromey <tromey@redhat.com>
6029
6030 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
6031 (gnuv2_baseclass_offset): Now static.
6032 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
6033 * gnu-v2-abi.h: Remove.
6034
6035 2010-02-02 Tom Tromey <tromey@redhat.com>
6036
6037 * m2-typeprint.c (m2_record_fields): Don't use
6038 TYPE_DECLARED_TYPE.
6039 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
6040 (struct main_type) <flag_declared_class>: New field.
6041 (struct cplus_struct_type) <declared_type>: Remove.
6042 <ntemplate_args>: Move earlier.
6043 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
6044 (DECLARED_TYPE_TEMPLATE): Remove.
6045 (TYPE_DECLARED_TYPE): Remove.
6046 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
6047 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
6048 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
6049 TYPE_DECLARED_TYPE.
6050
6051 2010-02-02 Tom Tromey <tromey@redhat.com>
6052
6053 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
6054 * valops.c (search_struct_field): Compute nbases after calling
6055 CHECK_TYPEDEF.
6056 (check_field): Call CHECK_TYPEDEF.
6057 * cp-valprint.c (cp_print_value): Pass correct address to
6058 baseclass_offset. Fix check for virtual base past the end of the
6059 object. Don't offset address passed to cp_print_value_fields or
6060 apply_val_pretty_printer.
6061 (cp_print_value_fields): Fix call to val_print.
6062 (cp_print_value_fields_rtti): New function.
6063 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
6064 * p-valprint.c (pascal_object_print_value_fields): Fix call to
6065 val_print.
6066 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
6067 offset to address.
6068 * language.h (struct language_defn) <la_val_print>: Document.
6069 * c-lang.h (cp_print_value_fields_rtti): Declare.
6070
6071 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6072
6073 PR libc/11214:
6074 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
6075 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
6076 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
6077
6078 2010-02-01 Michael Matz <matz@suse.de>
6079 Daniel Jacobowitz <dan@codesourcery.com>
6080
6081 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
6082 functions use a frame pointer.
6083
6084 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6085
6086 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
6087 by a conditional setting DYN_ADDR. Use DYN_ADDR.
6088 * config/djgpp/fnchange.lst: Add translations for
6089 symbol-without-target_section.exp and symbol-without-target_section.c.
6090
6091 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
6092
6093 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
6094 (remote_breakpoint_for_pc): Correct invalid_p check.
6095 * gdbarch.c: Regenerated.
6096
6097 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
6098
6099 * arm-tdep.c (arm_find_mapping_symbol): New function, from
6100 arm_pc_is_thumb.
6101 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
6102 (extend_buffer_earlier): New function.
6103 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
6104 (arm_adjust_breakpoint_address): New function.
6105 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
6106
6107 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
6108
6109 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
6110 (arm_linux_thumb2_le_breakpoint): New constants.
6111 (arm_linux_init_abi): Set thumb2_breakpoint and
6112 thumb2_breakpoint_size.
6113 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
6114 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
6115 Implement support for single stepping through IT blocks if
6116 a 32-bit Thumb breakpoint instruction is available.
6117 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
6118 is available, use it when needed.
6119 (arm_remote_breakpoint_from_pc): New function.
6120 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
6121 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
6122 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
6123
6124 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
6125
6126 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
6127 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
6128 * gdbarch.c, gdbarch.h: Regenerated.
6129 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
6130 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
6131 gdbarch_remote_breakpoint_from_pc.
6132
6133 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
6134
6135 * infrun.c (prepare_to_proceed): Handle other signals which might
6136 match a breakpoint.
6137 (handle_inferior_event): Move the check for unusual breakpoint
6138 signals earlier.
6139
6140 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
6141
6142 amd64 - function returning record with field straddling 2 registers.
6143 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
6144 a record of length <= 16 in which a field straddles the two
6145 eightbytes.
6146
6147 2010-01-29 Joel Brobecker <brobecker@adacore.com>
6148
6149 Implement return values on amd64-windows.
6150 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
6151 (amd64_windows_return_value): New function.
6152 (amd64_windows_init_abi): Call set_gdbarch_return_value with
6153 amd64_windows_return_value.
6154
6155 2010-01-29 Joel Brobecker <brobecker@adacore.com>
6156
6157 amd64-windows: 32 bytes allocated on stack by caller for integer
6158 parameter registers.
6159 * i386-tdep.h (struct gdbarch_tdep): Add new field
6160 integer_param_regs_saved_in_caller_frame.
6161 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
6162 tdep->integer_param_regs_saved_in_caller_frame to 1.
6163 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
6164 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
6165
6166 2010-01-29 Joel Brobecker <brobecker@adacore.com>
6167
6168 amd64-windows: memory args passed by pointer during function calls.
6169 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
6170 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
6171 where tdep->memory_args_by_pointer is non-zero.
6172 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
6173 tdep->memory_args_by_pointer to 1.
6174
6175 2010-01-29 Joel Brobecker <brobecker@adacore.com>
6176
6177 amd64-windows: Integer parameters in function calls.
6178 * i386-tdep.h (enum amd64_reg_class): New, moved here from
6179 amd64-tdep.c.
6180 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
6181 call_dummy_integer_regs, and classify.
6182 * amd64-tdep.h (amd64_classify): Add declaration.
6183 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
6184 (amd64_reg_class): Delete, moved to i386-tdep.h.
6185 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
6186 Replace call to amd64_classify by call to tdep->classify.
6187 (amd64_push_arguments): Get the list of registers to use for
6188 passing integer parameters from the gdbarch tdep structure,
6189 rather than using a hardcoded one. Replace calls to amd64_classify
6190 by calls to tdep->classify.
6191 (amd64_push_dummy_call): Get the register number used for
6192 the "hidden" argument from tdep->call_dummy_integer_regs.
6193 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
6194 and tdep->call_dummy_integer_regs. Set tdep->classify.
6195 * amd64-windows-tdep.c: Add include of gdbtypes.h.
6196 (amd64_windows_dummy_call_integer_regs): New static global.
6197 (amd64_windows_classify): New function.
6198 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
6199 tdep->call_dummy_integer_regs and tdep->classify.
6200
6201 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
6202
6203 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
6204 for the new regcache. All callers updated.
6205 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
6206 (get_thread_arch_regcache): Do not set aspace here.
6207 * regcache.h (regcache_xmalloc): Update declaration.
6208
6209 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
6210 regcache_xmalloc updated.
6211
6212 2010-01-28 Joel Brobecker <brobecker@adacore.com>
6213
6214 Another -Wunused-function error in procfs.c (sparc-solaris)
6215 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
6216 Only define if SYS_syssgi is defined.
6217 (remove_dbx_link_breakpoint): Delete declaration. Move up.
6218 (dbx_link_addr, insert_dbx_link_bpt_in_file)
6219 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
6220 is itself defined.
6221
6222 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
6223
6224 * windows-nat.c (windows_initialization_done): New variable.
6225 (get_windows_debug_event): Issue error when process dies before
6226 completely initializing.
6227 (do_initial_windows_stuff): Set flag to indicate when we are done with
6228 the initial steps of attaching to the child.
6229
6230 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
6231
6232 * symtab.h (struct symbol <symtab>): New comment on NULL values.
6233
6234 2010-01-27 Doug Evans <dje@google.com>
6235
6236 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
6237
6238 * breakpoint.c (bpstat_stop_status): Delete useless code.
6239
6240 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
6241
6242 * printcmd.c (display_uses_solib_p): Remove variable section. Access
6243 objfile via SYMBOL_SYMTAB.
6244
6245 2010-01-26 Tom Tromey <tromey@redhat.com>
6246
6247 PR exp/7643:
6248 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
6249 coerce_array on result.
6250
6251 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
6252
6253 * cp-namespace.c (cp_lookup_symbol_namespace): Added
6254 search_parent argument.
6255 (cp_add_using): Initialize 'searched' field.
6256 (reset_directive_searched): New function.
6257 * cp-support.h: Add 'searched' field to using_direct struct.
6258 (cp_lookup_symbol_imports): Ditto.
6259 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
6260 Perform recursive search.
6261 Implement non parent search.
6262 * valops.c (value_maybe_namespace_elt): Updated.
6263
6264 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
6265
6266 PR gdb/10929:
6267 * dwarf2read.c (read_lexical_block_scope): Create blocks for
6268 scopes which contain using directives even if they contain no
6269 declarations.
6270 * symtab.c (lookup_symbol_aux): Pass lowest level block to
6271 la_lookup_symbol_nonlocal.
6272 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
6273 cp_lookup_symbol_namespace.
6274 (cp_lookup_symbol_namespace): Perform an import lookup at every
6275 block level.
6276 (cp_lookup_symbol_imports): New function.
6277 (cp_lookup_symbol_in_namespace): New function.
6278
6279 2010-01-25 Tom Tromey <tromey@redhat.com>
6280
6281 PR gdb/11049:
6282 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
6283 result.
6284
6285 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
6286
6287 * configure.ac: Only use host_os part when disabling TUI on osf.
6288 Use test to check variables, prefix strings with x.
6289 * configure: Regenerate.
6290
6291 * solib-osf.c (osf_current_sos): Initialize tail.
6292
6293 2010-01-25 gingold <gingold@adacore.com>
6294
6295 * windows-nat.c (windows_continue): Use %x to print thread id.
6296 (get_windows_debug_event): Ditto.
6297
6298 2010-01-22 Tom Tromey <tromey@redhat.com>
6299
6300 PR symtab/11199:
6301 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
6302 type and arguments. Use smash_to_methodptr_type.
6303 (read_structure_type): Call quirk_gcc_member_function_pointer
6304 later.
6305 * gdbtypes.h (smash_to_methodptr_type): Declare.
6306 * gdbtypes.c (smash_to_methodptr_type): New function.
6307 (lookup_methodptr_type): Use it.
6308
6309 2010-01-21 Tom Tromey <tromey@redhat.com>
6310
6311 PR symtab/11198:
6312 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
6313 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
6314 * glibc-tdep.c (find_minsym_and_objfile): Remove.
6315 (glibc_skip_solib_resolver): Use
6316 lookup_minimal_symbol_and_objfile.
6317
6318 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
6319
6320 * inflow.c (check_syscall): Guard by #if clause for GO32 and
6321 WIN32 targets.
6322
6323 2010-01-20 Tom Tromey <tromey@redhat.com>
6324
6325 PR backtrace/10770:
6326 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
6327 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
6328 * dwarf2expr.c (new_dwarf_expr_context): Allocate
6329 dwarf_stack_values, not CORE_ADDRs.
6330 (execute_stack_op): Change DW_OP_div and comparison operators to
6331 use signed operands.
6332
6333 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
6334
6335 Per-inferior args and tty and environment.
6336
6337 * infcmd.c (inferior_args): Rename to ...
6338 (inferior_args_scratch): ... this.
6339 (inferior_io_terminal): Rename to ...
6340 (inferior_io_terminal_scratch): ... this.
6341 (inferior_argc, inferior_argv): Remove.
6342 (set_inferior_io_terminal, get_inferior_io_terminal): Store
6343 inside current_inferior().
6344 (set_inferior_tty_command, show_inferior_tty_command): New.
6345 (get_inferior_args, set_inferior_args): Store inside
6346 current_inferior().
6347 (notice_args_set): Likewise and rename to...
6348 (set_args_command): ... this.
6349 (set_inferior_args_vector): Likewise.
6350 (notice_args_read): Rename to...
6351 (show_args_command): ...new.
6352 (tty_command): Remove.
6353 (run_command_1): Don't free old args, as they are freed by
6354 set_inferior_arg now.
6355 (run_no_args_command): Likewise.
6356 (inferior_environ): Remove.
6357 (run_command_1): Use environment of the current inferior.
6358 (environment_info, set_environment_command)
6359 (unset_environment_command, path_info, path_command): Likewise.
6360 (_initialize_infcmd): Adjust for function and variable renames.
6361 Do not init inferior_environ.
6362 * inferior.h (set_inferior_arg): Adjust prototype.
6363 (struct inferior): New fields args, argc, argv, terminal, environment.
6364 (inferior_environ): Remove declaration.
6365 * inferior.c (free_inferior): Free new fields.
6366 (add_inferior_silent): Initialize 'environment' field.
6367 * main.c (captured_main): Set arguments only after the initial
6368 inferior has been created. Set set_inferior_io_terminal,
6369 not tty_command.
6370 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
6371 inferior.
6372 (_initialize_mi_cmd_env): Adjust for disappearance of global
6373 inferior_environ.
6374 * solib.c (solib_find): Use environment of the current inferior.
6375
6376 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6377
6378 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
6379 HAVE_PYTHON.
6380 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
6381
6382 2010-01-20 Joel Brobecker <brobecker@adacore.com>
6383
6384 Get rid of ada-lang.c:function_name_from_pc.
6385 * ada-lang.c: Add "stack.h" #include.
6386 (function_name_from_pc): Delete.
6387 (is_known_support_routine): Replace call to function_name_from_pc
6388 by call to find_frame_funname.
6389 (ada_unhandled_exception_name_addr_from_raise): Likewise.
6390
6391 2010-01-19 Tom Tromey <tromey@redhat.com>
6392
6393 PR c++/11026:
6394 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
6395 objfile obstack.
6396
6397 2010-01-19 Tom Tromey <tromey@redhat.com>
6398
6399 * top.c (stop_sig, float_handler, do_nothing): Remove.
6400
6401 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
6402
6403 * breakpoint.c (watchpoint_check): Check the call
6404 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
6405 Extend the comment.
6406 * config/djgpp/fnchange.lst: Add translations for
6407 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
6408 watchpoint-cond-gone-stripped.c.
6409
6410 2010-01-19 Tom Tromey <tromey@redhat.com>
6411
6412 PR c++/8000:
6413 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
6414 into parent scope, and enumerator into grandparent scope.
6415
6416 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6417
6418 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
6419
6420 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6421
6422 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
6423 i[34567]86-*-solaris2.1[0-9]*.
6424 * configure.tgt: Likewise.
6425
6426 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6427
6428 * NEWS: Document the source command enhancement allowing it
6429 to load Python scripts. Document the "set/show script-extension"
6430 commands.
6431
6432 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6433
6434 Add -Wunused-function to compile flags.
6435 * configure.ac: Add -Wunused-function to build_warnings.
6436 * configure: Regenerate.
6437
6438 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6439
6440 "delete" ada-lex.c:input function, not used.
6441 * ada-lex.l: #define YY_NO_INPUT.
6442
6443 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6444
6445 Delete free_named_symtabs and associated cleanup.
6446 * symfile.h (free_named_symtabs): Delete declaration.
6447 * symfile.c: Remove some commented out code (clear_symtab_users_once).
6448 (cashier_psymtab): Comment function out.
6449 Delete declaration.
6450 (free_named_symtabs): Delete.
6451 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
6452 * dbxread.c (end_psymtab): Likewise.
6453 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
6454 * exec.c (exec_close_1): Ditto.
6455 * xcoffread.c (xcoff_end_psymtab): Likewise.
6456
6457 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6458
6459 * stack.c (print_block_frame_labels): Comment function out.
6460
6461 2010-01-19 Joel Brobecker <brobecker@adacore.com>
6462
6463 Delete unused or undefined functions.
6464 * breakpoint.c (ep_parse_optional_filename): Delete.
6465 * dcache.c (dcache_write_line): Remove declaration.
6466 * infrun.c (build_infrun): Remove declaration.
6467 * tracepoint.c (tracepoint_save_command): Remove declaration.
6468 * linux-nat.c (init_lwp_list): Delete. No longer used.
6469 * event-loop.c (check_async_signal_handlers): Delete declaration.
6470 * infrun.c (init_execution_control_state): Delete.
6471 (proceed): Update comment to avoid mentioning
6472 init_execution_control_state.
6473 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
6474 * ada-lang.c (ada_to_static_fixed_value): Delete.
6475 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
6476 * cp-namespace.c (cp_copy_usings): Delete.
6477 * xml-syscall.c (xml_number_of_syscalls): Delete.
6478 * progspace.c (find_program_space_by_num): Delete.
6479 * inflow.c (handle_sigio): Delete declaration.
6480 * hppa-tdep.c (hppa_alignof): Delete.
6481 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
6482 (mipsnbsd_core_osabi_sniffer): Delete.
6483
6484 2010-01-18 Tom Tromey <tromey@redhat.com>
6485
6486 PR c++/9680:
6487 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
6488 (CONST_CAST): New tokens.
6489 (exp): Add new productions.
6490 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
6491 reinterpret_cast.
6492 (is_cast_operator): New function.
6493 (yylex): Handle cast operators specially.
6494 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
6495 UNOP_REINTERPRET_CAST>: New cases.
6496 * expprint.c (print_subexp_standard): Likewise.
6497 (op_name_standard): Likewise.
6498 (dump_subexp_body_standard): Likewise.
6499 * parse.c (operator_length_standard): Likewise.
6500 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
6501 UNOP_REINTERPRET_CAST.
6502 * gdbtypes.c (class_types_same_p): New function.
6503 (is_ancestor): Use it.
6504 (is_public_ancestor): New function.
6505 (is_unique_ancestor_worker): Likewise.
6506 (is_unique_ancestor): Likewise.
6507 * gdbtypes.h (class_types_same_p, is_public_ancestor)
6508 (is_unique_ancestor): Declare.
6509 * valops.c (value_reinterpret_cast): New function.
6510 (dynamic_cast_check_1): Likewise.
6511 (dynamic_cast_check_2): Likewise.
6512 (value_dynamic_cast): Likewise.
6513 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
6514
6515 2010-01-18 Joel Brobecker <brobecker@adacore.com>
6516
6517 Fix build failure when building without Python support.
6518 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
6519 is not defined.
6520
6521 2010-01-18 Joel Brobecker <brobecker@adacore.com>
6522
6523 Use XVS field type instead of doing a parallel lookup.
6524 * ada-lang.c (ada_get_base_type): Follow the XVS field type
6525 if it is a reference type instead of doing a type lookup using
6526 the XVS field name.
6527
6528 2010-01-18 Joel Brobecker <brobecker@adacore.com>
6529
6530 Trust PAD types instead of using PAD___XVS.
6531 * ada-lang.c (trust_pad_over_xvs): New static variable.
6532 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
6533 parallel XVS type, follow the XVS type instead of the PAD type.
6534 (unwrap_value): Make sure that there is no parallel XVE type
6535 before returning the value as is.
6536 (set_ada_list, show_ada_list): New static variables.
6537 (set_ada_command, show_ada_command): New functions.
6538 (_initialize_ada_language): Add new "set/show ada" prefix commands.
6539 Add new "set/show ada trust-PAD-over-XVS" setting.
6540
6541 2010-01-18 Tom Tromey <tromey@redhat.com>
6542 Thiago Jung Bauermann <bauerman@br.ibm.com>
6543
6544 Allow "source" to load python scripts.
6545 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
6546 * python/python.c (source_python_script): New function.
6547 * python/python.h (source_python_script): Add declaration.
6548 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
6549 (script_ext_off, script_ext_soft, script_ext_strict)
6550 (script_ext_enums, script_ext_mode): New static constants.
6551 (show_script_ext_mode, find_and_open_script): New functions.
6552 (source_script): Enhance to handle Python scripts.
6553 (init_cli_cmds): Add set/show script-extension commands.
6554
6555 2010-01-16 Stan Shebs <stan@codesourcery.com>
6556
6557 * tracepoint.h (struct trace_status): Use unsigned long long
6558 instead of size_t.
6559 * tracepoint.c (trace_status_command): Fix printf directive.
6560 (trace_save_command): Check fwrite returns, fix printf directive.
6561 (trace_filename): New global.
6562 (tfile_open): Set it, check read returns.
6563 (tfile_close): Free trace_filename.
6564 (tfile_get_traceframe_address): Check read returns.
6565 (tfile_trace_find): Ditto.
6566 (tfile_fetch_registers): Ditto.
6567 (tfile_xfer_partial): Ditto.
6568 (tfile_get_trace_state_variable_value): Ditto.
6569
6570 2010-01-15 Stan Shebs <stan@codesourcery.com>
6571
6572 Add trace file support.
6573 * tracepoint.h (enum trace_stop_reason): New enum.
6574 (struct trace_status): New struct.
6575 (parse_trace_status): Declare.
6576 (struct uploaded_tp): Move here from remote.c,
6577 add fields for actions.
6578 (struct uploaded_tsv): New struct.
6579 * tracepoint.c (tfile_ops): New target vector.
6580 (trace_fd): New global.
6581 (tfile_open): New function.
6582 (tfile_close): New function.
6583 (tfile_files_info): New function.
6584 (tfile_get_trace_status): New function.
6585 (tfile_get_traceframe_address): New function.
6586 (tfile_trace_find): New function.
6587 (tfile_fetch_registers): New function.
6588 (tfile_xfer_partial): New function.
6589 (tfile_get_trace_state_variable_value): New function.
6590 (init_tfile_ops): New function.
6591 (_initialize_tracepoint): Call it, add tfile target.
6592 (trace_status): New global.
6593 (current_trace_status): New function.
6594 (trace_running_p): Remove, change all users to get from
6595 current_trace_status()->running.
6596 (get_trace_status): Remove.
6597 (trace_status_command): Call target_get_trace_status directly,
6598 report more detail including tracing stop reasons.
6599 (trace_find_command): Always allow tfind on a file.
6600 (trace_find_pc_command): Ditto.
6601 (trace_find_tracepoint_command): Ditto.
6602 (trace_find_line_command): Ditto.
6603 (trace_find_range_command): Ditto.
6604 (trace_find_outside_command): Ditto.
6605 (trace_frames_offset, cur_offset): Declare as off_t.
6606 (trace_regblock_size): Rename from reg_size, update users.
6607 (parse_trace_status): New function.
6608 (tfile_interp_line): New function.
6609 (disconnect_or_stop_tracing): Ensure current trace
6610 status before asking what to do.
6611 (stop_reason_names): New global.
6612 (trace_save_command): New command.
6613 (get_uploaded_tp): Move here from remote.c.
6614 (find_matching_tracepoint): Ditto.
6615 (merge_uploaded_tracepoints): New function.
6616 (parse_trace_status): Use stop_reason_names.
6617 (_initialize_tracepoint): Define tsave command.
6618 * target.h (target_ops): New fields to_save_trace_data,
6619 to_upload_tracepoints, to_upload_trace_state_variables,
6620 to_get_raw_trace_data, change to_get_trace_status
6621 to take a pointer to a status struct.
6622 (target_save_trace_data): New macro.
6623 (target_upload_tracepoints): New macro.
6624 (target_upload_trace_state_variables): New macro.
6625 (target_get_raw_trace_data): New macro.
6626 * target.c (update_current_target): Add new methods, change
6627 signature of to_get_trace_status.
6628 * remote.c (hex2bin): Make globally visible.
6629 (bin2hex): Ditto.
6630 (remote_download_trace_state_variable): Download name also.
6631 (remote_get_trace_status): Update parameter, use
6632 parse_trace_status.
6633 (remote_save_trace_data): New function.
6634 (remote_upload_tracepoints): New function.
6635 (remote_upload_trace_state_variables): New function.
6636 (remote_get_raw_trace_data): New function.
6637 (remote_start_remote): Use them.
6638 (_initialize_remote_ops): Add operations.
6639 * ax-gdb.c: Include breakpoint.h.
6640 * breakpoint.c (create_tracepoint_from_upload): Use
6641 break_command_really, return tracepoint, warn about unimplemented
6642 parts.
6643 * NEWS: Mention trace file addition.
6644
6645 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6646
6647 Fix compilation warning on gcc-3.4.
6648 * exec.c (print_section_info): Move the `displacement' variable
6649 initialization to its declaration.
6650
6651 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6652
6653 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
6654 comparison.
6655
6656 2010-01-15 Eric Botcazou <botcazou@adacore.com>
6657
6658 "info tasks" broken by typedefs in ATCB type definitions.
6659 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
6660 ada_check_typedef before retrieving the length of the type for
6661 regular fields.
6662
6663 2010-01-15 Joel Brobecker <brobecker@adacore.com>
6664
6665 Do not use name-based lookup for unconstrained packed arrays.
6666 * ada-lang.c (find_parallel_type_by_descriptive_type):
6667 Limit the fallback to name-based lookups to the case where
6668 the type is a constrained packed array.
6669
6670 2010-01-15 Joel Brobecker <brobecker@adacore.com>
6671
6672 Enhance gdb-gdb.py to handle main_type.type_specific.
6673 * gdb-gdb.py: Print the type-specific part of struct main_type.
6674
6675 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6676
6677 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
6678 * configure: Regenerate.
6679 * config.in: Regenerate.
6680 * utils.c: Include sys/resource.h.
6681 (dump_core, can_dump_core): New.
6682 (internal_vproblem): Update the comment. Check can_dump_core while
6683 setting dump_core_p. Replace two abort calls by dump_core calls.
6684
6685 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6686 Eli Zaretskii <eliz@gnu.org>
6687
6688 * NEWS: Document the PIE support.
6689
6690 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6691
6692 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
6693 (check_is_pie_binary, _initialize_linux_tdep): Remove.
6694
6695 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6696
6697 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
6698 Replace exec_entry_point call by bfd_get_start_address.
6699
6700 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6701
6702 Support Valgrind attachments broken by the PIE support.
6703 * auxv.c: Include gdbcore.h.
6704 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
6705 parameters ops, object and annex. Remove their assertions.
6706 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
6707 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
6708 (memory_xfer_auxv): ... here.
6709 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
6710 memory_xfer_auxv.
6711 * procfs.c (procfs_xfer_partial): Likewise.
6712 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
6713 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
6714 (svr4_solib_create_inferior_hook): Conditionalize the
6715 svr4_relocate_main_executable call.
6716
6717 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6718
6719 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
6720 target_section. Find SECT in current_target_sections, gdb_assert it.
6721 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
6722 New variable abfd.
6723 * symtab.c (lookup_objfile_from_block): Return the binary file instead
6724 of separate debug info file.
6725
6726 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6727
6728 Support PIEs with no symfile_objfile.
6729 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
6730 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
6731
6732 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6733
6734 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
6735 code part to ...
6736 (svr4_static_exec_displacement): ... a new function.
6737 (svr4_exec_displacement): New function.
6738 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
6739 new_offsets using alloca now. Remove variable old_chain and changed.
6740 Call objfile_relocate unconditionally now.
6741
6742 2010-01-14 Doug Evans <dje@google.com>
6743
6744 * gdbtypes.c (arch_flags_type): Fix comment.
6745 * gdbtypes.h (arch_composite_type): Fix comment.
6746
6747 2009-01-14 Tristan Gingold <gingold@adacore.com>
6748
6749 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
6750 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
6751 to symbol_file_add_from_bfd. Add OSO as separate objfile.
6752 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
6753 macho_add_oso_symfile.
6754 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
6755
6756 2010-01-14 Joel Brobecker <brobecker@adacore.com>
6757
6758 Tru64: Dead threads are never deleted.
6759 * dec-thread.c (dec_thread_ptid_is_alive): New function.
6760 (dec_thread_count_gdb_threads): Fix counter increment.
6761 (dec_thread_add_gdb_thread): Fix *listp increment.
6762 (resync_thread_list): Fix bug in deletion of dead threads that
6763 caused all threads to be deleted, instead of just the dead ones.
6764
6765 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
6766
6767 PR python/10705
6768
6769 * python/python-internal.h: Add lazy_string_object_type
6770 definition.
6771 (create_lazy_string_object, gdbpy_initialize_lazy_string)
6772 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
6773 * python/py-value.c (valpy_lazy_string): New function.
6774 (convert_value_from_python): Add lazy string conversion.
6775 * python/py-prettyprint.c (pretty_print_one_value): Check if
6776 return is also a lazy string.
6777 (print_string_repr): Add lazy string printing branch.
6778 (print_children): Likewise.
6779 * python/py-lazy-string.c: New file. Implement lazy strings.
6780 * python/python.c (_initialize_python): Call
6781 gdbpy_initialize_lazy_string.
6782 * varobj.c (value_get_print_value): Add lazy string printing
6783 branch. Account for encoding.
6784 * c-lang.c (c_printstr): Account for new encoding argument. If
6785 encoding is NULL, find encoding suited for type, otherwise use
6786 user encoding.
6787 * language.h (language_defn): Add encoding argument.
6788 (LA_PRINT_STRING): Likewise.
6789 * language.c (unk_lang_printstr): Update to reflect new encoding
6790 argument to language_defn.
6791 * ada-lang.h (ada_printstr): Likewise.
6792 * c-lang.h (c_printstr): Likewise.
6793 * p-lang.h (pascal_printstr);
6794 * f-lang.c (f_printstr): Likewise.
6795 * m2-lang.c (m2_printstr): Likewise.
6796 * objc-lang.c (objc_printstr): Likewise.
6797 * p-lang.c (pascal_printstr): Likewise.
6798 * scm-lang.c (scm_printstr): Likewise.
6799 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
6800 encoding argument.
6801 * ada-valprint.c (ada_printstr): Likewise.
6802 * f-valprint.c (f_val_print): Likewise
6803 * m2-valprint.c (m2_val_print): Likewise.
6804 * p-valprint.c (pascal_val_print): Likewise.
6805 * expprint.c (print_subexp_standard): Likewise.
6806 * valprint.c (val_print_string): Likewise.
6807 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
6808 (SUBDIR_PYTHON_SRCS): Likewise.
6809 (py-lazy-string.o): New rule.
6810
6811 2010-01-13 Doug Evans <dje@google.com>
6812
6813 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
6814 uninitialized" warning from gcc on local `tree'.
6815
6816 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
6817
6818 Implement core awareness.
6819
6820 * bcache.c (compare_ints): Remove
6821 (print_percentage): Use compare_positive_ints.
6822 * defs.h (compare_positive_ints): Declare.
6823 * linux-nat.h (struct lin_lwp): New field core.
6824 (linux_nat_core_of_thread_1): Declare.
6825 * linux-nat.c (add_lwp): Init the 'core' field.
6826 (linux_nat_wait_1): Record the core.
6827 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
6828 (linux_nat_add_target): Register the above.
6829 * linux-thread-db.c (update_thread_core): New.
6830 (thread_db_find_new_threads): Update core information for
6831 every thread.
6832 * remote.c (struct private_thread_info): New.
6833 (free_private_thread_info, demand_private_info): New.
6834 (PACKET_qXfer_threads, use_osdata_threads): New.
6835 (struct thread_item, threads_parsing_context
6836 (start_thread, end_thread, thread_attributes)
6837 (thread_children, threads_children, threads_elements): New.
6838 (remote_threads_info): Try qXfer:threads before anything
6839 else.
6840 (remote_protocol_packets): Register qXfer:threads.
6841 (remote_open_1): Init use_osdata_threads.
6842 (struct stop_reply): New field 'core'.
6843 (remote_parse_stop_reply): Parse core number.
6844 (process_stop_reply): Record core number.
6845 (remote_xfer_partial): Handle qXfer:threads.
6846 (remote_core_of_thread): New.
6847 (init_remote_ops): Register remote_core_of_thread.
6848 (_initialize_remote): Register qXfer:read.
6849 * target.c (target_core_of_thread): New
6850 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
6851 (struct target_ops): New field to_core_of_threads.
6852 (target_core_of_thread): Declare.
6853 * gdbthread.h (struct thread_info): New field private_dtor.
6854 * thread.c (print_thread_info): Report the core.
6855 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
6856 * utils.c (compare_positive_ints): New.
6857 * features/threads.dtd: New.
6858 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
6859 * mi/mi-main.c (struct collect_cores_data, collect_cores)
6860 (do_nothing, free_vector_of_osdata_items)
6861 (splay_tree_int_comparator, free_splay_tree): New.
6862 (print_one_inferior_data): Implemented printing of selected
6863 inferiors. Collect and print cores.
6864 (output_cores): New.
6865 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
6866 thread groups together with --available.
6867
6868 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6869
6870 * configure: Regenerate (for _STRUCTURED_PROC).
6871
6872 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6873
6874 Delete dead function.
6875 * ada-lang.c (extract_string): Delete. No longer used.
6876
6877 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6878
6879 Fix -Wunused warning in dec-thread.c.
6880 * dec-thread.c (dec_thread_count_gdb_threads)
6881 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
6882
6883 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6884
6885 * ada-valprint.c (ada_print_floating): Remove trailing space.
6886
6887 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6888
6889 Add support for DW_AT_GNAT_descriptive_type.
6890 * gdbtypes.h (enum type_specific_kind): New enum.
6891 (struct main_type) [type_specific_field]: New component.
6892 [type_specific]: Add new component "gnat_stuff".
6893 (struct gnat_aux_type): New type.
6894 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
6895 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
6896 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
6897 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
6898 (TYPE_SPECIFIC_FIELD): New macros.
6899 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
6900 type does not hold any cplus-specific data.
6901 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
6902 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
6903 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
6904 cplus-specific data.
6905 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
6906 Set new component TYPE_SPECIFIC_FIELD (type).
6907 (gnat_aux_default): New constant.
6908 (allocate_gnat_aux_type): New function.
6909 (init_type): Add initialization the type-specific stuff for
6910 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
6911 (print_gnat_stuff): New function.
6912 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
6913 specific data. Adjust code that prints the contents of the
6914 type-specific union using the TYPE_SPECIFIC_FIELD value.
6915 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
6916 the type cplus stuff for Ada types.
6917 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
6918 Error out if these routines are called with an Ada type.
6919 (read_structure_type, read_array_type, read_subrange_type):
6920 Add call to set_descriptive_type.
6921 (set_die_type): Initialize the gnat-specific data if necessary.
6922 (need_gnat_info, die_descriptive_type, set_descriptive_type):
6923 New functions.
6924 * ada-lang.c (decode_constrained_packed_array_type): Use
6925 decode_constrained_packed_array_type instead of doing a standard
6926 lookup to locate a parallel type.
6927 (find_parallel_type_by_descriptive_type): New function.
6928 (ada_find_parallel_type_with_name): New function.
6929 (ada_find_parallel_type): Reimplement using
6930 ada_find_parallel_type_with_name.
6931 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
6932 to check if type has a cplus stuff.
6933 * linespec.c (total_number_of_methods): Likewise.
6934 * mdebugread.c (new_type): Likewise.
6935
6936 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6937
6938 * NEWS: Document the 0b binary number prefix parsing.
6939
6940 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6941
6942 * objfiles.c (objfile_relocate1): Change the return type to int.
6943 Describe the new return value. Return non-zero if data changed.
6944 (objfile_relocate): New variable changed. Set it. Call
6945 breakpoint_re_set depending on CHANGED.
6946
6947 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6948
6949 Implement binary numbers parsing.
6950 * c-exp.y (parse_number): New case 'b' and 'B'.
6951
6952 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6953 Tristan Gingold <gingold@adacore.com>
6954
6955 * solib.c (info_sharedlibrary_command): Replace
6956 objfile_has_partial_symbols and objfile_has_full_symbols calls by
6957 objfile_has_symbols.
6958
6959 2010-01-10 Joel Brobecker <brobecker@adacore.com>
6960
6961 * NEWS: Document the improvements made to the mips-irix port.
6962
6963 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6964
6965 Fix the documentation of valprint.c:value_print.
6966 * valprint.c (value_print): Update the function description to
6967 mention that the syntax of the output follows the current_language,
6968 not necessarily C.
6969
6970 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6971
6972 Fix displacement of separate debug info files.
6973 * objfiles.c (objfile_relocate): Rename to ...
6974 (objfile_relocate1): ... here and make it static. Extend the comment.
6975 (objfile_relocate): New function.
6976 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
6977 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
6978 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
6979 allocated using alloca.
6980 * symfile.c (copy_section_addr_info): Remove.
6981 (build_section_addr_info_from_objfile): Make it global. New variables
6982 addr_bit and mask, use them.
6983 * symfile.h (build_section_addr_info_from_objfile): New prototype.
6984 (copy_section_addr_info): Remove.
6985
6986 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6987
6988 Signal unwinder for mips-irix N32.
6989 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
6990 tramp-frame.h.
6991 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
6992 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
6993 (SIGCONTEXT_LO_OFF): New macros.
6994 (mips_irix_n32_tramp_frame_init): New function.
6995 (mips_irix_n32_tramp_frame): New static constant.
6996 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
6997
6998 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6999
7000 Breakpoint in shared library does not work on mips-irix.
7001 * procfs.c: #include "observer.h".
7002 (procfs_inferior_created): New function, moving here the code
7003 which unsets the syssgi syscall-exit notifications.
7004 (procfs_create_inferior): Remove the code which unsets the syssgi
7005 syscall-exit notifications. It is too early to do this here.
7006 (_initialize_procfs): Attach the procfs_inferior_created observer.
7007
7008 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7009
7010 Wrong return convention for arrays (mips-irix).
7011 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
7012 128 bits or smaller are returned the same way as structs
7013 and unions of the the same size.
7014
7015 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7016
7017 Cannot set the PC on mips-irix.
7018 * irix5-nat.c (fill_gregset): Check regno against the raw PC
7019 register number, no the cooked one.
7020
7021 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7022
7023 Error while loading core file on mips-irix.
7024 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
7025 if debugging from a core file.
7026
7027 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7028
7029 GDB hangs when attaching to process on mips-irix.
7030 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
7031 attaching to a process.
7032
7033 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7034
7035 Use the correct breakpoint instruction on mips-irix.
7036 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
7037 containing the correct breakpoint instruction to use on mips-irix.
7038 Use it when the osabi is GDB_OSABI_IRIX.
7039
7040 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7041
7042 -Wunused warning in procfs.c (mips-irix only).
7043 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
7044 throughout instead of using praddset and prdelset respectively.
7045
7046 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7047
7048 GDB crash while stepping into function.
7049 * infrun.c (handle_inferior_event): Refetch the current frame
7050 after handling what.main_action, in case that pointer became
7051 dangling.
7052
7053 2010-01-09 Joel Brobecker <brobecker@adacore.com>
7054
7055 Fix build failure of solaris-hosted cross debuggers.
7056 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
7057
7058 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
7059
7060 Fix build failure on sparc-solaris.
7061 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
7062
7063 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7064
7065 Move some symfile code into subroutines.
7066 * symfile.h (relative_addr_info_to_section_offsets)
7067 (addr_info_make_relative): New prototypes.
7068 * symfile.c (default_symfile_offsets): Move a part to ...
7069 (relative_addr_info_to_section_offsets): ... this new function.
7070 (default_symfile_offsets): Call it.
7071 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
7072 this part to ...
7073 (addr_info_make_relative): ... this new function.
7074
7075 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7076
7077 Add from_tty to solib_create_inferior_hook.
7078 * infcmd.c (post_create_inferior): Move solib_add after
7079 solib_create_inferior_hook. Pass from_tty to
7080 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
7081 0 from_tty and comment why.
7082 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
7083 * linux-nat.c (linux_child_follow_fork): Likewise.
7084 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
7085 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
7086 from_tty.
7087 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
7088 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
7089 * solib-null.c (null_solib_create_inferior_hook): Likewise.
7090 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
7091 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
7092 * solib-som.c (som_solib_create_inferior_hook): Likewise.
7093 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
7094 Pass it to svr4_so_ops.solib_create_inferior_hook.
7095 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
7096 from_tty.
7097 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
7098 solib_add.
7099 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
7100 enable_break.
7101 * solib-target.c (solib_target_solib_create_inferior_hook): New
7102 parameter from_tty.
7103 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
7104 it to ops->solib_create_inferior_hook.
7105 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
7106 Move solib_add after solib_create_inferior_hook, call it now with
7107 from_tty as 0. New comment there.
7108 * solib.h (solib_create_inferior_hook): New parameter from_tty.
7109 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
7110 Likewise.
7111
7112 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
7113
7114 Fix multiexec race.
7115 * infrun.c (handle_inferior_event): Use get_thread_regcache
7116 with events ptid, not get_current_regcache.
7117
7118 2009-01-08 Joel Brobecker <brobecker@adacore.com>
7119
7120 GDB crash with empty executable name (MinGW).
7121 * source.c (openp): Add assert that parameter string is not NULL.
7122 if parameter string is an empty string, then return with a failure
7123 immediately.
7124
7125 2009-01-08 Joel Brobecker <brobecker@adacore.com>
7126
7127 Get rid of support for VAX Floats.
7128 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
7129 (ada_vax_float_print_function): Delete.
7130 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
7131 (ada_vax_float_print_function): Delete.
7132 * ada-typeprint.c (print_vax_floating_point_type): Delete.
7133 (ada_print_type): Remove support for VAX floats.
7134 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
7135
7136 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7137
7138 * stabsread.c (read_args): Handle zero arguments.
7139
7140 2009-01-08 Joel Brobecker <brobecker@adacore.com>
7141
7142 Cannot find in-tree libiconv.a after reconfigure.
7143 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
7144 that we can use, then cache the path to this archive.
7145 * configure: Regenerate.
7146
7147 2010-01-07 Stan Shebs <stan@codesourcery.com>
7148
7149 Make tracepoint operations go through target vector.
7150 * target.h (enum trace_find_type): New enum.
7151 (struct target_ops): New fields to_trace_init,
7152 to_download_tracepoint, to_download_trace_state_variable,
7153 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
7154 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
7155 to_set_disconnected_tracing.
7156 (target_trace_init): New macro.
7157 (target_download_tracepoint): New macro.
7158 (target_download_trace_state_variable): New macro.
7159 (target_trace_start): New macro.
7160 (target_trace_set_readonly_regions): New macro.
7161 (target_get_trace_status): New macro.
7162 (target_trace_stop): New macro.
7163 (target_trace_find): New macro.
7164 (target_get_trace_state_variable_value): New macro.
7165 (target_set_disconnected_tracing): New macro.
7166 * target.c (update_current_target): Inherit and set defaults for
7167 tracepoint operations.
7168 * tracepoint.c (default_collect): Make globally visible.
7169 (target_is_remote): Remove, along with all calls.
7170 (tvariables_info): Call target_get_trace_state_variable_value.
7171 (remote_set_transparent_ranges): Remove.
7172 (trace_start_command): Call target_trace_init,
7173 target_download_tracepoint, etc.
7174 (download_tracepoint): Remove.
7175 (trace_stop_command): Simplify.
7176 (stop_tracing): Call target_trace_stop.
7177 (get_trace_status): Call target_get_trace_status.
7178 (trace_status_command): Add case for targets that cannot trace.
7179 (finish_tfind_command): Change to take numerical arguments, call
7180 target_trace_find.
7181 (trace_find_command): Update call to finish_tfind_command.
7182 (trace_find_pc_command): Ditto.
7183 (trace_find_tracepoint_command): Ditto.
7184 (trace_find_line_command): Ditto.
7185 (trace_find_range_command): Ditto.
7186 (trace_find_outside_command): Ditto.
7187 (set_disconnected_tracing_value): Call
7188 target_set_disconnected_tracing.
7189 * remote.c: Add protocol encoding bits from tracepoint.c.
7190 (trace_error): Move from tracepoint.c.
7191 (remote_get_noisy_reply): Ditto.
7192 (free_actions_list_cleanup_wrapper): Ditto.
7193 (free_actions_list): Ditto.
7194 (remote_trace_init): New function.
7195 (remote_download_tracepoint): New function.
7196 (remote_download_trace_state_variable): New function.
7197 (remote_trace_set_readonly_regions): New function.
7198 (remote_trace_start): New function.
7199 (remote_get_trace_status): New function.
7200 (remote_trace_stop): New function.
7201 (remote_trace_find): New function.
7202 (remote_download_trace_state_variable): New function.
7203 (remote_set_disconnected_tracing): New function.
7204 (init_remote_ops): Add tracepoint operations.
7205
7206 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
7207
7208 2010-01-07 Tristan Gingold <gingold@adacore.com>
7209
7210 * symfile.c (build_section_addr_info_from_objfile): New function.
7211 (symbol_file_add_separate): Don't use offsets from objfile but
7212 built an addr info.
7213
7214 2010-01-06 Stan Shebs <stan@codesourcery.com>
7215
7216 Support disconnected tracing.
7217 * infcmd.c (detach_command): Ask whether to stop tracing.
7218 * cli/cli-cmds.c (quit_command): Ditto.
7219 * breakpoint.h (struct breakpoint): New field number_on_target.
7220 * breakpoint.c (create_tracepoint_from_upload): New function.
7221 (get_tracepoint_by_number_on_target): New function.
7222 * remote.c (struct remote): New field disconnected_tracing.
7223 (remote_disconnected_tracing_feature): New function.
7224 (remote_protocol_features): Add DisconnectedTracing.
7225 (struct uploaded_tp): New struct.
7226 (uploaded_tps): New global.
7227 (get_uploaded_tp): New function.
7228 (find_matching_tracepoint): New function.
7229 (remote_get_tracing_state): New function.
7230 (remote_start_remote): Call it.
7231 * tracepoint.c (disconnected_tracing): New global.
7232 (trace_start_command): Initialize number_on_target.
7233 (stop_tracing): New function, split out from...
7234 (trace_stop_command): Call stop_tracing.
7235 (get_trace_status): New function, split out from...
7236 (trace_status_command): Call get_trace_status, add info on
7237 disconnection behavior.
7238 (disconnect_or_stop_tracing): New function.
7239 (finish_tfind_command): Translate from number on target.
7240 (trace_find_tracepoint_command): Translate to number on target.
7241 (send_disconnected_tracing_value): New function.
7242 (set_disconnected_tracing): New function.
7243 (_initialize_tracepoint): Add disconnected-tracing variable.
7244 * NEWS: Mention disconnected tracing.
7245
7246 2010-01-06 Tristan Gingold <gingold@adacore.com>
7247
7248 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
7249 parameter to main_objfile. Iterate on all separate debug objfiles.
7250 * symfile.h (symbol_file_add_separate)
7251 (find_separate_debug_file_by_debuglink): Remove parameter names.
7252 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
7253 (reread_symbols): Use free_objfile_separate_debug.
7254 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
7255 Adjust comment.
7256 (objfile_separate_debug_iterate, add_separate_debug_objfile)
7257 (free_objfile_separate_debug): New prototypes.
7258 * objfiles.c (objfile_separate_debug_iterate): New function.
7259 (add_separate_debug_objfile, free_objfile_separate_debug): New
7260 functions.
7261 (free_objfile): Use free_objfile_separate_debug. Adjust for
7262 multiple separate debug objfile.
7263 (objfile_has_symbols): Adjust comment. Iterate on all separate
7264 debug objfiles.
7265 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
7266 debug objfile.
7267 (lookup_minimal_symbol_text): Ditto.
7268 (lookup_minimal_symbol_by_pc_name): Ditto.
7269 (lookup_minimal_symbol_solib_trampoline): Ditto.
7270 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
7271 debug objfiles.
7272
7273 2010-01-05 Stan Shebs <stan@codesourcery.com>
7274
7275 Add fast tracepoints.
7276 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
7277 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
7278 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
7279 * breakpoint.c (tracepoint_type): New function.
7280 (ALL_TRACEPOINTS): Use it.
7281 (should_be_inserted): Ditto.
7282 (bpstat_check_location): Ditto.
7283 (print_one_breakpoint_location): Ditto.
7284 (user_settable_breakpoint): Ditto.
7285 (set_breakpoint_location_function): Ditto.
7286 (disable_breakpoints_in_shlibs): Ditto.
7287 (delete_trace_command): Ditto.
7288 (print_it_typical): Add bp_fast_tracepoint case.
7289 (bpstat_what): Ditto.
7290 (print_one_breakpoint_location): Ditto.
7291 (allocate_bp_location): Ditto.
7292 (mention): Ditto.
7293 (breakpoint_re_set_one): Ditto.
7294 (disable_command): Ditto.
7295 (enable_command): Ditto.
7296 (check_fast_tracepoint_sals): New function.
7297 (break_command_really): Call it.
7298 (ftrace_command): New function.
7299 (_initialize_breakpoint): Add ftrace command.
7300 * gdbarch.sh (fast_tracepoint_valid_at): New.
7301 * gdbarch.h, gdbarch.c: Regenerate.
7302 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
7303 (i386_gdbarch_init): Use it.
7304 * remote.c (struct remote_state): New field fast_tracepoints.
7305 (PACKET_FastTracepoints): New packet config type.
7306 (remote_fast_tracepoint_feature): New function.
7307 (remote_protocol_features): Add FastTracepoints.
7308 (remote_supports_fast_tracepoints): New function.
7309 (_initialize_remote): Add FastTracepoints.
7310 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
7311 * NEWS: Mention fast tracepoints.
7312
7313 2010-01-06 Joel Brobecker <brobecker@adacore.com>
7314
7315 * gdb-gdb.py: New file.
7316
7317 2010-01-05 Michael Snyder <msnyder@vmware.com>
7318
7319 * infrun.c (handle_inferior_event): Fix typo in comment.
7320
7321 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7322
7323 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
7324
7325 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7326
7327 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
7328 and s390x-linux64.
7329 (s390-linux32-expedite): Define.
7330 (s390-linux64-expedite): Define.
7331 (s390x-linux64-expedite): Define.
7332 * features/s390-acr.xml: New file.
7333 * features/s390-fpr.xml: New file.
7334 * features/s390-core32.xml: New file.
7335 * features/s390-core64.xml: New file.
7336 * features/s390x-core64.xml: New file.
7337 * features/s390-linux32.xml: New file.
7338 * features/s390-linux64.xml: New file.
7339 * features/s390x-linux64.xml: New file.
7340 * features/s390-linux32.c: New generated file.
7341 * features/s390-linux64.c: New generated file.
7342 * features/s390x-linux64.c: New generated file.
7343
7344 * regformats/s390-linux32.dat: New generated file.
7345 * regformats/s390-linux64.dat: New generated file.
7346 * regformats/s390x-linux64.dat: New generated file.
7347 * regformats/reg-s390.dat: Remove.
7348 * regformats/reg-s390x.dat: Remove.
7349
7350 * s390-nat.c: Include "auxv.h" and <elf.h>.
7351 (HWCAP_S390_HIGH_GPRS): Define if undefined.
7352 (s390_target_wordsize): New function.
7353 (s390_auxv_parse): Likewise.
7354 (s390_get_hwcap): Likewise.
7355 (s390_read_description): Likewise.
7356 (_initialize_s390_nat): Install s390_auxv_parse and
7357 s390_read_description.
7358
7359 * s390-tdep.c: Include "features/s390-linux32.c",
7360 "features/s390-linux64.c", and "features/s390x-linux64.c".
7361 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
7362 (s390_register_call_saved): New function.
7363 (s390_register_name): Remove.
7364 (s390_register_type): Remove.
7365 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
7366 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
7367 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
7368 (s390_pseudo_register_name): New function.
7369 (s390_pseudo_register_type): New function.
7370 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
7371 Handle full GPR pesudos and varying pseudo register numbers.
7372 (s390_pseudo_register_write): Likewise
7373 (s390x_pseudo_register_read): Remove.
7374 (s390x_pseudo_register_write): Likewise.
7375 (s390_register_group): Remove.
7376 (s390_pseudo_register_group): New function.
7377 (s390_regmap_gregset): Add GPR upper halves.
7378 (s390x_regmap_gregset): Likewise.
7379 (s390_regmap_fpregset): Likewise.
7380 (s390_regmap_upper): New global variable.
7381 (s390_upper_regset): New global variable.
7382 (s390_upper_regset_sections): New global variable.
7383 (s390_regset_from_core_section): Handle GPR upper halves.
7384 (s390_core_read_description): New function.
7385 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
7386 register information. Handle varying pseudo register numbers.
7387 (s390_backchain_frame_unwind_cache): Likewise.
7388 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
7389 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
7390 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
7391 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
7392 Handle varying pseudo register numbers.
7393 (s390_unwind_pc): Handle varying pseudo register numbers.
7394 (s390_dwarf2_prev_register): New function.
7395 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
7396 register information. Handle varying pseudo register numbers.
7397 Install s390_dwarf2_prev_register to unwind full GPRs.
7398 (s390_gdbarch_init): Handle target descriptions. Assign varying
7399 pseudo register numbers. Install s390_adjust_frame_regnum.
7400 (_initialize_s390_tdep): Initialize target descriptions.
7401
7402 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
7403 (S390_NUM_REGS): Redefine to include upper half registers.
7404 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
7405 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
7406 (tdesc_s390_linux32): Add declaration.
7407 (tdesc_s390_linux64): Likewise.
7408 (tdesc_s390x_linux64): Likewise.
7409
7410 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7411
7412 * regset.h (struct core_regset_section): Add HUMAN_NAME.
7413 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
7414 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
7415 (ppc_linux_vmx_regset_sections): Likewise.
7416 (ppc_linux_fp_regset_sections): Likewise.
7417
7418 * corelow.c (get_core_register_section): Constify arguments.
7419 (get_core_registers): Use gdbarch_core_regset_sections instead
7420 of hard-coded platform-specific register section names.
7421
7422 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7423
7424 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
7425 a register, assume the least-significant part is used.
7426 (write_pieced_value): Likewise.
7427
7428 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7429
7430 * printcmd.c: Include "arch-utils.h".
7431 (do_one_display): Re-parse expression if current architecture changed.
7432
7433 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7434 Joel Brobecker <brobecker@adacore.com>
7435
7436 * gdbtypes.c (check_typedef): New comment on type length.
7437 * value.c (allocate_value_lazy): Remove the unused atype variable. New
7438 comment on type length.
7439 (value_primitive_field): Keep the original TYPE value, new comment.
7440
7441 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7442
7443 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
7444 p_start. Change != comparisons to > and < comparisons.
7445
7446 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
7447
7448 * cli/cli-script.c (process_next_line): Check P2 overrun.
7449
7450 2009-01-01 Joel Brobecker <brobecker@adacore.com>
7451
7452 Update the copyright hearder to add year 2010 for most GDB files.
7453
7454 2009-01-01 Joel Brobecker <brobecker@adacore.com>
7455
7456 Fix build failure in inf-ptrace.c.
7457 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
7458
7459 2010-01-01 Joel Brobecker <brobecker@adacore.com>
7460
7461 * top.c (print_gdb_version): Update copyright year.
7462
7463 2010-01-01 Joel Brobecker <brobecker@adacore.com>
7464
7465 Fix break *FUN'address thread NUM.
7466 * ada-lex.l (task): Expand rule to also match the thread keyword.
7467
7468 2010-01-01 Joel Brobecker <brobecker@adacore.com>
7469
7470 Fix break *FUN'address task NUM.
7471 * ada-lex.l (task): New rule.
7472 * ada-lang.c (valid_task_id): Make sure the Ada task list has
7473 been built before using it.
7474
7475 For older changes see ChangeLog-2009.
7476 \f
7477 Local Variables:
7478 mode: change-log
7479 left-margin: 8
7480 fill-column: 74
7481 version-control: never
7482 coding: utf-8
7483 End: