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