Fix build failures with python support on sparc-solaris
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
aed1781d
JB
12010-10-26 Joel Brobecker <brobecker@adacore.com>
2
3 * python/python-internal.h (_FILE_OFFSET_BITS): Undefine.
4 (PyEval_InitThreads): Remove duplicate. Define as nothing.
5 (PyEval_ReleaseLock): Define as nothing.
6
1e3fad37
JB
72010-10-26 Joel Brobecker <brobecker@adacore.com>
8
9 * dwarf2read.c (psymtab_include_file_name): Replace call to strcmp
10 by call to FILENAME_CMP.
11
558b1900
JB
122010-10-26 Joel Brobecker <brobecker@adacore.com>
13
14 * dictionary.c (dict_hash): Move assignment out of if condition.
15
f474844c
JZ
162010-10-22 Jie Zhang <jie@codesourcery.com>
17
18 * Makefile.in (install): Remove dependency of install-only and
19 recursively invoke make for install-only.
20 * data-directory/Makefile.in: Add FLAGS_TO_PASS variable.
21 (install): Pass FLAGS_TO_PASS when recursively make install-only.
22
8991e9fa
HZ
232010-10-20 Hui Zhu <teawater@gmail.com>
24
25 * tracepoint.c (tfile_get_traceframe_address): Call
26 extract_signed_integer.
27 (tfile_trace_find): Call extract_signed_integer and
28 extract_unsigned_integer. Change data_size to unsigned int.
29 (tfile_fetch_registers): Call extract_unsigned_integer.
30 (tfile_xfer_partial): Ditto.
31 (tfile_get_trace_state_variable_value): Call
32 extract_signed_integer and extract_unsigned_integer.
33
21bce120
VP
342010-10-20 Vladimir Prus <vladimir@codesourcery.com>
35
36 * remote.c (remote_get_threadlist): If we got empty
37 response, bail out immediately, and don't emit any
38 warnings.
39
ad8b5167
UW
402010-10-19 Ulrich Weigand <uweigand@de.ibm.com>
41
42 * arm-tdep.c (thumb_get_next_pc_raw): Handle Thumb-16 encoding
43 for "mov pc, REG" as well.
44 (thumb_instruction_changes_pc): Likewise.
45
79afc5ef
SW
462010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
47
48 PR C++/11500:
49 * valarith.c (value_x_unop): Handle STRUCTOP_PTR.
50 * eval.c (evaluate_subexp_standard): Check for overload of
51 'operator->'.
52 * valarith.c (value_x_binop): Throw NOT_FOUND_ERROR.
53 (value_x_unop): Ditto.
54 * valops.c: Include "exceptions.h".
55 (find_overload_match): Throw NOT_FOUND_ERROR.
56 (value_struct_elt): Ditto.
57
cca56ac7
TT
582010-10-19 Tom Tromey <tromey@redhat.com>
59
60 * python/py-cmd.c (cmdpy_function): Unreference exception state.
61
026ffab7
SW
622010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
63
64 * gdbtypes.h: Introduce BOOL_PTR_CONVERSION_BADNESS.
65 * gdbtypes.c (rank_one_type): Use BOOL_PTR_CONVERSION_BADNESS
66 for conversion.
67 Make all other conversions illegal.
68
8c540a24
DE
692010-10-18 Doug Evans <dje@google.com>
70
71 * c-typeprint.c (c_type_print_base, case TYPE_CODE_TYPEDEF): Verify
72 assumptions of when this case happens. Print "<unnamed typedef>".
73
3a772aa4
TT
742010-10-18 Tom Tromey <tromey@redhat.com>
75
76 * valprint.c (val_print_string): Pass 'encoding' to
77 LA_PRINT_STRING.
78
01f8c46d
JK
792010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
80
81 Fix the `stopped language detection' testcase for gcc-4.5.
82 * dwarf2read.c (read_partial_die): Set also LANGUAGE_OF_MAIN.
83 * symfile.c (set_initial_language): Move variable filename to a more
84 inner block. Prefer LANGUAGE_OF_MAIN.
85 * symtab.c (language_of_main): New variable.
86 (set_main_name): Always reset LANGUAGE_OF_MAIN.
87 * symtab.h (language_of_main): New declaration.
88
8aeb23f3
JK
892010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
90 Pedro Alves <pedro@codesourcery.com>
91
92 * gdbthread.h (currently_stepping): New declaration.
93 * infrun.c (currently_stepping): Remove the forward declaration.
94 (currently_stepping): Make it global.
95 * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
96 variables tp and step, initialized them. Pass STEP to to_resume.
97 Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
98 * remote.c (currently_stepping_callback): New.
99 (remote_vcont_resume)
100 <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
101 New variable tp. Call currently_stepping_callback and step such
102 thread.
103
c1e56572
JK
1042010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
105
106 * infrun.c (follow_exec): Replace symbol_file_add_main by
107 symbol_file_add with SYMFILE_DEFER_BP_RESET, set_initial_language and
108 breakpoint_re_set.
109 * m32r-rom.c (m32r_load, m32r_upload_command): Use parameter 0 for
110 clear_symtab_users.
111 * objfiles.c (free_all_objfiles): Likewise.
112 * remote-m32r-sdi.c (m32r_load): Likewise.
113 * solib-som.c (som_solib_create_inferior_hook): Likewise.
114 * symfile.c (new_symfile_objfile): New comment for add_flags. Call
115 clear_symtab_users with ADD_FLAGS.
116 (reread_symbols): Use parameter 0 for clear_symtab_users.
117 (clear_symtab_users): New parameter add_flags. Do not call
118 breakpoint_re_set if SYMFILE_DEFER_BP_RESET.
119 (clear_symtab_users_cleanup): Use parameter 0 for clear_symtab_users.
120 * symtab.h (clear_symtab_users): New parameter add_flags.
121
3a182a69
JK
1222010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
123
124 Fix GCC false warning.
125 * varobj.c (value_get_print_value) <str_addr>: Initialize it.
126
3a9d7214
PM
1272010-10-16 Pierre Muller <muller@ics.u-strasbg.fr>
128
129 * p-typeprint.c (pascal_type_print_method_args): Fix problem in
130 display of type of method arguments.
131
09ca9e2e
TT
1322010-10-15 Tom Tromey <tromey@redhat.com>
133
134 PR python/11948:
135 * varobj.c (value_get_print_value): Use val_print_string to print
136 lazy strings.
137 * python/py-prettyprint.c (print_string_repr): Use
138 val_print_string to print lazy strings. Fix cleanup logic.
139 (print_children): Likewise.
140 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
141 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Rewrite.
142 Change return type to 'void', add 'addr' argument.
143 * value.h (val_print_string): Update.
144 * valprint.c (val_print_string): Add 'encoding' argument.
145 * printcmd.c (print_formatted): Update.
146 * p-valprint.c (pascal_val_print): Update.
147 * m2-valprint.c (print_unpacked_pointer): Update.
148 (m2_print_array_contents): Likewise.
149 * jv-valprint.c (java_value_print): Update.
150 * f-valprint.c (f_val_print): Update.
151 * c-valprint.c (c_val_print): Update.
152 * auxv.c (fprint_target_auxv): Update.
153
92163a10
JK
1542010-10-15 Doug Evans <dje@google.com>
155 Jan Kratochvil <jan.kratochvil@redhat.com>
156
157 PR exp/12117
158 * gdbtypes.c (check_typedef): Clean up function comment.
159 Keep track of instance flags as we strip typedefs and create a new
160 type to preserve them if necessary.
161 * gdbtypes.h (type) <instance_flags>: Extend the comment.
162
dae71413
PM
1632010-10-15 Pierre Muller <muller@ics.u-strasbg.fr>
164
165 * p-lang.c (is_pascal_string_type): Use TYPE_FIELD_NAME accessor.
166
7062b0a0
SW
1672010-10-14 Sami Wagiaalla <swagiaal@redhat.com>
168
169 * gdbtypes.h: Create BASE_PTR_CONVERSION_BADNESS.
170 * gdbtypes.c (rank_one_type): Move type comparison code out of here
171 to...
172 (types_equal): ...here. And changed it as follows:
173 Outside of typedefs type must be of the same TYPE_CODE.
174 When compairing two pointers or references they are equal if their
175 targets are equal.
176 Correct pointer conversions.
177
5c3da5ea
PM
1782010-10-14 Pierre Muller <muller@ics.u-strasbg.fr>
179
180 * p-lang.c (is_pascal_string_type): Avoid crashes on structures
181 having fields without names.
182
577ce03a
TT
1832010-10-13 Tom Tromey <tromey@redhat.com>
184
185 * language.h (LA_PRINT_ARRAY_INDEX): Fix argument name.
186
a737a51b
DE
1872010-10-13 Doug Evans <dje@google.com>
188
0e3509db
DE
189 New python module gdb.types.
190 * NEWS: Document it.
191 * data-directory/Makefile.in (PYTHON_FILES): Add gdb/types.py.
192 * python/lib/gdb/types.py: New file.
193
a737a51b
DE
194 * c-typeprint.c: Whitespace cleanup.
195 (cp_type_print_method_args): Remove unnecessary forward decl.
196 (cp_type_print_derivation_info): Ditto.
197 (c_type_print_varspec_prefix): Mark as static at definition.
198 (c_type_print_modifier): Fix arg descriptions.
199
8dc78533
JK
2002010-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
201
202 * python/py-breakpoint.c (bppy_set_condition): New comment.
203 * python/py-cmd.c (cmdpy_function): Call also gdbpy_print_stack for
204 failed PyUnicode_Decode.
205 (cmdpy_completer): Skip element for failed
206 python_string_to_host_string.
207 (cmdpy_init): Return -1 on failed python_string_to_host_string.
208 * python/py-frame.c (frapy_read_var): Extend the function comment.
209 * python/py-function.c (fnpy_init): Return -1 on failed
210 python_string_to_host_string.
211 * python/py-inferior.c (infpy_read_memory, infpy_write_memory): Extend
212 the function comment.
213 (infpy_search_memory): Extend the function comment. Remove the
214 PyErr_SetString call on already set error state.
215 * python/py-param.c (set_parameter_value): Extend the function
216 comment. Return -1 on failed python_string_to_host_string, twice.
217 (set_attr): Extend the function comment.
218 (compute_enum_values): Extend the function comment. New variable
219 back_to. Protect self->enumeration by BACK_TO cleanups. Return 0 on
220 failed python_string_to_host_string.
221 (get_doc_string): Call gdbpy_print_stack on failed
222 python_string_to_host_string.
223 (parmpy_init): Extend the function comment.
224 * python/py-prettyprint.c (pretty_print_one_value): Likewise.
225 (gdbpy_get_display_hint, print_children): Call gdbpy_print_stack on
226 failed python_string_to_host_string.
227 * python/py-value.c (valpy_new, valpy_getitem, valpy_call)
228 (valpy_binop, valpy_richcompare): Extend the function comment.
229 * python/python.c
230 (struct python_env) <error_type, error_value, error_traceback>: New
231 fields.
232 (restore_python_env): Handle PyErr_Occurred. Call PyErr_Restore.
233 (ensure_python_env): Call PyErr_Fetch.
234 * varobj.c (update_dynamic_varobj_children): Call gdbpy_print_stack on
235 failed convert_value_from_python.
236 (value_get_print_value): Call gdbpy_print_stack on failed
237 python_string_to_target_python_string.
238
1bdb0c54
TT
2392010-10-12 Tom Tromey <tromey@redhat.com>
240
241 * python/py-prettyprint.c (search_pp_list): Fix error checking.
242
0526b37a
SW
2432010-10-12 Sami Wagiaalla <swagiaal@redhat.com>
244
245 * gdbtypes.c (do_is_ancestor): New function.
246 (is_ancestor): Use do_is_ancestor.
247 (is_public_ancestor): Use do_is_ancestor.
248
c1b5be38
PM
2492010-10-12 Pierre Muller <muller@ics.u-strasbg.fr>
250
251 * ser-go32.c (struct dos_ops): Add missing fdopen field.
252
68770265
MGD
2532010-10-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
254
255 * arm-tdep.c (arm_mode_strings): Add NULL entry at end of array.
256
64b00020
DE
2572010-10-11 Doug Evans <dje@google.com>
258
259 * c-typeprint.c (c_type_print_modifier): Add note that this prints
260 the address space id too.
261
43b8e241
JK
2622010-10-11 Jan Kratochvil <jan.kratochvil@redhat.com>
263
264 Fix attaching to re-prelinked executables on ppc64.
265 * solib-svr4.c (svr4_exec_displacement): New variable plt2_asect,
266 initialize it, try to adjust FILESZ field by it.
267
417b5110
DJ
2682010-10-08 Daniel Jacobowitz <dan@codesourcery.com>
269
270 * tracepoint.c (merge_uploaded_trace_state_variables): Only print
271 messages if info_verbose.
272
3bdf2bbd
KW
2732010-10-08 Ken Werner <ken.werner@de.ibm.com>
274
275 * valops.c (value_cast): Handle vector types.
276 * valarith.c (value_binop): Widen scalar to vector if appropriate.
277
ec3d575a
UW
2782010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
279
280 * arm-tdep.c (thumb_expand_immediate): New function.
281 (thumb_instruction_changes_pc): Likewise.
282 (thumb2_instruction_changes_pc): Likewise.
283 (thumb_analyze_prologue): Handle 32-bit Thumb instructions during
284 prologue parsing. Improved support for optimized code.
285 (thumb_scan_prologue): Do not reply on line-number information,
286 use same heuristics as arm_scan_prologue insead.
287 (skip_prologue_function): Accept functions
288 "__tls_get_addr" and "__aeabi_read_tp".
289
4024ca99
UW
2902010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
291 Daniel Jacobowitz <dan@codesourcery.com>
292
293 * arm-tdep.c (thumb_in_function_epilogue_p)
294 (arm_in_function_epilogue_p): New.
295 (arm_gdbarch_init): Install arm_in_function_epilogue_p as
296 gdbarch_in_function_epilogue_p callback.
297
855c153f
DE
2982010-10-07 Doug Evans <dje@google.com>
299
00e14314
DE
300 * cc-with-index.sh (output_file): Default to a.out.
301
3876f04e
DE
302 * dwarf2read.c (mapped_index): Rename member index_table to
303 symbol_table and index_table_slots to symbol_table_slots.
304 All uses updated.
305 (create_symbol_hash_table): Renamed from create_index_table.
306 All callers updated.
307 (add_indices_to_cpool): Rename arg index_table to symbol_hash_table.
308 (write_hash_table): Rename local index_table to symbol_hash_table.
309
855c153f
DE
310 * addrmap.h (addrmap_foreach_fn): New typedef.
311 (addrmap_foreach): Declare.
312 * addrmap.c (struct addrmap_funcs): New member foreach.
313 (addrmap_foreach): New function.
314 (addrmap_fixed_foreach): New function.
315 (addrmap_fixed_funcs): Update.
316 (struct mutable_foreach_data): New struct.
317 (addrmap_mutable_foreach_worker): New function.
318 (addrmap_mutable_foreach): New function.
319 (addrmap_mutable_funcs): Update.
320
1d2a4540
PH
3212010-10-07 Paul Hilfinger <hilfinger@adacore.com>
322
323 * dictionary.c (dict_hash): Revert to msymbol_hash_iw in
324 more cases.
325
40658b94
PH
3262010-10-07 Paul Hilfinger <hilfinger@adacore.com>
327
328 * ada-lang.c (full_match): Declare.
329 (ada_match_name): Rename to match_name (we should avoid prefixing static
330 symbols with "ada_").
331 (match_name): New name for ada_match_name.
332 (struct ada_psym_data): Remove and replace with...
333 (struct match_data): User data for map_matching_symbols.
334 (ada_add_psyms): Remove.
335 (aux_add_nonlocal_symbols): New function, used as callback for
336 map_matching_symbols.
337 (compare_names): Ordering function adopted from strcmp_iw for Ada-encoded
338 symbols.
339 (ada_add_non_local_symbols): Rename to add_nonlocal_symbols.
340 (add_nonlocal_symbols): Renamed from ada_add_non_local_symbols.
341 Rework to use map_matching_symbols instead of map_ada_symtabs.
342 (ada_lookup_symbol_list): Use add_nonlocal_symbols.
343 * psymtab.c: Include dependency on dictionary.h.
344 (match_partial_symbol): New function.
345 (ada_lookup_partial_symbol): Remove.
346 (map_block): New function, auxiliary to map_matching_symbols_psymtab.
347 (map_matching_symbols_psymtab): New function.
348 (psym_functions): Replace map_ada_symtabs with map_matching_symbols_psymtab.
349 * symfile.h: Replace map_ada_symtabs definition with map_matching_symbols.
350
c4d840bd
PH
3512010-10-06 Paul Hilfinger <hilfinger@adacore.com>
352
353 * ada-lang.c (ada_match_name): Use new API for wild_match.
40658b94
PH
354 (wild_match): Change API to be consistent with that of strcmp_iw;
355 return 0 for a match, and switch operand order.
356 (full_match): New function.
357 (ada_add_block_symbols): Use dict_iter_match_{first,next} for
358 matching to allow use of hashing.
359 * dictionary.c (struct dict_vector): Generalize iter_name_first,
360 iter_name_next ot iter_match_first, iter_match_next.
361 (iter_name_first_hashed): Replace with iter_match_first_hashed.
362 (iter_name_next_hashed): Replace with iter_match_next_hashed.
363 (iter_name_first_linear): Replace with iter_match_first_linear.
364 (iter_name_next_linear): Replace with iter_match_next_linear.
365 (dict_iter_name_first): Re-implement to use dict_iter_match_first.
366 (dict_iter_name_next): Re-implement to use dict_iter_match_next.
367 (dict_iter_match_first): New function.
368 (dict_iter_match_next): New function.
369 (dict_hash): New function.
370 * dictionary.h (dict_iter_match_first, dict_iter_match_next): Declare.
371 * psymtab.c (ada_lookup_partial_symbol): Use new wild_match API.
c4d840bd 372
543ecec7
DE
3732010-10-06 Doug Evans <dje@google.com>
374
375 * data-directory/Makefile.in: Remove @host_makefile_frag@, @frags@.
376
2f608a3a
KW
3772010-10-06 Ken Werner <ken.werner@de.ibm.com>
378
379 * dwarf2read.c (read_tag_const_type): Handle const arrays.
380
aa2e2d8d
DE
3812010-10-06 Doug Evans <dje@google.com>
382
9c9606fb
DE
383 * Makefile.in (REQUIRED_SUBDIRS): New var.
384 (subdir_do): Verify required subdir Makefiles exist.
385
aa2e2d8d
DE
386 Create subdir data-directory.
387 * Makefile.in (XML_SYSCALL_DIR, XML_SYSCALL_FILES): Moved to
388 data-directory/Makefile.in.
389 (SUBDIRS): Add data-directory.
390 (all): Remove xml-syscall-copy dependency.
391 (xml-syscall-copy): Moved to data-directory/Makefile.in as
392 stamp-syscalls.
393 (xml-syscall-install): Moved to data-directory/Makefile.in as
394 install-syscalls.
395 (install-only): Remove xml-syscall-install dependency.
396 (all-data-directory): New rule.
397 (data-directory/Makefile): New rule.
398 * configure.ac (AC_OUTPUT): Add data-directory/Makefile.
399 * configure: Regenerate.
400 * data-directory/Makefile.in: New file.
401 * python/lib/gdb/__init__.py: New file.
402
aa27d0b3
JB
4032010-10-06 Joel Brobecker <brobecker@adacore.com>
404
405 Fix ARI warnings in advance_wild_match.
406 * ada-lang.c (advance_wild_match): Delete local variable t2.
407 Adjust code accordingly. Minor reformatting.
408
2844d6b5
KW
4092010-10-06 Ken Werner <ken.werner@de.ibm.com>
410
411 * gdbtypes.h (struct main_type): Remove flag_nottext.
412 (enum type_flag_value): Remove TYPE_FLAG_NOTTEXT.
413 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_NOTTEXT.
414 (TYPE_NOTTEXT): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of flag_nottext.
415 * gdbtypes.c (make_vector_type): Use TYPE_INSTANCE_FLAG_NOTTEXT instead
416 of TYPE_FLAG_NOTTEXT.
417 (init_type): Remove the initialization of the flag_nottext field.
418 (gdbtypes_post_init): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of
419 TYPE_FLAG_NOTTEXT.
420 * c-valprint.c (c_val_print): Remove TYPE_VECTOR check.
421
2fdf6df6
DE
4222010-10-04 Doug Evans <dje@google.com>
423
ea65fe05
DE
424 * cc-with-index.sh: New file.
425
2fdf6df6
DE
426 * dwarf2read.c (dw2_do_instantiate_symtab): Insert blank line after
427 function comment.
428 (dw2_instantiate_symtab, dw2_get_cu, extract_cu_value): Ditto.
429 (create_cus_from_index, create_addrmap_from_index): Ditto.
430 (mapped_index_string_hash, find_slot_in_mapped_hash): Ditto.
431 (dw2_setup, dw2_require_line_header, dw2_require_full_path): Ditto.
432 (dw2_do_expand_symtabs_matching): Ditto.
b89be57b
DE
433 (eq_strtab_entry, create_strtab, add_string): Ditto.
434 (hash_strtab_entry): Ditto.
435 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry): Ditto.
436 (create_index_table, create_mapped_symtab, find_slot): Ditto.
437 (hash_expand, add_index_entry, add_indices_to_cpool): Ditto.
438 (write_hash_table, add_address_entry, write_psymbols): Ditto.
439 (write_obstack, unlink_if_set, write_one_signatured_type): Ditto.
440 (write_psymtabs_to_index): Ditto.
2fdf6df6 441
40bc484c
JB
4422010-10-04 Joel Brobecker <brobecker@adacore.com>
443
444 * ada-lang.c: #include "value.h".
445 (ensure_lval): Delete advance declaration. Remove gdbarch and sp
446 arguments. Implement using value_allocate_space_in_inferior
447 instead of allocating memory from the stack.
448 (make_array_descriptor): Remove gdbarch and sp parameters. Update
449 calls to ensure_lval.
450 (ada_convert_actual): Remove gdbarch and sp parameters. Update
451 calls to make_array_descriptor and ensure_lval.
452 * ada-lang.h (ada_convert_actual): Update declaration.
453 * infcall.c (value_arg_coerce): Update call to ada_convert_actual.
454
f17618ea
DE
4552010-10-04 Doug Evans <dje@google.com>
456
457 * python/python.c (_initialize_python): Define new function
458 GdbSetPythonDirectory in python. Use it to update sys.path and
459 gdb.__path__.
460
83e3a93c
PH
4612010-10-03 Paul Hilfinger <hilfinger@adacore.com>
462
463 * gdb/ada-typeprint.c (print_selected_record_field_types): New function,
464 incorporating and generalizing print_record_field_types.
465 (print_record_field_types): Change return value and update comment.
466 Re-implement using print_selected_record_field_types.
467 (print_choices): Print "=>" here.
468 Handle case of unencoded variant branch.
469 (print_variant_clauses): Reformat comment.
470 Special-case unencoded variant branch.
471
4722010-10-03 Paul Hilfinger <hilfinger@adacore.com>
73589123
PH
473
474 * ada-lang.c (wild_match): Reimplement.
475 Change API to eliminate unused length argument, reverse arguments and
476 make 0 the 'true' return value.
477 (advance_wild_match): New auxiliary function for wild_match to improve
478 readability.
479 (ada_match_name, ada_add_block_symbols): Use new API for wild_match.
480 * psymtab.c (ada_lookup_partial_symbol, map_ada_symtabs): Use new
481 API for wild_match.
482 * symfile.h (map_ada_symtabs): Modify declaration to use new API for
483 wild_match.
484 * dwarf2read.c (dw2_map_ada_symtabs): Ditto.
485
11570e71
DE
4862010-10-01 Doug Evans <dje@google.com>
487
488 * dwarf2read.c (_initialize_dwarf2_read): Add usage info to help text
489 for `save gdb-index' command.
490
72b9f47f
TT
4912010-10-01 Tom Tromey <tromey@redhat.com>
492
493 * symfile.h (allocate_symtab): Update.
494 * symfile.c (allocate_symtab): Make 'filename' const.
495 * psymtab.c (add_psymbol_to_bcache): Make 'name' const.
496 (add_psymbol_to_list): Likewise.
497 * psympriv.h (struct partial_symtab) <filename, dirname>: Now
498 const.
499 (add_psymbol_to_list): Update.
500 * mdebugread.c (new_symtab): Make 'name' const.
501 (psymtab_to_symtab_1): Make 'filename' const.
502 * elfread.c (elfstab_offset_sections): Update.
503 * dwarf2read.c (dwarf_decode_lines): Make 'comp_dir' const.
504 (dwarf2_start_subfile): Make 'dirname' and 'comp_dir' const.
505 (psymtab_include_file_name): Update.
506 * dbxread.c (find_stab_function_addr): Make 'filename' const.
507 * buildsym.h (start_subfile): Update.
508 * buildsym.c (start_subfile): Make arguments const.
509
55e39473
MS
5102010-09-30 Ali Lakhia <lakhia@alumni.utexas.net>
511
512 * fork-child.c (breakup_args): Fix crash if shell forking is
513 disabled at compile time.
514
05e522ef
JB
5152010-10-01 Joel Brobecker <brobecker@adacore.com>
516
517 * ada-lang.c (desc_bounds): Add handling of the case where
518 the P_BOUNDS field is a pointer to a stub.
519 (desc_data_target_type): Same for P_ARRAY field.
520 (ada_check_typedef): Strip the typedef layers from the type
521 found by ada_find_any_type.
522
49a45ecf
JB
5232010-10-01 Joel Brobecker <brobecker@adacore.com>
524
525 * sparc-tdep.c (sparc32_frame_align): New function.
526 (sparc32_gdbarch_init): Set the frame_align gdbarch method.
527 * sparc64-tdep.c (sparc64_frame_align): New function.
528 (sparc64_gdbarch_init): Set the frame_align gdbarch method.
529
a5916a62
L
5302010-09-30 H.J. Lu <hongjiu.lu@intel.com>
531
532 * defs.h (MAX_REGISTER_SIZE): Set to 64.
533
00b5771c
TT
5342010-09-30 Tom Tromey <tromey@redhat.com>
535
536 * symfile.h (struct sym_fns) <next>: Remove.
537 (add_symtab_fns): Update.
538 * symfile.c (sym_fns_ptr): New typedef.
539 (symtab_fns): Now a VEC.
540 (add_symtab_fns): Update. Change argument type.
541 (find_sym_fns): Update. Change return type.
542 (get_symfile_segment_data): Update.
543 * objfiles.h (struct objfile) <sf>: Now const.
544 * somread.c (som_sym_fns): Now const. Update.
545 * xcoffread.c (xcoff_sym_fns): Now const. Update.
546 * mipsread.c (ecoff_sym_fns): Now const. Update.
547 * machoread.c (macho_sym_fns): Now const. Update.
548 * elfread.c (elf_sym_fns): Now const. Update.
549 (elf_sym_fns_gdb_index): Likewise.
550 * dbxread.c (aout_sym_fns): Now const. Update.
551 * coffread.c (coff_sym_fns): Now const. Update.
552
38f12cfc
TT
5532010-09-30 Tom Tromey <tromey@redhat.com>
554
555 * value.c (value_primitive_field): Take 'offset' into account for
556 packed field.
557
9ae8282d
TT
5582010-09-30 Tom Tromey <tromey@redhat.com>
559
560 * completer.c (count_struct_fields): Handle anonymous structs and
561 unions.
562 (add_struct_fields): Likewise.
563
e9e07ba6
JK
5642010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
565
566 Fix printing parameters of inlined functions.
567 * ada-lang.c (is_known_support_routine)
568 (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter
569 for find_frame_funname.
570 * python/py-frame.c (frapy_name): Likewise.
571 * stack.c (find_frame_funname): New parameter funcp. Update the
572 function comment. Fill it in.
573 (print_frame): New variable func. Initialize it by
574 find_frame_funname. Print arguments only if FUNC is not NULL. Use
575 FUNC as the parameter of print_args_stub.
576 * stack.h (find_frame_funname): New parameter funcp. Remove the
577 function declaration comment.
578
cd2effb2
JK
5792010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
580
581 PR corefiles/12071.
582 * inferior.c (have_live_inferiors): New variables old_chain, inf and
583 tp. Iterate INFERIOR_LIST and call target_has_execution.
584
bceffbf3
JK
5852010-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
586
587 Fix GDB crash on inferior calls with self-referencing classes.
588 * gnu-v3-abi.c (gnuv3_pass_by_reference): Do not call itself on static
589 member fields.
590
abc72ce4
DE
5912010-09-29 Doug Evans <dje@google.com>
592
593 Workaround for gcc/45682.
594 * dwarf2read.c (partial_die_info): New fields fixup_called,
595 linkage_name.
596 (guess_partial_die_structure_name): Renamed from guess_structure_name.
597 Move definition next to use. Use linkage_name to determine if class
598 is in a namespace. All callers updated.
599 (fixup_partial_die): Return early if already called.
600 Set fixup_called when done.
601 (guess_full_die_structure_name): New function.
602 (determine_prefix): Call it for class/struct/union dies if c++ and
603 .debug_types section is present and parent is DW_TAG_compile_unit.
604
0ac7be25
JB
6052010-09-28 Joel Brobecker <brobecker@adacore.com>
606
607 * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a.
608 (sparc-*-rtems*): Delete. Now redundant with sparc-*-*.
609
6e1bb179
JB
6102010-09-28 Joel Brobecker <brobecker@adacore.com>
611
612 * NEWS: Announce Ravenscar Profile support.
613
036b1ba8
JB
6142010-09-28 Joel Brobecker <brobecker@adacore.com>
615 Jerome Guitton <guitton@adacore.com>
616
617 * ravenscar-thread.c, ravenscar-thread.h, ravenscar-sparc-thread.c:
618 New files.
619 * configure.tgt (sparc-*-*): Add ravenscar-thread.o and
620 ravenscar-sparc-thread.o to gdb_target_obs.
621
474011fb
JB
6222010-09-28 Joel Brobecker <brobecker@adacore.com>
623
624 * ada-tasks.c (iterate_over_live_ada_tasks): New function.
625 * ada-lang.h (iterate_over_live_ada_tasks): Declare.
626
99e24b90
PM
6272010-09-27 Pierre Muller <muller@ics.u-strasbg.fr>
628
629 * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
630 (amd64_windows_init_abi): Register amd64_skip_main_prologue as gdbarch
631 skip_main_prologue method.
632
987d643c
TT
6332010-09-27 Tom Tromey <tromey@redhat.com>
634
635 * dwarf2read.c (dwarf2_read_index): Only allow version 3.
636 (write_psymbols): Add 'psyms_seen' and 'is_static' arguments.
637 Only emit a given psymbol once.
638 (struct signatured_type_index_data) <psyms_seen>: New field.
639 (write_one_signatured_type): Update.
640 (cleanup_htab): New function.
641 (write_psymtabs_to_index): Update. Create psyms_seen hash. Bump
642 version to 3.
643 (save_gdb_index_command): Update index documentation.
644
d3aff959
TT
6452010-09-27 Tom Tromey <tromey@redhat.com>
646
647 * bcache.c (expand_hash_table): Use hash_function, not hash.
648
716b65bf
TT
6492010-09-27 Tom Tromey <tromey@redhat.com>
650
651 * gdb_wchar.h: Change minimum libiconv to 0x108.
652
1736ad11
JK
6532010-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
654
655 Fix lost siginfo_t for inferior calls.
656 * infrun.c
657 (struct inferior_thread_state) <siginfo_gdbarch, siginfo_data>: New.
658 (save_inferior_thread_state): New variables regcache, gdbarch and
659 siginfo_data. Initialize SIGINFO_DATA if gdbarch_get_siginfo_type_p.
660 Move INF_STATE allocation later, pre-clear it. Initialize REGISTERS
661 using REGCACHE.
662 (restore_inferior_thread_state): New variables regcache and gdbarch.
663 Restore SIGINFO_DATA for matching GDBARCH. Restore REGISTERS using
664 REGCACHE. Free also SIGINFO_DATA.
665
4b5246aa
TT
6662010-09-24 Tom Tromey <tromey@redhat.com>
667
668 * dwarf2read.c (dw2_expand_symtabs_matching): Add missing
669 MAYBE_SWAPs.
670 (dw2_map_symbol_names): Likewise.
671
2a7d6a25
SW
6722010-09-24 Sami Wagiaalla <swagiaal@redhat.com>
673
674 * valops.c (find_oload_champ_namespace_loop): replace incorrect
675 discard_cleanups do_cleanups.
676
b53a1623
PA
6772010-09-24 Pedro Alves <pedro@codesourcery.com>
678
e6ee044d
PA
679 PR gdb/11842
680
b53a1623
PA
681 * amd64-linux-nat.c (compat_siginfo_from_siginfo)
682 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
683 si_code is < 0. Check for si_code == SI_TIMER before checking for
684 si_code < 0.
685
96a8853a
PA
6862010-09-24 Pedro Alves <pedro@codesourcery.com>
687
688 * objfiles.h (ALL_OBJSECTIONS): Handle breaks in the inner loop.
689
39383a48
JB
6902010-09-22 Joel Brobecker <brobecker@adacore.com>
691
692 * ada-tasks.c (read_atcb): Do not compute the task ptid when
693 debugging a core file.
694
d31d2fc3
JK
6952010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
696
697 Code cleanup.
698 * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove.
699 (free_objfile) <objfile->name != NULL>: Remove the conditional around
700 xfree.
701 * objfiles.h (struct objfile) <name>: New comment it is never NULL.
702 * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>:
703 Remove.
704 * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name>
705 Remove the conditional.
706 * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
707
7f6130ff
JK
7082010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
709
710 * main.c: Include objfiles.h.
711 (captured_main): New variable objfile. Call
712 load_auto_scripts_for_objfile for ALL_OBJFILES.
713
c2b0a229
JK
7142010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
715
716 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
717 DW_TAG_constant.
718
72929c62
JB
7192010-09-22 Joel Brobecker <brobecker@adacore.com>
720
721 * dwarf2read.c (scan_partial_symbols): Add handling of
722 DW_TAG_constant DIEs.
723 (add_partial_symbol, load_partial_dies, new_symbol): Likewise.
724
496c0e1b
JB
7252010-09-22 Joel Brobecker <brobecker@adacore.com>
726
727 * configure.ac: Add support for --enable-gdbserver.
728 * configure: Regenerate.
729
ec322823
SW
7302010-09-22 Sami Wagiaalla <swagiaal@redhat.com>
731
732 PR C++/12028
733 * valops.c (find_oload_champ_namespace_loop): removed incorrect
734 'old_cleanups' reassignment.
735
1558ab4c
JK
7362010-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
737
738 * charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
739 characters.
740
875b4ff5
PM
7412010-09-16 Phil Muldoon <pmuldoon@redhat.com>
742
743 PR mi/11407
744 * mi/mi-cmd-stack.c (list_args_or_locals): Catch exceptions from
745 read_var_value and common_val_print and print a warning.
746
65dedcb2
JK
7472010-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
748
749 * MAINTAINERS (GLOBAL MAINTAINERS) <Jan Kratochvil>: Move the entry to
750 keep the list in alphabetical order. Use longer e-mail address.
751
0e780a22
TT
7522010-09-15 Tom Tromey <tromey@redhat.com>
753
754 * MAINTAINERS (GLOBAL MAINTAINERS): Add Jan Kratochvil.
755
62234ccc
TT
7562010-09-15 Tom Tromey <tromey@redhat.com>
757
758 * charset.c (iconv_open): New define.
759 (iconv): Likewise.
760 (iconv_close): Likewise.
761 (phony_iconv_open): Add "phony_" prefix.
762 (phony_iconv_close): Likewise.
763 (phony_iconv): Likewise.
764 * gdb_wchar.h: Check _LIBICONV_VERSION, __STDC_ISO_10646__.
765 Change how INTERMEDIATE_ENCODING is defined.
766
4950bc1c
DE
7672010-09-15 Doug Evans <dje@google.com>
768
769 * dwarf2read.c (struct die_info): Fix comment.
770
349126ea
AM
7712010-09-15 Alan Modra <amodra@gmail.com>
772
773 PR 4606
774 * gcore.c (gcore_create_callback): Clear SEC_HAS_CONTENTS rather
775 than setting SEC_NEVER_LOAD on sections that need not be copied.
776
923c6a3d
TT
7772010-09-14 Tom Tromey <tromey@redhat.com>
778
779 * psympriv.h (add_psymbol_to_list, init_psymbol_list)
780 (start_psymtab_common, allocate_psymtab, discard_psymtab):
781 Declare.
782 * symfile.h (extend_psymbol_list): Remove.
783 (add_psymbol_to_list, init_psymbol_list, start_psymtab_common)
784 (allocate_psymtab, discard_psymtab): Move to psympriv.h.
785 * psymtab.c (extend_psymbol_list): Move earlier. Now static.
786
a9e6a4bb
JK
7872010-09-14 Jan Kratochvil <jan.kratochvil@redhat.com>
788
789 * dwarf2read.c (dw2_map_ada_symtabs): Remove the internal_error.
790 Update the comment.
791
7155d578
TT
7922010-09-14 Tom Tromey <tromey@redhat.com>
793
794 PR symtab/8399:
795 * dwarf2loc.c (locexpr_describe_location_piece): Don't call error
796 for unrecognized frame base expression.
797
515ed532
TT
7982010-09-14 Tom Tromey <tromey@redhat.com>
799
800 PR exp/11803:
801 * value.c (value_static_field): Use value_of_variable.
802
b467f580
PM
8032010-09-14 Pierre Muller <muller@ics.u-strasbg.fr>
804
805 * m32r-rom.c: Replace winsock.h with winsock2.h header.
806 * remote-m32r-sdi.c: Replace winsock.h by winsock2.h.
807
450ca57c
SW
8082010-09-13 Sami Wagiaalla <swagiaal@redhat.com>
809
810 PR symtab/11992:
811 * c-exp.y (classify_name): Check is_a_member_of_this before returning
812 UNKNOWN_CPP_NAME.
813
1aee7009
JB
8142010-09-13 Joel Brobecker <brobecker@adacore.com>
815
816 * NEWS: Add x86-lynxos to the list of platforms supported by
817 gdbserver.
818
5ec6ebf9
JB
8192010-09-13 Joel Brobecker <brobecker@adacore.com>
820
821 * NEWS: Announce GDBserver support for version 5.x of ppc-lynxos.
822
1863c96c
TT
8232010-09-13 Tom Tromey <tromey@redhat.com>
824
825 * Makefile.in (HFILES_NO_SRCDIR): Add progspace.h.
826
0c5acf93
L
8272010-09-13 H.J. Lu <hongjiu.lu@intel.com>
828
829 * i386-tdep.c (i386_ymm_type): Set type name to
830 builtin_type_vec256i.
831
1c6272a6
MS
8322010-09-12 Michael Snyder <msnyder@vmware.com>
833
834 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
835
e866c497
L
8362010-09-12 H.J. Lu <hongjiu.lu@intel.com>
837
838 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
839
9191d390
L
8402010-09-11 H.J. Lu <hongjiu.lu@intel.com>
841
842 * amd64-tdep.c (amd64_register_name): Removed.
843 (amd64_init_abi): Don't call set_gdbarch_register_name.
844
845 * i386-tdep.c (i386_ymmh_regnum_p): Make it static.
846
847 * i386-tdep.h (i386_ymmh_regnum_p): Removed.
848
8d4d924b
JK
8492010-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
850 Paul Bolle <pebolle@tiscali.nl>
851
852 Redirect also uiout and stdtarg{,err} in execute_command_to_string.
853 * cli-logging.c (struct saved_output_files) <targerr>: New.
854 (set_logging_redirect, pop_output_files, handle_redirections):
855 Redirect also gdb_stdtargerr.
856 * defs.h (struct ui_out, make_cleanup_ui_out_redirect_pop): New
857 declarations.
858 * event-top.c (gdb_setup_readline, gdb_disable_readline): Redirect
859 also gdb_stdtargerr.
860 * top.c (execute_command_to_string): Move make_cleanup_ui_file_delete
861 to the top. Redirect also gdb_stdlog, gdb_stdtarg and gdb_stdtargerr.
862 Use ui_out_redirect, register make_cleanup_ui_out_redirect_pop.
863 * tui/tui-io.c (tui_setup_io): Redirect also gdb_stdtargerr.
864 * utils.c (do_ui_out_redirect_pop, make_cleanup_ui_out_redirect_pop):
865 New functions.
866
3329c4b5
PM
8672010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
868
869 * hppa-tdep.c (unwind_command): Use host_address_to_string function
870 to display a host address.
871 * monitor.c (monitor_read_memory): Likewise.
872 * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
873
5e8db398
PM
8742010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
875
876 * coffread.c (struct coff_symbol): Change c_value type from `long' to
877 `CORE_ADDRESS' as it might contain target addresses.
878
37049e31
PM
8792010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
880
881 * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
882 before cast to pointer to avoid warning.
883
351a3e56
KB
8842010-09-09 Kevin Buettner <kevinb@redhat.com>
885
886 * v850-tdep.c (v850_gdbarch_init): Change the v850's `char'
887 type to be signed.
349126ea 888
6afafb54
UW
8892010-09-09 Ulrich Weigand <uweigand@de.ibm.com>
890
891 * dwarf2read.c (fixup_partial_die): Do not set dummy name for
892 anonymous class partial DIEs.
893
60430eff
DJ
8942010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
895
896 * dwarf2read.c (dwarf2_compute_name): Check that the first
897 argument is a pointer.
898
f1078f66
DJ
8992010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
900
901 * dwarf2read.c (read_func_scope, read_structure_type)
902 (read_common_block): Check for a NULL return from new_symbol.
903
82430852
JK
9042010-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
905
906 * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
907
c767944b
DJ
9082010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
909
910 * dwarf2read.c (read_structure_type): Move processing of
911 fields and member functions from here...
912 (process_structure_scope): ... to here.
913
561d3825
DJ
9142010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
915
916 * gnu-v3-abi.c (gnuv3_print_method_ptr): Do not use
917 the domain type.
918 (gnuv3_make_method_ptr): Likewise.
919
9bd89d67
TT
9202010-09-08 Tom Tromey <tromey@redhat.com>
921
922 * breakpoint.c (create_breakpoint): Add missing _().
923
1d040b0d
DE
9242010-09-08 Doug Evans <dje@google.com>
925
926 * dwarf2-frame.h (dwarf2_frame_build_info): Delete, unused.
927
774b6a14
TT
9282010-09-08 Tom Tromey <tromey@redhat.com>
929
930 Revert:
931 2010-09-01 Tom Tromey <tromey@redhat.com>
932 * dwarf2read.c, gdbtypes.c, psymtab.c, symfile.h, symtab.c,
933 symtab.h: Revert earlier change.
934
fc956729
SW
9352010-09-09 Sami Wagiaalla <swagiaal@redhat.com>
936
937 * psymtab.c (add_psymbol_to_bcache): Initialize
938 obj_section.
939 memset psymbol.ginfo.value to 0.
940
48f9886d
PA
9412010-09-06 Pedro Alves <pedro@codesourcery.com>
942
943 * infrun.c (resume): Extend comment on ignoring single-step
944 requests on vfork parents waiting for a vfork-done.
945
423ec54c
JK
9462010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
947 Pedro Alves <pedro@codesourcery.com>
948
949 * corelow.c (core_open): Use target_signal_from_host if CORE_GDBARCH
950 is NULL.
951 * fork-child.c (startup_inferior) <resume_signal>: Use enum
952 target_signal type.
953 * linux-nat.c (linux_nat_resume): Use target_signal_to_host before
954 calling strsignal. Use enum target_signal type for saved_signo.
955 (linux_handle_extended_wait) <signo>: Use enum target_signal type.
956 (linux_nat_wait_1): Use enum target_signal type for signo. Use
957 target_signal_to_host before calling strsignal.
958 * remote-m32r-sdi.c (m32r_wait, m32r_detach): Replace 0 by
959 TARGET_SIGNAL_0.
960
a6eb9bc8
JK
9612010-09-06 Pedro Alves <pedro@codesourcery.com>
962 Jan Kratochvil <jan.kratochvil@redhat.com>
963
964 * common/signals.c (ANY): Remove.
965 (SET): No longer use ANY.
966
74609e71
YQ
9672010-09-06 Yao Qi <yao@codesourcery.com>
968
969 * infrunc(resume): When inferior is waiting_for_vfork_done,
970 clear step and don't use displaced stepping.
971
8464be76
DJ
9722010-09-04 Daniel Jacobowitz <dan@codesourcery.com>
973
974 * breakpoint.c (can_use_hardware_watchpoint): Handle the first
975 value specially.
976
33d62d64
JK
9772010-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
978
979 Code cleanup - split print_stop_reason.
980 * infrun.c (enum inferior_stop_reason): Remove.
981 (print_stop_reason): Remove by splitting into ...
982 (print_exited_reason, print_signal_exited_reason)
983 (print_no_history_reason, print_signal_received_reason)
984 (print_end_stepping_range_reason): ... these new functions. Update
985 the preceding comment.
986 (handle_inferior_event): Change the calls to print_exited_reason,
987 print_signal_exited_reason, print_no_history_reason,
988 print_signal_received_reason, print_end_stepping_range_reason.
989 (handle_step_into_function, handle_step_into_function_backward):
990 Change the calls to print_end_stepping_range_reason.
991
14dba4b4
JK
9922010-09-03 Jan Kratochvil <jan.kratochvil@redhat.com>
993
994 * breakpoint.c (save_breakpoints): Use RETURN_MASK_ALL.
995 * cli-out.c: Include vec.h.
996 (cli_field_fmt, cli_spaces, cli_text, cli_message, cli_flush): New
997 variable stream, initialize it, use it.
998 (cli_redirect): New function comment. Replace the stream and
999 original_stream fields by the new streams field. Remove the
1000 original_stream != NULL conditional, assert error on NULL instead.
1001 (out_field_fmt, field_separator): New variable stream, initialize it, use it.
1002 (cli_out_data_ctor): Assert non-NULL stream. Replace the stream and
1003 original_stream fields by the new streams field.
1004 (cli_out_set_stream): Replace the stream field by the new streams
1005 field.
1006 * cli-out.h: Include vec.h.
1007 (ui_filep): New typedef, call DEF_VEC_P for it.
1008 (struct cli_ui_out_data): Replace the stream and original_stream
1009 fields by the new streams field.
1010 * cli/cli-logging.c (set_logging_redirect): Call ui_out_redirect with
1011 NULL first. Extend the comment.
1012 (handle_redirections): Call ui_out_redirect with output.
1013 * python/py-breakpoint.c (bppy_get_commands): Move ui_out_redirect
1014 calls outside of the TRY_CATCH block.
1015
b04bc5d4 10162010-09-03 Joel Brobecker <brobecker@adacore.com>
1017
1018 GDB 7.2 released.
1019
080db4e0
JB
10202010-09-02 Joel Brobecker <brobecker@adacore.com>
1021
1022 Back out the following change:
1023 | 2010-06-29 Hui Zhu <teawater@gmail.com>
1024 | * record.c (set_record_pic_cmdlist,
1025 | show_record_pic_cmdlist): New variables.
1026 | (set_record_pic_command,
1027 | show_record_pic_command): New functions.
1028 | (record_pic_function, record_pic_line, record_pic_enum,
1029 | set_record_pic_type, record_pic_hide_nofunction,
1030 | record_pic_hide_nosource, record_pic_hide_same): New variables.
1031 | (record_pic_fputs): New function.
1032 | (function_list, node_list, edge_list): New struct.
1033 | (function_list, node_list, edge_list): New variables.
1034 | (record_pic_cleanups, record_pic_node,
1035 | record_pic_edge, cmd_record_pic): New functions.
1036 | (_initialize_record): Add new commands for record pic.
1037
0a4f61e3
DJ
10382010-09-02 Daniel Jacobowitz <dan@codesourcery.com>
1039
1040 * config.in, configure: Regenerated.
1041 * configure.ac: Check for waitpid.
1042 * ser-pipe.c (pipe_close): Wait for the program to exit.
1043
58b61394
JK
10442010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1045
ba720883 1046 * cli/cli-logging.c: Include gdb_assert.h.
58b61394
JK
1047 (set_logging_overwrite): New function.
1048 (logging_redirect): New comment.
1049 (logging_no_redirect_file, set_logging_redirect)
1050 (pop_output_files) <logging_no_redirect_file>: New.
1051 (handle_redirections) <!logging_redirect>: New variable
1052 no_redirect_file. Remove file autoclose for tee_file_new. No longer
1053 discard cleanup for the close of former OUTPUT. Set
1054 LOGGING_NO_REDIRECT_FILE.
1055 (handle_redirections) <logging_redirect>: gdb_assert
1056 LOGGING_NO_REDIRECT_FILE.
1057 (show_logging_command) <logging_redirect handling>: Adjust messages
1058 for SAVED_FILENAME not NULL.
1059 (_initialize_cli_logging): Install set_logging_overwrite and
1060 set_logging_redirect.
1061
706774f2
JK
10622010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1063
1064 * iq2000-tdep.c (iq2000_scan_prologue): Initialize SAL.END.
1065
9a35ccf7
JK
10662010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1067
1068 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT): Convert it to the no- form.
1069 (monitor.o): Replace $(INTERNAL_WARN_CFLAGS) by $(INTERNAL_CFLAGS) and
1070 add $(GDB_WARN_CFLAGS_NO_FORMAT).
1071 (printcmd.o): Replace $(INTERNAL_CFLAGS_BASE) by $(INTERNAL_CFLAGS).
1072
ba9b2ec3
YQ
10732010-09-02 Yao Qi <yao@codesourcery.com>
1074
1075 * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
1076 number from a WIFSIGNALED status.
1077
faf68db7
TT
10782010-09-01 Tom Tromey <tromey@redhat.com>
1079
1080 * symtab.h (lookup_type_symbol): Declare.
1081 * symtab.c (lookup_symbol_in_language_full): Rename from
1082 lookup_symbol_in_language. Add 'for_type' argument.
1083 (lookup_symbol_in_language): New function.
1084 (lookup_type_symbol): Likewise.
1085 (lookup_symbol_aux): Add 'for_type' argument.
1086 (match_symbol_aux): New function.
1087 (lookup_symbol_aux_symtabs): Use expand_one_symtab_matching.
1088 (match_transparent_type): New function.
1089 (basic_lookup_transparent_type): Use expand_one_symtab_matching.
1090 * symfile.h (struct quick_symbol_functions)
1091 <pre_expand_symtabs_matching>: Remove.
1092 <expand_one_symtab_matching>: New field.
1093 * psymtab.c (expand_one_symtab_matching_psymtabs): New function.
1094 (pre_expand_symtabs_matching_psymtabs): Remove.
1095 (psym_functions): Update.
1096 * gdbtypes.c (lookup_typename): Use lookup_type_symbol.
1097 * dwarf2read.c (dw2_lookup_symbol): Update comment.
1098 (dw2_pre_expand_symtabs_matching): Remove.
1099 (dw2_expand_one_symtab_matching): New function.
1100 (dwarf2_gdb_index_functions): Update.
1101
248c9dbc
JB
11022010-09-01 Joel Brobecker <brobecker@adacore.com>
1103
1104 * NEWS: Add entry announcing GDBserver support on powerpc-lynxos.
1105
f75d858b
MK
11062010-09-01 Marc Khouzam <marc.khouzam@ericsson.com>
1107
1108 * mi/mi-main.c (mi_cmd_list_target_features): Add `reverse'
1109 as a feature reported by -list-target-features.
1110
0482b03b
JB
11112010-09-01 Joel Brobecker <brobecker@adacore.com>
1112
1113 * features/Makefile (WHICH): Add rs6000/powerpc-32.
1114 (powerpc-32.o, powerpc-32.c): New rules.
1115 (clean): Also remove powerpc-32.c.
1116 * regformats/rs6000/powerpc-32.dat: Generate.
1117
710e1a31
SW
11182010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
1119
1120 * symfile.c (reread_symbols): Use psymbol_bcache_free, and
1121 psymbol_bcache_init.
1122 * psymtab.h (psymbol_bcache_init): New function prototype.
1123 (psymbol_bcache_free): New function prototype.
1124 (psymbol_bcache_get_bcache): New function prototype.
1125 * psymtab.c (psymbol_bcache_init): New function.
1126 (psymbol_bcache_free): New function.
1127 (psymbol_bcache_full): New function.
1128 (psymbol_bcache_get_bcache): New function.
1129 (add_psymbol_to_bcache): use psymbol_bcache_full.
1130 * objfiles.h (psymbol_cache): Change type of psymbol_cache to
1131 psymbol_bcache.
1132 * symmisc.c (print_symbol_bcache_statistics): Updated.
1133 (print_objfile_statistics): Updated.
1134 * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
1135 psymbol_cache.
1136 (free_objfile): Use psymbol_bcache_free.
1137
64382290
TT
11382010-08-31 Tom Tromey <tromey@redhat.com>
1139
1140 PR c++/11961:
1141 * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
1142 Don't set TYPE_NAME on the type.
1143
8bbed405
MS
11442010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1145
1146 * infrun.c (set_exec_direction_func): Error out if target does not
1147 support reverse execution.
1148
06253dd3
JK
11492010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1150
1151 Make linux_get_siginfo_type `type *' unique.
1152 * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
1153 (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
1154 (linux_get_siginfo_type): New variable linux_gdbarch_data. Initialize
1155 it. Use linux_gdbarch_data->siginfo_type as a persistent storage.
1156 (_initialize_linux_tdep): New.
1157
b8edc417
JK
11582010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1159
1160 Code cleanup.
1161 * defs.h (find_memory_region_ftype): New typedef.
1162 (exec_set_find_memory_regions): Use it.
1163 * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
1164 * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
1165 * gcore.c (objfile_find_memory_regions): Likewise.
1166 * gnu-nat.c (gnu_find_memory_regions): Likewise.
1167 * linux-nat.c (linux_nat_find_memory_regions): Likewise.
1168 * procfs.c (iterate_over_mappings_cb_ftype): Remove.
1169 (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
1170 find_memory_region_ftype.
1171 (insert_dbx_link_bpt_in_region): Likewise.
1172 (iterate_over_mappings): Likewise. Drop the comment part about the
1173 function prototype.
1174 (find_memory_regions_callback): Use find_memory_region_ftype.
1175 (proc_find_memory_regions): Likewise.
1176 (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
1177 find_memory_region_ftype.
1178 * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
1179 * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
1180
cbd70537
SW
11812010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
1182
1183 * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
1184 'static partial_symbol psymbol'.
1185 (psymbol_hash): New function.
1186 (psymbol_compare): New function.
1187 * bcache.c (hash_continue): New.
1188 (hash): Use hash_continue.
1189 * bcache.c: Add hash_function and compare_function
1190 pointers to bcache struct.
1191 (bcache_full): Use bcache->hash_function, and
1192 bcache->compare_function.
1193 (bcache_compare): New function.
1194 (bcache_xmalloc): Take hash_function and
1195 compare_function arguments and initialize the
1196 bcach's pointers.
1197 Updated comment.
1198 * objfiles.c (allocate_objfile): Updated.
1199 * symfile.c (reread_symbols): Updated.
1200 * python/py-type.c (typy_richcompare): Updated.
1201
03f17ccf
TT
12022010-08-30 Andre Poenitz <andre.poenitz@nokia.com>
1203 Tom Tromey <tromey@redhat.com>
1204
1205 PR python/11792:
1206 * python/py-value.c (valpy_get_dynamic_type): New function.
1207 (value_object_getset): Add "dynamic_type".
1208 (valpy_get_type): Fail on error.
1209
25b41d01
YQ
12102010-08-30 Yao Qi <yao@codesourcery.com>
1211
1212 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
1213 (arm_linux_syscall_next_pc): New.
1214 (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead.
1215 (arm_linux_init_abi): Initialize syscall_next_pc.
1216 * arm-tdep.c (thumb_get_next_pc_raw): Get next pc of SWI in Thumb mode.
1217 (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
1218 * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc.
1219 Declare arm_frame_is_thumb.
1220
5760d0ab
JK
12212010-08-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1222
1223 Code cleanup.
1224 * breakpoint.c (bpstat_alloc): Remove unused prototype.
1225 (bpstat_alloc): Change parameters cbs to bs_link_pointer. Adjust the
1226 code.
1227 (bpstat_stop_status): Change root_bs into bs_head and bs_link. Adjust
1228 calls of bpstat_alloc. Remove explicit bs chain termination.
1229
46a96992
JK
12302010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1231
1232 Code cleanup.
1233 * linux-nat.c (pull_pid_from_list): Rename status to statusp.
1234 (my_waitpid): Likewise.
1235
36374493
DE
12362010-08-27 Doug Evans <dje@google.com>
1237
1238 * dwarf2read.c (dw2_require_line_header): Read from .debug_types
1239 as appropriate.
1240
8b93c54c
TT
12412010-08-27 Tom Tromey <tromey@redhat.com>
1242
1243 * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
1244 TYPE_FIELD_IGNORE_BITS.
1245
16be1145
DE
12462010-08-27 Doug Evans <dje@google.com>
1247
1248 * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
1249 the order they're defined in. munmap .debug_types buffer.
1250
e254ef6a
DE
12512010-08-26 Doug Evans <dje@google.com>
1252
1253 * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
1254 (dw2_forget_cached_source_info): Rename local cu to per_cu.
1255 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
1256 (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
1257 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
1258 (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
1259 (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
1260 (dwarf2_free_objfile, write_one_signatured_type): Ditto.
1261 (write_psymtabs_to_index): Ditto.
1262
ae53ffa4
PA
12632010-08-26 Pedro Alves <pedro@codesourcery.com>
1264
1265 * NEWS: Mention libthread_db debugging with core files.
1266
c6da4cef
DE
12672010-08-26 Doug Evans <dje@google.com>
1268
1269 * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
1270 forward decl. Pass pst->dirname to dwarf_decode_lines.
1271 (psymtab_include_file_name): New function.
1272 (dwarf_decode_lines): Call it. Update comments.
1273
cd02d79d
PA
12742010-08-25 Pedro Alves <pedro@codesourcery.com>
1275
1276 * dwarf2read.c (inherit_abstract_dies): Handle origin die's
1277 compilation unit being different from target die's.
1278
673bfd45
DE
12792010-08-24 Doug Evans <dje@google.com>
1280
1281 PR symtab/11942
1282 * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
1283 debug_types_type_hash.
1284 (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
1285 All uses updated.
1286 (lookup_die_type): Renamed from tag_type_to_tag. First look in
1287 appropriate type_hash table. All callers updated.
1288 (allocate_signatured_type_table): Renamed from
1289 allocate_signatured_type_hash_table. All callers updated.
1290 (create_signatured_type_table_from_index): Renamed from
1291 create_signatured_type_hash_from_index. All callers updated.
1292 (read_die_type): Add comment. Move actual reading to ...
1293 (read_die_type_1): ... here. New function.
1294 (follow_die_ref_or_sig): Tweak comment.
1295 (set_die_type): Rewrite to use appropriate choice of
1296 debug_info_type_hash or debug_types_type_hash.
1297 (get_die_type_at_offset): New function.
1298 (get_die_type): Call it.
1299
e8fd65ef
JK
13002010-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1301
1302 * python/py-type.c (typy_richcompare): Initialize worklist.
1303
9779414d
DJ
13042010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
1305 Kazu Hirata <kazu@codesourcery.com>
1306 Jonathan Larmour <jifl@eCosCentric.com>
1307
1308 * arm-tdep.c: Include features/arm-with-m.c.
1309 (arm_psr_thumb_bit): New. Update all uses of CPSR_T to
1310 call this function.
1311 (arm_pc_is_thumb): Add a gdbarch argument. Update all callers.
1312 Check is_m after force-mode.
1313 (arm_gdbarch_init): Check the binary before the target description.
1314 Add check for M profile attribute. If we have an M-profile device,
1315 but no target register description, use arm-with-m. Recognize the
1316 new org.gnu.gdb.arm.m-profile feature and its xpsr register.
1317 (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
1318 * arm-tdep.h (XPSR_T): Define.
1319 (struct gdbarch_tdep): Add is_m member.
1320 * features/arm-m-profile.xml, features/arm-with-m.c,
1321 features/arm-with-m.xml: New files.
1322
9dc481d3
DE
13232010-08-23 Doug Evans <dje@google.com>
1324
1325 * dwarf2read.c (read_structure_type): Add comment.
1326 (read_enumeration_type): Add comment.
1327 (process_enumeration_scope): Move definition of some locals
1328 closer to their use.
1329 (read_namespace_type): Add comment.
e71ec853 1330 (set_die_type): Fix typo in comment.
9dc481d3 1331
f9ffd4bb
TT
13322010-08-23 Tom Tromey <tromey@redhat.com>
1333
1334 PR python/11145:
1335 * python/py-value.c: Include expression.h.
1336 (valpy_do_cast): New function.
1337 (valpy_cast): Use it.
1338 (valpy_dynamic_cast): New function.
1339 (valpy_reinterpret_cast): Likewise.
1340 (value_object_methods): Add dynamic_cast, reinterpret_cast.
1341
96f73ba5
TT
13422010-08-23 Tom Tromey <tromey@redhat.com>
1343
1344 PR python/11391:
1345 * python/py-value.c (valpy_nonzero): Don't throw error for other
1346 Value types.
1347
d839c8a4
TT
13482010-08-23 Tom Tromey <tromey@redhat.com>
1349
1350 PR python/10676:
1351 * python/py-type.c: Include bcache.h, vec.h.
1352 (struct type_equality_entry): New.
1353 (compare_strings): New function.
1354 (check_types_equal): Likewise.
1355 (check_types_worklist): Likewise.
1356 (typy_richcompare): Likewise.
1357 (type_object_type): Set tp_richcompare field.
1358
05d0e1e7
TT
13592010-08-23 Tom Tromey <tromey@redhat.com>
1360
1361 PR python/10953:
1362 * python/py-type.c (typy_fields): Call check_typedef.
1363 (typy_template_argument): Add TRY_CATCH.
1364
702c2711
TT
13652010-08-23 Tom Tromey <tromey@redhat.com>
1366
1367 PR python/11915:
1368 * python/py-type.c (typy_array): New function.
1369 (type_object_methods): Add "array".
1370
4a532131
PA
13712010-08-20 Pedro Alves <pedro@codesourcery.com>
1372
1373 * python/python.c: Include "serial.h".
1374 (gdbpy_event_fds): Change type to `struct serial *' a array from
1375 int array.
1376 (gdbpy_run_events): Change parameters. Use serial_readchar in
1377 place of read.
1378 (gdbpy_post_event): Use serial_write in place of write.
1379 (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
1380 serial_async in place of add_file_handler.
1381
58f07bae
PA
13822010-08-20 Pedro Alves <pedro@codesourcery.com>
1383
1384 * serial.h (gdb_pipe, serial_pipe): Declare.
1385 * serial.c (serial_interface_lookup): Take a const char pointer.
1386 (serial_fdopen): Rename to ...
1387 (serial_fdopen_ops): ... this. Add an OPS parameter and use it.
1388 Call the OPS' fdopen function if there is one.
1389 (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
1390 (serial_pipe): New.
1391 (struct serial_ops) <fdopen>: New field.
1392
1393 * ser-mingw.c (free_pipe_state):
1394 (free_pipe_state): Close output on non-pex pipes.
1395 (pipe_windows_fdopen): New.
1396 (gdb_pipe): New.
1397 (_initialize_ser_windows): Register pipe_windows_fdopen.
1398 * ser-go32.c (gdb_pipe): New.
1399 * ser-pipe.c (pipe_close): Close file descriptor even if there's
1400 no state pointer.
1401 (pipe_ops): Delete.
1402 (gdb_pipe): New.
1403
3da10d80
KS
14042010-08-20 Keith Seitz <keiths@redhat.com>
1405
1406 PR symtab/11465:
889bf7c5 1407 * dwarf2read.c (struct delayed_method_info): New struct.
3da10d80
KS
1408 (struct dwarf2_cu): Add vector method_list.
1409 (scan_partial_symbols): Count methods for union, class, structure,
1410 and interface types.
1411 (add_to_method_list): New function.
1412 (free_delayed_list): New function.
1413 (compute_delayed_physnames): New function.
1414 (process_full_comp_unit): Make a cleanup for the CU's delayed
1415 physname list, compute the delayed physnames, and free the
1416 the list.
1417 (dwarf2_add_member_fn): For C++ and Java, delay the computation
1418 of the physname until after the CU is read.
1419
1420 * dwarf2read.c (read_structure_type): Check if the current
1421 DIE's type was already completed after dwarf2_full_name
1422 was called.
889bf7c5 1423
ca11e899
SS
14242010-08-19 Stan Shebs <stan@codesourcery.com>
1425
1426 * NEWS: Mention some additional changes.
1427
4d2dc20a
TT
14282010-08-19 Tom Tromey <tromey@redhat.com>
1429
1430 * Makefile.in (install-python): Add DESTDIR.
1431
d30f5e1f
DE
14322010-08-19 Doug Evans <dje@google.com>
1433
1434 PR exp/11926
1435 * parser-defs.h (parse_float, parse_c_float): Declare.
1436 * parse.c (parse_float, parse_c_float): New function.
1437 * c-exp.y (parse_number): Call parse_c_float.
1438 * objc-exp.y (parse_number): Ditto.
1439 * p-exp.y (parse_number): Ditto. Use ANSI/ISO-style definition.
1440 * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
1441
2837d59e
JB
14422010-08-19 Joel Brobecker <brobecker@adacore.com>
1443
1444 * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
1445 the arguments in the correct order.
1446 * symtab.c (maybe_add_partial_symtab_filename): Declare
1447 the arguments in the correct order.
1448
35633fef
JK
14492010-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1450
1451 * varobj.c (varobj_create): Replace variable old_fi with old_id,
1452 initialize it by null_frame_id, wrap its usage by get_frame_id,
1453 frame_id_p and frame_find_by_id.
1454
94f7449c
TT
14552010-08-18 Tom Tromey <tromey@redhat.com>
1456
1457 PR python/11900:
1458 * configure: Rebuild.
1459 * configure.ac: Add install-python to CONFIG_INSTALL.
1460 * Makefile.in (install-python): New.
1461
f3574227
DE
14622010-08-18 Doug Evans <dje@google.com>
1463
1464 * gdb_assert.h (gdb_assert_not_reached): New macro.
1465 (gdb_assert_fail): Fix typo in comment.
1466 * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
1467 gdb_assert (0).
1468 * darwin-nat.c (darwin_check_new_threads): Ditto.
1469 * dwarf2read.c (dwarf2_get_section_info): Ditto.
1470 (munmap_section_buffer): Ditto.
1471 * m32c-tdep.c (make_types): Ditto.
1472 (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
1473 * macroexp.c (get_character_constant): Ditto.
1474 (get_string_literal): Ditto.
1475 * mep-tdep.c (mep_pseudo_cr_size): Ditto.
1476 (mep_pseudo_cr_index, mep_register_type): Ditto.
1477 (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
1478 (mep_get_insn, mep_analyze_prologue): Ditto.
1479 * objfiles.c (qsort_cmp): Ditto.
1480 * prologue-value.c (pv_is_identical): Ditto.
1481 * record.c (record_get_loc): Ditto.
1482 * value.c (value_static_field): Ditto.
1483 * xtensa-tdep.c (call0_track_op): Ditto.
1484
c92817ce
TT
14852010-08-18 Tom Tromey <tromey@redhat.com>
1486
1487 PR symtab/11919:
1488 * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
1489 * parse.c (parse_field_expression): Use RETURN_MASK_ERROR. Move
1490 name-copying lower. Document exception behavior.
1491 * completer.c (expression_completer): Catch exceptions from
1492 parse_field_expression.
1493
856d6f99
PA
14942010-08-18 Pedro Alves <pedro@codesourcery.com>
1495
1496 PR corefile/8210
1497
1498 * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
1499 workaround on core files.
1500 (try_thread_db_load_1): Don't try enabling thread event reporting
1501 on core files.
1502 (thread_db_load): Allow thread_db on core files.
1503 (attach_thread): Don't check thread signals on core files, nor try
1504 really attaching to the thread, nor enabling thread event event
1505 reporting.
1506 (thread_db_detach): Don't try disabing thread event reporting or
1507 removing thread event breakpoints when debugging a core file.
1508 (find_new_threads_callback): Don't try enabling thread event
1509 reporting on core files.
1510 (thread_db_find_new_threads_2): Don't look for a stopped lwp when
1511 debugging a core file.
1512 (thread_db_find_new_threads): Don't update thread
1513 cores (processors) when debugging a core (dump).
1514
261b8d08
PA
15152010-08-18 Pedro Alves <pedro@codesourcery.com>
1516
1517 PR corefile/8210
1518
1519 * corelow.c (add_to_thread_list): Don't use
1520 gdbarch_core_reg_section_encodes_pid. Use bfd_core_file_pid.
1521 (get_core_register_section): Don't use
1522 gdbarch_core_reg_section_encodes_pid.
1523
1524 * gdbarch.sh (core_reg_section_encodes_pid): Delete.
1525 * gdbarch.h, gdbarch.c: Regenerate.
1526 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
1527 gdbarch_core_reg_section_encodes_pid.
1528 * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
1529 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
1530 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
1531
f9b42018
YQ
15322010-08-18 Yao Qi <yao@codesourcery.com>
1533
1534 * MAINTAINERS : Add myself under Write After Approval.
1535
def98928
TT
15362010-08-17 Tom Tromey <tromey@redhat.com>
1537
1538 * NEWS: Mention template parameter support.
1539
0807b50c
PA
15402010-08-17 Pedro Alves <pedro@codesourcery.com>
1541
1542 PR breakpoints/11371
1543
1544 * breakpoint.c (decref_bp_location): Assert the reference count is
1545 sane.
1546
f431efe5
PA
15472010-08-17 Pedro Alves <pedro@codesourcery.com>
1548
1549 PR breakpoints/11371
1550
1551 * breakpoint.c (breakpoint_init_inferior): Decrement the
1552 location's reference count instead of deleting right away.
1553 (bpstat_free): Decrement the location's reference count. Make
1554 static.
1555 (bpstat_copy): Increment the location's reference count.
1556 (bpstat_find_breakpoint): Adjust.
1557 (bpstat_num): Adjust.
1558 (print_it_typical): Adjust. Use the breakpoint pointer in the
1559 bpstat instead of the location's owner.
1560 (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
1561 Adjust to record the location's owner in the bpstat.
1562 (watchpoint_check): Use the breakpoint pointer in the bpstat
1563 instead of the location's owner.
1564 (bpstat_check_breakpoint_conditions): Don't handle
1565 bp_watchpoint_scope here. Use the breakpoint pointer in the
1566 bpstat instead of the location's owner.
1567 (bpstat_stop_status): Defer inferior function calls to after
1568 building the bpstat list. Handle bp_watchpoint_scope here. Use
1569 the breakpoint pointer in the bpstat instead of the location's
1570 owner.
1571 (bpstat_what): Use the breakpoint pointer in the bpstat instead of
1572 the location's owner.
1573 (free_bp_location): Don't walk bpstats clearing locations.
1574 (incref_bp_location): New.
1575 (decref_bp_location): New.
1576 (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
1577 instead of the location's owner.
1578 (update_global_location_list): Clear the location's owner, and
1579 decrement the location's reference count instead of deleting it
1580 right away.
1581 (breakpoint_retire_moribund): Decrement the location's reference
1582 count instead of deleting it right away.
1583 (bpstat_remove_bp_location): Delete.
1584 (bpstat_remove_breakpoint): New.
1585 (bpstat_remove_bp_location_callback): Delete.
1586 (bpstat_remove_breakpoint_callback): New.
1587 (delete_breakpoint): Iterate over all threads' stop_bpstat's
1588 clearing references to the breakpoint that is being deleted.
1589
1590 * breakpoint.h (struct bp_location) <refc>: New field.
1591 <owner>: Update comments.
1592 (bpstat_free): Delete declaration.
1593 (struct bpstats): Change the type of the breakpoint_at field to
1594 struct breakpoint point, from struct bp_location pointer. Add new
1595 field bp_location_at.
1596
14c0d4e1
TT
15972010-08-16 Tom Tromey <tromey@redhat.com>
1598
1599 * NEWS: Fix typo.
1600
b56df873
TT
16012010-08-16 Tom Tromey <tromey@redhat.com>
1602
1603 * NEWS: Mention watch -location.
1604
d63d0675
JK
16052010-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1606
1607 * breakpoint.c (update_watchpoint): Add source empty line. Prefer
1608 EXP_STRING_REPARSE to EXP_STRING.
1609 (watch_command_1): Set also EXP_STRING_REPARSE.
1610 (delete_breakpoint): Free also EXP_STRING_REPARSE.
1611 * breakpoint.h (struct breakpoint): New field exp_string_reparse.
1612 Update comment for exp_string.
1613
06a64a0b
TT
16142010-08-16 Tom Tromey <tromey@redhat.com>
1615
1616 * value.c (release_value): Clear 'next' pointer.
1617 * breakpoint.c (watch_command_1): Add 'just_location' argument.
1618 (watch_command_wrapper): Update.
1619 (watch_maybe_just_location): New function.
1620 (watch_command): Update.
1621 (rwatch_command_wrapper): Update.
1622 (rwatch_command): Update.
1623 (awatch_command_wrapper): Update.
1624 (awatch_command): Update.
1625 (check_for_argument): New function.
1626 (_initialize_breakpoint): Update help text.
1627
f96b8fa0
UW
16282010-08-14 Ulrich Weigand <uweigand@de.ibm.com>
1629
1630 * arm-tdep.c (arm_push_dummy_call): Handle pointers to
1631 typedef'ed function types correctly.
1632
4eb54052
TT
16332010-08-13 Tom Tromey <tromey@redhat.com>
1634
1635 * python/python-internal.h (gdbpy_get_hook_function): Don't
1636 declare.
1637
44be957e
JK
16382010-08-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1639
ba720883 1640 * cli/cli-logging.c (logging_overwrite, logging_redirect): Make them
44be957e
JK
1641 static.
1642
76d8b686
KW
16432010-08-13 Ken Werner <ken.werner@de.ibm.com>
1644
1645 * python/python.c (gdbpy_solib_name): Remove the const qualifier of
1646 the format strings to be compatible with Python 2.4.
1647
8dedea02
VP
16482010-08-13 Vladimir Prus <vladimir@codesourcery.com>
1649
1650 Easier and more stubborn MI memory read commands.
1651
1652 * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
1653 and data-write-memory-bytes.
1654 * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
1655 (mi_cmd_data_write_memory_bytes): New.
1656 * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
1657 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
1658 New.
1659 (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
1660 * target.c (target_read_until_error): Remove.
1661 (read_whatever_is_readable, free_memory_read_result_vector)
1662 (read_memory_robust): New.
1663 * target.h (target_read_until_error): Remove.
1664 (struct memory_read_result, free_memory_read_result_vector)
1665 (read_memory_robust): New.
1666
1d9ec526
HZ
16672010-08-13 Hui Zhu <teawater@gmail.com>
1668
1669 * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
1670 (read_comp_unit): Initialize back_to.
1671
98bfdba5
PA
16722010-08-12 Daniel Jacobowitz <dan@codesourcery.com>
1673 Pedro Alves <pedro@codesourcery.com>
1674
1675 * dwarf2read.c: Include "c-lang.h" and "valprint.h".
1676 (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
1677 (struct partial_die_info) <has_template_arguments>: New field.
1678 <num_attrs>: Change type to unsigned char.
1679 <building_fullname>: New field.
1680 (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only
1681 allocate a CU if we don't have one already. Add a cleanup for the
1682 CU.
1683 (partial_die_full_name): Handle template arguments not in
1684 DW_AT_name.
1685 (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
1686 (load_full_comp_unit): Only allocate a CU if we don't have one
1687 already.
1688 (do_ui_file_peek_last): New.
1689 (dwarf2_compute_name): Handle template parameters not in
1690 DW_AT_name.
1691 (read_comp_unit): Read and free abbrevs if not read yet.
1692 (load_partial_dies): Handle template arguments not in DW_AT_name.
1693 (find_partial_die): If we have a CU, but no a partial dies yet,
1694 also read in the CU.
1695 (dwarf2_const_value_attr): New, abstracted out from
1696 dwarf2_const_value.
1697 (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
1698 dwarf2_const_value_attr.
1699 (determine_prefix): Detect and break loops created by RCVT's debug
1700 info.
1701 (maybe_queue_comp_unit): Bail out early if reading partial
1702 symbols.
1703 (follow_die_offset): Load full CU if we have no dies.
1704 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
1705 * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
1706
ca5c20b6 17072010-08-11 Tom Tromey <tromey@redhat.com>
889bf7c5 1708 Phil Muldoon <pmuldoon@redhat.com>
ca5c20b6
PM
1709
1710 * python/python.c (gdbpy_run_events): New function.
1711 (gdbpy_post_event): Likewise.
1712 (gdbpy_initialize_events): Likewise.
1713 (_initialize_python): Call gdbpy_initialize_events.
1714
7346b668
KW
17152010-08-11 Ken Werner <ken.werner@de.ibm.com>
1716
1717 * gdb/valarith.c (vector_binop): New function.
1718 (scalar_binop): Likewise.
1719 (value_binop): Call scalar_binop or vector_binop depending on the types.
1720 * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
1721 (evaluate_subexp_with_coercion): Add vector check to not convert vectors
1722 to pointers.
1723 * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
1724
62183e15
TT
17252010-08-11 Brad Roberts <braddr@puremagic.com>
1726
1727 * d-lang.c (extract_identifiers): Handle multiple digits.
1728
39d7b0e2
JK
17292010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1730
1731 Code cleanup.
1732 * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
1733 Rename to dummy_frame_unwind.
1734 (dummy_frame_unwind): Remove.
1735 * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
1736 * frame-unwind.c (frame_unwind_init): Use address of
1737 dummy_frame_unwind and inline_frame_unwind.
1738 * frame.c (create_sentinel_frame): Use address of
1739 sentinel_frame_unwind.
1740 * inline-frame.c (inline_frame_unwinder): Rename to
1741 inline_frame_unwind.
1742 (inline_frame_unwind): Remove.
1743 * inline-frame.h (inline_frame_unwind): Reference directly the struct.
1744 * sentinel-frame.c (sentinel_frame_unwinder): Rename to
1745 sentinel_frame_unwind.
1746 (sentinel_frame_unwind): Remove.
1747 * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
1748 struct.
1749
9f9a8002
JK
17502010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1751
1752 Code cleanup.
1753 * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
1754 and returned value. New comment from frame-unwind.h.
1755 * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
1756 Extend the comment.
1757 * frame.c (get_frame_id, frame_unwind_register_value)
1758 (create_new_frame, get_prev_frame_1, frame_unwinder_is)
1759 (get_frame_type, frame_unwind_arch): Do not use the return value of
1760 frame_unwind_find_by_frame.
1761
cb2e07a6 17622010-08-11 Phil Muldoon <pmuldoon@redhat.com>
889bf7c5 1763 Thiago Jung Bauermann <bauerman@br.ibm.com>
cb2e07a6
PM
1764 Tom Tromey <tromey@redhat.com>
1765
1766 * python/python.c (gdbpy_solib_address): New function.
1767 (gdbpy_decode_line): Likewise.
1768
c29c521f
TT
17692010-08-10 Tom Tromey <tromey@redhat.com>
1770
1771 Revert gdb-add-index addition:
1772 * Makefile.in (install-only): Don't install gdb-add-index.
1773 * gdb-add-index.sh: Remove.
1774
0c012db1
KB
17752010-08-09 Kevin Buettner <kevinb@redhat.com>
1776
1777 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
1778 `target_has_execution' check with `to_has_memory' check.
1779 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
1780 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
1781 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
1782
db04efe6
KB
17832010-08-09 Kevin Buettner <kevinb@redhat.com>
1784
1785 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
1786 (resume_siggnal, resume_step): Move these static globals...
1787 (struct sim_inferior_data): ...into this new struct.
1788 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
1789 New static globals.
1790 (gdb_callback, callbacks_initialized): Move these globals to
1791 a point earlier in the file.
1792 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
1793 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
1794 (gdbsim_close_inferior, gdbsim_resume_inferior)
1795 (gdbsim_stop_inferior): New functions.
1796 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
1797 New constants.
1798 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
1799 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
1800 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
1801 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
1802 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
1803 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
1804 new local variable `sim_data' in each of these functions. Use
1805 `sim_data' to reference former globals `program_loaded',
1806 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
1807 `resume_step'.
1808 (gdbsim_open): Remove local variable `argv'. Put results of call
1809 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
1810 make a cleanup for it. Free it though when a sim instance cannot
1811 be obtained.
1812 (gdbsim_close): Free sim_argv and null it out as appropriate.
1813 Close sim instances in all inferiors.
1814 (gdbsim_cntrl_c): Stop all inferiors.
1815 (gdbsim_wait):
1816 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
1817
e37fd15a
SW
18182010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1819
1820 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
1821 function after symbol construction is complete.
1822 Do the same for template symbol addition to template_symbols list.
1823
45c58896
SW
18242010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1825
1826 * symtab.c (symbol_get_demangled_name): Remove assertion and
1827 return NULL when language_specific.cplus_specific is not initialized.
1828 * stabsread.c (define_symbol): Set the name before calling
1829 cp_scan_for_anonymous_namespaces.
1830
33e5013e
SW
18312010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1832
1833 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
1834 SYMBOL_SET_LANGUAGE.
1835 (symbol_init_language_specific): Renamed to symbol_set_language.
1836 * symtab.c (symbol_init_language_specific): Removed redundant check
1837 for language_cplus.
1838 Renamed to symbol_set_language.
1839 * stabsread.c (define_symbol): Updated.
1840 (read_enum_type): Updated
1841 * psymtab.c (add_psymbol_to_bcache): Updated.
1842 * minsyms.c (install_minimal_symbols): Updated.
1843 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
1844 SYMBOL_LANGUAGE to set the language.
1845 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
1846 * mdebugread.c (new_symbol): Ditto.
1847 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
1848 * dwarf2read.c (new_symbol_full): Ditto.
1849 * jv-lang.c (add_class_symbol): Ditto.
1850
5da1313b
JK
18512010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1852
1853 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
1854 (make_cleanup_restore_page_info)
1855 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
1856 * gdbcmd.h (execute_command_to_string): New declaration.
1857 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
1858 (make_cleanup_restore_ui_file): Move to utils.c
1859 (execute_gdb_command) <to_string>: Move ...
1860 * top.c (execute_command_to_string): ... here. Call
1861 set_batch_flag_and_make_cleanup_restore_page_info.
1862 * utils.c (make_cleanup_restore_integer): New source file blank line.
1863 (make_cleanup_restore_uinteger): New.
1864 (struct restore_ui_file_closure, do_restore_ui_file)
1865 (make_cleanup_restore_ui_file): Move here from python/python.c.
1866 (init_page_info) <batch_flag>
1867 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
1868 (set_batch_flag_and_make_cleanup_restore_page_info): New.
1869
c820c52a
PA
18702010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
1871
1872 * thread.c (add_thread_silent): Use null_ptid instead of
1873 minus_one_ptid while getting rid of stale inferior_ptid.
1874
8da614df
CV
18752010-08-06 Corinna Vinschen <vinschen@redhat.com>
1876
1877 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
1878 Throughout, call read_encoded_value with ptr_size rather than addr_size.
1879 (decode_frame_entry_1): Remove redundant setting of
1880 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
1881 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
1882 on examined frame section. Add comment to explain why.
1883 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
1884 comment to explain usage.
1885 * gdbarch.c: Regenerate.
1886 * gdbarch.h: Regenerate.
1887
1888 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
1889
e4195b40
JK
18902010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1891
1892 Code cleanup.
1893 * varobj.c (varobj_create): Move variables fi, old_fi and block to
1894 a more inner block.
1895
a3217aa0
PA
18962010-08-05 Pedro Alves <pedro@codesourcery.com>
1897
1898 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
1899 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
1900 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
1901 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
1902 linux-tdep.o to gdb_target_obs.
1903
e2b4a699 19042010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
889bf7c5
PA
1905
1906 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
e2b4a699 1907 argument.
889bf7c5 1908
50e8a0d5
HZ
19092010-08-05 Hui Zhu <teawater@gmail.com>
1910
1911 * mips-linux-tdep.c(regset.h): New include.
1912 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
1913 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
1914 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
1915 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
1916 mips_linux_regset_from_core_section): New functions.
1917 (fetch_core_registers, regset_core_fns): Deleted.
1918 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
1919 Deleted regset_core_fns.
1920 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
1921 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
1922 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
1923 and fpregset64.
1924
70728992
PA
19252010-08-04 Pedro Alves <pedro@codesourcery.com>
1926
1927 * s390-tdep.c: Include linux-tdep.h.
1928 (s390_gdbarch_init): Call linux_init_abi.
1929
a5ee0f0c
PA
19302010-08-04 Pedro Alves <pedro@codesourcery.com>
1931
1932 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
1933 instead of printing "Thread" here.
1934 * linux-tdep.c: Include inferior.h.
1935 (linux_core_pid_to_str): New.
1936 (linux_init_abi): New.
1937 * linux-tdep.h (linux_init_abi): Declare.
1938 * alpha-linux-tdep.c: Include linux-tdep.h.
1939 (alpha_linux_init_abi): Call linux_init_abi.
1940 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
1941 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
1942 * frv-linux-tdep.c: Include linux-tdep.h
1943 (frv_linux_init_abi): Call linux_init_abi.
1944 * hppa-linux-tdep.c: Include linux-tdep.h
1945 (hppa_linux_init_abi): Call linux_init_abi.
1946 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
1947 * ia64-linux-tdep.c: Include linux-tdep.h.
1948 (ia64_linux_init_abi): Call linux_init_abi.
1949 * m32r-linux-tdep.c: Include linux-tdep.h.
1950 (m32r_linux_init_abi): Call linux_init_abi.
1951 * m68klinux-tdep.c: Include linux-tdep.h.
1952 (m68k_linux_init_abi): Call linux_init_abi.
1953 * microblaze-linux-tdep.c: Include linux-tdep.h.
1954 (microblaze_linux_init_abi): Call linux_init_abi.
1955 * mips-linux-tdep.c: Include linux-tdep.h.
1956 (mips_linux_init_abi): Call linux_init_abi.
1957 * mn10300-linux-tdep.c: Include linux-tdep.h.
1958 (am33_linux_init_osabi): Call linux_init_abi. Rename the
1959 'gdbinfo' parameter to 'info'.
1960 * ppc-linux-tdep.c: Include linux-tdep.h.
1961 (ppc_linux_init_abi): Call linux_init_abi.
1962 * sh-linux-tdep.c: Include linux-tdep.h.
1963 (sh_linux_init_abi): Call linux_init_abi.
1964 * sparc-linux-tdep.c: Include linux-tdep.h.
1965 (sparc32_linux_init_abi): Call linux_init_abi.
1966 * sparc64-linux-tdep.c: Include linux-tdep.h.
1967 (sparc64_linux_init_abi): Call linux_init_abi.
1968 * xtensa-linux-tdep.c: Include linux-tdep.h.
1969 (xtensa_linux_init_abi): Call linux_init_abi.
1970 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
1971 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
1972 callback.
1973
bc043ef3
DE
19742010-08-03 Doug Evans <dje@google.com>
1975
1976 * breakpoint.c (bpdisp_text): Constify bpdisps.
1977 * solib-svr4.c (solib_break_names): Constify.
1978 (bkpt_names, main_name_list): Constify.
1979 (match_main): Constify soname arg.
63cdd227
DE
1980 (bfd_lookup_symbol): Remove unnecessary forward decl.
1981 Constify symname arg.
bc043ef3
DE
1982 (enable_break): Constify bkpt_namep.
1983 * symtab.c (search_symbols): Constify types, types2, types3, types4.
1984 (symtab_symbol_info): Constify classnames.
1985
585d1eb8
PM
19862010-08-03 Phil Muldoon <pmuldoon@redhat.com>
1987
1988 * NEWS: Document Python value inferior function calls.
1989
2de00c64
DE
19902010-08-02 Doug Evans <dje@google.com>
1991
1992 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
1993
02d868e8
PP
19942010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
1995
1996 * linux-thread-db.c (libthread_db_debug): New variable.
1997 (thread_db_find_new_threads_silently): Control verbosity with it.
1998 (try_thread_db_load_1, try_thread_db_load): Likewise.
1999 (find_new_threads_once): Likewise.
2000 (_initialize_thread_db): Set/show it.
2001
a19cae16
JK
20022010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2003
2004 * common/signals.c (signals): Move the content to signals.def.
2005 Include it. Remove the INDENT comments.
2006
c2bbed2a
TT
20072010-07-30 Tom Tromey <tromey@redhat.com>
2008
2009 * Makefile.in (install-only): Install gdb-add-index.
2010 * gdb-add-index.sh: New file.
2011
f32b2f09
CR
20122010-07-31 Renquan Cheng <crq@gcc.gnu.org>
2013
2014 * MAINTAINERS: Add myself for write after approval privileges.
2015
1276c759
JK
20162010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2017
2018 * symfile.c (addr_section_name): New function.
2019 (addrs_section_compar): Use it.
2020 (addr_info_make_relative): Use it. Move variable sect_name into a more
2021 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
2022
420697bb
TT
20232010-07-30 Tom Tromey <tromey@redhat.com>
2024
2025 * configure: Rebuild.
2026 * configure.ac: Add missing case for Python 2.7.
2027
d0d99561
DD
20282010-07-29 DJ Delorie <dj@redhat.com>
2029
2030 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
2031 conditions.
2032
0b29bdde
PA
20332010-07-29 Pedro Alves <pedro@codesourcery.com>
2034
2035 * PROBLEMS: Remove mention of all problems.
2036
110ed339
PA
20372010-07-28 Pedro Alves <pedro@codesourcery.com>
2038
2039 PR build/11848
2040 * configure.ac: Check for wresize.
2041 * configure, config.in: Regenerate.
2042 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
2043 with HAVE_WRESIZE.
2044
326fd672
TT
20452010-07-28 Tom Tromey <tromey@redhat.com>
2046
2047 PR python/11060:
2048 * python/py-type.c (typy_legacy_template_argument): New function,
2049 extracted from typy_template_argument.
2050 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
2051 value when needed.
2052
4ac8c4da
TT
20532010-07-28 Oleg Nesterov <oleg@redhat.com>
2054
2055 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
2056
053315c2
TT
20572010-07-27 Tom Tromey <tromey@redhat.com>
2058
2059 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
2060
3ce3b1ba
PA
20612010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
2062
2063 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
2064 handling DW_AT_object_pointer, and workaround GCC PR 43053.
2065
2bb4f988
TT
20662010-07-28 Tom Tromey <tromey@redhat.com>
2067
2068 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
2069
74232302
JB
20702010-07-28 Joel Brobecker <brobecker@adacore.com>
2071
2072 * remote.c (remote_download_tracepoint): Add missing gettext markup.
2073 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
2074
385d04dc
JB
20752010-07-28 Joel Brobecker <brobecker@adacore.com>
2076
2077 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
2078 down, just before the block that parse the breakpoint addr_string.
2079
34eaf542
TT
20802010-07-28 Tom Tromey <tromey@redhat.com>
2081
2082 PR c++/9946:
2083 * symfile.c (reread_symbols): Clear template_symbols.
2084 * symtab.h (struct symbol) <is_cplus_template_function>: New
2085 field.
2086 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
2087 (struct template_symbol): New.
2088 * symtab.c (lookup_symbol_aux_local): Use
2089 cp_lookup_symbol_imports_or_template.
2090 * objfiles.h (struct objfile) <template_symbols>: New field.
2091 * objfiles.c (relocate_one_symbol): New function.
2092 (objfile_relocate1): Use it. Relocate isolated symbols.
2093 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
2094 template_arguments>: New fields.
2095 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
2096 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
2097 (TYPE_TEMPLATE_ARGUMENT): Likewise.
2098 (lookup_typename): Update.
2099 * gdbtypes.c (lookup_typename): Constify "block" argument.
2100 * dwarf2read.c: Include vec.h.
2101 (symbolp): New typedef.
2102 (read_func_scope): Read template arguments. Allocate a
2103 template_symbol when needed.
2104 (read_structure_type): Read template arguments.
2105 (new_symbol_full): New function, from new_symbol. Handle
2106 DW_TAG_template_type_param and DW_TAG_template_value_param.
2107 (new_symbol): Rewrite as wrapper.
2108 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
2109 * cp-namespace.c: Include language.h.
2110 (search_symbol_list): New function.
2111 (cp_lookup_symbol_imports_or_template): Likewise.
2112
d27b3be4
PA
21132010-07-28 Balazs Kezes <rlblaster@gmail.com>
2114
2115 * tui/tui-win.c (make_visible_with_new_height): Resize and move
2116 the command window to the new size and position.
2117
0036e657
PA
21182010-07-28 Balazs Kezes <rlblaster@gmail.com>
2119
a782f43e 2120 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
0036e657
PA
2121 coordinates.
2122
36900355
PA
21232010-07-28 Balazs Kezes <rlblaster@gmail.com>
2124
a782f43e 2125 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
36900355 2126 after a detecting a resize.
a782f43e 2127 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
36900355
PA
2128 call.
2129
db5e03ae
PA
21302010-07-28 Pedro Alves <pedro@codesourcery.com>
2131
2132 * configure.ac: Check for resize_term.
2133 * configure, config.in: Regenerate.
2134
b71fff68
JB
21352010-07-27 Joel Brobecker <brobecker@adacore.com>
2136
2137 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
2138
9b1c24c8
PA
21392010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
2140
2141 * dwarf2read.c (read_string): Rename to ...
2142 (read_direct_string): ... this.
2143 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
2144 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
2145
00390b84
JK
21462010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2147
2148 * linux-nat.c (linux_nat_lp_status_is_event): New function.
2149 (count_events_callback, select_event_lwp_callback)
2150 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
2151
26ab7092
JK
21522010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2153
2154 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
2155 (_initialize_ia64_linux_nat): Install it.
2156 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
2157 (linux_nat_set_status_is_event): New.
2158 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
2159 cancel_breakpoints_callback, linux_nat_filter_event)
2160 (linux_nat_wait_1): Use linux_nat_status_is_event.
2161 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
2162
283e6a52
TT
21632010-07-27 Tom Tromey <tromey@redhat.com>
2164
2165 * NEWS: Mention labels, .gdb_index.
2166
53a71c06
CR
21672010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
2168
2169 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
3422f666 2170 "start,+length" form of arguments.
53a71c06
CR
2171 * NEWS: Add "Changed commands" (disassemble) section for "Changes
2172 since GDB 7.1"; and merge two separated paragraphs of disassemble
2173 description in "Changes in GDB 7.0".
2174
c63a1f86
JK
21752010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2176
2177 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
2178 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
2179 (fputs_maybe_filtered): Do not do filtering also on
2180 ! INPUT_FROM_TERMINAL_P.
2181
abebb8b0
JB
21822010-07-27 Joel Brobecker <brobecker@adacore.com>
2183
2184 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
2185 in warning message.
2186
5374244e
PM
21872010-07-27 Phil Muldoon <pmuldoon@redhat.com>
2188
2189 * python/py-value.c (valpy_call): New Function.
2190
ac0b195c
KW
21912010-07-27 Ken Werner <ken.werner@de.ibm.com>
2192
889bf7c5 2193 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
ac0b195c
KW
2194 types_list_elements variables.
2195
09d8bd00
TT
21962010-07-26 Tom Tromey <tromey@redhat.com>
2197
2198 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
2199 TLS with DW_OP_const4u or DW_OP_const8u.
2200
9fe70b4f
TJB
22012010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
2202
2203 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
2204 VSX registers contents.
2205
caac4577
JG
22062010-07-26 Jerome Guitton <guitton@adacore.com>
2207
2208 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
2209 its adress is null. Add comment to explain why.
2210 (new_symbol): Ditto.
2211
857d11d0
JK
22122010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2213
2214 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
2215 the host signal first.
2216
1fd400ff
TT
22172010-07-23 Tom Tromey <tromey@redhat.com>
2218
2219 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
2220 type_comp_units>: New fields.
2221 (dw2_get_cu): New function.
2222 (create_cus_from_index): Remove unused argument.
2223 (create_signatured_type_hash_from_index): New function.
2224 (create_addrmap_from_index): Update.
2225 (dwarf2_read_index): Handle version 2.
2226 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
2227 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
2228 (dw2_print_stats, dw2_expand_all_symtabs)
2229 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
2230 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
2231 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
2232 (allocate_signatured_type_hash_table): New function.
2233 (add_signatured_type_cu_to_list): Likewise.
2234 (create_debug_types_hash_table): Use them. Set type_comp_units.
2235 (read_signatured_type): Ensure section data is available.
2236 (add_address_entry): Don't record empty ranges.
2237 (struct signatured_type_index_data): New.
2238 (write_one_signatured_type): New function.
2239 (write_psymtabs_to_index): Write type CUs.
2240 (save_gdb_index_command): Update comment.
2241 (process_type_comp_unit): Move inititalization of
2242 from_debug_types...
2243 (create_debug_types_hash_table): ... here.
2244
3a674486
JK
22452010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2246
2247 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
2248 cleanup and generating of gdb script to it.
2249 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
2250 and terminal size. Convert $tmpfile to a series of -ex-es.
2251
54ec275a
KS
22522010-07-23 Keith Seitz <keiths@redhat.com>
2253
2254 * symtab.c (basic_lookup_transparent_type): Call pre-expand
2255 hook for STATIC_BLOCK types, too.
2256
8fd447e6
KS
22572010-07-23 Keith Seitz <keiths@redhat.com>
2258
2259 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
2260 and vector definition.
2261
25b72dde
JK
22622010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2263
2264 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
2265
96d19272
JK
22662010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2267
2268 * dwarf2read.c: Include completer.h.
2269 (save_gdb_index_command): Use matching usage command name.
2270 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
2271 Set filename_completer for it.
2272
ca1f3406
TT
22732010-07-22 Tom Tromey <tromey@redhat.com>
2274
2275 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
2276 type signature's per-CU data.
2277
ba25b921
PA
22782010-07-22 Pedro Alves <pedro@codesourcery.com>
2279
2280 * NEWS: Mention target reported shared libraries support by
2281 default.
2282
23bd0f7c
PA
22832010-07-21 Pedro Alves <pedro@codesourcery.com>
2284
2285 PR symtab/11827
2286
2287 Revert:
2288 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
2289 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
2290 and DW_TAG_volatile_type.
2291 (new_symbol): Likewise.
2292
883df6dd
SW
22932010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
2294
2295 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
2296 function symbols before overload resolution.
2297
269b11a2
PA
22982010-07-21 Pedro Alves <pedro@codesourcery.com>
2299
2300 * breakpoint.c (bptype_string): New, abstracted out from
2301 print_one_breakpoint_location.
2302 (print_one_breakpoint_location): Adjust.
2303 (breakpoint_1): Adjust the type column width dynamically.
2304
569b05a5
JK
23052010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2306
2307 * symfile.c (find_separate_debug_file_by_debuglink): Remove
2308 a gdb_assert call, new comment.
2309
ad34eb2f
JK
23102010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2311
2312 * linux-nat.c (linux_handle_extended_wait): Handle case when
2313 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
2314
33355866
JK
23152010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2316
2317 Code cleanup.
2318 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
2319 linux_nat_wait_1. Use always LP->STATUS afterwards.
2320
26590820
HZ
23212010-07-20 Hui Zhu <teawater@gmail.com>
2322
2323 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
2324 (inf_ptrace_attach): Ditto.
2325
c0edd9ed
JK
23262010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2327
2328 Make core files the process_stratum.
2329 * corefile.c (core_target): New variable.
2330 (core_file_command): Remove variable t, use core_target.
2331 * corelow.c (core_ops): Make it static.
2332 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
2333 * defs.h (make_cleanup_unpush_target): New prototype.
2334 * gdbarch.h: Regenerate.
2335 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
2336 * gdbcore.h (core_target): New declaration.
2337 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
2338 variables ops_already_pushed and back_to. Use push_target,
2339 make_cleanup_unpush_target and discard_cleanups calls.
2340 * record.c (record_open): Replace core_stratum by a core_bfd check.
2341 * target.c (target_is_pushed): New function.
2342 (find_core_target): Remove.
2343 * target.h (enum strata) <core_stratum>: Remove.
2344 (target_is_pushed): New declaration.
2345 (find_core_target): Remove declaration.
2346 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
2347 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
2348
f02253f1
HZ
23492010-07-19 Hui Zhu <teawater@gmail.com>
2350
2351 * breakpoint.c (single_step_breakpoints_inserted): New
2352 function.
2353 * breakpoint.h (single_step_breakpoints_inserted): Extern.
2354 * infrun.c (maybe_software_singlestep): Add check code.
2355 * record.c (record_resume): Add code for software single step.
2356 (record_wait): Ditto.
2357
78768c4a
JK
23582010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2359
2360 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
2361 a more inner block. Remove its unused declaration initializer.
2362
431e49aa
TJB
23632010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
2364
2365 * NEWS: Mention support for the new ptrace interface and hardware
2366 accelerated watchpoint conditions on powerpc-linux.
2367
bd91e7ae
OS
23682010-07-16 Ozkan Sezer <sezeroz@gmail.com>
2369
2370 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
2371 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
2372 and host_address_to_string() and %s for pointers.
2373 (debug_to_remove_breakpoint): Likewise.
2374 (debug_to_region_ok_for_hw_watchpoint): Likewise.
2375 (debug_to_can_accel_watchpoint_condition): Likewise.
2376 (debug_to_stopped_data_address): Likewise.
2377 (debug_to_watchpoint_addr_within_range): Likewise.
2378 (debug_to_insert_hw_breakpoint): Likewise.
2379 (debug_to_remove_hw_breakpoint): Likewise.
2380 (debug_to_insert_watchpoint): Likewise.
2381 (debug_to_remove_watchpoint): Likewise.
2382
29df156d
SW
23832010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
2384
2385 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
2386 argument.
2387 (cplus_specific): New struct.
2388 * symtab.c (symbol_set_demangled_name): Updated.
2389 Use cplus_specific for cplus symbols.
2390 (symbol_get_demangled_name): Retrive the name from the cplus_specific
2391 struct for cplus symbols.
2392 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
2393 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
2394 * symtab.c (symbol_init_cplus_specific): New function.
2395
b250c185
SW
23962010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
2397
2398 * symtab.h (symbol_set_demangled_name): New function.
2399 (symbol_get_demangled_name): New function.
2400 * symtab.c (symbol_set_demangled_name): New function.
2401 (symbol_get_demangled_name): New function.
2402 (symbol_init_language_specific): Use demangled_name setter and getter.
2403 (symbol_set_names): Ditto.
2404 (symbol_natural_name): Ditto.
2405 (symbol_demangled_name): Ditto.
2406 * dwarf2read.c (new_symbol): Ditto.
2407
afa16725
SW
24082010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
2409
2410 * symtab.h: Renamed cplus_specific to mangled_lang.
2411 * symtab.c (symbol_init_language_specific): Updated.
2412 (symbol_set_names): Updated.
2413 (symbol_natural_name): Updated.
2414 (symbol_demangled_name): Updated.
2415 * ada-lang.c (ada_decode_symbol): Updated.
2416 * dwarf2read.c (new_symbol): Updated.
2417
3cbaedff
KW
24182010-07-14 Ken Werner <ken.werner@de.ibm.com>
2419
2420 * valops.c (value_assign): Do not call to value_coerce_to_target.
2421 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
2422
c932f1be
KW
24232010-07-14 Ken Werner <ken.werner@de.ibm.com>
2424
2425 * MAINTAINERS: Add myself for write after approval privileges.
2426
91158a56
TT
24272010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
2428
2429 * c-valprint.c (c_val_print): Add embedded_offset to address in
2430 call to val_print_array_elements.
2431
b3b272e1
TT
24322010-07-13 Tom Tromey <tromey@redhat.com>
2433
2434 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
2435
bb3fa9d0
TT
24362010-07-13 Tom Tromey <tromey@redhat.com>
2437
2438 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
2439 objfile.
2440
dd786858
TT
24412010-07-13 Tom Tromey <tromey@redhat.com>
2442
2443 * symfile.c (set_initial_language): Update.
2444 (deduce_language_from_filename): Argument type now const.
2445 * symtab.h (find_main_filename): Update.
2446 (deduce_language_from_filename): Update.
2447 * symtab.c (find_main_filename): Make result const.
2448 * dwarf2read.c (dw2_find_symbol_file): Change return type.
2449 * psymtab.c (find_symbol_file_from_partial): Change return type.
2450 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2451 Make result const.
2452
9291a0cd
TT
24532010-07-13 Tom Tromey <tromey@redhat.com>
2454
2455 * breakpoint.c (save_cmdlist): No longer static.
2456 * gdbcmd.h (save_cmdlist): Declare.
2457 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
2458 OBJF_READNOW on objfile if readnow_symbol_files.
2459 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
2460 (elf_sym_fns_gdb_index): New global.
2461 * dwarf2read.c: Include exceptions.h.
2462 (offset_type): New.
2463 (struct mapped_index): New.
2464 (dwarf2_per_cu_data_ptr): New typedef.
2465 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
2466 New fields.
2467 (GDB_INDEX_SECTION): New define.
2468 (struct dwarf2_per_cu_quick_data): New.
2469 (struct dwarf2_per_cu_data) <objfile>: New field.
2470 <psymtab>: Removed.
2471 <v>: New field.
2472 (byte_swap): New function.
2473 (MAYBE_SWAP): New macro.
2474 (INDEX_SUFFIX): New macro.
2475 (dw2_do_instantiate_symtab): New function.
2476 (dw2_instantiate_symtab): Likewise.
2477 (create_cus_from_index): Likewise.
2478 (create_addrmap_from_index): Likewise.
2479 (mapped_index_string_hash): Likewise.
2480 (find_slot_in_mapped_hash): Likewise.
2481 (dwarf2_read_index): Likewise.
2482 (dw2_setup): Likewise.
2483 (dw2_require_line_header): Likewise.
2484 (dw2_require_full_path): Likewise.
2485 (dw2_find_last_source_symtab): Likewise.
2486 (dw2_forget_cached_source_info): Likewise.
2487 (dw2_lookup_symtab): Likewise.
2488 (dw2_lookup_symbol): Likewise.
2489 (dw2_do_expand_symtabs_matching): Likewise.
2490 (dw2_pre_expand_symtabs_matching): Likewise.
2491 (dw2_print_stats): Likewise.
2492 (dw2_dump): Likewise.
2493 (dw2_relocate): Likewise.
2494 (dw2_expand_symtabs_for_function): Likewise.
2495 (dw2_expand_all_symtabs): Likewise.
2496 (dw2_expand_symtabs_with_filename): Likewise.
2497 (dw2_find_symbol_file): Likewise.
2498 (dw2_map_ada_symtabs): Likewise.
2499 (dw2_expand_symtabs_matching): Likewise.
2500 (dw2_find_pc_sect_symtab): Likewise.
2501 (dw2_map_symbol_names): Likewise.
2502 (dw2_map_symbol_filenames): Likewise.
2503 (dw2_has_symbols): Likewise.
2504 (dwarf2_gdb_index_functions): New global.
2505 (dwarf2_initialize_objfile): New function.
2506 (process_psymtab_comp_unit): Update.
2507 (add_partial_subprogram): Likewise.
2508 (dwarf2_psymtab_to_symtab): Likewise.
2509 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
2510 (process_full_comp_unit): Update.
2511 (find_file_and_directory): New function.
2512 (read_file_scope): Use find_file_and_directory.
2513 (dwarf2_per_cu_objfile): Update.
2514 (dwarf2_per_cu_addr_size): Update.
2515 (dwarf2_per_cu_offset_size): Update.
2516 (dwarf2_free_objfile): Free the index, if needed.
2517 (dwarf2_per_objfile_free): Unmap the index, if needed.
2518 (struct strtab_entry): New.
2519 (hash_strtab_entry): New function.
2520 (eq_strtab_entry): Likewise.
2521 (create_strtab): Likewise.
2522 (add_string): Likewise.
2523 (struct symtab_index_entry): New.
2524 (struct mapped_symtab): New.
2525 (hash_symtab_entry): New function.
2526 (eq_symtab_entry): Likewise.
2527 (delete_symtab_entry): Likewise.
2528 (create_index_table): Likewise.
2529 (create_mapped_symtab): Likewise.
2530 (cleanup_mapped_symtab): Likewise.
2531 (find_slot): Likewise.
2532 (hash_expand): Likewise.
2533 (add_index_entry): Likewise.
2534 (add_indices_to_cpool): Likewise.
2535 (write_hash_table): Likewise.
2536 (add_address_entry): Likewise.
2537 (write_psymbols): Likewise.
2538 (write_obstack): Likewise.
2539 (unlink_if_set): Likewise.
2540 (write_psymtabs_to_index): Likewise.
2541 (save_gdb_index_command): Likewise.
2542 (_initialize_dwarf2_read): Install "save gdb-index"
2543 command.
2544 (create_all_comp_units): Initialize 'objfile' field of CU.
2545 (dwarf2_locate_sections): Check for .gdb_index.
2546 * psymtab.h (dwarf2_gdb_index_functions): Declare.
2547 * symfile.h (dwarf2_initialize_objfile): Declare.
2548
58b6ab13
TT
25492010-07-13 Tom Tromey <tromey@redhat.com>
2550
2551 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
2552 (basic_lookup_transparent_type): Likewise.
2553 * symfile.h (struct quick_symbol_functions)
2554 <pre_expand_symtabs_matching>: New field.
2555 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
2556 (psym_functions): Update.
2557
0f5238ed
TT
25582010-07-13 Tom Tromey <tromey@redhat.com>
2559
2560 PR breakpoints/8357:
2561 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
2562 * linespec.c (decode_line_1): Update comment. Call decode_label.
2563 (decode_label): New function.
2564 (symbol_found): Handle LOC_LABEL.
2565 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
2566 domain. Call add_symbol_to_list.
2567
9aa1f1e3
TT
25682010-07-13 Tom Tromey <tromey@redhat.com>
2569
2570 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
2571 * dwarf2loc.c (find_location_expression): Use
2572 dwarf2_per_cu_text_offset.
2573 (dwarf2_evaluate_loc_desc): Likewise.
2574 (dwarf2_loc_desc_needs_frame): Likewise.
2575 (compile_dwarf_to_ax): Likewise.
2576 (loclist_describe_location): Likewise.
2577 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
2578 (dwarf2_per_cu_objfile): Update comment.
2579
953ac07e
JK
25802010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2581
2582 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
2583 * p-lang.c (pascal_printstr): Likewise.
2584
f04e4012
TT
25852010-07-09 Tom Tromey <tromey@redhat.com>
2586
2587 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
2588 'hint' if it is NULL.
2589
f4dfd9c0
HZ
25902010-07-09 Hui Zhu <teawater@gmail.com>
2591
2592 * source.c (print_source_lines_base): Add check for noprint.
2593
7e6e39e5
JB
25942010-07-08 Joel Brobecker <brobecker@adacore.com>
2595
2596 * python/python-config.py: Resync with Python 2.7 version of this
2597 script.
2598
76b8507d
JB
25992010-07-08 Joel Brobecker <brobecker@adacore.com>
2600
2601 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
2602
797054e6
JB
26032010-07-07 Joel Brobecker <brobecker@adacore.com>
2604
2605 * NEWS: Create a new section for the next release branch.
2606 Rename the section of the current branch, now that it has
2607 been cut.
2608
c80befee 26092010-07-07 Joel Brobecker <brobecker@adacore.com>
2610
2611 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
2612 * version.in: Bump version to 7.2.50.20100707-cvs.
2613
ac56253d
TT
26142010-07-07 Tom Tromey <tromey@redhat.com>
2615
2616 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
2617 LOC_COMPUTED symbol.
2618 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
2619 (dwarf2_loc_desc_needs_frame): Likewise.
2620 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
2621 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
2622 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
2623 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
2624 'offset' argument.
2625 (struct dwarf2_frame_cache) <text_offset>: New field.
2626 (dwarf2_frame_cache): Set new field.
2627 (dwarf2_frame_prev_register): Update.
2628 (dwarf2_frame_sniffer): Update.
2629 (dwarf2_frame_base_sniffer): Update.
2630 (dwarf2_frame_find_fde): Add 'out_offset' argument.
2631
0cf6dd15
TJB
26322010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
2633 Thiago Jung Bauermann <bauerman@br.ibm.com>
2634
2635 Support for hw accelerated condition watchpoints in booke powerpc.
2636
2637 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
2638 and move to eval.c. Change callers.
2639 (insert_bp_location): Pass watchpoint condition in
2640 target_insert_watchpoint.
2641 (remove_breakpoint_1) Pass watchpoint condition in
2642 target_remove_watchpoint.
2643 (watchpoint_locations_match): Call
2644 target_can_accel_watchpoint_condition.
2645 * eval.c: Include wrapper.h.
2646 (fetch_subexp_value): Moved from breakpoint.c.
2647 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
2648 Formatting fix.
2649 (can_use_watchpoint_cond_accel): New function.
2650 (calculate_dvc): Likewise.
2651 (num_memory_accesses): Likewise.
2652 (check_condition): Likewise.
2653 (ppc_linux_can_accel_watchpoint_condition): Likewise
2654 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
2655 check_condition and calculate_dvc.
2656 (ppc_linux_remove_watchpoint): Likewise.
2657 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
2658 ppc_linux_can_accel_watchpoint_condition
2659 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
2660 condition.
2661 (debug_to_remove_watchpoint): Likewise.
2662 (debug_to_can_accel_watchpoint_condition): New function.
2663 (update_current_target): Set to_can_accel_watchpoint_condition.
2664 (setup_target_debug): Set to_can_accel_watchpoint_condition.
2665 * target.h: Add opaque declaration for struct expression.
2666 (struct target_ops) <to_insert_watchpoint>,
2667 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
2668 <to_can_accel_watchpoint_condition>: New member.
2669 condition. Update all callers and implementations.
2670 (target_can_accel_watchpoint_condition): New macro.
2671 * value.c (free_value_chain): New function.
2672 * value.h (fetch_subexp_value): New prototype.
2673 (free_value_chain): Likewise.
2674
2f2241f1
UW
26752010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
2676
2677 * linux-nat.c (linux_nat_do_thread_registers): Use section size
2678 from gdbarch_core_regset_sections also for .reg if present.
2679
2680 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
2681 section size for .reg.
2682 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
2683 (ppc_linux_vmx_regset_sections): Likewise.
2684 (ppc_linux_fp_regset_sections): Likewise.
2685 (ppc64_linux_vsx_regset_sections): New variable.
2686 (ppc64_linux_vmx_regset_sections): Likewise.
2687 (ppc64_linux_fp_regset_sections): Likewise.
2688 (ppc_linux_init_abi): Install core_regset_section lists appropriate
2689 for current word size.
2690
1fd7cdc2
JB
26912010-07-06 Joel Brobecker <brobecker@adacore.com>
2692
2693 * server.c (myresume): Make static.
2694
11763c18
TT
26952010-07-06 Tom Tromey <tromey@redhat.com>
2696
2697 * configure, config.in: Rebuild.
2698 * configure.ac (HAVE_LIBPYTHON2_7): New define.
2699 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
2700
a6cc4789
AS
27012010-07-06 Andreas Schwab <schwab@linux-m68k.org>
2702
2703 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
2704 "clear".
2705
f9e9243a
UW
27062010-07-06 Ken Werner <ken.werner@de.ibm.com>
2707
2708 * gdbtypes.h (floatformats_ieee_half): Add declaration.
2709 * gdbtypes.c (floatformats_ieee_half): New variable.
2710 * doublest.c (floatformat_from_length): Set format to
2711 gdbarch_half_format if length matches.
2712 * gdbarch.sh (half_bit): New architecture method.
2713 (half_format): Likewise.
2714 * gdbarch.h: Regenerate.
2715 * gdbarch.c: Likewise.
2716
4e5799b6
JK
27172010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2718 Joel Brobecker <brobecker@adacore.com>
2719
2720 Fix re-run of PIE executable, PR shlibs/11776.
2721 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
2722 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
2723
86e4bafc
JK
27242010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2725 Joel Brobecker <brobecker@adacore.com>
2726
2727 * auxv.c (memory_xfer_auxv): Update attach comment.
2728 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
2729 svr4_relocate_main_executable.
2730 (svr4_solib_create_inferior_hook): Make the call to
2731 svr4_relocate_main_executable unconditional.
2732
3cd07d20
JK
27332010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2734 Joel Brobecker <brobecker@adacore.com>
2735
2736 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
2737
0a1e94c7
JK
27382010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2739 Joel Brobecker <brobecker@adacore.com>
2740
2741 Fix attaching to PIEs prelinked on the disk after the process was
2742 started.
2743 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
2744 Verify it against bfd_get_arch_size. Try to match arbitrary
2745 displacement for the phdrs comparison.
2746
5387647f
TT
27472010-07-02 Tom Tromey <tromey@redhat.com>
2748
2749 PR exp/11780:
2750 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
2751 value as optimized-out.
2752
38b6c3b3
TJB
27532010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
2754 Thiago Jung Bauermann <bauerman@br.ibm.com>
2755
2756 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
2757 represent?" question in comment. Change comment to a proper sentence.
2758
a17ac5b0
TT
27592010-07-02 Ken Werner <ken.werner@de.ibm.com>
2760
2761 * c-valprint.c (c_val_print): Fix printing of character vectors.
2762
bddaafad
JK
27632010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2764
2765 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
2766 create_breakpoint prototype.
2767
d41c0fc8
PA
27682010-07-01 Pedro Alves <pedro@codesourcery.com>
2769
2770 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
2771 usefulness suggestion of multiple breakpoints at same location.
2772
dc10affe
PA
27732010-07-01 Pedro Alves <pedro@codesourcery.com>
2774
2775 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
2776
cabe9ab6
PA
27772010-07-01 Pedro Alves <pedro@codesourcery.com>
2778
2779 * dwarf2loc.c (locexpr_tracepoint_var_ref)
2780 (loclist_tracepoint_var_ref): Handle optimized out values.
2781
cce7e648
PA
27822010-07-01 Pedro Alves <pedro@codesourcery.com>
2783
2784 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
2785 unnecessary space in string.
2786 * filesystem.c (_initialize_filesystem): Ditto.
2787 * frame.c (_initialize_frame): Ditto.
2788 * infcmd.c (step_once): Ditto.
2789 * infrun.c (_initialize_infrun): Ditto.
2790 * linux-nat.c (linux_child_follow_fork): Ditto.
2791 * maint.c (maintenance_deprecate): Ditto.
2792 * memattr.c (_initialize_mem): Ditto.
2793 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2794 * monitor.c (monitor_open): Ditto.
2795 * procfs.c (procfs_xfer_memory): Ditto.
2796 * reverse.c (bookmarks_info): Ditto.
2797 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
2798 * stack.c (_initialize_stack): Ditto.
2799 * tracepoint.c (_initialize_tracepoint): Ditto.
2800 * xtensa-tdep.c (xtensa_supply_gregset,
2801 xtensa_regset_from_core_section): Ditto.
2802
b65c7efe
TT
28032010-07-01 Tom Tromey <tromey@redhat.com>
2804
2805 * value.h (struct lval_funcs) <check_any_valid>: Rename from
2806 check_all_valid.
2807 * value.c (value_entirely_optimized_out): Invert result. Update
2808 for new function name.
2809
0fb4aa4b
PA
28102010-07-01 Pedro Alves <pedro@codesourcery.com>
2811
2812 Static tracepoints support.
2813
2814 * NEWS: Mention new support for static tracepoints.
2815 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
2816 qXfer:statictrace:read.
2817 (New features in the GDB remote stub, GDBserver): Mention static
2818 tracepoints support using an UST based backend.
2819 (New commands): Mention "info static-tracepoint-markers" and
2820 "strace".
2821 * breakpoint.c (is_marker_spec): New.
2822 (is_tracepoint): Handle static tracepoints.
2823 (validate_commands_for_breakpoint): Static tracepoints can't do
2824 while-stepping.
2825 (static_tracepoints_here): New.
2826 (bpstat_what): Handle static tracepoints.
2827 (print_one_breakpoint_location, allocate_bp_location, mention):
2828 Ditto.
2829 (create_breakpoint_sal): Ditto.
2830 (decode_static_tracepoint_spec): New.
2831 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
2832 `type_wanted'. Adjust. Handle static tracepoint marker
2833 locations.
2834 (break_command_1): Adjust.
2835 (update_static_tracepoint): New.
2836 (update_breakpoint_locations): Handle static tracepoints.
2837 (breakpoint_re_set_one): Handle static tracepoint marker
2838 locations.
2839 (disable_command, enable_command): Handle static tracepoints.
2840 (trace_command, ftrace_command): Adjust.
2841 (strace_command): New.
2842 (create_tracepoint_from_upload): Adjust.
2843 (save_breakpoints): Handle static tracepoints.
2844 (_initialize_breakpoint): Install the "strace" command.
2845 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
2846 (struct breakpoint): New fields static_trace_marker_id and
2847 static_trace_marker_id_idx.
2848 (breakpoints_here_p): Declare.
2849 (create_breakpoint): Adjust.
2850 (static_tracepoints_here): Declare.
2851 * remote.c (struct remote_state) <static_tracepoints>: New field.
2852 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
2853 (remote_static_tracepoint_marker_at): New.
2854 (remote_static_tracepoint_markers_by_strid): New.
2855 (remote_static_tracepoint_feature): New.
2856 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
2857 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
2858 (remote_supports_static_tracepoints): New.
2859 (remote_download_tracepoint): Download static tracepoints.
2860 (init_remote_ops): Install remote_static_tracepoint_marker_at and
2861 remote_static_tracepoint_markers_by_strid.
2862 (_initialize_remote): Install set|show remote static-tracepoints,
2863 and set|show remote read-sdata-object commands.
2864 * target.c (update_current_target): Inherit and default
2865 to_static_tracepoint_marker_at, and
2866 to_static_tracepoint_markers_by_strid.
2867 * target.h (static_tracepoint_marker): Forward declare.
2868 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
889bf7c5 2869 (static_tracepoint_marker_p): New typedef.
0fb4aa4b
PA
2870 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
2871 (struct target_ops): New fields to_static_tracepoint_marker_at and
2872 to_static_tracepoint_markers_by_strid.
2873 (target_static_tracepoint_marker_at)
2874 (target_static_tracepoint_markers_by_strid): New.
2875 * tracepoint.c: Include source.h.
2876 (validate_actionline): Handle $_sdata.
2877 (struct collection_list): New field strace_data.
2878 (add_static_trace_data): New.
2879 (clear_collection_list): Clear strace_data.
2880 (stringify_collection_list): Account for a possible static trace
2881 data collection.
2882 (encode_actions_1): Encode an $_sdata collection.
2883 (parse_tracepoint_definition): Handle static tracepoints.
2884 (parse_static_tracepoint_marker_definition): New.
2885 (release_static_tracepoint_marker): New.
2886 (print_one_static_tracepoint_marker): New.
2887 (info_static_tracepoint_markers_command): New.
2888 (sdata_make_value): New.
2889 (_initialize_tracepoint): Create the $_sdata convenience variable.
2890 Add the "info static-tracepoint-markers" command.
2891 Mention $_sdata in the "collect" command's help output.
2892 * tracepoint.h (struct static_tracepoint_marker): New.
2893 (parse_static_tracepoint_marker_definition)
2894 (release_static_tracepoint_marker): Declare.
2895 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
2896 * python/py-breakpoint.c (bppy_new): Adjust.
2897
aac63f0f
JB
28982010-06-30 Joel Brobecker <brobecker@adacore.com>
2899
2900 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
2901 including Python.h.
2902
e68994a7
DE
29032010-06-29 Doug Evans <dje@google.com>
2904
3863f96c
DE
2905 PR gdb/11702
2906 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
2907 DW_AT_external is present.
2908
254e6b9e
DE
2909 PR gdb/11702
2910 * NEWS: Add entry.
2911 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
2912 create a symbol for the field and record the value.
2913 (new_symbol): Handle DW_TAG_member.
2914 * gdbtypes.c (field_is_static): Remove FIXME.
2915 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
2916 only ignore LOC_CONST symbols that are enums.
2917
6e70227d
DE
2918 * dwarf2read.c: Remove trailing whitespace.
2919
e68994a7
DE
2920 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
2921 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
2922 (struct main_type, field loc): Delete dwarf_block.
2923 (FIELD_DWARF_BLOCK): Delete.
2924 (SET_FIELD_DWARF_BLOCK): Delete.
2925 (TYPE_FIELD_DWARF_BLOCK): Delete.
2926 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
2927 Update.
2928
a480d2f6
HZ
29292010-06-29 Hui Zhu <teawater@gmail.com>
2930
2931 * record.c (set_record_pic_cmdlist,
2932 show_record_pic_cmdlist): New variables.
2933 (set_record_pic_command,
2934 show_record_pic_command): New functions.
2935 (record_pic_function, record_pic_line, record_pic_enum,
2936 set_record_pic_type, record_pic_hide_nofunction,
2937 record_pic_hide_nosource, record_pic_hide_same): New variables.
2938 (record_pic_fputs): New function.
2939 (function_list, node_list, edge_list): New struct.
2940 (function_list, node_list, edge_list): New variables.
2941 (record_pic_cleanups, record_pic_node,
2942 record_pic_edge, cmd_record_pic): New functions.
2943 (_initialize_record): Add new commands for record pic.
2944
a0d7a4ff
JK
29452010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2946
2947 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
2948 ALLOCATE_CPLUS_STRUCT_TYPE.
2949
595939de 29502010-06-28 Phil Muldoon <pmuldoon@redhat.com>
889bf7c5
PA
2951 Tom Tromey <tromey@redhat.com>
2952 Thiago Jung Bauermann <bauerman@br.ibm.com>
595939de
PM
2953
2954 * value.c (pack_unsigned_long): New function.
2955 (value_from_ulongest): New function.
2956 * value.h (value_from_ulongest): Declare.
2957 * python/python.c (_initialize_python): Call
2958 gdbpy_initialize_thread and gdbpy_initialize_inferior.
2959 * python/python-internal.h: Define thread_object.
2960 (gdbpy_inferiors, gdbpy_selected_thread)
2961 (frame_info_to_frame_object, create_thread_object)
2962 (find_thread_object, find_inferior_object)
2963 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
2964 (gdbpy_is_value_object, get_addr_from_python): Declare.
2965 * python/py-value.c (builtin_type_upylong): Define.
2966 (convert_value_from_python): Add logic for ulongest.
2967 (gdbpy_is_value_object): New function.
2968 * python/py-utils.c (get_addr_from_python): New function.
2969 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
2970 (gdbpy_selected_frame): Use PyObject over frame_info.
2971 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
2972 py-infthread.
2973 (SUBDIR_PYTHON_SRCS): Likewise.
2974 (py-inferior.o): New Rule.
2975 (py-infthread.o): New Rule.
2976 * python/py-inferior.c: New File.
2977 * python/py-infthread.c: New File.
2978
98751a41
JK
29792010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2980
2981 * c-typeprint.c (c_type_print_base): For no fields check include also
2982 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
2983 * dwarf2read.c (struct typedef_field_list)
2984 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
2985 (dwarf2_add_typedef): New.
2986 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
2987 Copy also FI.TYPEDEF_FIELD_LIST.
2988 * gdbtypes.h (struct typedef_field)
2989 (struct cplus_struct_type) <typedef_field, typedef_field_count>
2990 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
2991 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
2992
41f62f39
JK
29932010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2994
2995 * cp-namespace.c (cp_lookup_nested_type): New variable
2996 concatenated_name. Turn the current return condition into a reverse
2997 one. Call also lookup_static_symbol_aux on the constructed qualified
2998 name.
2999 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
3000 other files into a called ...
3001 (lookup_static_symbol_aux): ... new function here.
3002 * symtab.h (lookup_static_symbol_aux): New prototype.
3003 * valops.c (value_maybe_namespace_elt): Call also
3004 lookup_static_symbol_aux if we failed otherwise.
3005
af53d231
JK
30062010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3007
3008 Fix PR c++/11703 and PR gdb/1448.
3009 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
3010 FIRST_ITER check.
3011
9655fd1a
JK
30122010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3013
3014 Fix modification of cplus_struct_default.
3015 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
3016 Call ALLOCATE_CPLUS_STRUCT_TYPE.
3017 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
3018
9279c692
JB
30192010-06-28 Joel Brobecker <brobecker@adacore.com>
3020
3021 * NEWS: Add entry announcing the python directory.
3022
d3f41bb1
TT
30232010-06-28 Tom Tromey <tromey@redhat.com>
3024
3025 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
3026
23e7acfb
DE
30272010-06-28 Doug Evans <dje@google.com>
3028
3029 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
3030 All callers updated.
3031
6036c742
JK
30322010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3033
3034 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
3035 obstack_begin after each obstack_free.
3036
9f18a3b3
DE
30372010-06-27 Doug Evans <dje@google.com>
3038
1596cb5d
DE
3039 * value.c (value_static_field): Use `switch' instead of `if'.
3040 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
3041
9f18a3b3
DE
3042 * valops.c (search_struct_field): Fix typo in error message.
3043
43dabe42
UW
30442010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
3045
3046 * dwarf2expr.c (execute_stack_op): Place preprocessor
3047 directives at the start of the source line.
3048
0f3bb72e
PH
30492010-06-25 Paul Hilfinger <hilfinger@adacore.com>
3050
6036c742
JK
3051 * defs.h (make_command_stats_cleanup): Declare.
3052 (set_display_time): Declare.
3053 (set_display_space): Declare.
3054 * event-top.c (command_handler): Use make_command_stats_cleanup.
3055 * main.c (display_time, display_space): Move definitions to utils.c.
3056 (captured_main): Use make_command_stats_cleanup to get start-up
3057 statistics.
3058 Use set_display_time and set_display_space for processing OPT_STATISTICS
3059 case.
3060 * maint.c (maintenance_time_display): Use set_display_time.
3061 (maintenance_space_display): Use set_display_space.
3062 * top.c (execute_command): Remove obsolete 'maint time' code.
3063 (command_loop): Use make_command_stats_cleanup.
3064 * utils.c (struct cmd_stats): Structure for storing initial time
3065 and space usage.
3066 (display_time, display_space): Move definitions here from utils.c.
3067 (set_display_time): New function.
3068 (set_display_space): New function.
3069 (make_command_stats_cleanup): New function.
3070 (report_command_stats): New auxiliary function for
3071 make_command_stats_cleanup.
0f3bb72e 3072
070c8028
UW
30732010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3074
3075 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
3076 hosts where CORE_ADDR is long long.
3077
bc9f0842
TT
30782010-06-25 Tom Tromey <tromey@redhat.com>
3079
3080 PR python/10808:
3081 * python/python.c (execute_gdb_command): Add keywords. Accept
3082 "to_string" argument.
3083 (struct restore_ui_file_closure): New.
3084 (restore_ui_file): New function.
3085 (make_cleanup_restore_ui_file): Likewise.
3086 (GdbMethods) <execute>: Update.
3087
c0cc4c83
UW
30882010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3089
3090 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
3091 during inferior call stack frame setup.
3092
f1d8ee66
UW
30932010-06-25 Ken Werner <ken.werner@de.ibm.com>
3094
3095 * solib-spu.c: Include "exception.h".
3096 (ocl_program_data_key): New variable.
3097 (append_ocl_sos): New function.
3098 (ocl_enable_break): Likewise.
3099 (spu_current_sos): Call append_ocl_sos.
3100 (spu_solib_loaded): Call ocl_enable_break.
3101 (_initialize_spu_solib): Register ocl_program_data_key.
3102
19c0c0f8
UW
31032010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3104
3105 * cp-support.c (reset_directive_searched): New function.
3106 (make_symbol_overload_list_using): Prevent recursive calls.
3107
0f6a939d
PM
31082010-06-25 Phil Muldoon <pmuldoon@redhat.com>
3109
3110 * printcmd.c (print_variable_and_value): Print error message on
3111 caught exception.
3112
f2c7657e
UW
31132010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3114
3115 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
3116 of stack values.
3117 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
3118 "value" member.
3119 (dwarf_expr_push): Change input type to ULONGEST.
3120 (dwarf_expr_fetch): Change return type to ULONGEST.
3121 (dwarf_expr_fetch_address): Add prototype.
3122 (dwarf2_read_address): Remove prototype.
3123 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
3124 Truncate stack values to ctx->addr_size bytes.
3125 (dwarf_expr_fetch): Change return value to ULONGEST.
3126 (dwarf_expr_fetch_address): New function.
3127 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
3128 when appropriate. Update for struct dwarf_expr_piece changes.
3129 (dwarf2_read_address): Remove.
3130 (unsigned_address_type): Remove.
3131 (signed_address_type): Remove.
3132 (execute_stack_op): Use dwarf_expr_fetch_address instead of
3133 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
3134 values. Perform operations on ULONGEST instead of on GDB values,
3135 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
3136 values and DW_OP_deref results as unsigned integers.
3137 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
3138 changes.
3139 (write_pieced_value): Likewise.
3140 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
3141 dwarf_expr_fetch when appropriate.
3142 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
3143 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
3144 instead of dwarf_expr_fetch when appropriate.
3145
b1d61bc9
PM
31462010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
3147
3148 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
3149
b14285f6
JB
31502010-06-24 Joel Brobecker <brobecker@adacore.com>
3151
3152 * python/python.c (_initialize_python): Add new "constant"
3153 PYTHONDIR in gdb module. Insert this path at the head of
3154 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
3155 exec its __init__.py script if it exists in that directory.
3156
fd60dc69
KB
31572010-06-24 Kevin Buettner <kevinb@redhat.com>
3158
3159 * rx-tdep.c (RX_ACC_REGNUM): Define.
3160 (RX_NUM_REGS): Redefine to 26.
3161 (rx_register_name): Add register "acc". Change order of several
3162 registers. Change name of "vct" register to "fintv" to match RX
3163 documentation.
3164 (rx_register_type): Add case for RX_ACC_REGNUM.
3165
18430289
TT
31662010-06-24 Tom Tromey <tromey@redhat.com>
3167
3168 * psymtab.c (lookup_partial_symbol): Mark definition as static.
3169
40618926
JK
31702010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3171 Tom Tromey <tromey@redhat.com>
3172
3173 Fix GDB startup on readonly filesystem.
3174 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
3175
628fe4e4
JK
31762010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3177 Pedro Alves <pedro@codesourcery.com>
3178
3179 Fix PR 9436.
3180 * breakpoint.c (handle_jit_event): New function.
3181 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
3182 jit, err, table and bs_class. New variables shlib_event, jit_event,
3183 this_action and bptype. Change bs_class assignments to this_action
3184 assignments. new unhandled bptype internal error. Move here
3185 shlib_event and jit_event handling from handle_inferior_event.
3186 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
3187 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
3188 BPSTAT_WHAT_CHECK_JIT.
3189 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
3190 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
3191 (handle_inferior_event): Reinitialize frame and gdbarch after
3192 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
3193 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
3194 gdbarch when frame gets reinitialized.
3195
f1421989
HZ
31962010-06-24 Hui Zhu <teawater@gmail.com>
3197
3198 * printcmd.c (ui_printf): New function.
3199 (printf_command): Call ui_printf.
3200 (_initialize_printcmd): New command "eval".
3201
d03285ec
UW
32022010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
3203
3204 * infrun.c (handle_inferior_event): Handle presence of single-step
3205 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
3206 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
3207 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
3208 * breakpoint.c (detach_single_step_breakpoints): New function.
3209 (detach_breakpoints): Call it.
3210 (cancel_single_step_breakpoints): New function.
3211 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
3212
3213 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
3214 (spu_gdbarch_init): Install it.
3215
38f6b338
JK
32162010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3217
3218 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
3219 * configure: Regenerate.
3220
bb08c432
HZ
32212010-06-22 Hui Zhu <teawater@gmail.com>
3222
3223 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
3224 (i386_process_record): Ditto.
3225 * record.c (record_memory_query): New variable.
3226 (_initialize_record): New command "set record memory-query".
3227 * record.h (record_memory_query): New extern.
3228
b55078be
DE
32292010-06-21 Doug Evans <dje@google.com>
3230
3231 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
3232 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
3233 (i386_syscall_p): Change type of lengthp to int.
3234 (i386_displaced_step_fixup): Handle kernels that run one past a
3235 syscall insn.
3236 * i386-linux-tdep.c (i386_linux_init_abi): Use
3237 i386_displaced_step_copy_insn instead of
3238 simple_displaced_step_copy_insn.
3239
75079b2b
TT
32402010-06-21 Tom Tromey <tromey@redhat.com>
3241
3242 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
3243 (dwarf_type_encoding_name): Likewise.
3244
b00fdb78
TT
32452010-06-21 Tom Tromey <tromey@redhat.com>
3246
3247 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
3248 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
3249 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
3250 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
3251 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
3252 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
3253 * dwarf2read.c (tag_type_to_type): Create a new error type on
3254 failure.
3255 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
3256 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
3257
84951ab5
MS
32582010-06-21 Michael Snyder <msnyder@vmware.com>
3259
889bf7c5 3260 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
84951ab5
MS
3261 not add_abbrev_prefix_cmd, for "enable breakpoints".
3262
d4a087c7
UW
32632010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
3264
3265 * dwarf2loc.c (find_location_expression): Add relocation offset
3266 to base-address-selection entry base addresses. Read addresses
3267 (and offsets) as signed/unsigned integers, depending on the
3268 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
3269 (loclist_describe_location): Likewise.
3270 (disassemble_dwarf_expression): Read DW_OP_addr operand as
3271 unsigned integer. Do not call dwarf2_read_address.
3272 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
3273
13def385
UW
32742010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
3275
3276 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
3277 value instead of hard-coded SPU_LS_SIZE.
3278 (spu_software_single_step): Likewise.
3279 * spu-tdep.h (SPU_LS_SIZE): Remove.
3280
d2ed6730
UW
32812010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
3282
3283 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
3284 limit on local store memory accesses.
3285 * spu-linux-nat.c (spu_xfer_partial): Likewise.
3286 * spu-tdep.c (spu_lslr): Remove.
3287 (spu_pointer_to_address): Do not truncate addresses.
3288 (spu_integer_to_address): Likewise.
3289 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
3290 * spu-tdep.h: Add comments.
3291 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
3292 (SPU_OVERLAY_LMA): Define.
3293
6aed2dbc
SS
32942010-06-18 Stan Shebs <stan@codesourcery.com>
3295
a61408f8
SS
3296 * osdata.c (get_osdata): Warn separately if target does not report
3297 type list.
3298 (info_osdata_command): Allow empty type, report error if target
3299 does not return available types of OS data.
3300 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
3301 types if no annex supplied.
3302
6aed2dbc
SS
3303 * thread.c (thread_id_make_value): Make a value representing the
3304 current thread.
3305 (_initialize_thread): Create $_thread.
3306
ec61707d
JB
33072010-06-17 Joel Brobecker <brobecker@adacore.com>
3308
3309 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
3310 last local variable declaration. No real code change.
3311
60606b2c
TT
33122010-06-17 Tom Tromey <tromey@redhat.com>
3313
3314 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
3315 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
3316 temporary obstack.
3317
65d79d4b
SDJ
33182010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
3319 Jan Kratochvil <jan.kratochvil@redhat.com>
3320
3321 * breakpoint.c: Include parser-defs.h.
3322 (watchpoint_exp_is_const): New function.
3323 (watch_command_1): Call watchpoint_exp_is_const to check
3324 if the expression is constant.
3325
0407b3f1
AS
33262010-06-15 Andreas Schwab <schwab@linux-m68k.org>
3327
3328 * configure.ac: Check for RDYNAMIC also for cross builds.
3329 * configure: Regenerate.
3330
98d64339
PA
33312010-06-15 Pedro Alves <pedro@codesourcery.com>
3332
3333 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
3334 (SFILES): Remove solib-null.c, add solib-target.c.
3335 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
3336 (ALLDEPFILES): Remove solib-target.c.
3337 * solib-target.c (_initialize_solib_target): Set
3338 current_target_so_ops to solib_target_so_ops if not already set.
3339 * solib-null.c: Delete.
3340
6a271cae
PA
33412010-06-14 Pedro Alves <pedro@codesourcery.com>
3342
3343 * NEWS: Mention GDBserver's JIT compilation of tracepoint
3344 bytecode.
3345
1e9beacb
UW
33462010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
3347
3348 * cp-valprint.c (cp_print_static_field): Members of
3349 dont_print_stat_array_obstack are of type "struct type *".
3350 (_initialize_cp_valprint): Likewise.
3351
21a176fb
UW
33522010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
3353
3354 * frame.c (frame_register_unwind): Do not access contents
3355 of "optimized out" unwound register value.
3356
25b524e8
JK
33572010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3358
3359 * ada-lang.h (ada_print_type): Make varstring const.
3360 * ada-typeprint.c (print_func_type): Make name const.
3361 (ada_print_type): Make varstring const.
3362 * c-lang.h (c_print_type): Make varstring const.
3363 * c-typeprint.c (c_print_type): Likewise.
3364 * f-lang.h (f_print_type): Likewise.
3365 * f-typeprint.c (f_print_type): Likewise.
3366 * jv-lang.h (java_print_type): Likewise.
3367 * jv-typeprint.c (java_print_type): Likewise.
3368 * language.c (unk_lang_print_type): Likewise.
3369 * language.h (struct language_defn) <la_print_type>: Likewise.
3370 * m2-lang.h (m2_print_type): Likewise.
3371 * m2-typeprint.c (m2_print_type): Likewise.
3372 * p-lang.h (pascal_print_type): Likewise.
3373 * p-typeprint.c (pascal_print_type): Likewise.
3374
d914c394
SS
33752010-06-11 Stan Shebs <stan@codesourcery.com>
3376
3377 Add per-operation permission flags.
3378
3379 * target.h (struct target_ops): New method to_set_permissions.
3380 (target_set_permissions): New macro.
3381 (target_insert_breakpoint): Change macro to function.
3382 (target_remove_breakpoint): Ditto.
3383 (target_stop): Ditto.
3384 (may_write_registers): Declare.
3385 (may_write_memory): Declare.
3386 (may_insert_breakpoints): Declare.
3387 (may_insert_tracepoints): Declare.
3388 (may_insert_fast_tracepoints): Declare.
3389 (may_stop): Declare.
3390 * target.c (may_write_registers, may_write_registers_1): New globals.
3391 (may_write_memory, may_write_memory_1): New globals.
3392 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
3393 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
3394 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
3395 globals.
3396 (may_stop, may_stop_1): New global.
3397 (target_xfer_partial): Test for write permission.
3398 (target_store_registers): Ditto.
3399 (target_insert_breakpoint): New function.
3400 (target_remove_breakpoint): New function.
3401 (target_stop): New function.
3402 (_initialize_targets): Add new set/show variables.
3403 (set_write_memory_permission): New function.
3404 (update_target_permissions): New function.
3405 (set_target_permissions): New function.
3406 (update_current_target): Default to_set_permissions.
3407 (_initialize_targets): Use new globals and setter function.
3408 * tracepoint.c (start_tracing): Test for permission.
3409 * inferior.h (update_observer_mode): Declare.
3410 * infrun.c (non_stop_1): Define earlier.
3411 (observer_mode, observer_mode_1): New globals.
3412 (set_observer_mode, show_observer_mode): New functions.
3413 (update_observer_mode): New function.
3414 (_initialize_infrun): Define "set observer" command.
3415 * remote.c (PACKET_QAllow): New optional packet.
3416 (remote_protocol_features): Add QAllow.
3417 (remote_set_permissions): New function.
3418 (remote_start_remote): Call it.
3419 (init_remote_ops): Add it to target vector.
3420 (_initialize_remote): Add config command for QAllow.
3421
aec5aa8b
TT
34222010-06-11 Tom Tromey <tromey@redhat.com>
3423
3424 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
3425 DW_AT_vtable_elem_location even when GCC extension is seen.
3426
0e03807e
TT
34272010-06-11 Tom Tromey <tromey@redhat.com>
3428
3429 PR gdb/9977, PR exp/11636:
3430 * value.h (value_offset): Update.
3431 (struct lval_funcs) <check_validity>: New field.
3432 <copy_closure>: Make argument const.
3433 (value_computed_closure): Update.
3434 (value_contents_for_printing): Declare.
3435 (value_bits_valid): Likewise.
3436 (val_print): Likewise.
3437 (set_value_component_location): Update.
3438 (value_entirely_optimized_out): Declare.
3439 * value.c (value_offset): Argument now const.
3440 (require_not_optimized_out): New function.
3441 (value_contents_for_printing): New function.
3442 (value_contents_all): Call require_not_optimized_out.
3443 (value_contents): Likewise.
3444 (value_bits_valid): New function.
3445 (value_computed_closure): Argument now const.
3446 (set_value_component_location): Make 'whole' argument const.
3447 (value_entirely_optimized_out): New function.
3448 (value_bitsize): Argument now 'const'.
3449 (value_bitpos): Likewise.
3450 (value_type): Likewise.
3451 * valprint.h (val_print_array_elements): Update.
3452 * valprint.c (val_print): Add 'val' argument. Use
3453 valprint_check_validity.
3454 (valprint_check_validity): New function.
3455 (value_check_printable): Use value_entirely_optimized_out.
3456 (common_val_print): Update.
3457 (value_print): Likewise.
3458 (val_print_array_elements): Add 'val' argument.
3459 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
3460 value_bits_valid. Reinit frame cache for lval_computed.
3461 * sh64-tdep.c (sh64_do_register): Update.
3462 * scm-valprint.c (scm_val_print): Add 'val' argument.
3463 * scm-lang.h (scm_val_print): Update.
3464 * python/python.h (apply_val_pretty_printer): Update.
3465 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
3466 argument. Call set_value_component_location.
3467 * printcmd.c (print_scalar_formatted): Update.
3468 * p-valprint.c (pascal_val_print): Add 'val' argument.
3469 (pascal_object_print_value_fields): Likewise.
3470 (pascal_object_print_value): Likewise.
3471 (pascal_object_print_static_field): Update.
3472 * p-lang.h (pascal_val_print): Update.
3473 (pascal_object_print_value_fields): Update.
3474 * mt-tdep.c (mt_registers_info): Update.
3475 * mi/mi-main.c (get_register): Update.
3476 (mi_cmd_data_evaluate_expression): Use common_val_print.
3477 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
3478 (m2_print_unbounded_array): Likewise.
3479 (m2_val_print): Likewise.
3480 * m2-lang.h (m2_val_print): Update.
3481 * language.h (struct language_defn) <la_val_print>: Add 'val'
3482 argument.
3483 (LA_VAL_PRINT): Likewise.
3484 * language.c (unk_lang_val_print): Add 'val' argument.
3485 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
3486 (java_val_print): Likewise.
3487 * jv-lang.h (java_val_print): Add 'val' argument.
3488 * infcmd.c (default_print_registers_info): Update.
3489 * f-valprint.c (f77_print_array_1): Add 'val' argument.
3490 (f77_print_array): Likewise.
3491 (f_val_print): Likewise.
3492 * f-lang.h (f_val_print): Add 'val' argument.
3493 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
3494 value_bitpos.
3495 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
3496 set_value_optimized_out.
3497 (write_pieced_value): Use value_bitsize and value_bitpos.
3498 <default>: Don't exit loop.
3499 (check_pieced_value_validity): New function.
3500 (pieced_value_funcs): Reference check_pieced_value_validity,
3501 check_pieced_value_invalid.
3502 (copy_pieced_value_closure): Update.
3503 (check_pieced_value_bits): New function.
3504 (check_pieced_value_invalid): New function.
3505 * d-valprint.c (dynamic_array_type): Add 'val' argument.
3506 (d_val_print): Likewise.
3507 * d-lang.h (d_val_print): Update.
3508 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
3509 (cp_print_value_fields_rtti): Likewise.
3510 (cp_print_value): Likewise.
3511 (cp_print_static_field): Update.
3512 * c-valprint.c (c_val_print): Add 'val' argument.
3513 (c_value_print): Update.
3514 * c-lang.h (c_val_print): Update.
3515 (cp_print_value_fields): Likewise.
3516 (cp_print_value_fields_rtti): Likewise.
3517 * ada-valprint.c (struct ada_val_print_args): Remove.
3518 (val_print_packed_array_elements): Add 'val' argument.
3519 (ada_val_print): Likewise. Rewrite.
3520 (ada_val_print_stub): Remove.
3521 (ada_val_print_array): Add 'val' argument.
3522 (ada_val_print_1): Likewise.
3523 (print_variant_part): Likewise.
3524 (ada_value_print): Update.
3525 (print_record): Add 'val' argument.
3526 (print_field_values): Likewise.
3527 * ada-lang.h (ada_val_print): Update.
3528
3cf03773
TT
35292010-06-11 Tom Tromey <tromey@redhat.com>
3530
3531 * vec.h (VEC_cleanup): New macro.
3532 (DEF_VEC_ALLOC_FUNC_I): Update.
3533 (DEF_VEC_ALLOC_FUNC_P): Likewise.
3534 (DEF_VEC_ALLOC_FUNC_O): Likewise.
3535 * dwarf2loc.c (struct axs_var_loc): Remove.
3536 (unimplemented): New function.
3537 (translate_register): Likewise.
3538 (access_memory): Likewise.
3539 (compile_dwarf_to_ax): Likewise.
3540 (dwarf2_tracepoint_var_loc): Remove.
3541 (dwarf2_tracepoint_var_access): Likewise.
3542 (dwarf2_tracepoint_var_ref): Likewise.
3543 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
3544 (loclist_tracepoint_var_ref): Likewise.
3545 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
3546 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
3547 require_composition. No longer static.
3548 (execute_stack_op): Update.
3549 * ax-gdb.h (trace_kludge): Declare.
3550
2bdf28a0
JK
35512010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3552
3553 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
3554 (should_be_inserted): Return zero also on NULL OWNER.
3555 (breakpoint_program_space_exit): New OWNER comment.
3556 (insert_breakpoint_locations): Extend comment for OWNER.
3557 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
3558 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
3559 New OWNER comment.
3560 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
3561 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
3562 (bpstat_check_location): New assert on OWNER.
3563 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
3564 and B initializations to the code block. New assert on them.
3565 (print_one_breakpoint_location): New OWNER comment.
3566 (watchpoint_locations_match): Assert on OWNER.
3567 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
3568 initializations to the code block. New assert on OWNER.
3569 (set_breakpoint_location_function): New assert on OWNER.
3570 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
3571 (bp_location_compare, update_global_location_list)
3572 (update_global_location_list): New OWNER comment.
3573
5b9a19af
UW
35742010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3575
3576 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
3577
669211f5
UW
35782010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3579
3580 * config/nm-linux.h (struct target_ops): Remove forward declaration.
3581 (lin_thread_get_thread_signals): Remove prototype.
3582 (GET_THREAD_SIGNALS): Remove.
3583 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
3584 * linux-thread-db.c (check_thread_signals): Directly call
3585 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
3586
b7a8b4ef
UW
35872010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3588
3589 * gregset.h (GDB_FPXREGSET_T): Remove.
3590 (gdb_fpxregset_t): Likewise.
3591 (supply_fpxregset): Remove prototype.
3592 (fill_fpxregset): Likewise.
3593 * i386-linux-nat.c (supply_fpxregset): Remove.
3594 (fill_fpxregset): Likewise.
3595 (fetch_fpxregs): Inline supply_fpxregset call.
3596 (store_fpxregs): Inline fill_fpxregset call.
3597
3598 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
3599 * config/i386/nm-linux.h: Remove file.
3600
82892036
MS
36012010-06-09 Michael Snyder <msnyder@vmware.com>
3602
3603 * target.c (update_current_target): Fix spelling error in comment.
3604 (target_mourn_inferior): Fix spelling error in error message.
3605
5ddb52fa
PH
36062010-06-08 Paul Hilfinger <hilfingr@adacore.com>
3607
3608 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
3609 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
3610
0f2caa1b
MS
36112010-06-08 Michael Snyder <msnyder@vmware.com>
3612
3613 * remote.c (remote_close): Set inferior_ptid to null_ptid.
3614
3bebe2f2
JK
36152010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
3616
3617 * configure.ac <"${have_libpython}" != no>: New workaround of
3618 python#4434.
3619 * configure: Regenerate.
3620
eaaffdf4
HZ
36212010-06-08 Hui Zhu <teawater@gmail.com>
3622
3623 * record.c (record_wait): Move signal out of replay code.
3624
5c631832
JK
36252010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3626
3627 Fix PR 10640.
3628 * dwarf2-frame.c (no_dwarf_call): New function.
3629 (execute_stack_op): Set CTX->DWARF_CALL.
3630 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
3631 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
3632 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
3633 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
3634 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
3635 (needs_frame_dwarf_call): New function.
3636 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
3637 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
3638 Update the comment. Move variables die, offset and error call to ...
3639 (follow_die_ref): ... a new function.
3640 (dwarf2_fetch_die_location_block): New function.
3641 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
3642
17ea53c3
JK
36432010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3644
3645 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
3646 (dwarf_expr_tls_address): Use per_cu instead of objfile.
3647 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
3648 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
3649 this change.
3650 (struct needs_frame_baton): New field per_cu.
3651 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
3652 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
3653
245040d7
SW
36542010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
3655
3656 * cp-support.c (make_symbol_overload_list_namespace): Only search
3657 static and global blocks.
3658 (make_symbol_overload_list_block): New function.
3659 (make_symbol_overload_list): Separate namespace search from block
3660 search.
3661 (make_symbol_overload_list_qualified): Use
3662 make_symbol_overload_list_block.
3663
4c3376c8
SW
36642010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
3665
3666 * value.h: Created oload_search_type enum.
3667 (find_overload_match): Use oload_search_type enum.
3668 * valops.c (find_overload_match): Support combined member and
3669 non-member search.
3670 * eval.c (evaluate_subexp_standard): Calls to
3671 find_overload_match now use oload_search_type enum.
3672 (oload_method_static): Verify index is a proper value.
3673 * valarith.c (value_user_defined_cpp_op): Search for and handle
3674 both member and non-member operators.
3675 (value_user_defined_cpp_op): New function.
3676 (value_user_defined_op): New function.
3677 (value_x_unop): Use value_user_defined_op.
3678 (value_x_binop): Ditto.
3679 * cp-support.c (make_symbol_overload_list_using): Added block
3680 iteration.
3681 Add check for namespace aliases and imported declarations.
3682
ee55da67
JK
36832010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3684
3685 * breakpoint.h (owner): Extend the comment.
3686
1a2ab13a
JK
36872010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3688
3689 Clear stale specific bp_location from former whole breakpoint.
3690 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
3691 code ...
3692 (free_bp_location): ... here. Rename there the called function to
3693 bpstat_remove_bp_location_callback.
3694 (bpstat_remove_breakpoint_callback): Rename to ...
3695 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
3696 to struct bp_location. Change the called function to
3697 bpstat_remove_bp_location. Create new declaration for the function.
3698 (bpstat_remove_breakpoint): Rename to ...
3699 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
3700 code for the new parameter type.
3701
16d6b4b7
NS
37022010-06-07 Nathan Sidwell <nathan@codesourcery.com>
3703
3704 * README: Make version-agnostic.
3705
7e314c57
JK
37062010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3707
3708 Fix duplicate types for single DIE.
3709 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
3710 set_die_type.
3711 (read_array_type): Remove type initialization. Recheck get_die_type
3712 after initial die_type. Move set_die_type before set_descriptive_type.
3713 (read_set_type): New variable domain_type. Recheck get_die_type after
3714 initial die_type. Move attr initialization later.
3715 (read_tag_pointer_type, read_tag_reference_type): New variable
3716 target_type. Recheck get_die_type after initial die_type.
3717 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
3718 die_type and die_containing_type.
3719 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
3720 Recheck get_die_type after initial die_type.
3721 (read_subrange_type): Recheck get_die_type after initial die_type.
3722 Move set_die_type before set_descriptive_type.
3723 (set_die_type): Extend the function comment. Call complaint if DIE has
3724 some type already set.
3725
2f296114
VP
37262010-06-05 Vladimir Prus <vladimir@codesourcery.com>
3727
3728 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
3729 for current naming of thread groups (iN, not N).
3730
554794dc
SDJ
37312010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
3732
3733 * ada-lang.c (ada_operator_length): Constify `struct expression'.
3734 * parse.c (operator_length): Likewise.
3735 (operator_length_standard): Likewise.
3736 * parser-defs.h (operator_length): Likewise.
3737 (operator_length_standard): Likewise.
3738 (struct exp_descriptor <operator_length>): Likewise.
3739
967cf477
DE
37402010-06-04 Doug Evans <dje@google.com>
3741
bddaacb9 3742 Add support for enabling/disabling individual pretty-printers.
967cf477
DE
3743 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
3744 * python/python-internal.h (gdbpy_enabled_cst): Declare.
3745 * python/python.c (gdbpy_enabled_cst): Define.
3746 (_initialize_python): Initialize gdbpy_enabled_cst.
3747 * NEWS: Add entry.
3748
2dec564e
JK
37492010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3750
3751 * breakpoint.c (update_global_location_list): Fix comment typo.
3752
44b5680a
HZ
37532010-06-04 Hui Zhu <teawater@gmail.com>
3754
3755 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
3756
e7a30f46
DE
37572010-06-03 Doug Evans <dje@google.com>
3758
3759 * configure.ac: Don't fail if python is unusable when
3760 configured with --with-python=auto.
3761 * configure: Regenerate.
3762
84b4420f
SW
37632010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
3764
889bf7c5 3765 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
84b4420f 3766
df178451
PM
37672010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
3768
3769 * valprint.h (get_array_bounds): Change low and high parameter types
3770 to LONGEST *.
0407b3f1 3771 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
df178451
PM
3772 compute bounds.
3773 (val_print_array_elements): Adapt to change above.
3774 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
3775 * p-valprint.c (pascal_val_print): Likewise.
3776
fd5700c7
JK
37772010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3778
3779 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
3780 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
3781 .F08.
3782
f55ee35c
JK
37832010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3784
3785 Support DW_TAG_module as separate namespaces.
3786 * dwarf2read.c (typename_concat): New parameter physname.
3787 (read_module_type): New function and declaration.
3788 (scan_partial_symbols): Scan also DW_TAG_module children.
3789 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
3790 to typename_concat backward compatible physname value 0.
3791 (partial_die_full_name, read_namespace_type): Pass to typename_concat
3792 backward compatible physname value 0.
3793 (add_partial_module, read_module): Remove FIXME comment.
3794 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
3795 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
3796 DIEs under DW_TAG_module.
3797 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
3798 DW_AT_MIPS_linkage_name first, extend it for language_fortran
3799 && physname and return there instead of just setting NAME. Extend
3800 the main block for language_fortran. Pass physname parameter to the
3801 typename_concat call.
3802 (read_import_statement, read_func_scope, get_scope_pc_bounds)
3803 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
3804 (new_symbol): Fill in cplus_specific.demangled_name if it is still
3805 missing from SYMBOL_SET_NAMES in the language_fortran case.
3806 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
3807 variables.
3808 (read_type_die) <DW_TAG_module>: New.
3809 (MAX_SEP_LEN): Increase to 7.
3810 (typename_concat): New parameter physname. New variable lead. Support
3811 also language_fortran.
3812 * f-exp.y (yylex): Consider : also as a symbol name character class.
3813 * f-lang.c: Include cp-support.h.
3814 (f_word_break_characters, f_make_symbol_completion_list): New functions.
3815 (f_language_defn): Use cp_lookup_symbol_nonlocal,
3816 f_word_break_characters and f_make_symbol_completion_list.
3817 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
3818 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
3819 * symtab.c (symbol_init_language_specific): Support language_fortran.
3820 (symbol_find_demangled_name): New comment on language_fortran.
3821 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
3822 for language_fortran.
3823 (lookup_symbol_aux_local): Check imports also for language_fortran.
3824 (default_make_symbol_completion_list): Rename to ...
3825 (default_make_symbol_completion_list_break_on): ... this name. New
3826 parameter break_on, use it.
3827 (default_make_symbol_completion_list): New stub.
3828 * symtab.h (default_make_symbol_completion_list_break_on): New
3829 prototype.
3830
cb91c06a
JB
38312010-06-02 Joel Brobecker <brobecker@adacore.com>
3832
3833 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
3834 to error.
3835
5c315b68
JK
38362010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3837
3838 * dwarf2read.c (typename_concat): Add const to the variable sep.
3839
9eae7c52
TT
38402010-06-02 Tom Tromey <tromey@redhat.com>
3841
3842 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
3843 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
3844 type is const. Add 'def' argument. Add missing operators, remove
3845 unhandled ones.
3846 (decode_locdesc): Update.
3847 (dwarf2_always_disassemble): New global.
3848 (show_dwarf2_always_disassemble): New function.
3849 (_initialize_dwarf2_read): Add always-disassemble.
3850 (dwarf2_per_cu_offset_size): New function.
3851 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
3852 (piece_end_p): New function.
3853 (locexpr_describe_location_piece): Replace 'size' argument with
3854 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
3855 some constants. Remove errors.
3856 (disassemble_dwarf_expression): New function.
3857 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
3858 Add 'offset_size' argument.
3859 (loclist_describe_location): Change output formatting.
3860 * dwarf2expr.h (dwarf_stack_op_name): Declare.
3861
7d3fe98e
SW
38622010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
3863
3864 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
3865 anonymous type case.
3866
e77813c8
PM
38672010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
3868
3869 * dwarf2read.c (read_subrange_type): Handle missing base type
3870 according to Dwarf-2 specifications.
3871
7cf3118a
SDJ
38722010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
3873
3874 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
3875 BINOP_EXCL.
3876 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
3877 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
3878 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
3879 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
3880 UNOP_CHMAX, UNOP_CHMIN.
3881 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
3882 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
3883 UNOP_CHMIN>: Remove opcodes.
3884
ae4d0c03
PM
38852010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
3886
3887 * dwarf2read.c (read_func_scope): Do not complain for
3888 external function if bounds are not found.
3889
fa593d66
PA
38902010-06-01 Pedro Alves <pedro@codesourcery.com>
3891
3892 * NEWS: Mention gdbserver fast tracepoints support.
3893
cd44747c
PM
38942010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
3895
3896 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
3897 New macros.
3898 (windows_set_console_info): New function.
3899 (windows_create_inferior): Call windows_set_console_info
3900 if NEW_CONSOLE is true.
3901 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
3902 (_initialize_loadable): Initialize GetConsoleFontSize and
3903 GetCurrentConsoleFont.
3904
f6528abd
JK
39052010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3906
3907 * Makefile.in (RDYNAMIC): New.
3908 (SFILES): Add proc-service.list.
3909 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
3910 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
3911 * config/arm/linux.mh: Likewise.
3912 * config/i386/linux.mh: Likewise.
3913 * config/i386/linux64.mh: Likewise.
3914 * config/ia64/linux.mh: Likewise.
3915 * config/m32r/linux.mh: Likewise.
3916 * config/m68k/linux.mh: Likewise.
3917 * config/mips/linux.mh: Likewise.
3918 * config/pa/linux.mh: Likewise.
3919 * config/powerpc/linux.mh: Likewise.
3920 * config/powerpc/ppc64-linux.mh: Likewise.
3921 * config/s390/s390.mh: Likewise.
3922 * config/sparc/linux.mh: Likewise.
3923 * config/sparc/linux64.mh: Likewise.
3924 * config/xtensa/linux.mh: Likewise.
3925 * configure.ac: New RDYNAMIC on native host and GCC.
3926 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
3927 * configure: Regenerate.
3928 * proc-service.list: New.
3929
ca2a87a0
JK
39302010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3931
3932 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
3933 CONTENT.
3934
1e225492
JK
39352010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3936
3937 * linux-nat.c (linux_nat_wait_1): Do not call
3938 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
3939 TARGET_WAITKIND_SIGNALLED.
3940
e802dbe0
JB
39412010-05-27 Joel Brobecker <brobecker@adacore.com>
3942
3943 * ada-lang.c (ada_inferior_data): New struct.
3944 (ada_inferior_data): New static global.
3945 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
3946 (ada_get_tsd_type): New functions.
3947 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
3948 to look the tsd type up.
3949 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
3950 event. Set ada_inferior_data.
3951
176a6961
PA
39522010-05-27 Pedro Alves <pedro@codesourcery.com>
3953
3954 * remote.c (unpack_varlen_hex): Remove forward declaration.
3955 (remote_console_output): Make static, and add forward declaration.
3956 * remote.h: Drop FIXME comment.
3957 (unpack_varlen_hex): Declare.
3958 (remote_console_output, remote_cisco_objfile_relocate)
3959 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
3960 Delete declarations.
3961 * tracepoint.c: Include "remote.h".
3962 (unpack_varlen_hex): Delete declaration.
3963
88bfdde4
TT
39642010-05-27 Tom Tromey <tromey@redhat.com>
3965
3966 * dwarf2loc.c (struct piece_closure) <refc>: New field.
3967 (allocate_piece_closure): Initialize refc.
3968 (copy_pieced_value_closure): Use refc.
3969 (free_pieced_value_closure): Likewise.
3970
8c6363cf
TT
39712010-05-27 Tom Tromey <tromey@redhat.com>
3972
3973 * arm-tdep.c (push_stack_item): 'contents' now const.
3974 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
3975 value_contents_writeable. Introduce new temporary.
3976
7ecb917e
TT
39772010-05-27 Tom Tromey <tromey@redhat.com>
3978
3979 * findcmd.c (parse_find_args): Use value_contents, not
3980 value_contents_raw.
3981
f42a0a33
TT
39822010-05-27 Tom Tromey <tromey@redhat.com>
3983
3984 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
3985 const. Use value_contents, not value_contents_writeable.
3986
12b795ad
JB
39872010-05-27 Joel Brobecker <brobecker@adacore.com>
3988
3989 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
3990 by call to value_contents.
3991
5a2e11c7
OS
39922010-05-27 Ozkan Sezer <sezeroz@gmail.com>
3993
3994 * MAINTAINERS: Add myself for write after approval privileges.
3995
ec685c5e
DE
39962010-05-26 Doug Evans <dje@google.com>
3997
0c4a4063
DE
3998 Allow python to find its files if moved from original location.
3999 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
4000 (GDB_AC_WITH_DIR): Call it.
4001 * configure.ac: Define WITH_PYTHON_PATH if we can find the
4002 python installation directory.
4003 * config.in: Regenerate.
4004 * configure: Regenerate.
4005 * defs.h (python_libdir): Declare.
4006 * main.c (python_libdir): Define.
4007 (captured_main): Initialize python_libdir.
4008 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
4009 call Py_SetProgramName to make sure python can find its libraries
4010 and modules.
4011
ec685c5e
DE
4012 * configure.ac: Try to use python's distutils to fetch compilation
4013 parameters.
4014 * configure: Regenerate.
4015 * python/python-config.py: New file.
4016
363a6e9f
OS
40172010-05-26 Ozkan Sezer <sezeroz@gmail.com>
4018
4019 * ser-tcp.c (net_open): Check error return from socket() call by its
4020 equality to -1 not by it being negative.
4021 (net_close): Likewise.
4022
dde08ee1
PA
40232010-05-26 Pedro Alves <pedro@codesourcery.com>
4024
4025 * NEWS: Mention the `qRelocInsn' feature.
4026 * gdbarch.sh (relocate_instruction): New.
4027 * amd64-tdep.c (rip_relative_offset): New.
4028 (append_insns): New.
4029 (amd64_relocate_instruction): New.
4030 (amd64_init_abi): Install it.
4031 * i386-tdep.c (append_insns): New.
4032 (i386_relocate_instruction): New.
4033 (i386_gdbarch_init): Install it.
4034 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
4035 * gdbarch.h, gdbarch.c: Regenerate.
4036
947bb88f
TT
40372010-05-26 Tom Tromey <tromey@redhat.com>
4038
4039 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
4040 (struct dwarf2_loclist_baton) <data>: Likewise.
4041 * dwarf2loc.c (find_location_expression): Constify return type.
4042 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
4043 (dwarf2_loc_desc_needs_frame): Likewise.
4044 (loclist_read_variable): Constify.
4045 (loclist_describe_location): Likewise.
4046 (loclist_tracepoint_var_ref): Likewise.
4047
0d45f56e
TT
40482010-05-25 Tom Tromey <tromey@redhat.com>
4049
4050 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
4051 (dwarf_expr_frame_base_1): Likewise.
4052 (read_pieced_value): Update.
4053 (needs_frame_frame_base): Constify.
4054 (dwarf2_tracepoint_var_loc): Likewise.
4055 (dwarf2_tracepoint_var_access): Likewise.
4056 (locexpr_describe_location_piece): Likewise.
4057 (locexpr_describe_location_1): Likewise.
4058 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
4059 Constify.
4060 (data): Now const.
4061 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
4062 (dwarf_expr_eval, read_uleb128, read_sleb128)
4063 (dwarf2_read_address): Update.
4064 * dwarf2expr.c (dwarf_expr_eval): Constify.
4065 (read_uleb128): Likewise.
4066 (read_sleb128): Likewise.
4067 (dwarf2_read_address): Likewise.
4068 (require_composition): Likewise.
4069 (execute_stack_op): Likewise.
4070 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
4071 "const gdb_byte *".
4072 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
4073 Now const.
4074 (no_get_frame_base): Constify.
4075 (execute_stack_op): Likewise.
4076 (execute_cfa_program): Likewise.
4077 (read_encoded_value): Likewise.
4078
07ca107c
DE
40792010-05-25 Doug Evans <dje@google.com>
4080
e34838f0
DE
4081 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
4082
01f69b38
DE
4083 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
4084 * event-loop.c: ... here.
4085 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
4086 `error' for clarity.
4087 (tui_getc): Pass correct value for `error' parameter to
4088 tui_readline_output.
4089
07ca107c
DE
4090 Add python gdb.GdbError and gdb.string_to_argv.
4091 * NEWS: Document them.
4092 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
4093 the exception is gdb.GdbError. Print a second traceback if there's
4094 an error computing the error message.
4095 (gdbpy_string_to_argv): New function.
4096 * python/py-utils.c (gdbpy_obj_to_string): New function.
4097 (gdbpy_exception_to_string): New function.
4098 * python/python-internal.h (gdbpy_string_to_argv): Declare.
4099 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
4100 (gdbpy_gdberror_exc): Declare.
4101 * python/python.c (gdbpy_gdberror_exc): New global.
4102 (_initialize_python): Initialize gdbpy_gdberror_exc and create
4103 gdb.GdbError.
4104 (GdbMethods): Add string_to_argv.
4105
5572ce1f
PM
41062010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4107
4108 * windows-nat.c (display_selector): Call GetLastError to give better
4109 failure explanation.
4110
acd5838a
PA
41112010-05-24 Pedro Alves <pedro@codesourcery.com>
4112
4113 * config.in: Regenerate.
4114
b26a4dcb
JK
41152010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
4116
4117 Code cleanup.
4118 * target.c (push_target): Return only void. Remove the return value
4119 comment.
4120 * target.h (push_target): Return only void.
4121
f434ba03
PA
41222010-05-23 Pedro Alves <pedro@codesourcery.com>
4123
4124 Update gnulib from latest git.
4125 (250b80067c1e1d8faa0c42fb572f721975b929c5)
4126
4127 * gnulib/memcmp.c: Removed.
4128 * gnulib/memchr.valgrind: New.
4129 * gnulib/stddef.in.h: New.
4130 * gnulib/Makefile.am: Updated.
4131 * gnulib/memchr.c: Updated.
4132 * gnulib/memmem.c: Updated.
4133 * gnulib/stdint.in.h: Updated.
4134 * gnulib/str-two-way.h: Updated.
4135 * gnulib/string.in.h: Updated.
4136 * gnulib/wchar.in.h: Updated.
4137
4138 * gnulib/extra/link-warning.h: Removed.
4139 * gnulib/extra/c++defs.h: New.
4140 * gnulib/extra/warn-on-use.h: New.
4141 * gnulib/extra/arg-nonnull.h: Updated.
4142
4143 * gnulib/m4/extensions.m4: Updated.
4144 * gnulib/m4/gnulib-cache.m4: Updated.
4145 * gnulib/m4/gnulib-common.m4: Updated.
4146 * gnulib/m4/gnulib-comp.m4: Updated.
4147 * gnulib/m4/gnulib-tool.m4: Updated.
4148 * gnulib/m4/include_next.m4: Updated.
4149 * gnulib/m4/longlong.m4: Updated.
4150 * gnulib/m4/memchr.m4: Updated.
4151 * gnulib/m4/memmem.m4: Updated.
4152 * gnulib/m4/stdint.m4: Updated.
4153 * gnulib/m4/string_h.m4: Updated.
4154 * gnulib/m4/memcmp.m4: Removed.
4155 * gnulib/m4/onceonly_2_57.m4: Removed.
4156 * gnulib/m4/00gnulib.m4: New.
4157 * gnulib/m4/mmap-anon.m4: New.
4158 * gnulib/m4/multiarch.m4: New.
4159 * gnulib/m4/onceonly.m4: New.
4160 * gnulib/m4/stddef_h.m4: New.
4161 * gnulib/m4/warn-on-use.m4: New.
4162 * gnulib/m4/wchar.m4: Removed.
4163 * gnulib/m4/wchar_h.m4: New.
4164 * gnulib/m4/wchar_t.m4: New.
4165 * gnulib/m4/wint_t.m4: New.
4166
4167 * aclocal.m4: Regenerate.
4168 * config.in: Likewise.
4169 * configure: Likewise.
4170 * gnulib/Makefile.in: Likewise.
4171
d3b1e874
TT
41722010-05-21 Tom Tromey <tromey@redhat.com>
4173
4174 * dwarf2loc.c (extract_bits_primitive): New function.
4175 (extract_bits): Likewise.
4176 (insert_bits): Likewise.
4177 (copy_bitwise): Likewise.
4178 (read_pieced_value): Do all operations in bits.
4179 (write_pieced_value): Likewise.
4180 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
4181 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
4182 Always use xrealloc to resize piece array.
4183 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
4184 <DW_OP_piece>: Update.
4185 <DW_OP_bit_piece>: New case.
4186
cb826367
TT
41872010-05-21 Tom Tromey <tromey@redhat.com>
4188
4189 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
4190 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
4191 * dwarf2expr.h (enum dwarf_value_location)
4192 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
4193 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
4194 (add_piece): Handle empty piece.
4195 (execute_stack_op) <DW_OP_piece>: Handle
4196 DWARF_VALUE_OPTIMIZED_OUT.
4197
74de6778
TT
41982010-05-21 Tom Tromey <tromey@redhat.com>
4199
4200 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
4201 evaluate_subexp, not evaluate_subexp_with_coercion.
4202
f346a30d
PM
42032010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4204
4205 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
4206 attribute.
4207
afd74c5f
TT
42082010-05-21 Tom Tromey <tromey@redhat.com>
4209
4210 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
4211 offset.
4212 (write_pieced_value): Likewise.
4213
90e7c2c5
PM
42142010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4215
4216 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
4217 and DW_TAG_volatile_type.
4218 (new_symbol): Likewise.
4219
8148cf8d
PM
42202010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
4221
4222 * p-valprint.c (pascal_val_print): Call get_array_bounds
4223 to obtain the number of elements in an array.
4224
3a1d4620
DE
42252010-05-19 Doug Evans <dje@google.com>
4226
0bf0f8c4
DE
4227 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
4228
3a1d4620
DE
4229 * python.c (source_python_script): Add comment.
4230 (source_python_script_for_objfile): Remove unnecessary call to
4231 gdbpy_print_stack.
4232
dc21167c
JK
42332010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4234 Sergio Durigan Junior <sergiodj@redhat.com>
4235
4236 Code cleanup.
4237 * parse.c (exp_iterate): Use operator_length wrapper function.
4238
5b4ee69b
MS
42392010-05-18 Michael Snyder <msnyder@vmware.com>
4240
4241 * ada-lang.c: White space.
4242 * ada-typeprint.c: White space.
4243 * ada-valprint.c: White space.
4244 * addrmap.c: White space.
4245 * auxv.c: White space.
4246 * ax-gdb.c: White space.
4247
e17c9e56
HZ
42482010-05-18 Hui Zhu <teawater@gmail.com>
4249
4250 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
4251 for oldfp.
4252 (inferior_call_waitpid): Move make_cleanup out of check.
4253 Check the return of waitpid.
4254 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
4255
a109c7c1
MS
42562010-05-17 Michael Snyder <msnyder@vmware.com>
4257
1c5313c5
MS
4258 * tui/tui.c: White space.
4259 * tui/tui-data.c: White space.
4260 * tui/tui-disasm.c: White space.
4261 * tui/tui-file.c: White space.
4262 * tui/tui-interp.c: White space.
4263 * tui/tui-main.c: White space.
4264 * tui/tui-out.c: White space.
4265 * tui/tui-regs.c: White space.
4266 * tui/tui-source.c: White space.
4267 * tui/tui-stack.c: White space.
4268 * tui/tui-win.c: White space.
4269 * tui/tui-winsource.c: White space.
4270
f4a14ae6
MS
4271 * procfs.c: White space.
4272
d59b6f6c
MS
4273 * python/py-auto-load.c: White space.
4274 * python/py-block.c: White space.
4275 * python/py-breakpoint.c: White space.
4276 * python/py-cmd.c: White space.
4277 * python/py-function.c: White space.
4278 * python/py-lazy-string.c: White space.
4279 * python/py-objfile.c: White space.
4280 * python/py-param.c: White space.
4281 * python/py-prettyprint.c: White space.
4282 * python/py-progspace.c: White space.
4283 * python/py-symtab.c: White space.
4284 * python/python.c: White space.
4285 * python/py-type.c: White space.
4286 * python/py-utils.c: White space.
4287 * python/py-value.c: White space.
4288
102040f0
MS
4289 * mi/mi-cmd-break.c: White space.
4290 * mi/mi-cmd-env.c: White space.
4291 * mi/mi-cmds.c: White space.
4292 * mi/mi-cmd-stack.c: White space.
4293 * mi/mi-cmd-var.c: White space.
4294 * mi/mi-console.c: White space.
4295 * mi/mi-getopt.c: White space.
4296 * mi/mi-interp.c: White space.
4297 * mi/mi-main.c: White space.
4298 * mi/mi-out.c: White space.
4299 * mi/mi-parse.c: White space.
4300
cdb27c12
MS
4301 * cli/cli-cmds.c: White space.
4302 * cli/cli-decode.c: White space.
4303 * cli/cli-dump.c: White space.
4304 * cli/cli-interp.c: White space.
4305 * cli/cli-logging.c: White space.
4306 * cli/cli-script.c: White space.
4307 * cli/cli-setshow.c: White space.
4308
a109c7c1
MS
4309 * valarith.c: White space.
4310 * valops.c: White space.
4311 * valprint.c: White space.
4312 * value.c: White space.
4313 * varobj.c: White space.
4314 * xcoffread.c: White space.
4315 * xml-support.c: White space.
4316 * xml-tdesc.c: White space.
4317
3872d37d
AS
43182010-05-17 Andreas Schwab <schwab@redhat.com>
4319
4320 PR gdb/11092
4321 * c-lang.c (c_printstr): Compute real length of NUL terminated
4322 string at first.
4323
0cce5bd9
JB
43242010-05-17 Joel Brobecker <brobecker@adacore.com>
4325
4326 * parse.c (parse_exp_in_context): When block is not NULL, use
4327 its associated language to parse the expression instead of
4328 the current_language.
4329
5f19d646
JB
43302010-05-17 Joel Brobecker <brobecker@adacore.com>
4331
4332 * jv-lang.c (java_lookup_class): Remove commented out code.
4333 (type_from_class): Likewise.
4334 (java_op_print_tab): Remove commented-out elements.
4335
28c85d6c
JB
43362010-05-17 Joel Brobecker <brobecker@adacore.com>
4337
4338 * ada-lang.c (to_fixed_range_type): The the raw index type as
4339 argument instead of the raw type name. Remove orig_type parameter.
4340 Update calls throughout.
4341 (ada_fixup_array_indexes_type): New function.
4342 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
4343 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
4344 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
4345 Remove name parameter.
4346 (print_array_type): Add call to ada_fixup_array_indexes_type.
4347 Update calls to print_range_type.
4348 (ada_print_type): Update calls to print_range_type.
4349
d09039dd
PM
43502010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
4351
4352 * dwarf2read.c (read_set_type): Set type length if
4353 DW_AT_byte_size attribute is present.
4354
7a081a30
PM
43552010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
4356
4357 * p-valprint.c (pascal_val_print): Handle set type if range limits
4358 are undefined but size is known.
4359
77382aee
PA
43602010-05-17 Pedro Alves <pedro@codesourcery.com>
4361
4362 * procfs.c: Reformat.
4363
433759f7
MS
43642010-05-16 Michael Snyder <msnyder@vmware.com>
4365
5d502164
MS
4366 * target.c: White space.
4367 * target-descriptions.c: White space.
4368 * target-memory.c: White space.
4369 * thread.c: White space.
4370 * top.c: White space.
4371 * tracepoint.c: White space.
4372 * trad-frame.c: White space.
4373 * tramp-frame.c: White space.
4374 * ui-file.c: White space.
4375 * ui-out.c: White space.
4376 * user-regs.c: White space.
4377 * utils.c: White space.
4378
433759f7
MS
4379 * scm-exp.c: White space.
4380 * scm-lang.c: White space.
4381 * scm-valprint.c: White space.
4382 * sentinel-frame.c: White space.
4383 * ser-base.c: White space.
4384 * ser-go32.c: White space.
4385 * serial.c: White space.
4386 * ser-mingw.c: White space.
4387 * ser-pipe.c: White space.
4388 * ser-tcp.c: White space.
4389 * ser-unix.c: White space.
4390 * solib.c: White space.
4391 * solib-darwin.c: White space.
4392 * solib-frv.c: White space.
4393 * solib-irix.c: White space.
4394 * solib-osf.c: White space.
4395 * solib-pa64.c: White space.
4396 * solib-som.c: White space.
4397 * solib-spu.c: White space.
4398 * solib-svr4.c: White space.
4399 * solib-target.c: White space.
4400 * source.c: White space.
4401 * stabsread.c: White space.
4402 * stack.c: White space.
4403 * std-regs.c: White space.
4404 * symfile.c: White space.
4405 * symmisc.c: White space.
4406 * symtab.c: White space.
4407
dd304d53
MS
44082010-05-16 Michael Snyder <msnyder@vmware.com>
4409
4410 * source.c (_initialize_source): Add "rev" as an abbreviation
4411 for the "reverse-search" command.
4412
a744cf53
MS
44132010-05-16 Michael Snyder <msnyder@vmware.com>
4414
123f5f96
MS
4415 * record.c: White space.
4416 * regcache.c: White space.
4417 * reggroups.c: White space.
4418 * remote-fileio.c: White space.
4419 * remote-m32r-sdi.c: White space.
4420 * remote-mips.c: White space.
4421 * remote-sim.c: White space.
a744cf53
MS
4422 * remote.c: White space.
4423 (process_g_packet): Remove orphan braces.
4424
b8d56208
MS
44252010-05-15 Michael Snyder <msnyder@vmware.com>
4426
ad3bbd48
MS
4427 * parse.c: White space.
4428 * p-lang.c: White space.
4429 * posix-hdep.c: White space.
4430 * printcmd.c: White space.
4431 * progspace.c: White space.
4432 * prologue-value.c: White space.
4433 * psymtab.c: White space.
4434 * p-typeprint.c: White space.
4435 * p-valprint.c: White space.
4436
5cc80db3
MS
4437 * objc-lang.c: White space.
4438 * objfiles.c: White space.
4439 * observer.c: White space.
4440 * osabi.c: White space.
4441 * osdata.c: White space.
4442
b8d56208
MS
4443 * m2-lang.c: White space.
4444 * m2-valprint.c: White space.
4445 * macrocmd.c: White space.
4446 * macroexp.c: White space.
4447 * macroscope.c: White space.
4448 * macrotab.c: White space.
4449 * main.c: White space.
4450 * maint.c: White space.
4451 * mdebugread.c: White space.
4452 * memattr.c: White space.
4453 * minsyms.c: White space.
4454 * monitor.c: White space.
4455
9a619af0
MS
44562010-05-14 Michael Snyder <msnyder@vmware.com>
4457
e0881a8e
MS
4458 * jv-lang.c: White space.
4459 * jv-typeprint.c: White space.
4460 * jv-valprint.c: White space.
4461 * language.c: White space.
4462 * libunwind-frame.c: White space.
4463 * linespec.c: White space.
4464 * linux-nat.c: White space.
4465 * linux-record.c: White space.
4466 * linux-thread-db.c: White space.
4467
abbb1732
MS
4468 * infcall.c: White space.
4469 * inf-child.c: White space.
4470 * infcmd.c: White space.
4471 * inferior.c: White space.
4472 * inf-loop.c: White space.
4473 * inflow.c: White space.
4474 * inline-frame.c: White space.
4475 * interps.c: White space.
4476
d8734c88
MS
4477 * gcore.c: White space.
4478 * gdb.c: White space.
4479 * gdbtypes.c: White space.
4480 * gnu-nat.c: White space.
4481 * gnu-v2-abi.c: White space.
4482 * gnu-v3-abi.c: White space.
4483
bb9bcb69
MS
4484 * findcmd.c: White space.
4485 * findvar.c: White space.
4486 * fork-child.c: White space.
4487 * frame-base.c: White space.
4488 * frame.c: White space.
4489 * frame-unwind.c: White space.
4490 * f-valprint.c: White space.
4491
d7f9d729
MS
4492 * elfread.c: White space.
4493 * environ.c: White space.
4494 * eval.c: White space.
4495 * event-loop.c: White space.
4496 * event-top.c: White space.
4497 * exceptions.c: White space.
4498 * exec.c: White space.
4499 * expprint.c: White space.
4500
9a619af0
MS
4501 * dbxread.c: White space.
4502 * dcache.c: White space.
4503 * disasm.c: White space.
4504 * doublest.c: White space.
4505 * dsrec.c: White space.
4506 * dummy-frame.c: White space.
4507 * dwarf2expr.c: White space.
4508 * dwarf2-frame.c: White space.
4509 * dwarf2loc.c: White space.
4510 * dwarf2read.c: White space.
4511
88d4aea7
PM
45122010-05-14 Phil Muldoon <pmuldoon@redhat.com>
4513
889bf7c5 4514 PR python/11482
88d4aea7
PM
4515
4516 * python/py-value.c (valpy_hash): New function.
4517 (value_object_type): Register valpy_hash.
4518
7a298875 45192010-05-14 Hui Zhu <teawater@gmail.com>
0407b3f1 4520 Michael Snyder <msnyder@vmware.com>
7a298875
HZ
4521
4522 * linux-fork.c (gdbthread.h): New include.
4523 (fork_info): Add parent_ptid.
4524 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
4525 functions.
4526 (delete_checkpoint_command): Call inferior_call_waitpid.
4527 (checkpoint_command): Set parent_ptid.
4528
c14feecc
MS
45292010-05-13 Michael Snyder <msnyder@vmware.com>
4530
6595d32b
MS
4531 * dictionary.c: Re-indent to GNU coding standard.
4532
c5504eaf
MS
4533 * charset.c: White space.
4534 * c-lang.c: White space.
4535 * cli-out.c: White space.
4536 * coffread.c: White space.
4537 * complaints.c: White space.
4538 * completer.c: White space.
4539 * corefile.c: White space.
4540 * corelow.c: White space.
4541 * cp-abi.c: White space.
4542 * cp-namespace.c: White space.
4543 * cp-support.c: White space.
4544 * cp-valprint.c: White space.
4545 * c-typeprint.c: White space.
4546 * c-valprint.c: White space.
cc59ec59
MS
4547 * blockframe.c: White space.
4548 * breakpoint.c: White space.
4549 * buildsym.c: White space.
4550 * blockframe.c: White space.
b6de9da4 4551 * bcache.c: White space.
05c547f6
MS
4552 * gdbarch.sh: White space, add blank lines.
4553 * arch-utils.c: Ditto.
4554 * gdbarch.c: Regenerate.
1c4d3f96 4555 * frame.c: White space, add blank lines.
f89b749f
MS
4556 * stack.c: White space, add blank lines.
4557 (initialize_stack): Remove long-dead code.
c14feecc 4558
a2d33775
JK
45592010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4560
4561 Code cleanup.
4562 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
4563 (locexpr_read_variable, loclist_read_variable): Update the callers.
4564
33ac96f0
JK
45652010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4566
4567 Code cleanup.
4568 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
4569 Remove check of NULL returned by tag_type_to_type.
4570 (die_containing_type): Remove variable type. Remove type_die variable
4571 initialization. Remove check of NULL returned by tag_type_to_type.
4572
f5a010c0
PM
45732010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
4574
4575 PR exp/11530.
4576 * gdbtypes.c (lookup_struct_elt_type): Also lookup
4577 names of unnamed structures or unions.
4578
bf701c2c
PM
45792010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
4580
4581 * procfs.c (proc_watchpoint_address): New function.
0407b3f1 4582 (procfs_stopped_by_watchpoint): Remove useless check after
bf701c2c
PM
4583 find_procinfo_or_die call.
4584 (procfs_stopped_data_address): New function.
4585 (procfs_use_watchpoints): Register new watchpoint related function.
4586
d02691ef
TT
45872010-05-11 Tom Tromey <tromey@redhat.com>
4588
4589 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
4590
e0627e85
MS
45912010-05-10 Michael Snyder <msnyder@vmware.com>
4592
4593 * utils.c: White space cleanup.
4594
cc73bb8c
TT
45952010-05-10 Tom Tromey <tromey@redhat.com>
4596
4597 * eval.c (ptrmath_type_p): Add 'lang' argument.
4598 (evaluate_subexp_standard): Update.
4599 (evaluate_subexp_with_coercion): Update.
4600 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
4601
c02866a0
MS
46022010-05-10 Michael Snyder <msnyder@vmware.com>
4603
4604 * utils.c (do_fclose_cleanup) Restore local variable.
4605
06280d23
DE
46062010-05-09 Doug Evans <dje@google.com>
4607
4608 * record.c (init_record_core_ops): Rename record_core to record-core.
4609
fa07e785
JB
46102010-05-08 Joel Brobecker <brobecker@adacore.com>
4611
4612 Implement task switching on pa-hpux.
4613 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
4614 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
4615
4c680d1d
PM
46162010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
4617
4618 * valops.c (find_overload_match): Add missing i18n markup.
4619
28e176a6
PM
46202010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
4621
4622 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
4623
48cb83fd
JK
46242010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4625
4626 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
4627 list for the obconcat call.
4628 * mdebugread.c (parse_symbol): Likewise.
4629 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
4630 Likewise.
4631 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
4632 New variable ap. Remove variables len and val.
4633 * symfile.h (obconcat): Likewise for the prototype.
4634
f92adf3c
MS
46352010-05-07 Michael Snyder <msnyder@vmware.com>
4636
4637 * python/python.c (execute_gdb_command): Remove unused variables.
4638 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
0407b3f1 4639 * python/py-breakpoint.c (gdbpy_breakpoint_created):
f92adf3c
MS
4640 Remove unused variable.
4641 * python/py-cmd.c (cmdpy_function): Remove unused variable.
4642 (cmdpy_completer): Remove unused variable.
4643 * python/py-frame.c (frapy_find_sal): Remove unused variable.
4644 * python/py-function.c (fnpy_call): Remove unused variable.
4645 * python/py-objfile.c (objfile_to_objfile_object):
4646 Remove unused variable.
4647 * python/py-param.c (parmpy_init): Remove unused variable.
0407b3f1 4648 * python/py-prettyprint.c (apply_varobj_pretty_printer):
f92adf3c
MS
4649 Remove unused variable.
4650 (gdbpy_default_visualizer): Remove unused variable.
4651 * python/py-progspace.c (pspace_to_pspace_object):
4652 Remove unused variable.
0407b3f1 4653 * python/py-symtab.c (symtab_and_line_to_sal_object):
f92adf3c 4654 Remove unused variable.
0407b3f1 4655 * python/py-type.c (typy_template_argument):
f92adf3c
MS
4656 Remove unused variable.
4657 * python/py-value.c (valpy_string): Remove unused variable.
4658 (convert_value_from_python): Remove unused variables.
4659
d160942f
MS
46602010-05-07 Michael Snyder <msnyder@vmware.com>
4661
4662 * valops.c (value_cast_pointers): Restore unused variable 'type1',
4663 and use it to compute variable 't1'.
4664
587542ab
JB
46652010-05-07 Joel Brobecker <brobecker@adacore.com>
4666
4667 * ada-lang.c (assign_aggregate): Remove unused variable.
4668
7322dca9
SW
46692010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
4670
4671 PR C++/7943:
4672 * valops.c (find_overload_match): Handle fsym == NULL case.
4673 Add int no_adl argument.
4674 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
4675 when appropriate.
4676 Add int no_adl argument.
4677 (find_oload_champ_namespace): Add int no_adl argument.
4678 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
4679 expression.
4680 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
4681 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
4682 Evaluate arguments and use them to perform ADL lookup.
4683 Pass no_adl argument to find_overload_match.
4684 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
4685 * cp-support.h: Added prototype for
4686 make_symbol_overload_list_namespace.
4687 * cp-support.c (make_symbol_overload_list_namespace): New function.
4688 (make_symbol_overload_list_adl_namespace): New function.
4689 (make_symbol_overload_list_adl): New function.
4690 (make_symbol_overload_list_using): Moved code to add function to
4691 overload set to make_symbol_overload_list_namespace.
4692 * c-exp.y: create UNKNOWN_CPP_NAME token.
4693 Add parse rule for ADL functions.
4694 (classify_name): Recognize an UNKNOWN_CPP_NAME.
4695
3f1f6884
JK
46962010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4697
4698 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
4699 sentinel.
4700
3caf13b4
JB
47012010-05-07 Joel Brobecker <brobecker@adacore.com>
4702
4703 Implement task switching on solaris targets.
4704 * sol-thread.c (thread_db_find_thread_from_tid)
4705 (sol_get_ada_task_ptid): New functions.
4706 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
4707
94b0dee1
PA
47082010-05-07 Pedro Alves <pedro@codesourcery.com>
4709
4710 * remote.c (remote_query_supported_append): Use reconcat.
4711 (remote_query_supported): Install a cleanup. Use reconcat.
4712
1408c251
PA
47132010-05-07 Pedro Alves <pedro@codesourcery.com>
4714
4715 * gdbarch.sh (qsupported): Delete.
4716 * gdbarch.h, gdbarch.c: Regenerate.
4717 * remote.c (remote_query_supported): Remove use of
4718 gdbarch_qsupported.
4719
f8e50cfe
SDJ
47202010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
4721
4722 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
4723 function.
4724
8ea13695
MS
47252010-05-06 Michael Snyder <msnyder@vmware.com>
4726
c6913b7d
MS
4727 * xml-support.c (xinclude_start_include): Delete unused variable.
4728 (xml_process_xincludes): Delete unused variable.
4729 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
4730 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
4731 (tdesc_find_arch_register): Delete unused variable.
4732 (tdesc_use_registers): Delete unused variable.
4733 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
4734 * inferior.c (print_inferior): Delete unused variable.
4735 * record.c (record_open_1): Delete unused variable.
4736 (record_restore): Delete unused variable.
4737 (cmd_record_save): Delete unused variable.
4738 * gcore.c (derive_heap_segment): Delete unused variable.
4739 (objfile_find_memory_regions): Use unused variable.
4740 * jit.c (jit_inferior_init): Delete unused variable.
4741 * progspace.c (clone_program_space): Delete unused variable.
4742 (pspace_empty_p): Delete unused variable.
0407b3f1
AS
4743
4744 * frame-unwind.c (frame_unwind_find_by_frame):
1c5465ac
MS
4745 Delete unused variable.
4746 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
4747 * cp-support.c (mangled_name_to_comp): Delete unused variable.
4748 (method_name_from_physname): Delete unused variable.
4749 (cp_func_name): Delete unused variable.
4750 (cp_validate_operator): Delete unused variable.
0407b3f1 4751 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
1c5465ac 4752 Delete unused variable.
0407b3f1 4753 * trad-frame.c (trad_frame_get_prev_register):
1c5465ac
MS
4754 Delete unused variable.
4755 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
4756
1be757cf
MS
4757 * serial.c (serial_for_fd): Delete unused variable.
4758 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
4759 * top.c (execute_command): Delete unused variable.
4760 (init_main): Delete unused variable.
4761 * utils.c (do_fclose_cleanup): Delete unused variable.
4762 (do_all_inferior_continuations): Delete unused variable.
4763 (initialize_utils): Delete unused variable.
4764 (internal_problem_mode): Delete unused global.
4765 * frame.c (get_prev_frame): Delete unused global.
4766 (get_frame_locals_address): Delete unused global.
4767 (get_frame_args_address): Delete unused global.
4768
9216103f
MS
4769 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
4770 (pascal_type_print_varspec_prefix): Delete unused variable.
4771 * f-typeprint.c (f_type_print_base): Delete unused variable.
4772 (f_type_print_varspec_suffix): Delete unused variable.
4773 * m2-typeprint.c (m2_print_type): Delete unused variable.
4774 (m2_long_set): Delete unused variable.
4775 * ada-valprint.c (ada_val_print_1): Delete unused variable.
4776 * d-valprint.c (dynamic_array_type): Delete unused variable.
0407b3f1 4777 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
9216103f
MS
4778 Delete unused variable.
4779 (f77_create_arrayprint_offset_tbl): Delete unused variable.
4780 * m2-valprint.c (m2_val_print): Delete unused variable.
4781
34fa1d9d
MS
4782 * ui-out.c (ui_out_field_int): Delete unused variable.
4783 (ui_out_field_fmt_int): Delete unused variable.
4784 * varobj.c (varobj_list_children): Delete unused variable.
4785 (varobj_set_value): Delete unused variable.
4786 (install_new_value_visualizer): Delete unused variable.
4787 (varobj_set_visualizer): Delete unused variable.
4788 (varobj_update): Delete unused variable.
4789 (varobj_editable_p): Delete unused variable.
4790 (c_value_of_root): Delete unused variable.
4791 (cplus_describe_child): Delete unused variable.
4792
b5385fc0
MS
4793 * ada-lang.c (add_defn_to_vec): Delete unused variable.
4794 (decode_constrained_packed_array_type): Delete unused variable.
4795 (add_defn_to_vec): Delete unused variable.
4796 (symbol_completion_match): Delete unused variable.
4797 (value_tag_from_contents_and_address): Delete unused variable.
4798 (ada_evaluate_subexp): Delete unused variable.
4799 * c-lang.c (classify_type): Delete unused variable.
4800 * f-lang.c (f_printstr): Delete unused variable.
4801 * objc-lang.c (objc_printstr): Delete unused variable.
4802 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
4803 * jv-lang.c (type_from_class): ifdef unused variable.
4804 (java_class_name_from_physname): Delete unused variable.
4805 * m2-lang.c (m2_printstr): Delete unused variable.
4806
4fc06681
MS
4807 * objfiles.c (objfile_relocate): Delete unused variable.
4808 * maint.c (_initialize_maint_cmds): Delete unused variable.
4809 * demangle.c (_initialize_demangler): Delete unused variable.
4810 * corefile.c (reopen_exec_file): Delete unused variable.
4811 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
4812 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
4813
6b4398f7
MS
4814 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
4815 * memattr.c (mem_delete): Delete unused variable.
4816 (invalidate_target_mem_regions): Delete unused variable.
4817 * mem-break.c (default_memory_insert_breakpoint):
4818 Delete unused variable.
4819 * target.c (target_get_osdata): Delete unused variable.
4820 * parse.c (length_of_subexp): Delete unused variable.
4821 (prefixify_subexp): Delete unused variable.
4822 (exp_iterate): Delete unused variable.
4823 * reverse.c (delete_bookmark_command): Delete unused variable.
4824
308d96ed
MS
4825 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
4826 * macroexp.c (gather_arguments): Delete unused variable.
4827 (substitute_args): Delete unused variable.
4828 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
4829 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
4830 (_initialize_gdbarch): Delete unused variable.
4831 * gdbarch.c, gdbarch.h: Regenerate.
0407b3f1 4832 * arch-utils.c (initialize_current_architecture):
308d96ed
MS
4833 Delete unused variable.
4834 (_initialize_gdbarch_utils): Delete unused variable.
4835 * gdbtypes.c (make_cv_type): Delete unused variable.
4836 (make_type_with_address_space): Delete unused variable.
4837
167e4384
MS
4838 * linespec.c (decode_compound): Delete unused variable.
4839 * dictionary.c (iterator_next_hashed): Delete unused variable.
4840 * infcall.c (call_function_by_hand): Delete unused variable.
4841 * infcmd.c (step_1): Delete unused variable.
4842 (registers_info): Delete unused variable.
4843 (attach_command): Delete unused variable.
4844 * infrun.c (follow_exec): Delete unused variable.
4845 (handle_step_into_function_backwards): Delete unused variable.
4846 (_initialize_infrun): Delete unused variable.
4847 * stack.c (parse_frame_specification_1): Delete unused variable.
4848 (frame_info): Delete unused variable.
4849 (backtrace_command_1): Delete unused variable.
4850 (catch_info): Delete unused variable.
4851
8f78b329
MS
4852 * eval.c (evaluate_subexp_standard): Delete unused variable.
4853 * valops.c (value_cast_pointers): Delete unused variable.
4854 (value_dynamic_cast): Delete unused variable.
4855 (value_array): Delete unused variable.
4856 (find_overload_match): Delete unused variable.
4857 * valarith.c (value_subscript): Delete unused variable.
4858 (value_binop): Delete unused variable.
4859 * valprint.c (_initialize_valprint): Delete unused variable.
4860 * printcmd.c (print_command_1): Delete unused variable.
4861 (address_info): Delete unused variable.
4862 (printf_command): Delete unused variable.
4863
8ea13695
MS
4864 * auxv.c (target_auxv_search): Delete unused variable.
4865 * blockframe.c (get_frame_block): Delete unused variable.
4866 * regcache.c (regcache_cpy): Delete unused variable.
4867 (regcache_cpy_no_passthrough): Delete unused variable.
4868 * charset.c (wchar_iterate): Delete unused variable.
4869 (find_charset_names): Delete unused variable.
4870 (_initialize_charset): Delete unused variable.
0407b3f1 4871 * disasm.c (do_mixed_source_and_assembly):
8ea13695 4872 Delete unused variable.
0407b3f1 4873 * source.c (set_default_source_symtab_and_line):
8ea13695
MS
4874 Delete unused variable.
4875 (set_substitute_path_command): Delete unused variable.
4876 * value.c (preserve_values): Delete unused variable.
4877 (value_from_double): Delete unused variable.
4878
afe38095
MS
48792010-05-05 Michael Snyder <msnyder@vmware.com>
4880
952a6d41
MS
4881 * psymtab.c (lookup_partial_symbol): Delete unused variable.
4882 (find_last_source_symtab_from_partial): Delete unused variable.
4883 * symfile.c (place_section): Delete unused variable.
4884 (default_symfile_offsets): Delete unused variable.
4885 (get_debug_link_info): Delete unused variable.
4886 (find_separate_debug_file_by_debuglink): Delete unused variable.
4887 (add_symbol_file_command): Delete unused variable.
4888 (symfile_find_segment_sections): Delete unused variable.
4889 * symmisc.c (free_symtab): Delete unused variable.
4890 (dump_symtab_1): Delete unused variable.
4891 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
4892 (find_pc_sect_symtab): Delete unused variable.
4893 (skip_prologue_using_lineinfo): Delete unused variable.
4894 (sources_info): Delete unused variable.
4895 (completion_list_add_name): Delete unused variable.
4896 (expand_line_sal): Delete unused variable.
4897
0407b3f1 4898 * breakpoint.c (validate_commands_for_breakpoint):
afe38095
MS
4899 Delete unused variables.
4900 (insert_catchpoint): Delete unused variable.
4901 (update_watchpoint): Delete unused variable.
4902 (insert_bp_location): Delete unused variable.
4903 (insert_breakpoint_locations): Delete unused variable.
4904 (remove_breakpoint_1): Delete unused variable.
4905 (software_breakpoint_inserted_here_p): Delete unused variable.
4906 (watchpoints_triggered): Delete unused variable.
4907 (bpstat_check_watchpoint): Delete unused variable.
4908 (bpstat_stop_status): Delete unused variable.
4909 (print_one_breakpoint_location): Delete unused variable.
4910 (allocate_bp_location): Delete unused variable.
4911 (create_breakpoint): Delete unused variable.
4912 (watch_command_1): Delete unused variable.
4913 (catch_exception_command_1): Delete unused variable.
4914 (catch_ada_exception_command): Delete unused variable.
4915 (delete_breakpoint): Delete unused variable.
4916 (breakpoint_re_set_one): Delete unused variable.
4917 (do_enable_breakpoint): Delete unused variable.
4918
eda5a4d7
PA
49192010-05-06 Pedro Alves <pedro@codesourcery.com>
4920
4921 * amd64-tdep.c: Include disasm.h.
4922 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
4923 (amd64_insn_length): Moved to disasm.c and renamed.
4924 (fixup_riprel): Adjust.
4925 * disasm.c (do_ui_file_delete): New.
4926 (gdb_insn_length): New.
4927 (gdb_buffered_insn_length_fprintf)
4928 (gdb_buffered_insn_length_init_dis)
4929 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
4930 renamed.
4931 * disasm.h (gdb_insn_length): Declare.
4932 (gdb_buffered_insn_length): Declare.
4933
02357a4a
PA
49342010-05-06 Pedro Alves <pedro@codesourcery.com>
4935
4936 * remote.c (clear_threads_parsing_context): New.
4937 (remote_threads_info): Delete unused null_cleanup. Install a
4938 cleanup to clear the threads_parsing_context in case parsing
4939 throws.
4940
8c5630cb
MS
49412010-05-05 Michael Snyder <msnyder@vmware.com>
4942
4943 * c-exp.y (parse_string_or_char): Delete unused variable.
4944 (c_lex): Delete unused variable.
4945 * cp-name-parser.y (cpname_lex): Delete unused variable.
4946 * ada-exp.y (find_primitive_type): Delete unused variable.
4947 (write_var_or_type): Delete unused variable.
4948 * jv-exp.y (java_parse): Delete unused variable.
4949 (push_expression_name): Delete unused variable.
4950 * p-exp.y (pascal_lex): Delete unused variable.
4951
46c162d4
PA
49522010-05-05 Pedro Alves <pedro@codesourcery.com>
4953
4954 * remote.c (remote_threads_info): Really revert previous previous
4955 change.
4956
0043e6a5
MS
49572010-05-05 Michael Snyder <msnyder@vmware.com>
4958
fa238c03
MS
4959 * elfread.c (elf_symtab_read): Delete unused variable.
4960 (find_separate_debug_file_by_buildid): Delete unused variables.
4961 (elf_symfile_read): Delete unused variable.
4962
4963 * coffread.c (coff_symfile_read): Delete unused variables.
4964
4965 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
4966 (read_pe_exported_syms): Delete unused variable.
4967
4968 * stabsread.c (define_symbol): Delete unused variable.
4969
4970 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
4971 (process_psymtab_comp_unit): Delete unused variable.
4972 (dwarf2_build_psymtabs_hard): Delete unused variable.
4973 (load_partial_comp_unit): Delete unused variable.
4974 (create_all_comp_units): Delete unused variable.
4975 (scan_partial_symbols): Delete unused variable.
4976 (add_partial_symbol): Delete unused variable.
4977 (add_partial_namespace): Delete unused variable.
4978 (add_partial_enumeration): Delete unused variable.
4979 (load_full_comp_unit): Delete unused variable.
4980 (process_full_comp_unit): Delete unused variable.
4981 (read_file_scope): Delete unused variable.
4982 (read_type_unit_scope): Delete unused variable.
4983 (process_structure_scope): Delete unused variable.
4984 (process_enumeration_scope): Delete unused variable.
4985 (read_tag_ptr_to_member_type): Delete unused variable.
4986 (read_typedef): Delete unused variable.
4987 (read_partial_die): Delete unused variable.
4988 (decode_locdesc): Delete unused variable.
4989 (zeroed_partial_die): Delete unused global variable.
4990
0407b3f1 4991 * tui/tui-interp.c (_initialize_tui_interp):
0043e6a5 4992 Delete unused variable.
0407b3f1 4993 * tui/tui-regs.c tui_display_registers_from):
0043e6a5
MS
4994 Delete unused variable.
4995 (tui_check_register_values): Delete unused variable.
4996 (tui_register_format): Delete unused variable.
4997 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
0407b3f1 4998 * tui/tui-windata.c (tui_display_data_from_line):
0043e6a5
MS
4999 Delete unused variables.
5000 (tui_vertical_data_scroll): Delete unused variables.
5001
75721c66
MS
50022010-05-05 Michael Snyder <msnyder@vmware.com>
5003
c31a71f4
MS
5004 * remote.c (remote_threads_info): Revert questionable part of
5005 the previous change.
5006
50072010-05-05 Michael Snyder <msnyder@vmware.com>
5008
5009 * mi/mi-out.c (mi_table_begin): Delete unused variable.
5010 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
5011 (mi_cmd_var_list_children): Delete unused variable.
5012 (varobj_update_one): Delete unused variable.
5013 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
0407b3f1 5014 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
c31a71f4
MS
5015 Delete unused variable.
5016 (mi_cmd_stack_list_variables): Delete unused variable.
5017 (list_args_or_locals): Delete unused variable.
0407b3f1 5018 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
c31a71f4
MS
5019 Delete unused variables.
5020 (mi_cmd_file_list_exec_source_files): Delete unused variable.
0407b3f1 5021 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
c31a71f4
MS
5022 Delete unused variable.
5023 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
5024 (mi_cmd_interpreter_exec): Delete unused variable.
5025 (mi_on_normal_stop): Delete unused variable.
5026 * mi/mi-main.c (run_one_inferior): Delete unused variable.
5027 (print_one_inferior): Delete unused variables.
5028 (mi_execute_command): Delete unused variable.
5029 (mi_cmd_execute): Delete unused variable.
5030 (timestamp): Delete unused variable.
5031
5032 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
d36fc00b 5033 (restore_binary_file): Delete unused variable.
c31a71f4
MS
5034 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
5035 * cli/cli-script.c (define_command): Delete unused variables.
d36fc00b
MS
5036 (recurse_read_control_structure): Delete unused variable.
5037 (script_from_file): Delete unused variable.
c31a71f4 5038 * cli/cli-cmds.c (complete_command): Delete unused variable.
d36fc00b
MS
5039 (disassemble_command): Delete unused variable.
5040
5041 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
0407b3f1 5042 * tracepoint.c (delete_trace_variable_command):
d36fc00b
MS
5043 Delete unused variables.
5044 (encode_actions_1): Delete unused variables.
5045 (start_tracing): Delete unused variable.
5046 (trace_status_mi): Delete unused variable.
5047 (tfind_1): Delete unused variable.
5048 (trace_find_pc_command): Delete unused variable.
5049 (trace_find_line_command): Delete unused variables.
5050 (trace_find_range_command): Delete unused variables.
5051 (trace_find_outside_command): Delete unused variables.
5052 (parse_tracepoint_definition): Delete unused variables.
5053 (tfile_fetch_registers): Delete unused variable.
5054
9128a503
MS
5055 * dcache.c (dcache_init): Delete unused variable.
5056 (dcache_info): Delete unused variable.
5057
aa369b55 5058 * remote.c (remote_threads_info): Delete unused variable.
9128a503 5059 (process_stop_reply) :Delete unused variable.
aa369b55
MS
5060 (remote_get_trace_status): Delete unused variables.
5061
9e9547e4
MS
5062 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
5063 (thread_from_lwp): Delete unused variable.
5064 (enable_thread_event_reporting): Delete unused variable.
5065 (check_for_thread_db): Delete unused variables.
5066 (thread_db_find_new_threads_2): Delete unused variable.
0407b3f1 5067
9e9547e4
MS
5068 * linux-fork.c (info_checkpoints_command): Delete unused variables.
5069 (checkpoint_command): Delete unused variable.
5070 (linux_fork_context): Delete unused variables.
5071
fa238c03 5072 * linux-nat.c (linux_parent_pid): Delete unused global variable.
75083f7e
MS
5073 (linux_tracefork_child): Delete unused variable.
5074 (linux_child_follow_fork): Delete unused variable.
5075 (linux_nat_detach): Delete unused variable.
5076 (linux_handle_extended_wait): Delete unused variable.
5077 (linux_nat_has_pending_sigint): Delete unused variable.
5078 (linux_nat_find_memory_regions): Delete unused variable.
5079 (linux_nat_make_corefile_notes): Delete unused variables.
5080 (linux_nat_info_proc_cmd): Delete unused variable.
5081 (linux_proc_pending_signals): Delete unused variable.
5082 (linux_nat_stop_lwp): Delete unused variables.
5083 (_initialize_linux_nat): Delete unused variable.
5084
fa238c03 5085 * ser-pipe.c (pipe_ops): Delete unused global variable.
2d148b94 5086
0407b3f1 5087 * linux-record.c (record_linux_system_call):
e0f069a3
MS
5088 Delete unused variables.
5089
789d24f0
MS
5090 * corelow.c (core_xfer_partial): Delete unused variables.
5091
1cd337a5 5092 * solib-svr4.c (find_program_interpreter): Delete unused variable.
0407b3f1 5093 (svr4_solib_create_inferior_hook): Add ifdef around
1cd337a5
MS
5094 conditionally-used variable declarations.
5095
b00e3f56
MS
5096 * solib.c (solib_find): Delete unused variable.
5097 (free_so_symbols): Delete unused variable.
5098 (info_sharedlibrary_command): Delete unused variable.
5099 (reload_shared_libraries_1): Delete unused variable.
5100 (_initialize_solib): Delete unused variable.
5101
90f62196
MS
5102 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
5103 (i386_collect_xstateregset): Delete unused variable.
5104 * i387-tdep.c (i387_print_float_info): Delete unused variable.
5105
75721c66
MS
5106 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
5107 Delete unused variable 'type'.
5108
af33db37
JB
51092010-05-05 Joel Brobecker <brobecker@adacore.com>
5110
90f62196 5111 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
63db82b2
JB
5112 ada-lang.c: Remove comment mentioning these macros.
5113 * m2-exp.y: Delete commented out code.
af33db37 5114
0497f5b0
JB
51152010-05-05 Joel Brobecker <brobecker@adacore.com>
5116
5117 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
5118 for array types.
5119 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
5120
6e39997a
PM
51212010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
5122
5123 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
0407b3f1 5124 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
6e39997a
PM
5125 ATTRIBUTE_UNUSED.
5126 (cleanup_kernel_helper_return): Likewise.
5127 * arm-tdep.c (copy_unmodified): Likewise.
5128 (copy_preload): Likewise.
5129 (copy_copro_load_store): Likewise.
5130 (cleanup_branch): Likewise.
5131 (copy_b_bl_blx): Likewise.
5132 (copy_bx_blx_reg): Likewise.
5133 (copy_alu_imm): Likewise.
5134 (copy_alu_reg): Likewise.
5135 (copy_alu_shifted_reg): Likewise.
5136 (cleanup_load): Likewise.
5137 (cleanup_store): Likewise.
5138 (cleanup_block_load_pc): Likewise.
5139 (cleanup_svc): Likewise.
5140 (copy_undef): Likewise.
5141 (copy_unpred): Likewise.
5142 * remote.c (register_remote_support_xml): Likewise.
5143
1412f70b
HZ
51442010-05-05 Hui Zhu <teawater@gmail.com>
5145
5146 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
5147
c4f7c687
MK
51482010-05-04 Mark Kettenis <kettenis@gnu.org>
5149
5150 * remote.c (register_remote_support_xml)
5151 (remote_query_supported_append, remote_query_supported): Add cast
5152 to NULL used as sentinel.
5153 * tracepoint.c (tvariables_info_1): Likewise.
5154 * utils.c (add_internal_problem_command): Likewise.
5155
63b4f126
MGD
51562010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5157
5158 * dwarf2loc.c (read_pieced_value, write_pieced_value,
5159 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
5160 registers gracefully.
5161
2f1bdd26
MGD
51622010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5163
0407b3f1 5164 * exec.c (print_section_info): Display entry point without arch
2f1bdd26
MGD
5165 specific parts.
5166
e1c34c5d
PM
51672010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
5168
5169 PR exp/11349.
5170 * printcmd.c (x_command): Only dereference once implicitly for
5171 TYPE_CODE_REF.
5172
ae462839
DE
51732010-05-03 Doug Evans <dje@google.com>
5174
5175 * event-loop.c (gdb_timer): Delete unused global.
5176 (create_timer): Update.
5177
1ac77ea1
JK
51782010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5179
5180 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
5181 CURRENT->DECLARATION case.
5182 * cp-support.h (struct using_direct): Provide extended comment.
5183
7c54a108
MK
51842010-05-03 Mark Kettenis <kettenis@gnu.org>
5185
5186 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
5187 HPPABSD_SIZEOF_GREGS.
5188 (HPPAOBSD_SIZEOF_FPREGS): New define.
5189 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
5190 (hppaobsd_supply_fpregset): New function.
5191 (hppaobsd_gregset): Renamed from hppabsd_gregset.
5192 (hppaobsd_fpregset): New variable.
5193 (hppaobsd_regset_from_core_section): Handle floating-point registers.
5194 (_initialize_hppabsd_tdep): Remove spurious blank line.
5195
278582cb
PM
51962010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
5197
5198 PR pascal/11349.
5199 * p-valprint.c (pascal_value_print): Always dereference a value with
5200 type code TYPE_CODE_REF.
0407b3f1 5201
f0223081
PA
52022010-05-03 Pedro Alves <pedro@codesourcery.com>
5203
5204 * remote.c (remote_notice_signals): New.
5205 (remote_start_remote): In non-stop mode, update the remote end on
5206 which signals it can silently pass.
5207 (init_remote_ops): Install remote_notice_signals.
5208
c25c4a8b
JK
52092010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5210
5211 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
5212 * command.h (error_no_arg): ... here. Remove NORETURN, change
5213 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5214 * defs.h (NORETURN, ATTR_NORETURN): Remove.
5215 (perror_with_name, verror, error, error_stream, vfatal, fatal)
5216 (internal_verror, internal_error, nomem): Remove NORETURN, change
5217 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5218 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
5219 (throw_vfatal, throw_error): Remove NORETURN.
5220 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
5221 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
5222 (throw_error, deprecated_throw_reason): Remove NORETURN, change
5223 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5224 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
5225 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
5226 NORETURN.
5227 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
5228 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
5229 ATTRIBUTE_NORETURN.
5230 * target.c (tcomplain): Likewise.
5231 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
5232 ATTRIBUTE_NORETURN.
5233 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
5234 (internal_error, perror_with_name, nomem): Remove NORETURN.
5235 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
5236 ATTRIBUTE_NORETURN.
5237
a0b31db1
JK
52382010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5239
5240 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5241 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
5242 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
5243 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5244 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
5245 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5246 * complaints.h (complaint, internal_complaint): Likewise.
5247 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
5248 (ATTR_FORMAT): Remove.
5249 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
5250 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
5251 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
5252 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
5253 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
5254 (internal_error, internal_vwarning, internal_warning, warning)
5255 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5256 * disasm.c (fprintf_disasm): Likewise.
5257 * exceptions.c (throw_it): Likewise.
5258 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
5259 (throw_error): Likewise.
5260 * language.h (type_error, range_error): Likewise.
5261 * linespec.c (cplusplus_error): Likewise.
5262 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
5263 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
5264 * monitor.c (monitor_debug): Likewise.
5265 * parser-defs.h (parser_fprintf): Likewise.
5266 * serial.h (serial_printf): Likewise.
5267 * tui/tui-hooks.c (tui_query_hook): Likewise.
5268 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
5269 (uo_message): Likewise.
5270 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
5271 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
5272 Likewise.
5273 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
5274
02a45ac0
PA
52752010-05-02 Pedro Alves <pedro@codesourcery.com>
5276
5277 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
5278 (cli_table_header, cli_begin, cli_end, cli_field_int)
5279 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
5280 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
5281 Delete forward declarations.
5282 (cli_ui_out_impl): Move below the callbacks.
5283 (_initialize_cli_out): Delete.
5284
1915ef4f
PA
52852010-05-02 Pedro Alves <pedro@codesourcery.com>
5286
5287 * README: Use consistent `GDB' and `GDBserver' spellings.
5288
0dfb946f
JK
52892010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5290
5291 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
5292
4d533103
PA
52932010-05-01 Pedro Alves <pedro@codesourcery.com>
5294
5295 * infrun.c (prepare_for_detach): In non-stop, context switch to
5296 the thread that got the event before handling the event.
5297
705b5767
TT
52982010-04-30 Tom Tromey <tromey@redhat.com>
5299
5300 * symtab.c (symbol_set_names): Fix typo.
5301
3c0ee1a4
PM
53022010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5303
5304 * python/py-param.c (parm_constants): Avoid ARI warning
5305 by adding ARI comment.
5306 (parmpy_init): Likewise.
5307
ea1fae46
PM
53082010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5309
5310 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
5311 and created type for re-use.
5312
c24d0242
PM
53132010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5314
5315 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
5316
a26d8d11
DE
53172010-04-29 Doug Evans <dje@google.com>
5318
5319 * ser-base.h (reschedule): Delete prototype.
5320 * ser-base.c (reschedule): Make static.
5321
f8624c62
MGD
53222010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5323
5324 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
5325 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
0407b3f1 5326 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
f8624c62 5327 EABI.
0407b3f1 5328 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
f8624c62
MGD
5329 use.
5330
e66408ed
PA
53312010-04-29 Pedro Alves <pedro@codesourcery.com>
5332
5333 PR gdb/11557
5334
5335 * regcache.c (registers_changed): Rename to ...
5336 (registers_changed_ptid): ... this, and only delete register cache
5337 entries matching the ptid filter argument.
5338 (registers_changed): Reimplement on top of registers_changed_ptid.
5339 * regcache.h (registers_changed_ptid): Declare.
5340 * target.c (target_resume): Flush register caches.
5341
d7b32ed3 53422010-04-29 Phil Muldoon <pmuldoon@redhat.com>
0407b3f1
AS
5343 Tom Tromey <tromey@redhat.com>
5344 Thiago Jung Bauermann <bauerman@br.ibm.com>
5345
5346 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
5347 (SUBDIR_PYTHON_SRCS): Likewise.
5348 (py-parameter.o): New rule.
5349 * python/py-parameter.c: New file.
5350 * python/python-internal.h (gdbpy_initialize_parameter)
5351 (gdbpy_parameter, gdbpy_parameter_value)
5352 (gdbpy_parse_command_name): Declare.
5353 * python/py-cmd.c (parse_command_name): Rename to
5354 gdbpy_parse_command_name.
5355 (gdbpy_parse_command_name): Accept a starting list parameter and
5356 use over cmdlist.
5357 (cmdpy_init): Use gdbpy_parse_command_name.
5358 * python/python.c (parameter_to_python): Rename to
5359 gdbpy_parameter_to_python. Accept enum var_types and value.
5360 (gdbpy_parameter): Use gdbpy_parameter_value.
5361 (_initialize_python): Call gdbpy_initialize_parameters.
d7b32ed3 5362
ce72ce41
MGD
53632010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5364
5365 * MAINTAINERS: Add myself for write after approval privileges.
5366
6aecb9c2
JB
53672010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
5368
5369 D language support.
5370 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
5371 (COMMON_OBS): Add d-lang.o d-valprint.o.
5372 (HFILES_NO_SRCDIR): Add d-lang.h.
5373 * NEWS: Mention D language support.
5374 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
5375 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
5376 * d-lang.c: New file.
5377 * d-lang.h: New file.
5378 * d-valprint.c: New file.
5379 * defs.h (enum language): Add language_d.
5380 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
5381 * language.c (binop_result_type, integral_type, character_type)
5382 (string_type, boolean_type, structured_type): Add language_d.
5383 * symfile.c (init_filename_language_table): Add language_d.
5384 * symtab.c: Include d-lang.h.
5385 (symbol_init_language_specific, symbol_find_demangled_name)
5386 (symbol_natural_name, lookup_symbol_in_language)
5387 (symbol_demangled_name, symbol_matches_domain): Add language_d.
5388
6f992fbf
JB
53892010-04-27 Joel Brobecker <brobecker@adacore.com>
5390
5391 * solib-svr4.c (solib_svr4_r_map): Expand function description.
5392
dde59185
JB
53932010-04-27 Joel Brobecker <brobecker@adacore.com>
5394
5395 * symfile.c (init_filename_language_table): Register .dg files
5396 with language_ada.
5397
d09ce91e
JB
53982010-04-27 Joel Brobecker <brobecker@adacore.com>
5399
5400 * gdbtypes.h (struct main_type): Expand comment about target_type
5401 field.
5402
67f1675e
JB
54032010-04-27 Pedro Alves <pedro@codesourcery.com>
5404 Tristan Gingold <gingold@adacore.com>
02aeec7b
JB
5405
5406 * symfile.c (reread_symbols): Also search for file in libraries.
5407 Update comment.
5408
dfd0fe27
JB
54092010-04-27 Joel Brobecker <brobecker@adacore.com>
5410
5411 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
5412 in terms of configuration.
5413
0133421a
JK
54142010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
5415
5416 * objfiles.c: Include solist.h.
5417 (free_all_objfiles): New variable so. Check stale solist objfiles.
5418 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
5419 and no_shared_libraries.
5420
e78f4312
JB
54212010-04-27 Joel Brobecker <brobecker@adacore.com>
5422
5423 ARI warning fix.
5424 * python/py-auto-load.c (source_section_scripts): Remove trailing
5425 new-line in i18n string.
5426
9214d371
DE
54272010-04-26 Doug Evans <dje@google.com>
5428
5429 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
5430
3f172e24
TT
54312010-04-26 Tom Tromey <tromey@redhat.com>
5432
5433 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
5434 command list.
5435
e790e06e
PM
54362010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
5437
5438 Removal of config/i386/nm-i386sol2.h native configuration file.
5439 * config/i386/nm-i386sol2.h: Remove file.
5440 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
5441 * config/i386/sol2-64.mh: Idem.
88562582
PM
5442 * config/djgpp/fnchange.lst: Remove reference to that file.
5443 * Makefile.in (HFILES_NO_SRCDIR): Idem.
e790e06e 5444
b7da9e9f
PM
54452010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
5446
5447 PR breakpoints/11531.
5448 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
5449 macro definition and related comment.
5450 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
5451 (resume): Remove code and comment related to this macro.
5452
72f6eb52
JK
54532010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
5454
5455 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
5456 Fix whitespace.
5457
ab38a727
PA
54582010-04-24 Pedro Alves <pedro@codesourcery.com>
5459
5460 * defs.h: Adjust comment.
5461 * filesystem.h, filesystem.c: New files.
5462 * Makefile.in (SFILES): Add filesystem.c.
5463 (COMMON_OBS): Add filesystem.o.
5464 * solib.c (solib_find): Handle DOS-based filesystems. Handle
5465 different target and host path flavours.
5466 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
5467 has_dos_based_file_system on the gdbarch.
5468 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
5469 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
5470 * i386-tdep.c (i386_go32_init_abi): Ditto.
5471 * gdbarch.sh (has_dos_based_file_system): New.
5472 * gdbarch.h, gdbarch.c: Regenerate.
5473 * NEWS: Mention improved support for remote targets with DOS-based
5474 filesystems. Mention new `set/show target-file-system-kind'
5475 commands.
5476
35c9c7ba
SS
54772010-04-23 Stan Shebs <stan@codesourcery.com>
5478
5479 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
5480 comments.
5481 (struct agent_reqs): Remove.
5482 (ax_reg_mask): Declare.
5483 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
5484 (free_agent_expr): Free reg_mask.
5485 (ax_print): Add scope and register mask info.
5486 (ax_reqs): Remove agent_reqs argument, use agent expression
5487 fields, and move part of register mask computation to...
5488 (ax_reg_mask): New function.
5489 * ax-gdb.c (gen_trace_static_fields): Call it.
5490 (gen_traced_pop): Ditto.
5491 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
5492 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
5493 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
5494 (gen_eval_for_expr): Ditto, and require an rvalue.
5495 (agent_command): Call ax_reqs.
5496 (agent_eval_command): Ditto.
5497 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
5498 (validate_action_line): Ditto.
5499 (collect_symbol): Ditto.
5500 (encode_actions_1): Ditto.
5501
492928e4
JK
55022010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
5503 Paul Pluzhnikov <ppluzhnikov@google.com>
5504 Jan Kratochvil <jan.kratochvil@redhat.com>
5505
5506 Fix deadlock on looped list of loaded shared objects.
5507 * solib-svr4.c (LM_PREV): New function.
5508 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
5509 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
5510 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
5511 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
5512
66d09542
DE
55132010-04-23 Doug Evans <dje@google.com>
5514
88a1906b
DE
5515 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
5516 python.
5517 * configure: Regenerate.
5518 * main.c: #include "python/python.h".
5519 (captured_main): Defer loading auto-loaded scripts until after
5520 local_gdbinit has been sourced.
5521 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
5522 (load_auto_scripts_for_objfile): New function.
5523 (auto_load_new_objfile): Call it.
5524 * python/python.h (gdbpy_global_auto_load): Declare.
5525 (load_auto_scripts_for_objfile): Declare.
5526
66d09542
DE
5527 Add support for auto-loading scripts from .debug_gdb_scripts section.
5528 * NEWS: Add entry for .debug_gdb_scripts.
5529 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
5530 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
5531 (py-auto-load.o): New rule.
5532 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
5533 * cli/cli-cmds.h (find_and_open_script): Update prototype.
5534 * python/py-auto-load.c: New file.
5535 * python/python-internal.h: #include <stdio.h>.
5536 (set_python_list, show_python_list): Declare.
5537 (gdbpy_initialize_auto_load): Declare.
5538 (source_python_script_for_objfile): Declare.
5539 * python/python.c: Remove #include of observer.h.
5540 (gdbpy_auto_load): Moved to py-auto-load.c.
5541 (GDBPY_AUTO_FILENAME): Ditto.
5542 (gdbpy_new_objfile): Delete.
5543 (source_python_script_for_objfile): New function.
5544 (set_python_list, show_python_list): Make externally visible.
5545 (_initialize_python): Move "auto-load" command to py-auto-load.c
5546 and observer_attach_new_objfile to py-auto-load.c.
5547
3a48e6ff 55482010-04-23 Jerome Guitton <guitton@adacore.com>
0407b3f1 5549
3a48e6ff
JG
5550 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
5551 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
5552 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
5553 New constants.
5554 (alpha_heuristic_analyze_probing_loop): New function.
5555 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
5556 and handle cases when a stack probe loop is generated.
5557 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
5558 (alpha_mdebug_max_frame_size_exceeded): New function.
5559 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
5560 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
5561 Return 0 when the maximum debuggable frame size has been exceeded.
5562
e4166a49
JB
55632010-04-23 Joel Brobecker <brobecker@adacore.com>
5564
5565 Fix ARI warning.
5566 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
5567
8bd10a10
CM
55682010-04-20 Chris Moller <cmoller@redhat.com>
5569
5570 PR 10179
5571
5572 * symtab.c (rbreak_command): Added code to include a filename
5573 specification in the rbreak argument.
5574 * NEWS: Added a brief description of filename-qualified rbreak.
5575
c0201579
JK
55762010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5577
5578 Fix crashes on dangling display expressions.
5579 * ada-lang.c (ada_operator_check): New function.
5580 (ada_exp_descriptor): Fill-in the field operator_check.
5581 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
5582 * jv-lang.c (exp_descriptor_java): Likewise.
5583 * m2-lang.c (exp_descriptor_modula2): Likewise.
5584 * scm-lang.c (exp_descriptor_scm): Likewise.
5585 * parse.c (exp_descriptor_standard): Likewise.
5586 (operator_check_standard): New function.
5587 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
5588 * parser-defs.h (struct exp_descriptor): New field operator_check.
5589 (operator_check_standard, exp_uses_objfile): New declarations.
5590 * printcmd.c: Remove the inclusion of solib.h.
5591 (display_uses_solib_p): Remove the function.
5592 (clear_dangling_display_expressions): Call lookup_objfile_from_block
5593 and exp_uses_objfile instead of display_uses_solib_p.
5594 * solist.h (struct so_list) <objfile>: New comment.
5595 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
5596 * symtab.h (lookup_objfile_from_block): New declaration.
5597 (struct general_symbol_info) <obj_section>: Extend the comment.
5598
6ffbb7ab
TJB
55992010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
5600 Thiago Jung Bauermann <bauerman@br.ibm.com>
5601
5602 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
5603 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
5604 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
5605 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
5606 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
5607 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
5608 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
5609 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
5610 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
5611 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
5612 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
5613 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
5614 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
5615 Define, in case <ptrace.h> doesn't provide it.
5616 (booke_debug_info): New variable.
5617 (max_slots_number): Ditto.
5618 (hw_break_tuple): New struct.
5619 (thread_points): Ditto.
5620 (ppc_threads): New variable.
5621 (PPC_DEBUG_CURRENT_VERSION): New define.
5622 (have_ptrace_new_debug_booke): New function.
5623 (ppc_linux_check_watch_resources): Renamed to ...
5624 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
5625 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
5626 (booke_cmp_hw_point): New function.
5627 (booke_find_thread_points_by_tid): Ditto.
5628 (booke_insert_point): Ditto.
5629 (booke_remove_point): Ditto.
5630 (ppc_linux_insert_hw_breakpoint): Ditto.
5631 (ppc_linux_remove_hw_breakpoint): Ditto.
5632 (get_trigger_type): Ditto.
5633 (ppc_linux_insert_watchpoint): Handle BookE processors.
5634 (ppc_linux_remove_watchpoint): Ditto.
5635 (ppc_linux_new_thread): Ditto.
5636 (ppc_linux_thread_exit): New function..
5637 (ppc_linux_stopped_data_address): Handle BookE processors.
5638 (ppc_linux_watchpoint_addr_within_range): Ditto.
5639 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
5640 to_remove_hw_breakpoint fields of the target operations struct.
5641 Add observe for the thread_exit event.
5642
be0d2954
L
56432010-04-22 H.J. Lu <hongjiu.lu@intel.com>
5644
5645 * i386-linux-nat.c (regmap): Removed.
5646 (fetch_register): Replace regmap with
5647 i386_linux_gregset_reg_offset.
5648 (store_register): Likewise.
5649 (supply_gregset): Likewise.
5650 (fill_gregset): Likewise.
5651
5652 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
5653 global.
5654
5655 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
5656
f56dcb88
CM
56572010-04-22 Chris Moller <cmoller@redhat.com>
5658
5659 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
758afad7
L
5660 method of popping recursion-detection stack with a method based on
5661 obstack_object_size(). (Similar to the PR9167 patch below, but for
f56dcb88
CM
5662 the static array obstack rather than the static member obstack.)
5663
6cd6a2ae
L
56642010-04-22 H.J. Lu <hongjiu.lu@intel.com>
5665
5666 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
5667 (_initialize_amd64_linux_nat): Replace
5668 amd64_linux_gregset64_reg_offset with
5669 amd64_linux_gregset_reg_offset.
5670
5671 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
5672 global.
5673
5674 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
5675
621791b8
PM
56762010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
5677
5678 PR stabs/11479.
5679 * stabsread.c (set_length_in_type_chain): New function.
5680 (read_struct_type): Call set_length_in_type_chain function.
5681 (read_enum_type): Idem.
5682
105c2d85
SS
56832010-04-21 Stan Shebs <stan@codesourcery.com>
5684 Nathan Sidwell <nathan@codesourcery.com>
5685
5686 * tracepoint.c (trace_save): Open in binary mode.
5687
9a22f0d0
PM
56882010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
5689
5690 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
5691 fields.
0407b3f1 5692 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
9a22f0d0
PM
5693 builtin_char32 fields.
5694 * printcmd.c (decode_format): Set char size to '\0'
5695 for strings unless explicit size is given.
5696 (print_formatted): Correct calculation of NEXT_ADDRESS
5697 for 16 or 32 bit strings.
5698 (do_examine): Do not force byte size for strings.
5699 Use builtin_char16 and builtin_char32 types to display
0407b3f1 5700 16 or 32 bit-wide strings.
9a22f0d0
PM
5701 (x_command): Set LAST_SIZE to 'b' for string type.
5702
f335d1b3
L
57032010-04-21 H.J. Lu <hongjiu.lu@intel.com>
5704
5705 PR corefiles/11523
5706 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
5707 XCR0 first.
5708
5709 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
5710 there is no .reg-xstate section.
5711 (i386_linux_core_read_description): Check XCR0 first.
5712
a9789a6b
MF
57132010-04-21 Mike Frysinger <vapier@gentoo.org>
5714
5715 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
5716 for len <= 8.
5717
0b66f317
CM
57182010-04-21 Chris Moller <cmoller@redhat.com>
5719
5720 PR 9167
5721 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
32d7376d
L
5722 method of popping recursion-detection stack with a method based on
5723 obstack_object_size().
0b66f317 5724
6e354e5e
PM
57252010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
5726
5727 PR pascal/11492.
5728 * p-valprint.c (pascal_val_print): Fix default printing of integer
5729 arrays.
5730
57174f31
PM
57312010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
5732
5733 Fix compilation warning on gcc-4.1.2.
5734 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
5735 local variable`pc' to zero.
5736
6fbc7cd8
JB
57372010-04-20 Joel Brobecker <brobecker@adacore.com>
5738
5739 Implement thread support with core files on alpha-tru64.
5740 * dec-thread.c (dec_thread_find_new_threads): New function,
5741 extracted from resync_thread_list.
5742 (resync_thread_list): Add OPS parameter. Replace extracted-out
5743 code by call to dec_thread_find_new_threads.
5744 (dec_thread_wait): Update call to resync_thread_list.
5745 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
5746
438c98a1
JB
57472010-04-20 Joel Brobecker <brobecker@adacore.com>
5748
5749 * ada-lang.c (value_pointer): New function.
5750 (make_array_descriptor): Call value_pointer to convert addresses to
5751 pointers.
5752
2971b56b
JB
57532010-04-20 Joel Brobecker <brobecker@adacore.com>
5754
5755 * rs6000-aix-tdep.c: #include exceptions.h.
5756 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
5757 while reading the memory at ADDR, then ADDR cannot be a function
5758 descriptor.
5759
be942545
JB
57602010-04-20 Joel Brobecker <brobecker@adacore.com>
5761
5762 * ada-typeprint.c (ada_print_typedef): New function.
5763 * ada-lang.h (ada_print_typedef): Add declaration.
5764 * ada-lang.c (ada_language_defn): set la_print_typdef field
5765 to ada_print_typedef.
5766
1ca8fce0
JB
57672010-04-20 Joel Brobecker <brobecker@adacore.com>
5768
5769 * procfs.c (procfs_address_to_host_pointer): Only define when used.
5770
e9ef4f39
JB
57712010-04-20 Joel Brobecker <brobecker@adacore.com>
5772
5773 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
5774 (iterate_over_mappings): Adjust function profile. Add declaration.
5775 (insert_dbx_link_bpt_in_region, info_mappings_callback):
5776 Adjust accordingly.
5777
e294797a
JB
57782010-04-20 Joel Brobecker <brobecker@adacore.com>
5779
5780 * procfs.c (solib_mappings_callback): Move function up to avoid
5781 a compiler warning.
5782
a223f1e7
JB
57832010-04-20 Joel Brobecker <brobecker@adacore.com>
5784
5785 * procfs.c (find_signalled_thread, find_stop_signal): Move
5786 these functions down to define them only when used.
5787
0c3acc09
JB
57882010-04-20 Joel Brobecker <brobecker@adacore.com>
5789
5790 * valprint.c (common_val_print): Fix the value before extracting
5791 its contents.
5792 * ada-lang.c (ada_to_fixed_value): Make this function extern.
5793 * ada-lang.h (ada_to_fixed_value): New function declaration.
5794 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
5795 to avoid code duplication and fix a bug in the handling of
5796 fixed types contents.
5797
31ef98ae
TT
57982010-04-20 Tom Tromey <tromey@redhat.com>
5799
5800 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
5801 (read_partial_die): Likewise.
5802 (dwarf_attr_name): Likewise.
5803
ec31cde5 58042010-04-20 Chris Moller <cmoller@redhat.com>
0407b3f1 5805
ec31cde5
CM
5806 PR 10867
5807
5808 * cp-valprint.c (global): Adding new static array recursion
5809 detection obstack.
5810 (cp_print_value_fields, cp_print_static_field): Added new static
5811 array recursion detection code.
5812
e0e0e543
MK
58132010-04-20 Mark Kettenis <kettenis@gnu.org>
5814
5815 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
5816 general-purpose register set should be 68 instead of 144.
5817 (i386_linux_sse_regset_sections): Likewise.
5818 (i386_linux_avx_regset_sections): Likewise.
5819
08922a10
SS
58202010-04-20 Stan Shebs <stan@codesourcery.com>
5821 Nathan Sidwell <nathan@codesourcery.com>
5822
5823 * dwarf2loc.c (struct axs_var_loc): New struct.
5824 (dwarf2_tracepoint_var_loc): New function.
5825 (dwarf2_tracepoint_var_access): New function.
5826 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
5827 with DW_OP_piece.
5828 (locexpr_describe_location_piece): New function.
5829 (locexpr_describe_location_1): New function.
5830 (locexpr_describe_location): Call it, update signature.
5831 (loclist_describe_location): Rewrite to loop over locations,
5832 update signature.
5833 * symtab.h (struct symbol_computed_ops): Add address to
5834 describe_location arguments, return void.
5835 * printcmd.c (address_info): Get context PC, pass to computed
5836 location description.
5837 * tracepoint.c (scope_info): Ditto.
5838 * ax-gdb.c (trace_kludge): Export.
5839
2dc7f7b3
TT
58402010-04-20 Tom Tromey <tromey@redhat.com>
5841
5842 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
5843 (struct dwarf2_cie) <segment_size>: New field.
5844 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
5845 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
5846 DW_FORM_exprloc.
5847 (read_attribute_value): Handle DW_FORM_flag_present,
5848 DW_FORM_sec_offset, DW_FORM_exprloc.
5849 (dump_die_shallow): Likewise.
5850 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
5851 (dwarf2_const_value): Handle DW_FORM_exprloc.
5852 (attr_form_is_block): Likewise.
5853 (struct line_header) <maximum_ops_per_instruction>: New field.
5854 (dwarf_decode_line_header): Set new field.
5855 (dwarf_decode_lines): Handle new field.
5856
ce4b0682
SDJ
58572010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5858
5859 * f-exp.y: Add new production to recognize the `logical*8' type.
5860 (LOGICAL_S8_KEYWORD): New token.
5861 * f-lang.c (enum f_primitive_types)
5862 <f_primitive_type_logical_s8>: New field.
5863 (f_language_arch_info): Handling `logical*8' type.
5864 (build_fortran_types): Building `logical*8' type.
5865 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
5866
ff9f22f1
DE
58672010-04-19 Doug Evans <dje@google.com>
5868
5869 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
5870 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
5871 (pipe_close): Ditto.
5872
437125bd
PM
58732010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5874
5875 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
5876
e8e6c82e
PM
58772010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5878
5879 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
5880 type to void function.
5881
4136fdd2
SS
58822010-04-19 Stan Shebs <stan@codesourcery.com>
5883 Vladimir Prus <vladimir@codesourcery.com>
5884
5885 * tracepoint.c (tfind_1): Add missing newline, report exit from
5886 tfind mode as such.
5887 * target.c (update_current_target): Make default
5888 to_trace_find return -1.
5889
0c4b2e63
MF
58902010-04-19 Mike Frysinger <vapier@gentoo.org>
5891
5892 * objc-lang.c (find_methods): Move symname check up.
5893
78076abc
PA
58942010-04-19 Pedro Alves <pedro@codesourcery.com>
5895
5896 * ada-lang.c (print_recreate_exception)
5897 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
5898 not "catch unhandled".
5899
6149aea9
PA
59002010-04-19 Pedro Alves <pedro@codesourcery.com>
5901
5902 PR breakpoints/8554.
5903
5904 Implement `save-breakpoints'.
5905
5906 * breakpoint.c (save_cmdlist): New.
5907 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
5908 to save_cmdlist.
5909 (print_recreate_catch_fork): New.
5910 (catch_fork_breakpoint_ops): Install it.
5911 (print_recreate_catch_vfork): New.
5912 (catch_vfork_breakpoint_ops): Install it.
5913 (print_recreate_catch_syscall): New.
5914 (catch_syscall_breakpoint_ops): Install it.
5915 (print_recreate_catch_exec): New.
5916 (catch_exec_breakpoint_ops): Install it.
5917 (print_recreate_exception_catchpoint): New.
5918 (gnu_v3_exception_catchpoint_ops): Install it.
5919 (save_breakpoints): New, based on tracepoint_save_command, but
5920 handle all breakpoint types.
5921 (save_breakpoints_command): New.
5922 (tracepoint_save_command): Rename to...
5923 (save_tracepoints_command): ... this, and reimplement using
5924 save_breakpoints.
5925 (save_command): New.
5926 (_initialize_breakpoints): Install the "save" command prefix.
5927 Install the "save breakpoints" command. Make "save-tracepoints" a
5928 deprecated alias for "save tracepoints".
5929 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
5930 * ada-lang.c (print_recreate_exception): New.
5931 (print_recreate_catch_exception): New.
5932 (catch_exception_breakpoint_ops): Install it.
5933 (print_recreate_catch_exception_unhandled): New.
5934 (catch_exception_unhandled_breakpoint_ops): Install it.
5935 (print_recreate_catch_assert): New.
5936 (catch_assert_breakpoint_ops): Install it.
5937
5938 * NEWS: Mention the new `save breakpoints' command. Mention the
5939 new `save tracepoints' alias and that `save-tracepoints' is now
5940 deprecated.
5941
0a8fce9a
PA
59422010-04-18 Pedro Alves <pedro@codesourcery.com>
5943
5944 PR tui/9217
5945
5946 * tui/tui-out.c: Include cli-out.h.
5947 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
5948 (tui_begin, tui_end, tui_field_int, tui_field_skip)
5949 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
5950 (tui_message, tui_wrap_hint, tui_flush): Delete forward
5951 declarations.
5952 (struct ui_out_data): Rename to...
5953 (struct tui_ui_out_data): ... this. Remove `stream' and
5954 `suppress_output' fields, and inherit cli_ui_out_data.
5955 (tui_out_data): New typedef.
5956 (tui_ui_out_impl): Don't initialize fields staticaly.
5957 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
5958 (tui_begin, tui_end): Delete.
5959 (tui_field_int): Adjust to delegate most work to the base type.
5960 (tui_field_skip): Delete.
5961 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
5962 delegate most work to the base type.
5963 (tui_spaces): Delete.
5964 (tui_text): Adjust to delegate most work to the base type.
5965 (tui_message): Delete.
5966 (tui_wrap_hint): Delete.
5967 (tui_flush): Delete.
5968 (out_field_fmt): Delete.
5969 (field_separator): Delete.
5970 (tui_out_new): Adjust to initialize the base type.
5971 (_initialize_tui_out): Initialize tui_ui_out_impl.
5972 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
5973 cli_ui_out_data.
5974 (cli_out_data): Adjust.
5975 (cli_ui_out_impl): Make extern.
5976 (cli_table_header, cli_field_int, cli_field_skip): Use
5977 uo_field_string instead of cli_field_string.
5978 (cli_redirect): Adjust to use cli_out_data.
5979 (cli_out_data_ctor): New.
5980 (cli_out_new): Use it.
5981 * cli-out.h (struct ui_file): Remove forward declaration.
5982 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
5983 (cli_ui_out_impl): Declare.
5984 (cli_out_data_ctor): Declare.
5985 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
5986 (uo_field_string): No longer static.
5987 (ui_out_data): Change return type to void pointer.
5988 (ui_out_new): Change `data' parameter type to void pointer.
5989 * ui-out.h (struct ui_out_data): Don't forward declare.
5990 (ui_out_data): Change return type to void pointer.
5991 (ui_out_new): Change `data' parameter type to void pointer.
5992 (uo_field_string): Declare.
5993
172240dd
PA
59942010-04-17 Pedro Alves <pedro@codesourcery.com>
5995
5996 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
5997 instead of always false.
5998
ed41462c
L
59992010-04-17 H.J. Lu <hongjiu.lu@intel.com>
6000
6001 PR corefiles/11511
6002 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
6003 orig_rax.
6004
cc60f2e3
PA
60052010-04-17 Pedro Alves <pedro@codesourcery.com>
6006
6007 * breakpoint.c (watchpoints_triggered): Use
6008 is_hardware_watchpoint.
6009 (watchpoints_triggered): Ditto.
6010 (bpstat_check_location): Use is_watchpoint and
6011 is_hardware_watchpoint.
6012 (bpstat_check_watchpoint): Use is_watchpoint and
6013 is_hardware_watchpoint.
6014 (bpstat_stop_status): Fix comment.
6015 (user_settable_breakpoint): Use is_watchpoint.
6016 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
6017 (disable_watchpoints_before_interactive_call_start): Use
6018 is_watchpoint.
6019 (enable_watchpoints_after_interactive_call_stop): Use
6020 is_watchpoint.
6021 (clear_command): Use is_watchpoint.
6022 (do_enable_breakpoint): Use is_watchpoint.
6023
cb7db0f2
MF
60242010-04-16 Mike Frysinger <vapier@gentoo.org>
6025
6026 * solib-frv.c (enable_break1_done): Delete.
6027 (enable_break2): Do not check enable_break1_done. Move the
6028 enable_break2_done setting and call to
6029 remove_solib_event_breakpoints() to the end. Return without
6030 warning when the contents of _dl_debug_addr are 0.
6031 (enable_break): Do not set enable_break1_done.
6032 (frv_clear_solib): Likewise.
6033
d77b48cf
KB
60342010-04-16 Kevin Buettner <kevinb@redhat.com>
6035
6036 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
6037 instead of an error if no PLT entry is found. Return a
6038 potentially useful result.
6039 (m32c_m16c_pointer_to_address): Add code to search for function
6040 address when no .plt entry is found.
6041
f90824dc
SS
60422010-04-16 Stan Shebs <stan@codesourcery.com>
6043
6044 * tracepoint.c (trace_variable_command): Run a cleanup.
6045
9b79b476
PM
60462010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6047
6048 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
6049
711e434b
PM
60502010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6051
6052 Support for Windows OS Thread Information Block.
6053 * NEWS: Document new feature.
6054 * remote.c (PACKET_qGetTIBAddr): New enum element.
6055 (remote_get_tib_address): New function.
6056 (init_remote_ops): Set to_get_tib_address field
6057 to remote_get_tib_address.
6058 (_initialize_remote): Add add_packet_config_cmd
6059 for PACKET_qGetTIBAddr.
6060 * target.c (update_current_target): Set default value for
6061 new to_get_tib_address field.
6062 * target.h (target_ops): New field to_get_tib_address.
6063 (target_get_tib_address): New macro.
6064 * windows-nat.c (thread_info): Add thread_local_base field.
6065 (windows_add_thread): Add tlb argument of type 'void *'.
6066 (fake_create_process): Adapt windows_add_thread call.
6067 (get_windows_debug_event): Idem.
6068 (windows_get_tib_address): New function.
6069 (init_windows_ops): Set to_get_tib_address field
6070 to remote_get_tib_address.
6071 (_initialize_windows_nat): Replace info_w32_cmdlist
6072 initialization by a call to init_w32_command_list.
6073 (info_w32_command, info_w32_cmdlist): Removed from here...
6074 to windows-tdep.c file.
6075 * windows-tdep.h (info_w32_cmdlist): Declare.
0407b3f1 6076 (init_w32_command_list): New external function
711e434b
PM
6077 declaration.
6078 * windows-tdep.c: Add several headers.
6079 (info_w32_cmdlist): to here, made global.
6080 (thread_information_32): New struct.
6081 (thread_information_64): New struct.
6082 (TIB_NAME): New char array.
6083 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
6084 (maint_display_all_tib): New static variable.
6085 (windows_get_tlb_type): New function.
6086 (tlb_value_read, tlb_value_write): New functions.
6087 (tlb_value_funcs): New static struct.
6088 (tlb_make_value): New function.
6089 (display_one_tib): New function.
6090 (display_tib): New function.
6091 (show_maint_show_all_tib):New function.
6092 (info_w32_command): Moved from windows-nat.c.
6093 (init_w32_command_list): New function.
6094 (_initialize_windows_tdep): New function.
6095 New "maint set/show show-all-tib" command
6096 New "$_tlb" internal variable.
6097
cae3f17b
JB
60982010-04-16 Joel Brobecker <brobecker@adacore.com>
6099
6100 * tui/tui-regs.c (tui_display_register): Add comment about
6101 a couple of casts.
6102 * tui/tui-stack.c (tui_show_locator_content): Ditto.
6103
2ce6d6bf
SS
61042010-04-15 Stan Shebs <stan@codesourcery.com>
6105
6106 * frame.c: Include tracepoint.h.
6107 (get_current_frame): Allow a trace frame to be an alternate source
6108 of stack frame data.
6109 * tracepoint.c (tfind_1): Don't try to get current stack frame if
6110 it won't succeed.
6111
7e559477
PA
61122010-04-15 Pedro Alves <pedro@codesourcery.com>
6113
6114 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
6115 flags.
6116 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
6117
3f7b2faa
DE
61182010-04-15 Doug Evans <dje@google.com>
6119
fa33c3cd
DE
6120 * NEWS: Add entry for python program space support.
6121 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
6122 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
6123 (py-progspace.o): New rule.
6124 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
6125 function.
6126 (find_pretty_printer_from_progspace): New function.
6127 (find_pretty_printer_from_gdb): New function.
6128 (find_pretty_printer): Rewrite.
6129 * python/py-progspace.c: New file.
6130 * python/python-internal.h (program_space): Add forward decl.
6131 (pspace_to_pspace_object, pspy_get_printers): Declare.
6132 (gdbpy_initialize_pspace): Declare.
6133 * python/python.c: #include "progspace.h".
6134 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
6135 (_initialize_python): Call gdbpy_initialize_pspace.
6136 (GdbMethods): Add current_progspace, progspaces.
6137
3f7b2faa
DE
6138 Add -s option to source command.
6139 * NEWS: Document new option.
6140 * cli/cli-cmds.c (find_and_open_script): Add function comment.
6141 Delete from_tty and cleanupp args. Split filep arg into file and
6142 full_pathp. New arg search_path.
6143 (source_script_from_stream): New function.
6144 (source_script_with_search): New function.
6145 (source_script): Rewrite.
6146 (source_command): Parse "-s" option.
6147 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
6148 * python/python.c (source_python_script): Make file arg a const char *.
6149 Don't call fclose, leave for caller.
6150 * python/python.h (source_python_script): Update.
6151
a86988f2
PA
61522010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
6153 Pedro Alves <pedro@codesourcery.com>
6154
6155 Avoid rereading shared libraries that haven't changed.
6156
6157 * solib.c (free_so_symbols): New function, from ...
6158 (free_so): ... here. Call it.
6159 (solib_read_symbols): Don't warn here if symbols have already been
6160 loaded.
6161 (solib_add): Warn here instead, if a pattern was specified.
6162 (reload_shared_libraries_1): New.
6163 (reload_shared_libraries): Rewrite to not fetch the library list.
6164
e6d9b9c2
DE
61652010-04-14 Doug Evans <dje@google.com>
6166
589390d6 6167 * source.c (openp): Strip DOS drive letter if present before
e6d9b9c2
DE
6168 concatenating string to search path.
6169
516ba659
PA
61702010-04-14 Pedro Alves <pedro@codesourcery.com>
6171
6172 * objfiles.h (gdb_bfd_close_or_warn): Declare.
6173 * objfiles.c (gdb_bfd_close_or_warn): New.
6174 * corelow.c: Include objfiles.h
6175 (core_close): Use gdb_bfd_close_or_warn.
6176 * elfread.c (build_id_verify): Ditto.
6177 * exec.c (exec_close, exec_close_1): Ditto.
6178
048d532d
PA
61792010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
6180 Pedro Alves <pedro@codesourcery.com>
6181
6182 Group errors for many missing shared libraries.
6183
6184 * solist.h (struct so_list): Remove from_tty.
6185 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
6186 (solib_map_sections): Take so_list argument. Return 0 if we
6187 failed to open a BFD. Add target sections here.
6188 (symbol_add_stub): Delete.
6189 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
6190 not from_tty copied from the so_list. Don't warn a second time
6191 for a missing library.
6192 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
6193 add to the section table here. Print out a single warning for all
6194 missing libraries.
6195 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
6196 flags.
6197
044c0f87
PM
61982010-04-14 Phil Muldoon <pmuldoon@redhat.com>
6199
6200 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
6201 error/warning messages. Capitalize and use complete sentences.
6202 (blpy_block_syms_iternext): Likewise.
6203 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
6204 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
6205 (frame_info_to_frame_object, frapy_read_var)
6206 (gdbpy_frame_stop_reason_string): Likewise.
6207 * python/py-lazy-string.c (stpy_convert_to_value)
6208 (gdbpy_create_lazy_string_object): Likewise.
6209 * python/py-objfile.c (objfpy_set_printers): Likewise.
6210 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
6211 * python/python.c (parameter_to_python): Likewise.
6212 * python/py-type.c (typy_range, typy_target): Likewise.
6213 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
6214 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
6215
6216
79f283fe
PM
62172010-04-14 Phil Muldoon <pmuldoon@redhat.com>
6218
6219 PR python/11381
6220
6221 * python/py-prettyprint.c (pretty_print_one_value): Test for
6222 Py_None.
6223 (print_string_repr): Test for Py_None. Set flags accordingly.
6224 Return value depending on return type.
6225 (print_children): Take a value indicating whether data was printed
6226 before this function was called. Alter output accordingly.
6227 (apply_val_pretty_printer): Capture return value from
6228 print_string_repr and pass to print_children.
6229
4ac5d44e
MK
62302010-04-13 Mark Kettenis <kettenis@gnu.org>
6231
e1caee70 6232 PR corefiles/11481
4ac5d44e
MK
6233 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
6234 register note sections.
6235 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
6236 New variables.
6237 (i386_linux_init_abi): Install list of supported register note
6238 sections that matches the target description.
6239
ad91cd99
PA
62402010-04-13 Pedro Alves <pedro@codesourcery.com>
6241
6242 * remote.c (remote_get_noisy_reply): Don't error out on empty
6243 replies.
6244 (remote_start_remote): Update and merge tracepoints and trace
6245 state variables as long as the target supports tracepoints.
6246 (remote_trace_init): Fix prototype.
6247 (remote_download_trace_state_variable): Validate reply.
6248 (remote_trace_set_readonly_regions): Fix prototype.
6249 (remote_trace_start): Fix prototype. Check for empty reply.
6250 (remote_get_trace_status): Small cleanup.
6251 (remote_trace_stop): Fix prototype. Check for empty reply.
6252 (remote_trace_find): Check for empty reply.
6253 (remote_save_trace_data): Validate reply.
6254 (remote_set_disconnected_tracing): Check for empty reply, and
6255 validate reply.
6256 (remote_set_circular_trace_buffer): Ditto.
6257
ae3bccd4
PM
62582010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
6259
6260 Suppress unused value warning during compilation.
6261 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
6262 calls to void.
6263 * tui/tui-stack.c (tui_show_locator_content): Likewise.
6264
523136f2
SS
62652010-04-12 Stan Shebs <stan@codesourcery.com>
6266
6267 * tracepoint.c (tfile_xfer_partial): Check read result.
6268
0d18d720
MF
62692010-04-12 Mike Frysinger <vapier@gentoo.org>
6270
6271 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
6272 * remote-sim.c (gdbsim_files_info): Likewise.
6273
3b273a55
RE
62742010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6275
6276 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
6277 * arm-linux-nat.c (arm_linux_vfp_register_count): New
6278 variable.
6279 (fetch_vfp_registers): New function to fetch VFP registers.
6280 (store_vfp_registers): New function to store VFP registers.
6281 (arm_linux_fetch_inferior_registers): Add support for VFP
6282 registers.
6283 (arm_linux_store_inferior_registers): Likewise.
6284 (arm_linux_read_description): Likewise.
6285 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
6286 until we need it.
6287
778c7095
L
62882010-04-11 H.J. Lu <hongjiu.lu@intel.com>
6289
6290 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
6291 tdep.
6292 (amd64_collect_xstateregset): Likewise.
6293
2114d44c
SS
62942010-04-09 Stan Shebs <stan@codesourcery.com>
6295
87290684
SS
6296 * tracepoint.c (trace_status_mi): Report frames created.
6297
2114d44c
SS
6298 * tracepoint.c (trace_dump_command): Include default-collect
6299 expressions.
6300
86da934b
UW
63012010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
6302
6303 * symtab.c (find_function_start_sal): Never return SAL pointing
6304 before function start address, even if line info is missing.
6305
2d6e647a 63062010-04-09 Pedro Alves <pedro@codesourcery.com>
d337e9f0
PA
6307
6308 * NEWS: Mention tracepoints support.
6309
a97153c7
PA
63102010-04-09 Pedro Alves <pedro@codesourcery.com>
6311
6312 * tracepoint.c (trace_status_mi): Report disconnected tracing and
6313 circular trace buffer statuses.
6314
7a66d603
JK
63152010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6316
6317 * config/djgpp/fnchange.lst: Fix typo in translations for
6318 symbol-without-target_section.exp and symbol-without-target_section.c.
6319
2566ad2d
PA
63202010-04-09 Pedro Alves <pedro@codesourcery.com>
6321
6322 * breakpoint.c (condition_command): Pass condition expression to
6323 set_breakpoint_condition stripped from breakpoint number.
6324
adc36818
PM
63252010-04-09 Phil Muldoon <pmuldoon@redhat.com>
6326 Thiago Jung Bauermann <bauerman@br.ibm.com>
2566ad2d 6327 Tom Tromey <tromey@redhat.com>
adc36818
PM
6328
6329 * breakpoint.c (condition_command): Simplify. Move condition
6330 setting code to ...
6331 (set_breakpoint_condition): ... here. New function.
6332 * breakpoint.h (set_breakpoint_condition): Declare.
6333 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
6334 (SUBDIR_PYTHON_SRCS): Likewise.
6335 (py-breakpoint.o): New rule.
6336 * python/py-breakpoint.c: New file.
6337 * python/python-internal.h (gdbpy_breakpoints)
6338 (gdbpy_initialize_breakpoints): Declare.
6339 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
6340
219f2f23
PA
63412010-04-09 Pedro Alves <pedro@codesourcery.com>
6342
6343 * regformats/regdat.sh: Include server.h. Don't include
6344 regcache.h.
6345
33da3f1c
SS
63462010-04-08 Stan Shebs <stan@codesourcery.com>
6347 Pedro Alves <pedro@codesourcery.com>
6348
6349 * tracepoint.h (struct trace_status): New fields disconnected_tracing
6350 and circular_buffer.
6351 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
6352 * tracepoint.c (trace_status_command): Display target's status for
6353 disconnected tracing and circular buffer.
6354 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
6355 query for non-disconnected-tracing case, remove the stop_tracing
6356 call.
6357 (tfile_open): Clear disconnected and circular buffer status.
6358 (trace_save): Save disconnected and circular buffer status.
6359 (parse_trace_status): Parse disconnected and circular buffer status,
6360 also recognize disconnected as a stop reason.
6361 * remote.c (remote_set_disconnected_tracing): Only set
6362 QTDisconnected if the remote end supports disconnected tracing.
6363 Warn otherwise, if trying to enable disconnected tracing.
6364 * infcmd.c (detach_command): Update disconnect_tracing call.
6365 * cli/cli-cmds.c (quit_command): Ditto.
6366
4e4d8374
L
63672010-04-08 H.J. Lu <hongjiu.lu@intel.com>
6368
6369 * i387-tdep.c (i387_collect_xsave): Replace abort with
6370 internal_error.
6371
ad443146
SS
63722010-04-08 Stan Shebs <stan@codesourcery.com>
6373
6374 * breakpoint.c (default_collect_info): New function.
6375 (breakpoints_info): Call it.
6376 (maintenance_info_breakpoints): Ditto.
6377 (tracepoints_info): Ditto.
6378
40936b0d
L
63792010-04-08 H.J. Lu <hongjiu.lu@intel.com>
6380
6381 * i387-tdep.c (i387_collect_xsave): Re-indent.
6382
3a13a53b
L
63832010-04-08 H.J. Lu <hongjiu.lu@intel.com>
6384
6385 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
6386 if HAVE_PTRACE_GETFPXREGS is defined.
6387 (i386_linux_read_description): Set have_ptrace_getfpxregs and
6388 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
6389
6390 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
6391 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
6392 if .reg-xfp section doesn't exist.
6393 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
6394
6395 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
6396
6397 * i386-tdep.c: Include "features/i386/i386-mmx.c".
6398 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
6399 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
6400 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
6401 (i386_gdbarch_init): Update comments.
6402 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
6403
6404 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
6405
6406 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
6407
6408 * features/Makefile (i386/i386-mmx-expedite): New.
6409 (i386/i386-mmx-linux-expedite): Likewise.
6410 ($(outdir)/i386/i386-mmx.dat): Likewise.
6411 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
6412
6413 * features/i386/i386-mmx-linux.c: New.
6414 * features/i386/i386-mmx-linux.xml: Likewise.
6415 * features/i386/i386-mmx.c: Likewise.
6416 * features/i386/i386-mmx.xml: Likewise.
6417 * regformats/i386/i386-mmx-linux.dat: Likewise.
6418 * regformats/i386/i386-mmx.dat: Likewise.
6419
6420 * features/Makefile (WHICH): Add i386/i386-mmx and
6421 i386/i386-mmx-linux.
6422
08001717
DE
64232010-04-08 Doug Evans <dje@google.com>
6424
6425 * source.c (openp): Skip $cdir in PATH.
6426
fff5cc64
PM
64272010-04-08 Phil Muldoon <pmuldoon@redhat.com>
6428
6429 PR python/11417
fff5cc64 6430 * python/py-lazy-string.c (stpy_convert_to_value): Check for
3a13a53b
L
6431 a NULL address.
6432 (gdbpy_create_lazy_string_object): Allow strings with a NULL
6433 address and a zero length.
fff5cc64 6434
f8c4f480
HZ
64352010-04-08 Hui Zhu <teawater@gmail.com>
6436
6437 * i386-tdep.c (i386_process_record): Add support for insn
6438 rdtsc.
6439
eb5cda86
DE
64402010-04-07 Doug Evans <dje@google.com>
6441
6442 * python/python.c (source_python_script): Use ensure_python_env
6443 to prepare environment for script.
6444
a055a187
L
64452010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6446
6447 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
6448 <sys/uio.h> and "i386-xstate.h".
6449 (PTRACE_GETREGSET): New.
6450 (PTRACE_SETREGSET): Likewise.
6451 (have_ptrace_getregset): Likewise.
6452 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
6453 registers.
6454 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
6455 registers.
6456 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
6457 (amd64_linux_store_inferior_registers): Likewise.
6458 (amd64_linux_read_description): Check and enable AVX target
6459 descriptions.
6460
6461 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
6462 and "features/i386/amd64-avx-linux.c".
6463 (amd64_linux_regset_sections): New.
6464 (amd64_linux_core_read_description): Check and enable AVX
6465 target description.
6466 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
6467 set_gdbarch_core_regset_sections.
6468 (_initialize_amd64_linux_tdep): Call
6469 initialize_tdesc_amd64_avx_linux.
6470
6471 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
6472 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
6473 (tdesc_amd64_avx_linux): New.
6474 (amd64_linux_update_xstateregset): Likewise.
6475
6476 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
6477 (amd64_ymm_names): New.
6478 (amd64_ymmh_names): Likewise.
6479 (amd64_register_name): Likewise.
6480 (amd64_supply_xstateregset): Likewise.
6481 (amd64_collect_xstateregset): Likewise.
6482 (amd64_supply_xsave): Likewise.
6483 (amd64_collect_xsave): Likewise.
6484 (AMD64_NUM_REGS): Removed.
6485 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
6486 %xmmN if AVX is available.
6487 (amd64_pseudo_register_name): Support pseudo YMM registers.
6488 (amd64_regset_from_core_section): Support .reg-xstate section.
6489 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
6490 and ymm0h_regnum. Call set_gdbarch_register_name.
6491 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
6492
6493 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
6494 AMD64_YMM15H_REGNUM.
6495 (AMD64_NUM_REGS): New.
6496 (amd64_supply_xsave): Likewise.
6497 (amd64_collect_xsave): Likewise.
6498 (amd64_register_name): Removed.
6499 (amd64_register_type): Likewise.
6500
31aeac78
L
65012010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6502
6503 * i387-tdep.c: Include "i386-xstate.h".
6504 (XSAVE_XSTATE_BV_ADDR): New.
6505 (xsave_avxh_offset): Likewise.
6506 (XSAVE_AVXH_ADDR): Likewise.
6507 (i387_supply_xsave): Likewise.
6508 (i387_collect_xsave): Likewise.
6509
6510 * i387-tdep.h (I387_NUM_YMM_REGS): New.
6511 (I387_YMM0H_REGNUM): Likewise.
6512 (I387_YMMENDH_REGNUM): Likewise.
6513 (i387_supply_xsave): Likewise.
6514 (i387_collect_xsave): Likewise.
6515
c131fcee
L
65162010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6517
6518 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
6519 <sys/uio.h> and "i386-xstate.h".
6520 (PTRACE_GETREGSET): New.
6521 (PTRACE_SETREGSET): Likewise.
6522 (fetch_xstateregs): Likewise.
6523 (store_xstateregs): Likewise.
6524 (GETXSTATEREGS_SUPPLIES): Likewise.
6525 (regmap): Include 8 upper YMM registers.
6526 (i386_linux_fetch_inferior_registers): Support XSAVE extended
6527 state.
6528 (i386_linux_store_inferior_registers): Likewise.
6529 (i386_linux_read_description): Check and enable AVX target
6530 descriptions.
6531
6532 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
6533 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
6534 (i386_linux_regset_sections): Add ".reg-xstate".
6535 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
6536 (i386_linux_core_read_xcr0): New.
6537 (i386_linux_core_read_description): Check and enable AVX target
6538 description.
6539 (i386_linux_init_abi): Set xsave_xcr0_offset.
6540 (_initialize_i386_linux_tdep): Call
6541 initialize_tdesc_i386_avx_linux.
6542
6543 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
6544 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
6545 (i386_linux_core_read_xcr0): New.
6546 (tdesc_i386_avx_linux): Likewise.
6547 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
6548
6549 * i386-tdep.c: Include "i386-xstate.h" and
6550 "features/i386/i386-avx.c".
6551 (i386_ymm_names): New.
6552 (i386_ymmh_names): Likewise.
6553 (i386_ymmh_regnum_p): Likewise.
6554 (i386_ymm_regnum_p): Likewise.
6555 (i386_xmm_regnum_p): Likewise.
6556 (i386_register_name): Likewise.
6557 (i386_ymm_type): Likewise.
6558 (i386_supply_xstateregset): Likewise.
6559 (i386_collect_xstateregset): Likewise.
6560 (i386_sse_regnum_p): Removed.
6561 (i386_pseudo_register_name): Support pseudo YMM registers.
6562 (i386_pseudo_register_type): Likewise.
6563 (i386_pseudo_register_read): Likewise.
6564 (i386_pseudo_register_write): Likewise.
6565 (i386_dbx_reg_to_regnum): Return %ymmN register number for
6566 %xmmN if AVX is available.
6567 (i386_regset_from_core_section): Support .reg-xstate section.
6568 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
6569 (i386_process_record): Replace i386_sse_regnum_p with
6570 i386_xmm_regnum_p.
6571 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
6572 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
8d95cc3b 6573 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
c131fcee
L
6574 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
6575 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
6576 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
6577 Set ymm0_regnum.
6578 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
6579
6580 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
6581 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
6582 i386_ymm_type.
6583 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
6584 (I386_AVX_NUM_REGS): New.
6585 (i386_xmm_regnum_p): Likewise.
6586 (i386_ymm_regnum_p): Likewise.
6587 (i386_ymmh_regnum_p): Likewise.
6588
6589 * common/i386-xstate.h: New.
6590
98adf0f3
L
65912010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6592
6593 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
6594
6595 * features/Makefile (WHICH): Add i386/i386-avx,
6596 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
6597 (i386/i386-avx-expedite): New.
6598 (i386/i386-avx-linux-expedite): Likewise.
6599 (i386/x86-64-avx-expedite):Likewise.
6600 (i386/x86-64-avx-linux-expedite): Likewise.
6601 ($(outdir)/i386/i386-avx.dat): New dependency.
6602 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
6603 ($(outdir)/i386/x86-avx-64.dat): Likewise.
6604 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
6605
6606 * features/i386/32bit-avx.xml: New.
6607 * features/i386/64bit-avx.xml: Likewise.
6608 * features/i386/i386-avx-linux.c: Likewise.
6609 * features/i386/i386-avx-linux.xml: Likewise.
6610 * features/i386/i386-avx.c: Likewise.
6611 * features/i386/i386-avx.xml: Likewise.
6612 * features/i386/x86-64-avx-linux.c: Likewise.
6613 * features/i386/x86-64-avx-linux.xml: Likewise.
6614 * features/i386/x86-64-avx.c: Likewise.
6615 * features/i386/x86-64-avx.xml: Likewise.
6616 * regformats/i386/i386-avx-linux.dat: Likewise.
6617 * regformats/i386/i386-avx.dat: Likewise.
6618 * regformats/i386/x86-64-avx-linux.dat: Likewise.
6619 * regformats/i386/x86-64-avx.dat: Likewise.
6620
05159abe
DE
66212010-04-07 Doug Evans <dje@google.com>
6622
6623 * top.c (source_file_name): Make const char *.
6624 * top.h (source_file_name): Update.
6625 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
6626 const char *.
6627 (script_from_file): Change `file' arg to const char *.
6628 * cli/cli-script.h (script_from_file): Update.
6629
96e39866
DE
66302010-04-06 Doug Evans <dje@google.com>
6631
6632 * cli/cli-cmds.c (source_command): Run cleanups.
6633
3149d8c1
SS
66342010-04-06 Stan Shebs <stan@codesourcery.com>
6635
6636 * defs.h (char_ptr): Move typedef here from...
6637 * ada-lang.c (char_ptr): Remove.
6638 * charset.c (char_ptr): Remove.
6639 * tracepoint.h (struct uploaded_string): Remove.
6640 (struct uploaded_tp): Use vectors for string arrays.
6641 * tracepoint.c (trace_save): Use vectors of actions.
6642 (parse_tracepoint_definition): Ditto.
6643 (get_uploaded_tp): Clear vectors.
6644 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
6645 (next_cmd): Change to an int.
6646 (read_next_cmd): Use vector of command strings.
6647
4cc23ede
DE
66482010-04-06 Doug Evans <dje@google.com>
6649
6650 * top.h (source_script, cd_command): Delete.
6651 * main.c: #include "cli/cli-cmds.h"
6652
bd333fb7
KB
66532010-04-06 Kevin Buettner <kevinb@redhat.com>
6654
6655 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
6656 type in bytes, not bits.
6657
ec8a089a
PM
66582010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
6659
6660 * stabsread.c (define_symbol): Add support for char
6661 and string constants.
6662
2244ba2e
PM
66632010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
6664
6665 Remove remaining "%ll" uses.
6666 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
6667 hex_string call.
6668 * rs6000-nat.c (rs6000_ptrace64): Idem.
6669 * solib-pa64.c (pa64_current_sos): Idem.
6670 * solib-spu.c (spu_current_sos): Idem.
6671 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
6672 plongest call.
6673 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
6674 phex (VAR, 8) call.
6675 * sh64-tdep.c (sh64_show_media_regs): Idem.
6676
fce3c1f0
SS
66772010-04-05 Stan Shebs <stan@codesourcery.com>
6678
6679 * tracepoint.c: Include gdbcore.h.
6680 (tfile_xfer_partial): Return partial results, also try reading
6681 from executable.
6682 (tfile_has_all_memory): New function.
6683 (init_tfile_ops): Use it.
6684
626ea16d
SDJ
66852010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
6686
6687 PR gdb/10736:
6688 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
6689 the changes in data-directory.
6690 (init_sysinfo): Reload the syscall XML file if the data-directory
6691 has changed.
6692
1f7ccab2
JK
66932010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6694
6695 Code cleanup.
6696 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
6697
d77f58be
SS
66982010-04-04 Stan Shebs <stan@codesourcery.com>
6699 Nathan Sidwell <nathan@codesourcery.com>
6700
6701 * breakpoint.c (breakpoint_1): Add filter argument, return number of
6702 breakpoints printed.
6703 (is_hardware_watchpoint): Make argument const.
6704 (is_watchpoint): Ditto.
6705 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
6706 use it everywhere.
6707 (breakpoints_info): Pass NULL to breakpoint_1.
6708 (maintenance_info_breakpoints): Ditto.
6709 (watchpoints_info): New function.
6710 (tracepoints_info): Use breakpoint_1 filter.
6711 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
6712 (_initialize_breakpoint): Make "info watchpoints" its own command.
6713 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
6714 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
6715
af54718e
SS
67162010-04-04 Stan Shebs <stan@codesourcery.com>
6717
6718 * tracepoint.c (tfile_fetch_registers): Add fallback case.
6719
74d1f91e
JK
67202010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6721
6722 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
6723 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
6724
91d91ceb
JK
67252010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6726
6727 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
6728 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
6729
60531b24
JK
67302010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6731
6732 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
6733 code form.
6734
a3c4230a
HZ
67352010-04-02 Hui Zhu <teawater@gmail.com>
6736
6737 * i386-tdep.c (OT_DQUAD): New enum.
6738 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
6739 SSE3, SSSE3 and SSE4.
6740
b15758fe
HZ
67412010-04-02 Hui Zhu <teawater@gmail.com>
6742
6743 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
6744 "*addr = 0".
6745
afd02f27
PA
67462010-04-02 Pedro Alves <pedro@codesourcery.com>
6747
6748 * tracepoint.c (trace_dump_actions): New, factored out from
6749 trace_dump_command, and adjusted to recurse into while-stepping's
6750 action list.
6751 (trace_dump_command): Use it.
6752
5cea2a26
PA
67532010-04-02 Pedro Alves <pedro@codesourcery.com>
6754
6755 * breakpoint.h (struct counted_command_line): Moved definition to
6756 breakpoint.c, and forward declare.
6757 (breakpoint_commands): Declare.
6758 * breakpoint.c (struct counted_command_line): Moved here.
6759 (breakpoint_commands): New.
6760 * tracepoint.c (encode_actions): Use breakpoint_commands.
6761 * remote.c (remote_download_tracepoint): Ditto.
6762
7c47795c
L
67632010-04-01 H.J. Lu <hongjiu.lu@intel.com>
6764
6765 * remote.c (remote_parse_stop_reply): Use hex_string instead
6766 of phex_nz for error.
6767
fff87407
SS
67682010-04-01 Stan Shebs <stan@codesourcery.com>
6769 Nathan Sidwell <nathan@codesourcery.com>
6770
6771 * tracepoint.h (enum actionline_type): Remove.
6772 (validate_actionline): Change return to void.
6773 * tracepoint.c (report_agent_reqs_errors): New function.
6774 (validate_actionline): Call it, change return to void, report errors
6775 more consistently.
6776 (collect_symbol): Call report_agent_reqs_errors.
6777 (encode_actions_1): Ditto.
6778 (encode_actions): Don't expect a result from validate_actionline.
6779
615bcdef
SS
67802010-04-01 Stan Shebs <stan@codesourcery.com>
6781
6782 * tracepoint.c (trace_start_command): Confirm if trace is running.
6783 (trace_stop_command): Error if trace not running.
6784
fe01d668
L
67852010-04-01 H.J. Lu <hongjiu.lu@intel.com>
6786
6787 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
6788 (AMD64_NUM_LOWER_BYTE_REGS): New.
6789 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
6790 (amd64_pseudo_register_write): Likewise.
6791 (amd64_init_abi): Set num_byte_regs to 20.
6792
86b17b60
PA
67932010-04-01 Pedro Alves <pedro@codesourcery.com>
6794
6795 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
6796 (prev_breakpoint_count): New.
6797 (set_breakpoint_count): Adjust.
6798 (rbreak_start_breakpoint_count): New.
6799 (start_rbreak_breakpoints): Adjust.
6800 (end_rbreak_breakpoints): Adjust.
6801 (struct commands_info) <arg>: New field.
6802 (do_map_commands_command): Tweak output to include breakpoint spec
6803 range.
6804 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
6805 ARG was empty on entry. Set INFO's arg.
6806 (create_breakpoint): Adjust.
6807
6808 * NEWS: Clarify `commands' changes.
6809
2c58c0a9
PA
68102010-04-01 Pedro Alves <pedro@codesourcery.com>
6811
6812 * tracepoint.c: Include stack.h.
6813 (struct add_local_symbols_data): New.
6814 (do_collect_symbol): New.
6815 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
6816 iterate_over_block_local_vars.
6817 * stack.c (print_block_frame_locals): Rewrite as ...
6818 (iterate_over_block_locals): ... this. Take a callback function
6819 pointer and generic data pointer, and call that instead of
6820 print_variable_and_value.
6821 (struct print_variable_and_value_data): New.
6822 (do_print_variable_and_value): New.
6823 (iterate_over_block_local_vars): New, abstracted out from
6824 print_frame_local_vars.
6825 (print_frame_local_vars): Rewrite using
6826 iterate_over_block_local_vars.
6827 (iterate_over_block_arg_vars): New, abstracted out from
6828 print_frame_arg_vars.
6829 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
6830 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
6831 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
6832
d476da0e
RE
68332010-03-31 Richard Earnshaw <rearnsha@arm.com>
6834
6835 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
8d95cc3b 6836 instructions. Use the PC+4 if the base of the TBB or TBH is the
d476da0e
RE
6837 PC register.
6838
8072405b
JK
68392010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
6840
6841 Fix crash on reading wrong function declaration DWARF.
6842 * dwarf2read.c (read_subroutine_type): New variable void_type.
6843 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
6844 more close to their use.
6845
8bf6485c
SS
68462010-03-31 Stan Shebs <stan@codesourcery.com>
6847
6848 * breakpoint.c (tracepoint_save_command): Include variables,
8d95cc3b 6849 conditionals, tracepoint types, and default-collect.
8bf6485c
SS
6850 * tracepoint.c (save_trace_state_variables): New function.
6851 * tracepoint.h (save_trace_state_variables): Declare it.
6852
2ae2a0b7
PM
68532010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
6854
1a161f72 6855 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
2ae2a0b7 6856
86ffb506
KS
68572010-03-30 Keith Seitz <keiths@redhat.com>
6858
6859 * c-typeprint.c (c_type_print_args): Don't print "void"
6860 for java, regardless of whether it is TYPE_PROTOTYPED.
6861 Use the passed-in language instead of current_language.
6862 (c_type_print_varspec_suffix): Use current_language instead
6863 of assuming language_c.
6864 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
6865 any return type specifier from the physname.
6866
956c2c8b
PA
68672010-03-30 Pedro Alves <pedro@codesourcery.com>
6868
6869 * tui/tui-interp.c (tui_is_toplevel): New.
6870 (tui_init): Set it.
6871 (tui_allowed_p): New.
6872 * tui/tui.c (tui_enable): Check if the TUI is allowed before
6873 enabling it.
6874 * tui/tui.h (tui_allowed_p): Declare.
6875
98e5a990
TT
68762010-03-30 Ozkan Sezer <sezeroz@gmail.com>
6877
6878 * serial.h: Include winsock2.h before windows.h.
6879
c8d5aac9
L
68802010-03-30 H.J. Lu <hongjiu.lu@intel.com>
6881
6882 * NEWS: Mention xmlRegisters= in qSupported packet.
6883
6884 * i386-tdep.c: Include "remote.h".
6885 (_initialize_i386_tdep): Call register_remote_support_xml.
6886
6887 * remote.c (remote_support_xml): New.
6888 (register_remote_support_xml): Likewise.
6889 (remote_query_supported_append): Likewise.
6890 (remote_query_supported): Support remote_support_xml.
6891
6892 * remote.h (register_remote_support_xml): New.
6893
76a2b958
SS
68942010-03-29 Stan Shebs <stan@codesourcery.com>
6895
42e08e69
SS
6896 * tracepoint.c (trace_find_line_command): Remove dead code.
6897
409873ef
SS
6898 * tracepoint.h (struct uploaded_string): New struct.
6899 (struct uploaded_tp): New fields for source strings.
6900 * breakpoint.c (this_utp, next_cmd): New globals.
6901 (read_uploaded_action): New function.
6902 (create_tracepoint_from_upload): Fill in more parts
6903 of a tracepoint.
6904 * tracepoint.c (encode_source_string): New function.
6905 (trace_save): Write out source strings, fix error checks.
6906 (parse_tracepoint_definition): Add source string parsing.
6907 * remote.c (PACKET_TracepointSource): New packet type.
6908 (remote_download_command_source): New function.
6909 (remote_download_tracepoint): Download source pieces also.
6910 (_initialize_remote): Add packet config command.
6911
a0405854
SS
6912 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
6913 expression handler.
6914
76a2b958
SS
6915 * tracepoint.c (start_tracing): Check tracepoints before sending
6916 commands to target, don't start if all tracepoints disabled.
6917
d350db38
PA
69182010-03-28 Pedro Alves <pedro@codesourcery.com>
6919
12f2d601 6920 * cli/cli-script.c (process_next_line): Handle 'stepping'.
d350db38 6921
8b9b7ef8
SS
69222010-03-26 Stan Shebs <stan@codesourcery.com>
6923
6924 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
6925
9766ced4
SS
69262010-03-26 Tom Tromey <tromey@redhat.com>
6927
6928 * breakpoint.c (commands_command_1): Duplicate 'arg'.
6929
059acae7
UW
69302010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6931
6932 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
6933 (skip_prologue_sal): Remove local definition.
6934 (resolve_sal_pc): Remove now unnecessary code.
6935 * linespec.c (minsym_found): Call skip_prologue_sal.
6936 * symtab.c (find_function_start_pc): Remove.
6937 (find_function_start_sal): Extract prologue skipping into ...
6938 (skip_prologue_sal): ... this new function. Handle code both
6939 with and without debug info. Respect SAL's explicit_pc and
6940 explicit_line flags. Inline old find_function_start_pc.
6941 * symtab.h (find_function_start_pc): Remove.
6942 (skip_prologue_sal): Add prototype.
6943
4a811a97
UW
69442010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6945
6946 * dwarf2read.c (read_func_scope): Also scan specification DIEs
6947 for DW_TAG_imported_module children.
6948
907af001
UW
69492010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6950
6951 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
6952 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
6953 * completer.c (add_struct_fields): Fix inverted logic.
6954
dde2d684
UW
69552010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6956
6957 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
6958
a609a0c8
PA
69592010-03-26 Pedro Alves <pedro@codesourcery.com>
6960
6961 * tracepoint.c (current_trace_status): Don't make sure error_desc
6962 is non-NULL here.
6963 (parse_trace_status): Release a previous error_desc string, and
6964 set it to NULL by default. If stop reason is tracepoint_error,
6965 make sure error_desc is not left NULL.
6966
610197fd
PA
69672010-03-26 Pedro Alves <pedro@codesourcery.com>
6968
6969 * tracepoint.c (trace_save): Remove X from tracepoint error
6970 description.
6971
99b5e152
PA
69722010-03-26 Pedro Alves <pedro@codesourcery.com>
6973
6974 * tracepoint.c (parse_trace_status): Don't allow plain strings in
6975 the terror description. Don't expect an X prefix.
6976
6c28cbf2
SS
69772010-03-25 Stan Shebs <stan@codesourcery.com>
6978
6979 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
6980 (struct trace_status): New field error_desc.
6981 * tracepoint.c (stop_reason_names): Add terror.
6982 (current_trace_status): Ensure non-NULL error description.
6983 (trace_status_command): Add error report.
6984 (trace_status_mi): Ditto.
6985 (trace_save): Add special case for error description.
6986 (parse_trace_status): Add case for errors.
6987
418835cc
KS
69882010-03-25 Keith Seitz <keiths@redhat.com>
6989
6990 * dwarf2read.c (read_subroutine_type): If the compilation unit
6991 language is Java, mark any formal parameter named "this" as
6992 artificial (GCC/43521).
6993 (dwarf2_name): Add special handling for Java constructors.
6994
aa7d318d
TT
69952010-03-25 Tom Tromey <tromey@redhat.com>
6996
6997 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
6998 * infrun.c (handle_inferior_event): Change initialization of
6999 stop_stack_dummy.
7000 (handle_inferior_event): Change assignment to stop_stack_dummy.
7001 (normal_stop): Update use of stop_stack_dummy.
7002 (struct inferior_status) <stop_stack_dummy>: Change type.
7003 * inferior.h (stop_stack_dummy): Update.
7004 * infcmd.c (stop_stack_dummy): Change type.
7005 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
7006 function.
7007 (call_function_by_hand): Call set_std_terminate_breakpoint.
7008 Rewrite std::terminate handling.
7009 * breakpoint.h (enum bptype) <bp_std_terminate,
7010 bp_std_terminate_master>: New.
7011 (enum stop_stack_kind): New.
7012 (struct bpstat_what) <call_dummy>: Change type.
7013 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
7014 Declare.
7015 * breakpoint.c (create_std_terminate_master_breakpoint): New
7016 function.
7017 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
7018 Call create_std_terminate_master_breakpoint.
7019 (print_it_typical): Handle new breakpoint kinds.
7020 (bpstat_stop_status): Handle bp_std_terminate_master.
7021 (bpstat_what): Correctly set call_dummy field. Handle
7022 bp_std_terminate_master and bp_std_terminate.
7023 (print_one_breakpoint_location): Update.
7024 (allocate_bp_location): Update.
7025 (set_std_terminate_breakpoint): New function.
7026 (delete_std_terminate_breakpoint): Likewise.
7027 (create_thread_event_breakpoint): Update.
7028 (delete_command): Update.
7029 (breakpoint_re_set_one): Update.
7030 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
7031
82ccf5a5
JK
70322010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7033
7034 * symfile.c (build_section_addr_info_from_bfd): New.
7035 (build_section_addr_info_from_objfile): Base it on
7036 build_section_addr_info_from_bfd.
7037 (addrs_section_compar, addrs_section_sort): New.
7038 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
7039 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
7040 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
7041
737c4c52
MS
70422010-03-24 Michael Snyder <msnyder@localhost.localdomain>
7043
8d95cc3b 7044 * elfread.c (find_separate_debug_file_by_buildid):
737c4c52
MS
7045 Remove unused local variable.
7046
95a42b64
TT
70472010-03-24 Tom Tromey <tromey@redhat.com>
7048
7049 PR breakpoints/9352:
7050 * NEWS: Mention changes to `commands' and `rbreak'.
7051 * symtab.c (do_end_rbreak_breakpoints): New function.
7052 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
7053 end_rbreak_breakpoints.
7054 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
7055 (set_breakpoint_count): Likewise. Clear last_was_multi.
7056 (multi_start, multi_end, last_was_multi): New globals.
7057 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
7058 functions.
7059 (struct commands_info): New
7060 (do_map_commands_command): New function.
7061 (commands_command_1): New function.
7062 (commands_command): Use it.
7063 (commands_from_control_command): Likewise.
7064 (do_delete_breakpoint): New function.
7065 (delete_command): Use it.
7066 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
7067 (do_map_disable_breakpoint): New function.
7068 (disable_command): Use it.
7069 (do_map_enable_breakpoint): New function.
7070 (enable_command): Use it.
7071 (enable_once_breakpoint): Add argument.
7072 (enable_once_command): Update.
7073 (enable_delete_breakpoint): Add argument.
7074 (enable_delete_command): Update.
7075 (break_command_really): Set last_was_multi when needed.
7076 (check_tracepoint_command): Fix formatting.
7077 (validate_commands_for_breakpoint): New function.
7078 (breakpoint_set_commands): Use it.
7079 (tracepoint_save_command): Update.
7080 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
7081 Declare.
7082
9add0f1b
TT
70832010-03-24 Tom Tromey <tromey@redhat.com>
7084
7085 * breakpoint.h (struct counted_command_line): New struct.
7086 (struct breakpoint) <commands>: Change type.
7087 (struct bpstats) <commands>: Change type.
7088 <commands_left>: New field.
7089 * breakpoint.c (alloc_counted_command_line): New function.
7090 (incref_counted_command_line): Likewise.
7091 (decref_counted_command_line): Likewise.
7092 (do_cleanup_counted_command_line): Likewise.
7093 (make_cleanup_decref_counted_command_line): Likewise.
7094 (breakpoint_set_commands): Use decref_counted_command_line and
7095 alloc_counted_command_line.
7096 (commands_command): Don't error if breakpoint commands are
7097 executing.
7098 (commands_from_control_command): Likewise.
7099 (bpstat_free): Update.
7100 (bpstat_copy): Likewise.
7101 (bpstat_clear_actions): Likewise.
7102 (bpstat_do_actions_1): Likewise.
7103 (bpstat_stop_status): Likewise.
7104 (print_one_breakpoint_location): Likewise.
7105 (delete_breakpoint): Likewise.
7106 (bpstat_alloc): Initialize new field.
7107 (tracepoint_save_command): Update.
7108 * tracepoint.c (encode_actions): Update.
7109 (trace_dump_command): Update.
7110
a6c727b2
DJ
71112010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7112
7113 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
7114 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
7115 (read_structure_type): For RealView, set TYPE_STUB on structures with
7116 no byte size and no children.
7117 (read_subroutine_type): Mark functions as prototyped by default.
7118 * symtab.c (producer_is_realview): New function.
7119 * symtab.h (expand_line_sal): Fix declaration formatting.
7120 (producer_is_realview): Declare.
7121
0d39a070
DJ
71222010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7123
7124 * arm-tdep.c (skip_prologue_function): New function.
7125 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
7126 (thumb_analyze_prologue): Document return value. Recognize more
7127 Thumb instructions, skippable calls, and some Thumb-2 instructions.
7128 Add debug output.
7129 (arm_skip_prologue): Remove call dummy check. Check the prologue
7130 for non-GNU compilers.
7131 (arm_instruction_changes_pc): New function.
7132 (arm_analyze_prologue): New function, broken out from
7133 arm_scan_prologue. Recognize more ARM instructions and skippable
7134 calls. Update comments. Handle NULL cache. Return the address
7135 of the first unrecognized instruction. Do not skip past other
7136 instructions which change control flow. Add debug output.
7137 (arm_scan_prologue): Use arm_analyze_prologue.
7138 (ARM_PC_32): Delete.
7139 (shifted_reg_val): Simplify ARM_PC_32 check.
7140
4baf5cf4
VP
71412010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7142
7143 * tracepoint.c (tvariables_info_1): Actually compute
7144 the number of rows in the result.
7145
4a5e7a5b
PA
71462010-03-24 Pedro Alves <pedro@codesourcery.com>
7147
7148 * remote.c (crc32): Constify `buf' parameter.
7149 (remote_verify_memory): New, abstracted out from...
7150 (compare_sections_command): ... this. Remove hardcoded target
7151 checks.
7152 (init_remote_ops): Install remote_verify_memory.
7153 * target.c (target_verify_memory): New.
7154 * target.h (struct target_ops) <to_verify_memory>: New field.
7155 (target_verify_memory): Declare.
7156
011aacb0
VP
71572010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7158
7159 Implement -trace-save.
7160
7161 * mi-cmds.h (mi_cmds_trace_save): Declare.
7162 * mi-cmds.c (mi_cmds): Register -trace-save.
7163 * mi/mi-main.c (mi_cmd_trace_save): New.
7164 * remote.c (remote_save_trace_data): Take const parameter.
7165 * target.h (struct target_ops::to_save_trace_data): Take
7166 const parameter.
7167 * target.c (update_current_target): Adjust to the above.
7168 * tracepoint.c (trave_save): New, extracted from
7169 (trace_save_command): ...this.
7170 (tfile_trace_find): Remove message that is unnecessary now
7171 that 'tfind' reports found frame.
7172 * tracepoint.h (trace_save): Declare.
7173
f197e0f1
VP
71742010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7175
7176 Implement -trace-find.
7177
7178 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
7179 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
7180 * mi/mi-main.c (mi_cmd_trace_find): New.
7181 * target.h (struct target_ops): Document to_trace_find.
7182 * tracepoint.h (tfind_1): Declare.
7183 * tracepoint.c (finish_tfind_command): Rename to...
7184 (tfind_1): ...this.
7185 * remote.c (remote_trace_find): Return -1 if target say
7186 there's no frame. Improve error diagnostics.
7187
40e1c229
VP
71882010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7189
7190 -trace-define-variable and -trace-list-variables.
7191
7192 * tracepoint.c (create_trace_state_variable): Make
7193 private copy of name, as opposed to assuming the
7194 pointer lives forever.
7195 (tvariables_info_1): New.
7196 (tvariables_info): Use the above.
7197 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
7198 Declare.
7199 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
7200 and -trace-list-variables.
7201 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
7202 (mi_cmd_trace_list_variables): New.
7203 * mi/mi-main.c (mi_cmd_trace_define_variable)
7204 (mi_cmd_trace_list_variables): New.
7205
9b4c786c
VP
72062010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7207
7208 Implement -break-passcount.
7209
7210 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
7211 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
7212 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
7213
f224b49d
VP
72142010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7215
7216 -trace-start/-trace-end/-trace-status.
7217
7218 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
7219 and -trace-stop.
7220 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
7221 (mi_cmd_trace_stop): Declare.
7222 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
7223 (mi_cmd_trace_stop): New.
7224 * tracepoint.c (start_tracing): New, extracted from...
7225 (trace_start_command): ...this.
7226 (trace_status_mi): New.
7227 * tracepoint.h (struct trace_status): Document
7228 stopping_tracepoint.
7229 (start_tracing, stop_tracing, trace_status_mi): Declare.
7230
6534d786
VP
72312010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7232
7233 Implement creating tracepoints with -break-insert.
7234
7235 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
7236 to mean that tracepoint should be created.
7237
51661e93
VP
72382010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7239
7240 * breakpoint.c (check_no_tracepoint_commands): Use
7241 current spelling of 'teval'.
7242
a7bdde9e
VP
72432010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7244
7245 Unify actions and commands
7246
7247 * defs.h (read_command_lines, read_command_lines_1): New
7248 parameters validator and closure.
7249 * tracepoint.h (struct action_line): Remove.
7250 * breakpoint.h (struct breakpoint): Remove the 'actions'
7251 field.
7252 * defs.h (enum command_control_type): New value
7253 while_stepping_control.
7254 (struct command_line): Add comments.
7255 * breakpoint.c (breakoint_is_tracepoint): New.
7256 (breakpoint_set_commands): For tracepoints,
7257 verify the commands are permissible.
7258 (check_tracepoint_commands): New.
7259 (commands_command): Require that each new line is validated using
7260 check_tracepoint_command, if we set commands for a tracepoint.
7261 (create_tracepoint_from_upload): Likewise.
7262 (print_one_breakpoint_location): Remove the code to print
7263 actions specifically.
7264 (tracepoint_save_command): Relay to print_command_lines.
7265 * cli/cli-script.c (process_next_line): New parameters validator
7266 and closure. Handle 'while-stepping'. Call validator if not null.
7267 (read_command_lines, read_command_lines1): Likewise.
7268 (recurse_read_control_structure): New parameters validator and
7269 closure. Handle while_stepping_control.
7270 (print_command_lines): Handle while-stepping.
7271 (get_command_line, define_command, document_command): Adjust.
7272 * remote.c (remote_download_tracepoint): Adjust.
7273 * tracepoint.c (make_cleanup_free_actions, read_actions)
7274 (free_actions, do_free_actions_cleanup): Remove.
7275 (trace_actions_command): Use read_command_lines.
7276 (validate_actionline): Use error in one place.
7277 (encode_actions_1): New, extracted from...
7278 (encode_actions): ...this. Also use cleanups for exception
7279 safety.
7280 (trace_dump_command): Adjust.
7281 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
7282 it's tracepoint.
7283
64e3cf3d
MF
72842010-03-23 Mike Frysinger <vapier@gentoo.org>
7285
7286 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
7287
52e9fde8
SS
72882010-03-22 Stan Shebs <stan@codesourcery.com>
7289
7290 * value.c (value_static_field): Be lazy about the field's value.
7291
508ccb1f
TT
72922010-03-22 Reid Kleckner <reid@kleckner.net>
7293
7294 PR gdb/11094
7295 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
7296 bp_jit_event.
7297 (disable_breakpoints_in_shlibs): Likewise.
7298
acebe513
UW
72992010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
7300
7301 * dwarf2read.c (partial_die_parent_scope): Work around buggy
7302 GCC 4.1 debug info generation (GCC PR c++/28460).
7303 (determine_prefix): Likewise.
7304
957b8b5a
DJ
73052010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
7306
7307 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
7308 get_current_arch.
7309 * tui/tui-layout.c (extract_display_start_addr): Likewise.
7310
3b11a015
SS
73112010-03-19 Stan Shebs <stan@codesourcery.com>
7312
7313 * ax-gdb.c (gen_fetch): Handle bool.
7314 (gen_usual_unary): Ditto.
7315 (gen_cast): Ditto.
7316 (gen_equal): New function.
7317 (gen_less): New function.
7318 (gen_expr_binop_rest): Call them, also return integer type from
7319 logical operations.
7320 (gen_expr): Ditto.
7321
20781792
TT
73222010-03-19 Tom Tromey <tromey@redhat.com>
7323
7324 * jv-lang.c (jv_dynamics_objfile_data_key)
7325 (jv_type_objfile_data_key): New globals.
7326 (class_symtab): Move earlier.
7327 (jv_per_objfile_free): New function.
7328 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
7329 parameter.
7330 Remove ancient #if 1.
7331 (add_class_symbol): Remove redundant declaration.
7332 (java_lookup_class): Use alloc_type, not alloc_type_arch.
7333 (java_link_class_type): Mark as static. Update.
7334 (jv_clear_object_type): New function.
7335 (set_java_object_type): Likewise.
7336 (get_java_object_type): Use set_java_object_type.
7337 (is_object_type): Likewise.
7338 (_initialize_java_language): Register new objfile keys.
7339 (get_java_class_symtab): Add 'gdbarch' parameter.
7340 (add_class_symtab_symbol): Update.
7341 (type_from_class): Update.
7342
cf3e25ca
SS
73432010-03-19 Stan Shebs <stan@codesourcery.com>
7344
8d95cc3b 7345 * ax-general.c (ax_const_l): Fix a sizing bug.
cf3e25ca 7346
f1ae44c9 73472010-03-18 Joel Brobecker <brobecker@adacore.com>
7348
7349 GDB 7.1 released.
7350
4daf5ac0
SS
73512010-03-18 Stan Shebs <stan@codesourcery.com>
7352 Pedro Alves <pedro@codesourcery.com>
7353
7354 * target.h (struct target_ops): New method
7355 to_set_circular_trace_buffer.
7356 (target_set_circular_trace_buffer): New macro.
7357 * target.c (update_current_target): Add
7358 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
7359 default behavior.
7360 * remote.c (remote_set_circular_trace_buffer): New function.
7361 (init_remote_ops): Add it to vector.
7362 * tracepoint.h (struct trace_status): New field traceframes_created,
7363 change buffer_size and buffer_free to int.
7364 * tracepoint.c (circular_trace_buffer): New global.
7365 (start_tracing): Send values of disconnected tracing and circular
7366 trace buffer settings.
7367 (set_circular_trace_buffer): New function.
7368 (parse_trace_state): Handle total space and frames created.
7369 (trace_status_command): Display total space and total frames
7370 created.
7371 (trace_save): Write out new status values.
7372 (parse_trace_status): Set traceframe_count, traceframes_created,
7373 buffer_free and buffer_size to -1 by default.
7374 (_initialize_tracepoint): New setshow for circular-trace-buffer.
7375 * NEWS: Mention the circular trace buffer option.
7376
40c549d6
TT
73772010-03-18 Tom Tromey <tromey@redhat.com>
7378
7379 * infcmd.c (finish_command_continuation): Wrap print_return_value
7380 in TRY_CATCH.
7381
e8d05480
JB
73822010-03-18 Joel Brobecker <brobecker@adacore.com>
7383
7384 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
7385 DIE has a name before creating the associated partial symbol.
7386 (read_func_scope): Emit a complaint if the subprogram does not
7387 have a name or when we can't extract the subprogram PC bounds.
7388
441b986a
UW
73892010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
7390
7391 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
7392 instead of selected frame architecture.
7393
4247603b
PA
73942010-03-18 Pedro Alves <pedro@codesourcery.com>
7395
7396 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
7397 a valid selected thread, and that it is not running.
7398 (advance_command): Ditto.
7399 (finish_command): Ditto.
7400
400c6af0
SS
74012010-03-17 Stan Shebs <stan@codesourcery.com>
7402
3a96536b
SS
7403 * ax-gdb.c (require_rvalue): Disallow non-scalars.
7404
573cda03
SS
7405 * infcall.c: Include tracepoint.h.
7406 (call_function_by_hand): Disallow calls in tfind mode.
7407 * infcmd.c: Include tracepoint.h.
7408 (ensure_not_tfind_mode): New function.
7409 (continue_1): Call it.
7410 (step_1) Ditto.
7411 (jump_command): Ditto.
7412 (signal_command): Ditto.
7413 (advance_command): Ditto.
7414 (until_command): Ditto.
7415 (finish_command): Ditto.
7416 * tracepoint.h (disconnect_or_stop_tracing): Declare.
7417
400c6af0
SS
7418 * ax-gdb.h (struct axs_value): New field optimized_out.
7419 (gen_trace_for_var): Add gdbarch argument.
7420 * ax-gdb.c (gen_trace_static_fields): New function.
7421 (gen_traced_pop): Call it, add gdbarch argument.
7422 (gen_trace_for_expr): Update call to it.
7423 (gen_trace_for_var): Ditto, and report optimized-out variables.
7424 (gen_struct_ref_recursive): Check for optimized-out value.
7425 (gen_struct_elt_for_reference): Ditto.
7426 (gen_static_field): Pass gdbarch instead of expression, assume
7427 optimization if field not found.
7428 (gen_var_ref): Set the optimized_out flag.
7429 (gen_expr): Error on optimized-out variable.
7430 * tracepoint.c (collect_symbol): Handle struct-valued vars as
7431 expressions, skip optimized-out variables with computed locations.
7432 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
7433 erroring out if location expression missing.
7434 (loclist_tracepoint_var_ref): Don't error out here.
7435
a3b2a86b
TT
74362010-03-17 Tom Tromey <tromey@redhat.com>
7437
7438 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
7439 DWARF data is available.
7440
38963c97
DJ
74412010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
7442
7443 * symfile.c (generic_load): Reset breakpoints after loading.
7444
ddabfc73
TT
74452010-03-17 Tom Tromey <tromey@redhat.com>
7446
7447 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
7448
d8c09fb5
JK
74492010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7450
7451 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
7452 create_breakpoint call, adjust the parameters.
7453
bbb0eef6
JK
74542010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7455 Chandru <chandru@in.ibm.com>
7456
7457 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
7458 * valarith.c (value_subscripted_rvalue): Suppress error if
7459 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
7460
46956e39
HZ
74612010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
7462
7463 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
7464
b8d088ac
JB
74652010-03-16 Joel Brobecker <brobecker@adacore.com>
7466
7467 * ada-tasks.c (task_command_1): Check that the task ptid is valid
7468 before doing the associated thread switch.
7469
322be962
DJ
74702010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
7471
7472 * MAINTAINERS: Update my email address.
7473
8cdf0e15
VP
74742010-03-16 Vladimir Prus <vladimir@codesourcery.com>
7475
7476 Simplify MI breakpoint setting.
7477
7478 * breakpoint.c (break_command_really): Make nonstatic and
7479 rename to...
7480 (create_breakpoint): ...this. Rename prior function by this name
7481 to...
7482 (create_breakpoint_sal): ...this.
7483 (create_breakpoints): Rename to...
7484 (create_breakpoints_sal): ...this.
7485 (set_breakpoint): Remove.
7486 * breakpoint.h: Adjust to above changes.
7487 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
7488
b6e7192f
SS
74892010-03-15 Stan Shebs <stan@codesourcery.com>
7490
7491 * ax-gdb.c: Include cp-support.h.
7492 (find_field): Remove.
7493 (gen_primitive_field): New function.
7494 (gen_struct_ref_recursive): New function.
7495 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
7496 of find_field.
7497 (gen_static_field): New function.
7498 (gen_struct_elt_for_reference): New.
7499 (gen_namespace_elt): New.
7500 (gen_maybe_namespace_elt): New.
7501 (gen_aggregate_elt_ref): New.
7502 (gen_expr): Add OP_SCOPE, display opcode name in error message.
7503
1054b214
TT
75042010-03-15 Tom Tromey <tromey@redhat.com>
7505
7506 * dwarf2read.c (die_needs_namespace): Also return 0 for
7507 DW_TAG_subprogram.
7508
13387711
SW
75092010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
7510
7511 PR c++/7936:
7512 * cp-support.h: Added char *declaration element to using_direct
7513 data struct.
7514 (cp_add_using): Added char *declaration argument.
7515 (cp_add_using_directive): Ditto.
7516 (cp_lookup_symbol_imports): made extern.
7517 * cp-namespace.c: Updated with the above changes.
7518 * dwarf2read.c (read_import_statement): Ditto.
7519 (read_namespace): Ditto.
7520 (read_import_statement): Support import declarations.
7521 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
7522 declarations.
7523 Added support for 'declaration_only' search.
7524 (cp_lookup_symbol_namespace): Attempt to search for the name as
7525 is before consideration of imports.
7526 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
7527 search at every block level search.
7528 Now takes language argument.
7529 (lookup_symbol_aux): Updated.
7530
6e31430b
TT
75312010-03-15 Tom Tromey <tromey@redhat.com>
7532
7533 * c-exp.y (name_not_typename): Add 'operator' clause.
7534
4dea3bb7 75352010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
bf307134
JB
7536
7537 * configure.ac: Exit if ${gdb_target_obs}" is not set.
7538 * configure: Regenerate.
7539
4d9743af
JK
75402010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7541
7542 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
7543 and ".sdynbss". Update the comment.
7544
f75150fe
JZ
75452010-03-15 Jie Zhang <jie@codesourcery.com>
7546
7547 * MAINTAINERS: Update my email address.
7548
3c13bc11
DJ
75492010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
7550
7551 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
7552
43484f03
DJ
75532010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
7554
7555 * charset.c [USE_WIN32API]: Include <windows.h>.
7556 (_initialize_charset): Correct type of w32_host_default_charset.
7557
5f25d77d
PA
75582010-03-14 Pedro Alves <pedro@codesourcery.com>
7559
7560 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
7561
1c809c68
TT
75622010-03-12 Tom Tromey <tromey@redhat.com>
7563
7564 PR c++/9708:
7565 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
7566 in a lexical block does not need a namespace.
7567 (new_symbol) <DW_TAG_variable>: Put extern variables on
7568 list_in_scope in all cases.
7569
948103cf
SS
75702010-03-12 Stan Shebs <stan@codesourcery.com>
7571
7572 * ax-gdb.c (gen_expr): Add shift expressions.
7573 (gen_expr_binop_rest): Ditto.
7574
00ae8fef
SW
75752010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
7576
7577 * buildsym.c (finish_block): Reset using_directives pointer
7578 after block initialization.
7579
9cad29ac
L
75802010-03-12 H.J. Lu <hongjiu.lu@intel.com>
7581
7582 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
7583 * i386-tdep.c (i386_word_names): Likewise.
7584
2f4d8875
PA
75852010-03-12 Pedro Alves <pedro@codesourcery.com>
7586
7587 * target.c (memory_xfer_partial): Don't use the stack cache if
7588 inspecting trace frames.
7589 * tracepoint.c (finish_tfind_command): Invalidate the target
7590 dcache.
7591
ccf26247
JK
75922010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7593
7594 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
7595 for the PIC displacement, print also the displacement value.
7596 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
7597
477c84a7
KB
75982010-03-10 Kevin Buettner <kevinb@redhat.com>
7599
7600 * remote-mips.c (close_ports, mips_initialize_cleanups)
7601 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
7602 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
7603 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
7604 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
7605 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
7606 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
7607 comments describing each of these functions.
7608 (mips_enter_debug, mips_exit_debug, common_open)
7609 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
7610 blank line after the comment describing the function.
7611
01c30d6e
JK
76122010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7613
7614 * solib-svr4.c (svr4_exec_displacement): Return now success, new
7615 parameter displacementp. Update comment.
7616 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
7617 element exists. Return if svr4_exec_displacement was not successful.
7618 Update comment.
7619
09919ac2
JK
76202010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7621 Daniel Jacobowitz <dan@codesourcery.com>
7622
7623 * solib-svr4.c (read_program_header): Support type == -1 to read
7624 all program headers.
7625 (read_program_headers_from_bfd): New function.
7626 (svr4_static_exec_displacement): Remove and move the comment ...
7627 (svr4_exec_displacement): ... here. Remove variable found. New
7628 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
7629 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
7630 targets using read_program_headers_from_bfd. Remove the call of
7631 svr4_static_exec_displacement.
7632
d146bf1e
TT
76332010-03-10 Tom Tromey <tromey@redhat.com>
7634
7635 * dwarf2read.c (struct pubnames_header): Remove.
7636 (_PUBNAMES_HEADER): Remove.
7637 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
7638 (struct aranges_header): Remove.
7639 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
7640 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
7641 (PUBNAMES_SECTION): Remove.
7642 (ARANGES_SECTION): Remove.
7643 (dwarf2_locate_sections): Don't handle pubnames or aranges.
7644 (dwarf2_build_psymtabs): Remove dead code.
7645 (dwarf2_build_psymtabs_easy): Remove.
7646
be391dca
TT
76472010-03-10 Tom Tromey <tromey@redhat.com>
7648
7649 * elfread.c (elf_symfile_read): Don't call
7650 dwarf2_build_frame_info.
7651 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
7652 (struct dwarf2_per_objfile) <objfile>: New field.
7653 (dwarf2_has_info): Now idempotent. Set objfile field.
7654 (dwarf2_read_section): Check and set readin field. Call
7655 posix_madvise.
7656 (dwarf2_build_psymtabs): Don't read all sections.
7657 (read_type_comp_unit_head): Read types section.
7658 (create_debug_types_hash_table): Likewise.
7659 (init_cu_die_reader): Add asserts.
7660 (process_type_comp_unit): Add assert.
7661 (dwarf2_build_psymtabs_hard): Read info section.
7662 (load_partial_comp_unit): Add assert.
7663 (create_all_comp_units): Read info section.
7664 (load_full_comp_unit): Likewise.
7665 (dwarf2_ranges_read): Read ranges section.
7666 (dwarf2_record_block_ranges): Add assert.
7667 (dwarf2_read_abbrevs): Read abbrev section.
7668 (read_indirect_string): Read str section.
7669 (dwarf_decode_line_header): Read line section.
7670 (read_signatured_type_at_offset): Read types section.
7671 (dwarf_decode_macros): Read macinfo section.
7672 (dwarf2_symbol_mark_computed): Read loc section.
7673 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
7674 dwarf2_build_frame_info.
7675 (dwarf2_build_frame_info): Unconditionally set
7676 dwarf2_frame_objfile_data on the objfile.
7677 * configure.ac: Check for posix_madvise.
7678 * config.in, configure: Rebuild.
7679
ccefe4c4
TT
76802010-03-10 Tom Tromey <tromey@redhat.com>
7681
e38df1d0
TT
7682 * xcoffread.c (xcoff_start_psymtab): Update.
7683 (xcoff_end_psymtab): Update.
7684 * psymtab.c (allocate_psymtab): Remove dead code.
7685 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
7686 void*.
7687 * mdebugread.c (parse_partial_symbols): Update.
7688 (new_psymtab): Likewise.
7689 * dwarf2read.c (process_psymtab_comp_unit): Update.
7690 (psymtab_to_symtab_1): Update.
7691 * dbxread.c (start_psymtab): Update.
7692 (end_psymtab): Likewise.
7693
be391dca 76942010-03-10 Tom Tromey <tromey@redhat.com>
e38df1d0 7695
ccefe4c4
TT
7696 * xcoffread.c: Include psymtab.h.
7697 (xcoff_sym_fns): Update.
7698 * symtab.h (struct partial_symbol): Remove.
7699 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
7700 (struct partial_symtab): Remove.
7701 (PSYMTAB_TO_SYMTAB): Remove.
7702 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
7703 (find_pc_sect_psymtab): Remove.
7704 (find_pc_sect_symtab_via_partial): Declare.
7705 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
7706 (find_main_psymtab): Remove.
7707 (find_main_filename): Declare.
7708 (fixup_psymbol_section): Remove.
7709 (fixup_section): Declare.
7710 * symtab.c: Include psymtab.h.
7711 (lookup_symtab): Use lookup_symtab method.
7712 (lookup_partial_symtab): Remove.
7713 (find_pc_sect_psymtab_closer): Remove.
7714 (find_pc_sect_psymtab): Remove.
7715 (find_pc_sect_symtab_via_partial): New function.
7716 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
7717 (fixup_section): No longer static.
7718 (fixup_psymbol_section): Remove.
7719 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
7720 (lookup_global_symbol_from_objfile): Likewise.
7721 (lookup_symbol_aux_psymtabs): Remove.
7722 (lookup_symbol_aux_quick): New function.
7723 (lookup_symbol_global): Use lookup_symbol_aux_quick.
7724 (lookup_partial_symbol): Remove.
7725 (basic_lookup_transparent_type_quick): New function.
7726 (basic_lookup_transparent_type): Use it.
7727 (find_main_psymtab): Remove.
7728 (find_main_filename): New function.
7729 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
7730 (find_line_symtab): Use expand_symtabs_with_filename method.
7731 (output_partial_symbol_filename): New function.
7732 (sources_info): Use map_partial_symbol_filenames.
7733 (struct search_symbols_data): New type.
7734 (search_symbols_file_matches): New function.
7735 (search_symbols_name_matches): Likewise.
7736 (search_symbols): Use expand_symtabs_matching method.
7737 (struct add_name_data): Rename from add_macro_name_data.
7738 (add_macro_name): Update.
7739 (add_partial_symbol_name): New function.
7740 (default_make_symbol_completion_list): Use
7741 map_partial_symbol_names.
7742 (struct add_partial_symbol_name): New type.
7743 (maybe_add_partial_symtab_filename): New function.
7744 (make_source_files_completion_list): Use
7745 map_partial_symbol_filenames.
7746 (expand_line_sal): Use expand_symtabs_with_filename method.
7747 * symmisc.c: Include psymtab.h.
7748 (print_objfile_statistics): Use print_stats method.
7749 (dump_objfile): Use dump method.
7750 (dump_psymtab, maintenance_print_psymbols)
7751 (maintenance_info_psymtabs, maintenance_check_symtabs)
7752 (extend_psymbol_list): Remove.
7753 * symfile.h (struct quick_symbol_functions): New struct.
7754 (struct sym_fns) <qf>: New field.
7755 (sort_pst_symbols): Remove.
7756 (increment_reading_symtab): Declare.
7757 * symfile.c: Include psymtab.h.
7758 (compare_psymbols, sort_pst_symbols): Remove.
7759 (psymtab_to_symtab): Remove.
7760 (increment_reading_symtab): New function.
7761 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
7762 method.
7763 (set_initial_language): Use find_main_filename.
7764 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
7765 (free_named_symtabs): Remove unused code.
7766 (start_psymtab_common, add_psymbol_to_bcache)
7767 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
7768 Remove.
7769 * stack.c: Include psymtab.h, symfile.h.
7770 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
7771 * source.h (psymtab_to_fullname): Don't declare.
7772 * source.c: Include psymtab.h.
7773 (select_source_symtab): Use find_last_source_symtab method.
7774 (forget_cached_source_info): Use forget_cached_source_info
7775 method.
7776 (find_and_open_source): No longer static.
7777 (psymtab_to_fullname): Remove.
7778 * somread.c: Include psymtab.h.
7779 (som_sym_fns): Update.
7780 * psympriv.h: New file.
7781 * psymtab.h: New file.
7782 * psymtab.c: New file.
7783 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
7784 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
7785 * objfiles.c: Include psymtab.h.
7786 (objfile_relocate1): Use relocate method.
7787 (objfile_has_partial_symbols): Use has_symbols method.
7788 * mipsread.c: Include psymtab.h.
7789 (ecoff_sym_fns): Update.
7790 * mi/mi-cmd-file.c: Include psymtab.h.
7791 (print_partial_file_name): New function.
7792 (mi_cmd_file_list_exec_source_files): Use
7793 map_partial_symbol_filenames.
7794 * mdebugread.c: Include psympriv.h.
7795 * machoread.c: Include psympriv.h.
7796 (macho_sym_fns): Update.
7797 * m2-exp.y (yylex): Use lookup_symtab.
7798 * elfread.c: Include psympriv.h.
7799 (elf_sym_fns): Update.
7800 * dwarf2read.c: Include psympriv.h.
7801 * dbxread.c: Include psympriv.h.
7802 (aout_sym_fns): Update.
7803 * cp-support.c: Include psymtab.h.
7804 (read_in_psymtabs): Remove.
7805 (make_symbol_overload_list_qualified): Use
7806 expand_symtabs_for_function method.
7807 * coffread.c: Include psympriv.h.
7808 (coff_sym_fns): Update.
7809 * blockframe.c: Include psymtab.h.
7810 (find_pc_partial_function): Use find_pc_sect_symtab method.
7811 * ada-lang.h (ada_update_initial_language): Update.
7812 * ada-lang.c: Include psymtab.h.
7813 (ada_update_initial_language): Remove 'main_pst' argument.
7814 (ada_lookup_partial_symbol): Remove.
7815 (struct ada_psym_data): New type.
7816 (ada_add_psyms): New function.
7817 (ada_add_non_local_symbols): Use map_ada_symtabs method.
7818 (struct add_partial_datum): New type.
7819 (ada_add_partial_symbol_completions): New function.
7820 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
7821 (ada_exception_support_info_sniffer): Update.
7822 * Makefile.in (SFILES): Add psymtab.c.
7823 (COMMON_OBS): Add psymtab.o.
7824 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
7825
7d8500b7
PM
78262010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
7827
7828 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
7829
c0cc3a76
SW
78302010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
7831
7832 PR C++/11236:
7833 * cp-namespace.c (cp_add_using): Deleted.
7834 (cp_add_using_directive): Use obstack allocations.
7835 Merged the function cp_add_using into this one.
7836 Added 'struct obstack *' argument.
7837 (cp_scan_for_anonymous_namespaces): Updated.
7838 * cp-support.h: Updated.
7839 * dwarf2read.c (read_import_statement): Updated.
7840 (read_namespace): Updated.
7841
452fa064
CF
78422010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
7843
7844 * windows-nat.c (cygwin_conv_path): Remove old macro.
7845
60e1c644
PA
78462010-03-10 Pedro Alves <pedro@codesourcery.com>
7847
7848 * breakpoint.c (condition_command): Handle watchpoint conditions.
7849 (is_hardware_watchpoint): Add comment.
7850 (is_watchpoint): New.
7851 (update_watchpoint): Don't reparse the watchpoint's condition
7852 unless necessary.
7853 (WP_IGNORE): New.
7854 (watchpoint_check): Use it.
7855 (bpstat_check_watchpoint): Handle it.
7856 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
7857 conditions in a frame where it makes sense.
7858 (watch_command_1): Store the innermost block of the condition
7859 expression.
7860 (delete_breakpoint): Delete the watchpoint condition expression.
7861 * breakpoint.h (struct bp_location) <cond>: Update comment.
7862 (struct breakpoint): New field `cond_exp_valid_block'.
7863
af6b7be1
JB
78642010-03-09 Joel Brobecker <brobecker@adacore.com>
7865
7866 Adjust handling of Ada DIEs after dwarf2_physname patch.
7867 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
7868
60c5c021
CF
78692010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
7870 Pierre Muller <muller@ics.u-strasbg.fr>
7871
7872 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
7873 from/to posix/win32.
7874 (windows_make_so): Use non-Cygwin 1.7 specific function.
7875 (windows_create_inferior): Make sure that cygallargs points to
7876 original args in non Cygwin 1.7. case.
7877
60a1502a
MS
78782010-03-09 Michael Snyder <msnyder@vmware.com>
7879
7880 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
7881 after target_read_memory to get host byte order.
7882 (i386_process_record): Ditto.
7883
94af9270
KS
78842010-03-09 Keith Seitz <keiths@redhat.com>
7885
7886 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
7887 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
7888 print out const or volatile qualifiers, too.
7889 (c_type_print_args): Add parameters show_artificial and language.
7890 Skip artificial parameters when requested.
7891 Use the appropriate language printer.
7892 (c_type_print_varspec): Tell c_type_print_args to skip artificial
7893 parameters and pass language_c.
7894 * dwarf2read.c (die_list): New file global.
7895 (struct partial_die_info): Update comments for name field.
7896 (pdi_needs_namespace): Renamed to ...
7897 (die_needs_namespace): ... this. Rewrite.
7898 (dwarf2_linkage_name): Remove.
7899 (add_partial_symbol): Do not predicate the call to
7900 partial_die_full_name based on pdi_needs_namespace.
7901 Remove call to cp_check_possible_namespace_symbols and associated
7902 outdated comments.
7903 (guess_structure_name): Do not inspect child subprogram DIEs.
7904 (dwarf2_fullname): Update comments.
7905 Use die_needs_namespace to assist in computing the name.
7906 (read_func_scope): Use dwarf2_name to get the DIE's name.
7907 Use dwarf2_physname to get the "linkage name" of the DIE.
7908 (dwarf2_add_member_field): Use dwarf2_physname instead of
7909 dwarf2_linkage_name.
7910 (read_structure_type): For structs and classes, set TYPE_NAME, too.
7911 (determine_class): Remove.
7912 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
7913 except Ada.
7914 (new_symbol): Unconditionally call dwarf2_name.
7915 Compute the "linkage name" using dwarf2_physname.
7916 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
7917 When determining to scan for anonymous C++ namespaces, ignore
7918 the linkage name.
7919 (dwarf2_physname): New function.
7920 (dwarf2_full_name): Move content to new function and call
7921 that.
7922 (dwarf2_compute_name): "New" function.
7923 (_initialize_dwarf2_read): Initialize die_list.
7924 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
7925 physname.
7926 (gnu_v3_print_method_ptr): Use the physname for virtual methods
7927 without a demangled name.
7928 Print out type information for non-virtual methods.
c8d5aac9 7929 * linespec.c (decode_line_1): Force ANY string using "::" (or
94af9270 7930 "." for java) to use decode_compound, and clean up any stray quoting.
c8d5aac9
L
7931 If we found a file symtab, re-evaluate whether the remainder is_quoted.
7932 (decode_compound): Stop consuming at an open parenthesis.
7933 Keep template parameters.
7934 Keep any overload information.
7935 Keep keywords like "const".
7936 Remove paren_pointer.
7937 Move is_quoted check from set_flags to here.
7938 Remove #if 0 code from 2000. Ten years is long enough.
7939 (find_method): Before comparing symbol names, canonicalize the string
7940 from the user.
7941 If a specific overload is requested, find it. Otherwise throw an error.
94af9270
KS
7942 (find_method_overload_end): New function.
7943 (set_flags): Remove.
c8d5aac9
L
7944 (decode_compound): Assume that parentheses are matched.
7945 It's a lot easier.
94af9270
KS
7946 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
7947 to cplus_demangle.
7948 * linespec.c (decode_line_1): Keep important keywords like
7949 "const" and "volatile".
7950 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
7951 * typeprint.h (c_type_print_args): Add declaration.
7952 * ui-file.c (do_ui_file_obsavestring): New function.
7953 (ui_file_obsavestring): New function.
7954 * ui-file.h (ui_file_obsavestring): Add declaration.
7955 * valops.c (find_overload_match): Resolve the object to
7956 a non-pointer type.
7957 If the object is a data member, search the object for the member
7958 and return with staticp set.
7959 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
7960 Do not attempt to extract a function name from non-function types.
7961 If the extracted function name and the original name are the same,
7962 we don't have a C++ method.
7963
8d95cc3b
PA
7964 From Jan Kratochvil <jan.kratochvil@redhat.com>:
7965 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
94af9270
KS
7966
7967 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
7968 and arguments from symbol lookups.
7969 * ax-gdb.c (gen_expr): Likewise.
7970 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
7971 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
7972 lookup_possible_namespace_symbol): Likewise.
7973 * cp-support.c (read_in_psymtabs): Likewise.
7974 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
7975 * language.h (la_lookup_symbol_nonlocal): Likewise.
7976 * scm-valprint.c (scm_inferior_print): Likewise.
7977 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
7978 * solib-svr.c (elf_lookup_lib): Likewise.
7979 * solib.c (show_auto_solib_add): Likewise.
7980 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
7981 * symmisc.c (maintenance_check_symtabs): Likewise.
7982 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
7983 lookup_symbol_aux_local, lookup_symbol_aux_block,
7984 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
7985 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
7986 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
7987 basic_lookup_transparent_type, find_main_psymtab,
7988 lookup_block_symbol): Likewise.
7989 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
7990 lookup_symbol_global, lookup_symbol_aux_block,
7991 lookup_symbol_partial_symbol, lookup_block_symbol,
7992 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
7993
9cb74f47
PM
79942010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
7995
7996 * python/python-internal.h: Include symtab.h.
7997
af6b7be1
JB
79982010-03-09 Joel Brobecker <brobecker@adacore.com>
7999 Pierre Muller <muller@ics.u-strasbg.fr>
e13eedd5
PM
8000
8001 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
8002 * p-valprint.c (pascal_val_print): Remove undeed block and fix
8003 indentation.
8004
bad56014
TT
80052010-03-08 Tom Tromey <tromey@redhat.com>
8006
8007 * breakpoint.c (breakpoint_1): Add "QUIT".
8008
08105857
PA
80092010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
8010 Pedro Alves <pedro@codesourcery.com>
8011
8012 * solib.c (solib_find): Replace extension if
8013 solib_symbols_extension is set in the target gdbarch.
8014 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
8015 solib_symbols_extension to "sym".
8016 * gdbarch.sh (solib_symbols_extension): New variable.
8017 (pstring): New function.
8018 * gdbarch.h, gdbarch.c: Regenerate.
8019
7c953934
TT
80202010-03-08 Tom Tromey <tromey@redhat.com>
8021
8022 PR cli/9591:
8023 * NEWS: Update.
8024 * utils.c: Include main.h.
8025 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
8026 (defaulted_query): Use default answer if `batch_flag'.
8027 * main.h (batch_flag): Declare.
8028 * main.c (batch_flag): New global.
8029 (captured_main): Remove 'batch'. Update.
8030
bbd2783e
KB
80312010-03-08 Kevin Buettner <kevinb@redhat.com>
8032
8033 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
8034 and Kevin Buettner:
8035
8036 * remote-mips.c (rockhopper_ops): New target_ops struct.
8037 (MON_ROCKHOPPER): New mips_monitor_type.
8038 (read_hex_value): New function.
8039 (mips_request): Send 8-byte values with a 'T' packet. Read the
8d95cc3b 8040 packet argument as a string and use read_hex_value to parse it.
bbd2783e
KB
8041 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
8042 (rockhopper_open): New function.
8043 (mips_wait): Read the PC, FP and SP fields as strings. Use
8044 read_hex_value to parse them and mips_set_register to commit them.
8045 (mips_set_register): New function.
8046 (mips_fetch_registers): Do not cast register value to "unsigned"
8047 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
8048 (mips_store_registers): Use a 'T' packet to set registers when
8049 using MON_ROCKHOPPER.
8050 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
8051 and expect the total to be printed before the entry address.
8052 (_initialize_remote_mips): Initialize and add rockhopper_ops.
8053
566f3d17
KB
80542010-03-08 Kevin Buettner <kevinb@redhat.com>
8055
8056 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
8057 Change return value to int. Store value fetched in location
8058 addressed by `val'. Use function's return value as success
8059 or failure indicator. Adjust all callers.
8060
9c8ee2ab 80612010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
f72d4b77
PM
8062
8063 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
8064
7155de5a
HZ
80652010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8066 Hui Zhu <teawater@gmail.com>
8067
8068 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
8069 tmp_to_stopped_data_address.
8070 (record_open): Reset tmp_to_stopped_by_watchpoint and
8071 tmp_to_stopped_data_address.
8072 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
8073 to_stopped_data_address.
8074
580879fc
HZ
80752010-03-08 Hui Zhu <teawater@gmail.com>
8076
8077 * i386-tdep.c (i386_process_record): Initialize regnum.
8078
b0fcb67f
JK
80792010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8080
8081 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
8082 Do not warn on ".gnu.liblist" and ".gnu.conflict".
8083
08597104
JB
80842010-03-08 Joel Brobecker <brobecker@adacore.com>
8085
8086 Memory error when reading wrong core file.
8087 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
8088 errors while reading the inferior memory, and return zero if
8089 an exception was raised.
8090
425b824a
MS
80912010-03-07 Michael Snyder <msnyder@vmware.com>
8092
ec6dbf37
MS
8093 * record.c (record_restore): Rename tmpu8 to rectype.
8094
648d0c8b
MS
8095 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
8096 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
8097
8098 (i386_record_push): Rename local tmpulongest to addr.
8099
8100 (i386_process_record): Rename local tmpulongest to addr.
8101
8102 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
8103 addr64.
955db0c0
MS
8104
8105 Rename local variable tmpu8 to opcode8 and regnum.
425b824a 8106
10760264
JB
81072010-03-07 Joel Brobecker <brobecker@adacore.com>
8108
8109 * remote.c (remote_get_ada_task_ptid): New function.
c8d5aac9 8110 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
10760264 8111
b3c613f2
CF
81122010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
8113
8114 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
8115 block. Define helper macros to reduce ifdefs in code.
8116 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
8117 size. Call unadorned GetModuleFileNameEx rather than
8118 GetModuleFileNameEx*.
8119 (windows_make_so): Use __PMAX to denote maximum buffer size and
8120 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
8121 appropriate.
8122 (get_image_name): Use __PMAX to denote maximum buffer size.
8123 (handle_load_dll): Likewise.
8124 (windows_pid_to_exec_file): Likewise.
8125 (windows_create_inferior): Add many accommodations for older Cygwin and
8126 non-Cygwin.
8127 (bad_GetModuleFileNameExW): Control inclusion of this function based on
8128 __USEWIDE conditional.
8129 (bad_GetModuleFileNameExA): Likewise.
8130 (_initialize_loadable): Just use real function names without the dyn_
8131 part since they are defined earlier.
8132
f870a310
TT
81332010-03-05 Corinna Vinschen <vinschen@redhat.com>
8134 Tom Tromey <tromey@redhat.com>
8135
8136 * utils.c (host_char_to_target): Add 'gdbarch' argument.
8137 (parse_escape): Likewise.
8138 * python/py-utils.c (unicode_to_target_string): Update.
8139 (unicode_to_target_python_string): Update.
8140 (target_string_to_unicode): Update.
8141 * printcmd.c (printf_command): Update.
8142 * p-exp.y (yylex): Update.
8143 * objc-exp.y (yylex): Update.
8144 * mi/mi-parse.c: Include charset.h.
8145 (mi_parse_escape): New function.
8146 (mi_parse_argv): Use it.
8147 * jv-exp.y (yylex): Update.
8148 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
8149 function.
8150 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
8151 * gdbarch.sh (auto_charset, auto_wide_charset): New.
8152 * gdbarch.c: Rebuild.
8153 * gdbarch.h: Rebuild.
8154 * defs.h (parse_escape): Update.
8155 * cli/cli-setshow.c: Include arch-utils.h.
8156 (do_setshow_command): Update.
8157 * cli/cli-cmds.c (echo_command): Update.
8158 * charset.h (target_charset, target_wide_charset): Update.
8159 * charset.c: Include arch-utils.h.
8160 (target_charset_name): Default to "auto".
8161 (target_wide_charset_name): Likewise.
8162 (show_target_charset_name): Handle "auto".
8163 (show_target_wide_charset_name): Likewise.
8164 (be_le_arch): New global.
8165 (set_be_le_names): Add 'gdbarch' argument.
8166 (validate): Likewise. Don't call set_be_le_names.
8167 (set_charset_sfunc, set_host_charset_sfunc)
8168 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
8169 Update.
8170 (target_charset): Add 'gdbarch' argument.
8171 (target_wide_charset): Likewise. Remove 'byte_order' argument.
8172 (auto_target_charset_name): New global.
8173 (default_auto_charset, default_auto_wide_charset): New functions.
8174 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
8175 for target charsets. Copy result of nl_langinfo. Use GetACP if
8176 USE_WIN32API.
8177 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
8178 remove 'byte_order' argument. Update.
8179 (classify_type): Likewise.
8180 (c_emit_char): Update.
8181 (c_printchar): Update.
8182 (c_printstr): Update.
8183 (c_get_string): Update.
8184 (evaluate_subexp_c): Update.
8185 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
8186 Declare.
8187 * python/python.c (gdbpy_target_charset): New function.
8188 (gdbpy_target_wide_charset): Likewise.
8189 (GdbMethods): Update.
8190 * NEWS: Update.
8191
4e7386b0
UW
81922010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
8193
8194 * symfile.c (build_section_addr_info_from_objfile): Do not mask
8195 off high address bits.
8196
aab48ede
UW
81972010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
8198
8199 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
8200 address as UnsignedLongLong, not LongLong.
8201
8eeafb51 82022010-03-05 Kevin Buettner <kevinb@redhat.com>
c8d5aac9 8203 Pedro Alves <pedro@codesourcery.com>
8eeafb51
KB
8204
8205 * remote-mips.c (gdbthread.h): Include.
8206 (remote_mips_ptid): Declare.
8207 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
8208 (common_open): Set inferior_ptid, add it as an inferior, and
8209 as a thread too. Delete FIXME comment regarding start_remote().
8210 (mips_close): Invoke generic_mourn_inferior().
8211 (mips_kill): Make sure that target_mourn_inferior is invoked.
8212 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
8213 it's now invoked from mips_close().
8214 (mips_load): Don't null out inferior_ptid. Don't call
8215 clear_symtab_users().
8216 (mips_thread_alive, mips_pid_to_str): New functions.
8217 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
8218 to_thread_alive and to_pid_to_str operations.
8219
ae411497
TT
82202010-03-04 Tom Tromey <tromey@redhat.com>
8221
8222 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
8223 in DWARF 3 and later.
8224 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
8225
0e0b460e
KS
82262010-03-04 Keith Seitz <keiths@redhat.com>
8227
8228 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
8229 If the filename portion of the linespec was quoted, recheck the
8230 remainder for additional quoting.
8231 (locate_first_half): Skip over completer chars, too.
8232
1b93ff13
TT
82332010-03-04 Tom Tromey <tromey@redhat.com>
8234
8235 * printcmd.c (printf_command): Pass dummy argument to
8236 printf_filtered.
8237
fc36e839
DE
82382010-03-04 Doug Evans <dje@google.com>
8239
111f853c
DE
8240 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
8241 unwound_fp.
8242
fc36e839
DE
8243 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
8244
c7437ca6
PA
82452010-03-04 Pedro Alves <pedro@codesourcery.com>
8246
8247 * breakpoint.c (update_watchpoint): Create a sentinel location if
8248 the software watchpoint isn't watching any memory.
8249 (breakpoint_address_bits): Skip dummy software watchpoint locations.
8250
58dadb1b
PA
82512010-03-04 Pedro Alves <pedro@codesourcery.com>
8252
8253 * utils.c (fputs_maybe_filtered): Check if there's already a top
8254 level interpreter before dereferencing it. If there isn't one,
8255 don't paginate either.
8256
50e98be4
DJ
82572010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
8258
8259 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
8260 the state right when single stepping.
8261 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
8262 Get the next PC along with the instruction state.
8263 (thumb_get_next_pc): Remove.
8264 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
8265
2e3ceee9
HZ
82662010-03-04 Hui Zhu <teawater@gmail.com>
8267
8268 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
8269
390a8aca
PA
82702010-03-03 Pedro Alves <pedro@codesourcery.com>
8271
8272 * utils.c (fputs_maybe_filtered): Always disable pagination if the
8273 top level interpreter is MI.
8274
9355b391
SS
82752010-03-03 Stan Shebs <stan@codesourcery.com>
8276
8277 * remote.c (remote_download_tracepoint): Iterate over locations.
8278 * tracepoint.c (validate_actionline): Ditto.
8279 (encode_actions): Add location argument.
8280 (trace_dump_command): Check all locations to see if stepping
8281 frame.
390a8aca 8282
8685c86f
L
82832010-03-03 H.J. Lu <hongjiu.lu@intel.com>
8284 Eli Zaretskii <eliz@gnu.org>
8285
8286 * NEWS: Add X86 general purpose registers section.
8287
e8f781e2
TT
82882010-03-03 Tom Tromey <tromey@redhat.com>
8289
8290 PR mi/11098:
8291 * varobj.c (install_new_value): Handle case where new print_value
8292 is NULL.
8293
a0e0ef55
TT
82942010-03-03 Dainis Jonitis <jonitis@gmail.com>
8295
8296 PR gdb/11345:
8297 * printcmd.c (printf_command): Print end of format string using
8298 printf_filtered.
8299
a58d7472
TT
83002010-03-02 Tom Tromey <tromey@redhat.com>
8301
8302 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
8303 * defs.h (read_command_lines_1): Add missing 'void'.
8304 * cli/cli-script.c (recurse_read_control_structure): Add missing
8305 'void'.
8306 (read_next_line): Likewise.
8307 (read_command_lines_1): Likewise.
8308
ce50d78b
UW
83092010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
8310
8311 * spu-tdep.c (spu_analyze_prologue): Track instruction to
8312 store backchain as part of prologue.
8313
7e9af34a
DJ
83142010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
8315
8316 * progspace.c (update_address_spaces): Update inferior address spaces
8317 also.
8318
01637564
DE
83192010-03-02 Doug Evans <dje@google.com>
8320
8321 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
8322 lowpc,highpc args to addrmap_set_empty.
8323
1ba53b71
L
83242010-03-02 H.J. Lu <hongjiu.lu@intel.com>
8325
8326 * amd64-tdep.c (amd64_byte_names): New.
8327 (amd64_word_names): Likewise.
8328 (amd64_dword_names): Likewise.
8329 (amd64_pseudo_register_name): Likewise.
8330 (amd64_pseudo_register_read): Likewise.
8331 (amd64_pseudo_register_write): Likewise.
8332 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
8333 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
8334 set_gdbarch_pseudo_register_write and
8335 set_tdesc_pseudo_register_name. Don't call
8336 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
8337
8338 * i386-tdep.c (i386_num_mmx_regs): Removed.
8339 (i386_num_pseudo_regs): Likewise.
8340 (i386_byte_names): New.
8341 (i386_word_names): Likewise.
8342 (i386_byte_regnum_p): Likewise.
8343 (i386_word_regnum_p): Likewise.
8344 (i386_mmx_regnum_p): Updated.
8345 (i386_pseudo_register_name): Make it global. Handle byte and
8346 word pseudo-registers.
8347 (i386_pseudo_register_read): Likewise.
8348 (i386_pseudo_register_write): Likewise.
8349 (i386_pseudo_register_type): Handle byte, word and dword
8350 pseudo-registers
8351 (i386_register_reggroup_p): Don't include pseudo
8352 registers, except for MXX, in any register groups. Don't
8353 include pseudo byte, word, dword registers in general_reggroup.
8354 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
8355 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
8356 pseudo-registers after word pseudo-registers. Call
8357 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
8358
8359 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
8360 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
8361 eax_regnum.
8362 (i386_byte_regnum_p): New.
8363 (i386_word_regnum_p): Likewise.
8364 (i386_dword_regnum_p): Likewise.
8365 (i386_pseudo_register_name): Likewise.
8366 (i386_pseudo_register_read): Likewise.
8367 (i386_pseudo_register_write): Likewise.
8368
a6f5ef51
L
83692010-03-01 H.J. Lu <hongjiu.lu@intel.com>
8370
8371 * target-descriptions.c (tdesc_type): Remove
8372 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
8373 (tdesc_predefined_types): Likewise.
8374 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
8375 if flag name is empty.
8376 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
8377
8378 * features/i386/32bit-core.xml: Define i386_eflags.
8379 * features/i386/64bit-core.xml: Likewise.
8380
8381 * features/i386/32bit-sse.xml: Define i386_mxcsr.
8382 * features/i386/64bit-sse.xml: Likewise.
8383
8384 * features/i386/amd64-linux.c: Regenerated.
8385 * features/i386/amd64.c: Likewise.
8386 * features/i386/i386-linux.c: Likewise.
8387 * features/i386/i386.c: Likewise.
8388
f5dff777
DJ
83892010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
8390
8391 * gdbtypes.c (append_composite_type_field_raw): New.
8392 (append_composite_type_field_aligned): Use the new function.
8393 * gdbtypes.h (append_composite_type_field_raw): Declare.
8394 * target-descriptions.c (struct tdesc_type_field): Add start and end.
8395 (struct tdesc_type_flag): New type.
8396 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
8397 kind. Add size to u.u. Add u.f for flags.
8398 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
8399 (tdesc_free_type): Likewise.
8400 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
8401 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
8402 (tdesc_add_bitfield, tdesc_add_flag): New.
8403 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
8404 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
8405 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
8406 current_type. Add current_type_size and current_type_is_flags.
8407 (tdesc_start_union): Clear the new fields.
8408 (tdesc_start_struct, tdesc_start_flags): New.
8409 (tdesc_start_field): Handle struct fields, including bitfields.
8410 (field_attributes): Make type optional. Add start and end.
8411 (union_children): Rename to struct_union_children.
8412 (union_attributes): Rename to struct_union_attributes. Add optional
8413 size.
8414 (flags_attributes): New.
8415 (feature_children): Add struct and flags.
8416 * features/gdb-target.dtd: Add flags and struct to features.
8417 Make field type optional. Add field start and end.
8418
90884b2b
L
84192010-03-01 H.J. Lu <hongjiu.lu@intel.com>
8420
8421 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
8422 (amd64_linux_read_description): Likewise.
8423 (_initialize_amd64_linux_nat): Set to_read_description to
8424 amd64_linux_read_description.
8425
8426 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
8427 (amd64_linux_register_name): Removed.
8428 (amd64_linux_register_type): Likewise.
8429 (amd64_linux_core_read_description): New.
8430 (amd64_linux_init_abi): Set target description to
8431 tdesc_amd64_linux if needed. Support orig_rax in target
8432 description. Don't call set_gdbarch_register_name nor
8433 set_gdbarch_register_type. Call
8434 set_gdbarch_core_read_description.
8435 (_initialize_amd64_linux_tdep): Call
8436 initialize_tdesc_amd64_linux.
8437
8438 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
8439
8440 * amd64-tdep.c: Include "features/i386/amd64.c".
8441 (amd64_register_names): Removed.
8442 (amd64_register_name): Likewise.
8443 (amd64_register_type): Likewise.
8444 (amd64_init_abi): Set num_core_regs and register_names. Set
8d95cc3b 8445 target description to tdesc_amd64 if needed. Don't call
90884b2b
L
8446 set_gdbarch_register_name nor set_gdbarch_register_type.
8447 (_initialize_amd64_tdep): New.
8448
8449 * i386-linux-nat.c (i386_linux_read_description): New.
8450 (_initialize_i386_linux_nat): Set to_read_description to
8451 i386_linux_read_description.
8452
8453 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
8454 (i386_linux_register_name): Removed.
8455 (i386_linux_core_read_description): New.
8456 (i386_linux_read_description): Likewise.
8457 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
8458 Set target description to tdesc_i386_linux if needed. Support
8459 orig_eax. Set register_reggroup_p. Call
8460 set_gdbarch_core_read_description.
8461 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
8462
8463 * i386-linux-tdep.h (tdesc_i386_linux): New.
8464
8465 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
8466 with I387_NUM_REGS.
8467
8468 * i386-tdep.c: Include "features/i386/i386.c".
8469 (i386_register_names): Make it const.
8470 (i386_mmx_names): Likewise.
8471 (i386_num_register_names): Removed.
8472 (i386_register_name): Likewise.
8473 (i386_eflags_type): Likewise.
8474 (i386_mxcsr_type): Likewise.
8475 (i386_sse_type): Likewise.
8476 (i386_register_type): Likewise.
8477 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
8478 (i386_pseudo_register_name): New.
8479 (i386_pseudo_register_type): Likewise.
8480 (i386_mmx_type): Make it static.
8481 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
8482 I387_NUM_REGS. Set num_core_regs and register_names. Don't
8483 call set_gdbarch_register_name nor set_gdbarch_register_type.
8484 Set register_reggroup_p. Set target description to tdesc_i386
8485 if needed. Call set_tdesc_pseudo_register_type,
8486 set_tdesc_pseudo_register_name and tdesc_use_registers.
8487 (_initialize_i386_tdep): Call initialize_tdesc_i386.
8488 initialize_tdesc_x86_64.
8489
8490 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
8491 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
8492 register_names, tdesc and register_reggroup_p.
8493 (I386_NUM_FREGS): Removed.
8494 (i386_eflags_type): Likewise.
8495 (i386_mxcsr_type): Likewise.
8496 (i386_mmx_type): Likewise.
8497 (i386_sse_type): Likewise.
8498 (i386_register_name): Likewise.
8499 (i386_regnum): Add I386_MXCSR_REGNUM.
8500 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
8501
8502 * i387-tdep.h (I387_NUM_REGS): New.
8503
8504 * regformats/i386/i386-linux.dat: Generated.
8505 * regformats/i386/i386.dat: Likewise.
8506 * regformats/i386/amd64-linux.dat: Likewise.
8507 * regformats/i386/amd64.dat: Likewise.
8508
8509 * regformats/reg-i386-linux.dat: Removed.
8510 * regformats/reg-i386.dat: Likewise.
8511 * regformats/reg-x86-64-linux.dat: Likewise.
8512 * regformats/reg-x86-64.dat: Likewise.
8513
d0d0ab16
CV
85142010-03-01 Corinna Vinschen <vinschen@redhat.com>
8515
8516 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
8517 cygwin_conv_path API rather than the deprecated
8518 cygwin_conv_to_full_posix_path.
8519 * windows-nat.c:
8520 (GetModuleFileNameExA): Undefine for Cygwin.
8521 (GetModuleFileNameExW): Define for Cygwin.
8522 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
8523 Call GetModuleFileNameExW and convert path to POSIX using
8524 cygwin_conv_path.
8525 (windows_make_so): Always define p. Drop unused variable m.
8526 Don't use Win32 functions to check file existance, rather use
8527 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
8528 Use canonicalize_file_name to get full path.
8529 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
8530 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
8531 use correct target buffer size in call to WideCharToMultiByte.
8532 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
8533 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
8534 (windows_create_inferior): Convert all paths and arguments to wchar_t
8535 and use CreateProcessW on Cygwin.
8536 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
8537 (bad_GetModuleFileNameExA): Undefine for Cygwin.
8538 (bad_GetModuleFileNameExW): Define for Cygwin.
8539 (_initialize_loadable): Load GetModuleFileNameExW into
8540 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
8541
dc00d89f
PM
85422010-02-28 Phil Muldoon <pmuldoon@redhat.com>
8543
8544 PR python/11036
8545 * python/py-frame.c (frapy_read_var): Add block argument and logic
8546 to cope with user provided blocks.
8547
0e095b7e
JK
85482010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
8549
8550 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
8551 New comment.
8552
2f9e05b4
CV
85532010-02-28 Corinna Vinschen <vinschen@redhat.com>
8554
8555 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
8556 (COMMON_OBS): ... to here since it's used unconditionally.
8557 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
8558 (SFILES): To here.
8559
eb195664
DD
85602010-02-26 David Daney <ddaney@caviumnetworks.com>
8561
8562 * mips-linux-tdep.c: Update struct sigframe comments.
8563 (SIGFRAME_CODE_OFFSET): Delete macro.
8564 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
8565 this_frame's sp.
8566 (mips_linux_n32n64_sigframe_init): Same.
8567
97b0f3e2
KB
85682010-02-26 Kevin Buettner <kevinb@redhat.com>
8569
8570 * remote-mips.c (mips_load): Don't use pseudo-register when
8571 invalidating regcache.
8572
4069ebbe
DJ
85732010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
8574
8575 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
8576
05071a4d
PA
85772010-02-26 Pedro Alves <pedro@codesourcery.com>
8578
8579 * NEWS: Add "New targets" section, and mention ARM Symbian
8580 support.
8581
6063c216
UW
85822010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
8583
8584 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
8585 add ADDR_SIZE member.
8586 (allocate_piece_closure): Update.
8587 (copy_pieced_value_closure): Likewise.
8588 (dwarf2_evaluate_loc_desc): Likewise.
8589 (read_pieced_value): Use DWARF address size instead of
8590 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
8591
5107b149 85922010-02-26 Phil Muldoon <pmuldoon@redhat.com>
c8d5aac9 8593 Tom Tromey <tromey@redhat.com>
5107b149
PM
8594
8595 * python/py-type.c (typy_lookup_typename): Add in block argument.
8596 If provided restrict lookup to specified blocks.
8597 (gdbpy_lookup_type): Likewise.
8598 (typy_lookup_type): Likewise.
8599
78664fa3 86002010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8d95cc3b 8601
78664fa3
PA
8602 Symbian config
8603
8604 gdb/
8605 * arm-symbian-tdep.c: New.
8606 * configure.tgt (arm*-*-symbianelf*): New target.
8607 (*-*-symbianelf*): New OS.
8608 * osabi.c (gdb_osabi_names): Add Symbian.
8609 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
8610 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
8611 (ALLDEPFILES): Add arm-symbian-tdep.c.
8612
eb73e134
DJ
86132010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8614
8615 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
8616
46ef47e5
PA
86172010-02-24 Pedro Alves <pedro@codesourcery.com>
8618
8619 * mi/mi-main.c (mi_cmd_execute): Fix typo.
8620
f3e9a817 86212010-02-24 Phil Muldoon <pmuldoon@redhat.com>
8d95cc3b 8622 Tom Tromey <tromey@redhat.com>
f3e9a817
PM
8623 Thiago Jung Bauermann <bauerman@br.ibm.com>
8624
8625 * python/python.c (_initialize_python): Call
8626 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
8627 gdbpy_initialize_blocks.
8628 * python/python-internal.h: Declare struct symbol, block and
8629 symtab_and_line. Declare block_object_type and
8630 symbol_object_type
8631 (gdbpy_lookup_symbol gdbpy_block_for_pc)
8632 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
8633 (symbol_to_symbol_object, block_to_block_object)
8634 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
8635 (gdbpy_initialize_blocks ): Declare.
8636 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
8637 (frapy_select): Add methods.
8638 (frapy_read_var): Add symbol branch.
8639 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
8640 py-block.
8641 (SUBDIR_PYTHON_SRCS): Likewise.
8642 (py-symbol.o): New rule.
8643 (py-symtab.o): Likewise.
8644 (py-block.o): Likewise.
8645 * python/py-symbol.c: New file.
8646 * python/py-symtab.c: Likewise.
8647 * python/py-block.c: Likewise.
8648
24291992
PA
86492010-02-24 Pedro Alves <pedro@codesourcery.com>
8650
8651 PR gdb/11321
8652
8653 * inferior.h (prepare_for_detach): Declare.
8654 (struct inferior) <detaching>: New field.
8655 * infrun.c (prepare_for_detach): New.
8656 (handle_inferior_event) <random signal>: Don't stop if detaching.
8657 * target.c (target_detach): Call prepare_for_detach.
8658
fc1cf338
PA
86592010-02-24 Pedro Alves <pedro@codesourcery.com>
8660
8661 Per-process displaced stepping queue.
8662
8663 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
8664 (displaced_step_gdbarch, displaced_step_closure,
8665 (displaced_step_original, displaced_step_copy): Move globals to
8666 this...
8667 (struct displaced_step_inferior_state): ... new structure.
8668 (displaced_step_inferior_states): New global.
8669 (get_displaced_stepping_state, add_displaced_stepping_state)
8670 (remove_displaced_stepping_state, infrun_inferior_exit): New
8671 functions.
8672 (displaced_step_clear): Add displaced_step_inferior_state
8673 parameter, and adjust to handle it.
8674 (displaced_step_clear_cleanup): Parameter is now a
8675 displaced_step_inferior_state. Adjust.
8676 (displaced_step_prepare): Adjust.
8677 (displaced_step_fixup, displaced_step_fixup)
8678 (infrun_thread_ptid_changed, resume): Adjust.
8679 (init_wait_for_inferior): Don't call displaced_step_clear.
8680 (infrun_thread_stop_requested): Rewrite.
8681 (_initialize_infrun): Install infrun_inferior_exit as
8682 inferior_exit observer.
8683
0723dbf5
PA
86842010-02-24 Pedro Alves <pedro@codesourcery.com>
8685
8686 * inferior.h (ptid_match): Declare.
8687 * infrun.c (ptid_match): New.
8688 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
8689 (handle_notification): Add debug output.
8690 * linux-nat.c (ptid_match): Delete.
8691
09de9781
DM
86922010-02-24 David S. Miller <davem@davemloft.net>
8693
8694 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
8695 * syscalls/sparc-linux.xml: New.
8696 * syscalls/sparc64-linux.xml: New.
8697 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
8698 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
8699 (sparc32_linux_get_syscall_number): New function.
8700 (sparc32_linux_init_abi): Set syscall XML file name and hook up
8701 syscall number fetcher.
8702 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
8703 (sparc64_linux_get_syscall_number): New function.
8704 (sparc64_linux_init_abi): Set syscall XML file name and hook up
8705 syscall number fetcher.
8706
a79b8f6e
VP
87072010-02-24 Vladimir Prus <vladimir@codesourcery.com>
8708
8709 Multiexec MI
8710
8711 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
8712 * inferior.c (add_inferior_silent): Notify inferior_added
8713 observer.
8714 (delete_inferior_1): Notify inferior_removed observer.
8715 (exit_inferior_1): Pass inferior, not pid, to observer.
8716 (inferior_appeared): Likewise.
8717 (add_inferior_with_spaces): New.
8718 (add_inferior_command): Use the above.
8719 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
8720 Declare.
8721
8722 * inflow.c (inflow_inferior_exit): Likewise.
8723 * jit.c (jit_inferior_exit_hook): Likewise.
8724
8725 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
8726 remove-inferior.
8727 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
8728 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
8729 (report_initial_inferior): New.
8730 (mi_inferior_removed): Register the above. Make sure
8731 inferior_added observer is called on the first inferior.
8732 (mi_new_thread, mi_thread_exit): Thread group is now identified by
8733 inferior number, not pid.
8734 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
8735 affected.
8736 * mi/mi-main.c (current_context): New.
8737 (proceed_thread_callback): Use typed closure.
8738 Proceed everything if pid is 0. Most implementation split into
8739 (proceed_thread): ... this.
8740 (run_one_inferior): New.
8741 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
8742 Adjust for multiexec behaviour.
8743 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
8744 (mi_cmd_execute): Handle the 'thread-group' option here.
8745 Do some extra checks.
8746 * mi-parse.c (mi_parse): Handle the --all and --thread-group
8747 options.
8748 * mi-parse.h (struct mi_parse): New fields all and thread_group.
8749
115d30f9
VP
87502010-02-24 Vladimir Prus <vladimir@codesourcery.com>
8751
8752 Make -exec-run a proper MI commands.
8753
8754 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
8755 * mi/mi-cmds.c (mi_cmds): Adjust.
8756 * mi/mi-main.c (mi_cmd_exec_run): New.
8757
06cd862c
PA
87582010-02-24 Pedro Alves <pedro@codesourcery.com>
8759 Stan Shebs <stan@codesourcery.com>
8760
8761 * tracepoint.h (set_traceframe_number)
8762 (cleanup_restore_current_traceframe): Declare.
8763 * tracepoint.c (set_traceframe_number): New.
8764 (struct current_traceframe_cleanup): New.
8765 (do_restore_current_traceframe_cleanup)
8766 (restore_current_traceframe_cleanup_dtor)
8767 (make_cleanup_restore_current_traceframe): New.
8768 * infrun.c: Include tracepoint.h.
8769 (fetch_inferior_event): Switch out and in of tfind mode.
8770
ab92d69b
PA
87712010-02-24 Pedro Alves <pedro@codesourcery.com>
8772
8773 * breakpoint.c (breakpoint_init_inferior): Also delete
8774 bp_shlib_event breakpoints.
8775 * solib-frv.c (enable_break): Remove call to
8776 remove_solib_event_breakpoints.
8777 * solib-svr4.c (enable_break): Ditto.
8778 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
8779 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
8780 * solib-som.c (som_solib_create_inferior_hook): Ditto.
8781 * solib-spu.c (spu_enable_break): Ditto.
8782
e707a91d
PA
87832010-02-23 Harald Koenig <H.Koenig@science-computing.de>
8784
8785 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
8786
cfce2ea2
PA
87872010-02-23 Harald Koenig <H.Koenig@science-computing.de>
8788
8789 * varobj.c (varobj_update): Avoid non-constants in initializers.
8790
05566b3b
TT
87912010-02-23 Tom Tromey <tromey@redhat.com>
8792
8793 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
8794 handle big-endian values.
8795 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
8796
85d721b8
PA
87972010-02-22 Pedro Alves <pedro@codesourcery.com>
8798
8799 PR9605
8800
8801 gdb/
8802 * breakpoint.c (insert_bp_location): If inserting the read
8803 watchpoint failed, fallback to an access watchpoint.
8804 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
8805 if the value changed, if not watching the same memory for writes.
8806 (watchpoint_locations_match): Add comment.
8807 (update_global_location_list): Copy the location's watchpoint type.
8808 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
8809 handle read watchpoints here.
8810 (i386_insert_watchpoint): Read watchpoints aren't supported.
8811 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
8812 packets.
8813 * target.h (target_insert_watchpoint): Update description.
8814
48ea67a7
TT
88152010-02-19 Tom Tromey <tromey@redhat.com>
8816
8817 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
8818 * m2-typeprint.c (m2_print_type): Update.
8819 * gdbtypes.c (recursive_dump_type): Update.
8820 (copy_type_recursive): Update.
8821 * c-typeprint.c (c_type_print_varspec_prefix): Update.
8822 (c_type_print_base): Update.
8823 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
8824 Remove.
8825 (struct cplus_struct_type) <ntemplate_args>: Remove.
8826 <struct template_arg>: Remove.
8827 <is_dynamic>: Move earlier.
8828 (TYPE_TEMPLATE_ARGS): Remove.
8829 (TYPE_NTEMPLATE_ARGS): Remove.
8830 (TYPE_TEMPLATE_ARG): Remove.
8831
48e32051
TT
88322010-02-19 Tom Tromey <tromey@redhat.com>
8833
8834 PR c++/8693, PR c++/9496:
8835 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
8836 * c-exp.y (lex_one_token): Rename from yylex. Don't call
8837 write_dollar_variable. Don't try to classify NAME tokens.
8838 (token_and_value): New type.
8839 (token_fifo, popping, name_obstack): New globals.
8840 (classify_name): New function.
8841 (classify_inner_name): Likewise.
8842 (yylex): Likewise.
8843 (VARIABLE): Now has type sval.
8844 (exp : VARIABLE): Call write_dollar_variable.
8845 (qualified_name): Use TYPENAME, not typebase. Add production for
8846 multiple "::" instances.
8847 (variable): Use name_not_typename.
8848 (qualified_type): Remove.
8849 (typebase): Update.
8850
672d9c23
JK
88512010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8852
8853 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
8854 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
8855 found by bfd_get_section_by_name.
8856 * symfile.h (struct section_addr_info) <sectindex>: New comment.
8857
bfbf3774
JB
88582010-02-19 Joel Brobecker <brobecker@adacore.com>
8859
8860 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
8861 7.0 section" into "Changes in 7.1".
8862
6756b09b 88632010-02-19 Joel Brobecker <brobecker@adacore.com>
8864
8865 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
8866 * version.in: Bump version to 7.1.50.20100219-cvs.
8867
202b96c1
PA
88682010-02-18 Harald Koenig <H.Koenig@science-computing.de>
8869
8870 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
8871 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
8872
de2e5182
TT
88732010-02-17 Tom Tromey <tromey@redhat.com>
8874
8875 * NEWS: Add Python API Improvements section.
8876
7280022e
DJ
88772010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
8878
8879 * NEWS: Correct typo.
8880
6f451e5e
TT
88812010-02-17 Tom Tromey <tromey@redhat.com>
8882
8883 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
8884
012836ea
JK
88852010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8886
8887 * symfile.c (build_section_addr_info_from_objfile): Include sections
8888 only if they are SEC_ALLOC or SEC_LOAD.
8889
d182d057
L
88902010-02-17 H.J. Lu <hongjiu.lu@intel.com>
8891
8892 PR shlibs/11293
8893 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
8894 of ULONGEST for address size.
8895
4eef138c
TT
88962010-02-17 Tom Tromey <tromey@redhat.com>
8897
8898 * NEWS: Add C++ improvements section.
8899
548a926a
UW
89002010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
8901
8902 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
8903 PyThreadState_Swap): Avoid "statement with no effect" warning.
8904
ad3a0e5b
JK
89052010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8906
8907 * solib-svr4.c (enable_break <target_auxv_search>): New variable
8908 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
8909
243e2c5d 89102010-02-17 Tristan Gingold <gingold@adacore.com>
b2319725 8911 Petr Hluzin <petr.hluzin@gmail.com>
243e2c5d
TG
8912
8913 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
8914 gdb_assert. Fix info->size for SIG prologue.
8915
275f2e57
DJ
89162010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8917
8918 * infcmd.c (show_inferior_tty_command): Check for NULL.
8919 Correct output message.
8920
791dfb64
DJ
89212010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8922
8923 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
8924 FUNCTION contains parentheses. Improve removal of a trailing
8925 single quote.
8926
14d1346b
DJ
89272010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8928
8929 * gcore.c (do_bfd_delete_cleanup): New function.
8930 (gcore_command): Use it. Discard the cleanup after success.
8931 (gcore_copy_callback): Delete dead code.
8932
e76ab67f
DJ
89332010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8934
8935 * symfile.c (addr_info_make_relative): Always use
8936 find_lowest_section.
8937
71dee663
SW
89382010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
8939
8940 * NEWS: Added entry for namespace fixes.
8941
a9854bd5
TT
89422010-02-15 Tom Tromey <tromey@redhat.com>
8943
8944 * dwarf2read.c (guess_structure_name): Allocate name on the
8945 objfile obstack.
8946
fd9e29b5
TT
89472010-02-15 Tom Tromey <tromey@redhat.com>
8948
8949 * c-typeprint.c (c_type_print_base): Reverse order of test.
8950
4e1fc9c9
JK
89512010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8952
8953 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
8954 initialize it from ELF BFD. Extend the prelink condition by it.
8955
74164c56
JK
89562010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8957
8958 * defs.h (parse_pid_to_attach): New.
8959 * utils.c (parse_pid_to_attach): New.
8960 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
8961 * gnu-nat.c (gnu_attach): Likewise.
8962 * nto-procfs.c (procfs_attach): Likewise.
8963 * procfs.c (procfs_attach): Likewise.
8964 * windows-nat.c (windows_attach): Likewise.
8965 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
8966 * inf-ttrace.c (inf_ttrace_attach): Likewise.
8967 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
8968 check.
8969
bf6adea8
MM
89702010-02-14 Masaki Muranaka <monaka@monami-software.com>
8971
8972 * MAINTAINERS: Add myself for write after approval privileges.
8973
28f34a8f
JK
89742010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8975
8976 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
8977 block.
8978
701ed6dc
JK
89792010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8980
8981 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
8982 only if INFO_VERBOSE.
8983
e5829bee
MS
89842010-02-12 Tomas Holmberg <th@virtutech.com>
8985
8986 * mi/mi-main.c: Added the --reverse flag to the following MI
8987 commands: exec-continue, exec-finish, exec-next, exec-step,
8988 exec-next-instruction, exec-step-instruction. This is to
8989 support reverse execution over the MI interface to gdb.
8990
081dfbf7
PA
89912010-02-12 Pedro Alves <pedro@codesourcery.com>
8992
8993 * tracepoint.c (_initialize_tracepoint): Specify that the address
8994 range of `tfind outsize' is exclusive, and that the address range
8995 of `tfind range' is inclusive, in the commands' help strings.
8996
ecc13e53
JB
89972010-02-12 Joel Brobecker <brobecker@adacore.com>
8998
8999 Spurious "dll not found" error messages on x64-windows.
9000 * windows-nat.c: Add include of complaints.h.
9001 (handle_unload_dll): Change dll-not-found error into a complaint.
9002
15c3d785
PA
90032010-02-12 Pedro Alves <pedro@codesourcery.com>
9004
9005 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
9006 bp_tracepoint and bp_fast_tracepoint, not
9007 bp_loc_software_breakpoint.
9008 (update_global_location_list): Tracepoints are never duplicates of
9009 anything.
9010
fd9b8c24
PA
90112010-02-12 Pedro Alves <pedro@codesourcery.com>
9012
9013 * breakpoint.c (break_command_really): Change return type to int.
9014 Return false if no breakpoint was created, true otherwise.
9015 (trace_command): Don't set the tracepoint count if no tracepoint
9016 was created.
9017 (ftrace_command): Ditto.
9018 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
9019 created in the breakpoints table.
9020
5c0d192f
JK
90212010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9022 Ulrich Weigand <uweigand@de.ibm.com>
9023
9024 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
9025
5d5b640e
PA
90262010-02-11 Pedro Alves <pedro@codesourcery.com>
9027
9028 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
9029 the offset value isn't of integral type.
9030
e5a0a904
JK
90312010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9032
9033 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
9034 New.
9035
be636754
PA
90362010-02-11 Pedro Alves <pedro@codesourcery.com>
9037
9038 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
9039 non-subscriptable types.
9040 * valarith.c (binop_types_user_defined_p): New, abstracted out
9041 from ...
9042 (binop_user_defined_p): ... this.
9043 * value.h (binop_types_user_defined_p): Declare.
9044
10ef8d6a
PA
90452010-02-11 Pedro Alves <pedro@codesourcery.com>
9046
9047 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
9048 Merge uploaded TSVs before merging uploaded tracepoints.
9049
b1028c8e
PA
90502010-02-11 Pedro Alves <pedro@codesourcery.com>
9051
9052 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
9053
7a93fb82 90542010-02-11 Vladimir Prus <vladimir@codesourcery.com>
84d90c10 9055
7a93fb82
VP
9056 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
9057 whitespace character after a dot in comment.
9058 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
9059 Likewise.
9060 (list_args_or_locals): For the 'all' (that is
9061 -stack-list-variables) case, always output list of tuples.
9062 Output 'arg' field if variable is argument.
84d90c10 9063
92981e24
TT
90642010-02-10 Tom Tromey <tromey@redhat.com>
9065
9066 * parser-defs.h (parser_debug): Declare.
9067 * parse.c (_initialize_parse): Install "debug parser" set/show
9068 command.
9069 (parser_debug): New global.
9070 (show_parserdebug): New function.
9071 * c-exp.y (c_parse): Set yydebug.
9072
9fd3625f
L
90732010-02-10 H.J. Lu <hongjiu.lu@intel.com>
9074
9075 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
9076 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9077 (tdesc_predefined_types): Add i387_ext, i386_eflags and
9078 i386_mxcsr.
9079 (tdesc_find_type): New.
9080 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
9081 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9082
9083 * target-descriptions.h (tdesc_find_type): New.
9084
2fe842e5
MS
90852010-02-10 Michael Snyder <msnyder@vmware.com>
9086
9087 * gdb-gdb.py: Comment fix.
9088
f18b4cab
TG
90892010-02-09 Tristan Gingold <gingold@adacore.com>
9090
9091 * machoread.c (macho_symfile_relocate): New function.
9092 (macho_sym_fns): Use macho_symfile_relocate instead of
9093 default_symfile_relocate.
9094 (macho_oso_data): New type.
9095 (current_oso): New variable.
9096 (macho_add_oso_symfile): Do not compute section_addr_info, but
9097 instead set vma of sections.
9098 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
9099 Set and clear current_oso.
9100
31dbc1c5
JB
91012010-02-09 Joel Brobecker <brobecker@adacore.com>
9102
9103 Wrong type description for tagged type parameter.
9104 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
9105 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
9106 reference to a tagged type.
9107
399f313b
TG
91082010-02-09 Tristan Gingold <gingold@adacore.com>
9109
9110 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
9111 brothers of the parent.
9112
714f19d5
TT
91132010-02-08 Tom Tromey <tromey@redhat.com>
9114
9115 PR c++/8017:
9116 * value.h: Update.
9117 * valops.c (search_struct_field): Make 'name' const.
9118 (search_struct_method): Likewise.
9119 (find_method_list): Make 'method' const.
9120 (value_struct_elt): Make 'name' and 'err' const.
9121 (value_find_oload_method_list): Make 'method' const.
9122 (find_overload_match): Make 'name' const.
9123 * eval.c (evaluate_subexp_standard): New locals function,
9124 function_name.
9125 <OP_FUNCALL>: Handle OP_SCOPE specially.
9126
de0a0249
UW
91272010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
9128
9129 * infrun.c (handle_inferior_event): Do not look up regcache
9130 for exited processes.
9131
8d95cc3b 91322010-02-08 Chris Moller <moller@mollerware.com>
83b10087
CM
9133
9134 PR gdb/10728
9135 * valarith.c (value_ptrdiff): Added a test for a zero type length,
8d95cc3b 9136 warn if found, and assume length = 1.
83b10087 9137
99903ae3
CM
91382010-02-08 Chris Moller <cmoller@redhat.com>
9139
9140 PR gdb/9067
9141 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
6036c742 9142 (cp_print_static_field) Fix use of obstacks.
8d95cc3b 9143
e3e9f5a2
PA
91442010-02-08 Pedro Alves <pedro@codesourcery.com>
9145
9146 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
9147 resumed LWPs as resumed.
9148 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
9149 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
9150 of throwing an internal error. If an LWP of a process we're not
9151 waiting for reports a signal, don't force collecting a SIGSTOP,
9152 and if it was breakpoint hit in non-stop mode, cancel it. Don't
9153 go through all LWPs cancelling breakpoints in non-stop mode.
9154 (resume_stopped_resumed_lwps): New.
9155 (linux_nat_wait): Use it.
9156
46763423
L
91572010-02-07 H.J. Lu <hongjiu.lu@intel.com>
9158
9159 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
9160 i386/amd64 and i386/amd64-linux.
9161 (i386/i386-expedite): New.
9162 (i386/i386-linux-expedite): Likewise.
9163 (i386/amd64-expedite):Likewise.
9164 (i386/amd64-linux-expedite): Likewise.
9165 ($(outdir)/i386/i386-linux.dat): Likewise.
9166 ($(outdir)/i386/amd64.dat): Likewise.
9167 ($(outdir)/i386/amd64-linux.dat): Likewise.
9168
9169 * features/i386/32bit-core.xml: New.
9170 * features/i386/32bit-linux.xml: Likewise.
9171 * features/i386/32bit-sse.xml: Likewise.
9172 * features/i386/64bit-core.xml: Likewise.
9173 * features/i386/64bit-linux.xml: Likewise.
9174 * features/i386/64bit-sse.xml: Likewise.
9175 * features/i386/i386-linux.xml: Likewise.
9176 * features/i386/i386.xml: Likewise.
9177 * features/i386/amd64-linux.xml: Likewise.
9178 * features/i386/amd64.xml: Likewise.
9179 * features/i386/i386-linux.c: Likewise.
9180 * features/i386/i386.c: Likewise.
9181 * features/i386/amd64-linux.c: Likewise.
9182 * features/i386/amd64.c: Likewise.
9183
82856980
SW
91842010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
9185
9186 PR c++/7935:
9187 * cp-support.h: Added char* alias element to using_direct data
9188 struct.
9189 (cp_add_using): Added char* alias argument.
9190 (cp_add_using_directive): Ditto.
9191 * cp-namespace.c: Updated with the above changes.
9192 (cp_lookup_symbol_imports): Check for aliases.
9193 * dwarf2read.c (read_import_statement): Figure out local alias
9194 for the import and pass it on to cp_add_using.
9195 (read_namespace): Pass alias argument to cp_add_using.
9196
d18b8b7a
HZ
91972010-02-05 Hui Zhu <teawater@gmail.com>
9198
9199 * defs.h (gdb_bfd_errmsg): New extern.
9200 * exec.c (exec_file_attach): Change bfd_errmsg to
9201 gdb_bfd_errmsg.
9202 * utils.c (AMBIGUOUS_MESS1): New macro.
9203 (AMBIGUOUS_MESS2): New macro.
9204 (gdb_bfd_errmsg): New function.
9205
48379de6
DE
92062010-02-04 Doug Evans <dje@google.com>
9207
9208 * solib-svr4.c (enable_break): Add comment.
9209
4ee73e90
AG
92102010-02-04 Anthony Green <green@moxielogic.com>
9211
9212 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
9213 gracefully.
9214
1a334831
TT
92152010-02-04 Tom Tromey <tromey@redhat.com>
9216
9217 * valops.c (search_struct_field): Account for
9218 value_embedded_offset. Fix check for virtual base past the end of
9219 the object. Use value_copy when making a slice of the value.
9220
1180b2c8
L
92212010-02-04 H.J. Lu <hongjiu.lu@intel.com>
9222
9223 PR tui/9622
9224 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
9225 only if gdb_stdout is a tty.
9226
c3f08eb7
L
92272010-02-04 H.J. Lu <hongjiu.lu@intel.com>
9228
9229 * target-descriptions.c: Include "osabi.h".
9230 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
9231 OSABI.
9232
2d33f7b8
TG
92332010-02-04 Tristan Gingold <gingold@adacore.com>
9234
9235 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
9236 (macho_symtab_read): Adjust calls to macho_add_oso.
9237 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
9238 (macho_symfile_read): Adjust call to macho_oso_symfile.
9239 (macho_new_init): Move this function after declarations.
9240 (macho_symfile_init): Ditto.
9241 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
9242 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
9243
11334b82
VP
92442010-02-04 Vladimir Prus <vladimir@codesourcery.com>
9245
9246 Include MI command in remotelog.
9247
9248 * mi/mi-main.c (mi_execute_command): Call target_log_command.
9249
ff97be06
L
92502010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9251
9252 * remote.c (remote_state): Remove gdbarch.
9253 (init_remote_state): Don't set gdbarch.
9254 (remote_query_supported): Pass target_gdbarch instead of
9255 rs->gdbarch to gdbarch_qsupported.
9256
75cebea9
L
92572010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9258
9259 * gdbarch.sh: Add qsupported.
9260
9261 * gdbarch.c: Regenerated.
9262 * gdbarch.h: Likewise.
9263
9264 * remote.c (remote_state): Add gdbarch.
9265 (init_remote_state): Set gdbarch.
9266 (remote_query_supported): Support gdbarch_qsupported.
9267
c1dec97b
DJ
92682010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
9269
9270 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
9271 __FreeBSD_kernel_version.
9272
ac8035ab
TG
92732010-02-03 Tristan Gingold <gingold@adacore.com>
9274
9275 * symfile.h (struct sym_fns): Add sym_relocate field.
9276 (default_symfile_relocate): New prototype.
9277 (symfile_relocate_debug_section): First argument is now an objfile.
9278 * symfile.c (default_symfile_relocate): Rename from
9279 symfile_relocate_debug_section, first argument is now an objfile.
9280 (symfile_relocate_debug_section): New function.
9281 * coffread.c (coff_sym_fns): Set sym_relocate field.
9282 * somread.c (som_sym_fns): Ditto.
9283 * mipsread.c (ecoff_sym_fns): Ditto.
9284 * machoread.c (macho_sym_fns): Ditto.
9285 * elfread.c (elf_sym_fns): Ditto.
9286 * dwarf2read.c (dwarf2_read_section): Ditto.
9287 * xcoffread.c (xcoff_sym_fns): Ditto.
9288 * dbxread.c (aout_sym_fns): Ditto.
9289 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
9290 (elfstab_build_psymtabs): Ditto.
9291
be52b756
L
92922010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9293
9294 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
9295
9c3c02fd
TT
92962010-02-02 Tom Tromey <tromey@redhat.com>
9297
9298 * valops.c (value_cast_structs): Try downcasting using the RTTI
9299 type.
9300
f23f4c59
TT
93012010-02-02 Tom Tromey <tromey@redhat.com>
9302
9303 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
9304 (gnuv2_baseclass_offset): Now static.
9305 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
9306 * gnu-v2-abi.h: Remove.
9307
0cc2414c
TT
93082010-02-02 Tom Tromey <tromey@redhat.com>
9309
9310 * m2-typeprint.c (m2_record_fields): Don't use
9311 TYPE_DECLARED_TYPE.
9312 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
9313 (struct main_type) <flag_declared_class>: New field.
9314 (struct cplus_struct_type) <declared_type>: Remove.
9315 <ntemplate_args>: Move earlier.
9316 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
9317 (DECLARED_TYPE_TEMPLATE): Remove.
9318 (TYPE_DECLARED_TYPE): Remove.
9319 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
9320 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
9321 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
9322 TYPE_DECLARED_TYPE.
9323
edf3d5f3
TT
93242010-02-02 Tom Tromey <tromey@redhat.com>
9325
9326 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
9327 * valops.c (search_struct_field): Compute nbases after calling
9328 CHECK_TYPEDEF.
9329 (check_field): Call CHECK_TYPEDEF.
9330 * cp-valprint.c (cp_print_value): Pass correct address to
9331 baseclass_offset. Fix check for virtual base past the end of the
9332 object. Don't offset address passed to cp_print_value_fields or
9333 apply_val_pretty_printer.
9334 (cp_print_value_fields): Fix call to val_print.
9335 (cp_print_value_fields_rtti): New function.
9336 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
9337 * p-valprint.c (pascal_object_print_value_fields): Fix call to
9338 val_print.
9339 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
9340 offset to address.
9341 * language.h (struct language_defn) <la_val_print>: Document.
9342 * c-lang.h (cp_print_value_fields_rtti): Declare.
9343
e4b7f41c
JK
93442010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9345
9346 PR libc/11214:
9347 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
9348 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
9349 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
9350
7618e12b
DJ
93512010-02-01 Michael Matz <matz@suse.de>
9352 Daniel Jacobowitz <dan@codesourcery.com>
9353
e4b7f41c 9354 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
7618e12b
DJ
9355 functions use a frame pointer.
9356
b381ea14
JK
93572010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9358
9359 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
9360 by a conditional setting DYN_ADDR. Use DYN_ADDR.
9361 * config/djgpp/fnchange.lst: Add translations for
9362 symbol-without-target_section.exp and symbol-without-target_section.c.
9363
0e05dfcb
DJ
93642010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9365
9366 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
9367 (remote_breakpoint_for_pc): Correct invalid_p check.
9368 * gdbarch.c: Regenerated.
9369
f9d67f43
DJ
93702010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9371
9372 * arm-tdep.c (arm_find_mapping_symbol): New function, from
9373 arm_pc_is_thumb.
9374 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
9375 (extend_buffer_earlier): New function.
9376 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
9377 (arm_adjust_breakpoint_address): New function.
9378 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
9379
177321bd
DJ
93802010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9381
9382 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
9383 (arm_linux_thumb2_le_breakpoint): New constants.
9384 (arm_linux_init_abi): Set thumb2_breakpoint and
9385 thumb2_breakpoint_size.
9386 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
9387 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
9388 Implement support for single stepping through IT blocks if
9389 a 32-bit Thumb breakpoint instruction is available.
9390 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
9391 is available, use it when needed.
9392 (arm_remote_breakpoint_from_pc): New function.
9393 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
9394 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
9395 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
9396
a1dcb23a
DJ
93972010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9398
9399 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
9400 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
9401 * gdbarch.c, gdbarch.h: Regenerated.
9402 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
9403 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
9404 gdbarch_remote_breakpoint_from_pc.
9405
2b009048
DJ
94062010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
9407
9408 * infrun.c (prepare_to_proceed): Handle other signals which might
9409 match a breakpoint.
9410 (handle_inferior_event): Move the check for unusual breakpoint
9411 signals earlier.
9412
e4e2711a
JB
94132010-01-29 Paul Hilfinger <hilfinger@adacore.com>
9414
9415 amd64 - function returning record with field straddling 2 registers.
9416 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
9417 a record of length <= 16 in which a field straddles the two
9418 eightbytes.
9419
cba6fab5
JB
94202010-01-29 Joel Brobecker <brobecker@adacore.com>
9421
9422 Implement return values on amd64-windows.
9423 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
9424 (amd64_windows_return_value): New function.
9425 (amd64_windows_init_abi): Call set_gdbarch_return_value with
9426 amd64_windows_return_value.
9427
3af6ddfe
JB
94282010-01-29 Joel Brobecker <brobecker@adacore.com>
9429
9430 amd64-windows: 32 bytes allocated on stack by caller for integer
cba6fab5 9431 parameter registers.
3af6ddfe
JB
9432 * i386-tdep.h (struct gdbarch_tdep): Add new field
9433 integer_param_regs_saved_in_caller_frame.
9434 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
9435 tdep->integer_param_regs_saved_in_caller_frame to 1.
9436 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
9437 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
9438
80d19a06
JB
94392010-01-29 Joel Brobecker <brobecker@adacore.com>
9440
9441 amd64-windows: memory args passed by pointer during function calls.
9442 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
9443 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
9444 where tdep->memory_args_by_pointer is non-zero.
9445 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
9446 tdep->memory_args_by_pointer to 1.
9447
ba581dc1
JB
94482010-01-29 Joel Brobecker <brobecker@adacore.com>
9449
4966b6c2 9450 amd64-windows: Integer parameters in function calls.
ba581dc1
JB
9451 * i386-tdep.h (enum amd64_reg_class): New, moved here from
9452 amd64-tdep.c.
9453 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
9454 call_dummy_integer_regs, and classify.
9455 * amd64-tdep.h (amd64_classify): Add declaration.
9456 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
9457 (amd64_reg_class): Delete, moved to i386-tdep.h.
9458 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
9459 Replace call to amd64_classify by call to tdep->classify.
9460 (amd64_push_arguments): Get the list of registers to use for
9461 passing integer parameters from the gdbarch tdep structure,
9462 rather than using a hardcoded one. Replace calls to amd64_classify
9463 by calls to tdep->classify.
9464 (amd64_push_dummy_call): Get the register number used for
9465 the "hidden" argument from tdep->call_dummy_integer_regs.
9466 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
9467 and tdep->call_dummy_integer_regs. Set tdep->classify.
9468 * amd64-windows-tdep.c: Add include of gdbtypes.h.
9469 (amd64_windows_dummy_call_integer_regs): New static global.
9470 (amd64_windows_classify): New function.
9471 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
9472 tdep->call_dummy_integer_regs and tdep->classify.
9473
d37346f0
DJ
94742010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
9475
9476 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
9477 for the new regcache. All callers updated.
9478 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
9479 (get_thread_arch_regcache): Do not set aspace here.
9480 * regcache.h (regcache_xmalloc): Update declaration.
9481
9482 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
9483 regcache_xmalloc updated.
9484
7434dadd
JB
94852010-01-28 Joel Brobecker <brobecker@adacore.com>
9486
9487 Another -Wunused-function error in procfs.c (sparc-solaris)
9488 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
9489 Only define if SYS_syssgi is defined.
9490 (remove_dbx_link_breakpoint): Delete declaration. Move up.
9491 (dbx_link_addr, insert_dbx_link_bpt_in_file)
9492 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
9493 is itself defined.
9494
16d905e2
CF
94952010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
9496
9497 * windows-nat.c (windows_initialization_done): New variable.
9498 (get_windows_debug_event): Issue error when process dies before
9499 completely initializing.
9500 (do_initial_windows_stuff): Set flag to indicate when we are done with
9501 the initial steps of attaching to the child.
9502
cd55e50f
JK
95032010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9504
9505 * symtab.h (struct symbol <symtab>): New comment on NULL values.
9506
99cc78aa
DE
95072010-01-27 Doug Evans <dje@google.com>
9508
4c7dcb84
DE
9509 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
9510
99cc78aa
DE
9511 * breakpoint.c (bpstat_stop_status): Delete useless code.
9512
52334bf5
JK
95132010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9514
9515 * printcmd.c (display_uses_solib_p): Remove variable section. Access
9516 objfile via SYMBOL_SYMTAB.
9517
708ead4e
TT
95182010-01-26 Tom Tromey <tromey@redhat.com>
9519
9520 PR exp/7643:
9521 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
9522 coerce_array on result.
9523
b14e635e
SW
95242010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
9525
9526 * cp-namespace.c (cp_lookup_symbol_namespace): Added
9527 search_parent argument.
9528 (cp_add_using): Initialize 'searched' field.
9529 (reset_directive_searched): New function.
9530 * cp-support.h: Add 'searched' field to using_direct struct.
9531 (cp_lookup_symbol_imports): Ditto.
9532 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
9533 Perform recursive search.
9534 Implement non parent search.
9535 * valops.c (value_maybe_namespace_elt): Updated.
9536
8540c487
SW
95372010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
9538
9539 PR gdb/10929:
9540 * dwarf2read.c (read_lexical_block_scope): Create blocks for
9541 scopes which contain using directives even if they contain no
9542 declarations.
9543 * symtab.c (lookup_symbol_aux): Pass lowest level block to
9544 la_lookup_symbol_nonlocal.
9545 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
9546 cp_lookup_symbol_namespace.
9547 (cp_lookup_symbol_namespace): Perform an import lookup at every
9548 block level.
9549 (cp_lookup_symbol_imports): New function.
9550 (cp_lookup_symbol_in_namespace): New function.
9551
421d5d99
TT
95522010-01-25 Tom Tromey <tromey@redhat.com>
9553
9554 PR gdb/11049:
9555 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
9556 result.
9557
6bcc772d
RO
95582010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9559
9560 * configure.ac: Only use host_os part when disabling TUI on osf.
9561 Use test to check variables, prefix strings with x.
9562 * configure: Regenerate.
9563
9564 * solib-osf.c (osf_current_sos): Initialize tail.
9565
1c1238a5
TG
95662010-01-25 gingold <gingold@adacore.com>
9567
c8d5aac9
L
9568 * windows-nat.c (windows_continue): Use %x to print thread id.
9569 (get_windows_debug_event): Ditto.
1c1238a5 9570
0b92b5bb
TT
95712010-01-22 Tom Tromey <tromey@redhat.com>
9572
9573 PR symtab/11199:
9574 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
9575 type and arguments. Use smash_to_methodptr_type.
9576 (read_structure_type): Call quirk_gcc_member_function_pointer
9577 later.
9578 * gdbtypes.h (smash_to_methodptr_type): Declare.
9579 * gdbtypes.c (smash_to_methodptr_type): New function.
9580 (lookup_methodptr_type): Use it.
9581
0d5392b8
TT
95822010-01-21 Tom Tromey <tromey@redhat.com>
9583
9584 PR symtab/11198:
9585 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
9586 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
9587 * glibc-tdep.c (find_minsym_and_objfile): Remove.
9588 (glibc_skip_solib_resolver): Use
9589 lookup_minimal_symbol_and_objfile.
9590
e6d088ec
KT
95912010-01-21 Kai Tietz <kai.tietz@onevision.com>
9592
9593 * inflow.c (check_syscall): Guard by #if clause for GO32 and
9594 WIN32 targets.
9595
b966cb8a
TT
95962010-01-20 Tom Tromey <tromey@redhat.com>
9597
9598 PR backtrace/10770:
9599 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
9600 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
9601 * dwarf2expr.c (new_dwarf_expr_context): Allocate
9602 dwarf_stack_values, not CORE_ADDRs.
9603 (execute_stack_op): Change DW_OP_div and comparison operators to
9604 use signed operands.
9605
3f81c18a
VP
96062010-01-20 Vladimir Prus <vladimir@codesourcery.com>
9607
9608 Per-inferior args and tty and environment.
9609
9610 * infcmd.c (inferior_args): Rename to ...
9611 (inferior_args_scratch): ... this.
9612 (inferior_io_terminal): Rename to ...
9613 (inferior_io_terminal_scratch): ... this.
9614 (inferior_argc, inferior_argv): Remove.
9615 (set_inferior_io_terminal, get_inferior_io_terminal): Store
9616 inside current_inferior().
9617 (set_inferior_tty_command, show_inferior_tty_command): New.
9618 (get_inferior_args, set_inferior_args): Store inside
9619 current_inferior().
9620 (notice_args_set): Likewise and rename to...
9621 (set_args_command): ... this.
9622 (set_inferior_args_vector): Likewise.
9623 (notice_args_read): Rename to...
9624 (show_args_command): ...new.
9625 (tty_command): Remove.
9626 (run_command_1): Don't free old args, as they are freed by
9627 set_inferior_arg now.
9628 (run_no_args_command): Likewise.
9629 (inferior_environ): Remove.
9630 (run_command_1): Use environment of the current inferior.
9631 (environment_info, set_environment_command)
9632 (unset_environment_command, path_info, path_command): Likewise.
9633 (_initialize_infcmd): Adjust for function and variable renames.
9634 Do not init inferior_environ.
9635 * inferior.h (set_inferior_arg): Adjust prototype.
9636 (struct inferior): New fields args, argc, argv, terminal, environment.
9637 (inferior_environ): Remove declaration.
9638 * inferior.c (free_inferior): Free new fields.
9639 (add_inferior_silent): Initialize 'environment' field.
9640 * main.c (captured_main): Set arguments only after the initial
9641 inferior has been created. Set set_inferior_io_terminal,
9642 not tty_command.
9643 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
9644 inferior.
9645 (_initialize_mi_cmd_env): Adjust for disappearance of global
9646 inferior_environ.
9647 * solib.c (solib_find): Use environment of the current inferior.
9648
d8b65138
JK
96492010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9650
9651 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
9652 HAVE_PYTHON.
9653 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
9654
692465f1
JB
96552010-01-20 Joel Brobecker <brobecker@adacore.com>
9656
9657 Get rid of ada-lang.c:function_name_from_pc.
9658 * ada-lang.c: Add "stack.h" #include.
9659 (function_name_from_pc): Delete.
9660 (is_known_support_routine): Replace call to function_name_from_pc
9661 by call to find_frame_funname.
9662 (ada_unhandled_exception_name_addr_from_raise): Likewise.
9663
95519e0e
TT
96642010-01-19 Tom Tromey <tromey@redhat.com>
9665
9666 PR c++/11026:
9667 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
9668 objfile obstack.
9669
95c11dc7
TT
96702010-01-19 Tom Tromey <tromey@redhat.com>
9671
9672 * top.c (stop_sig, float_handler, do_nothing): Remove.
9673
a0f49112
JK
96742010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9675
9676 * breakpoint.c (watchpoint_check): Check the call
9677 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
9678 Extend the comment.
8d95cc3b 9679 * config/djgpp/fnchange.lst: Add translations for
a0f49112
JK
9680 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
9681 watchpoint-cond-gone-stripped.c.
9682
ceeb3d5a
TT
96832010-01-19 Tom Tromey <tromey@redhat.com>
9684
9685 PR c++/8000:
9686 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
9687 into parent scope, and enumerator into grandparent scope.
9688
2b71fc8e
JB
96892010-01-19 Joel Brobecker <brobecker@adacore.com>
9690
9691 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
9692
03564ed9
JB
96932010-01-19 Joel Brobecker <brobecker@adacore.com>
9694
9695 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
9696 i[34567]86-*-solaris2.1[0-9]*.
9697 * configure.tgt: Likewise.
9698
fb2e7cb4
JB
96992010-01-19 Joel Brobecker <brobecker@adacore.com>
9700
9701 * NEWS: Document the source command enhancement allowing it
9702 to load Python scripts. Document the "set/show script-extension"
9703 commands.
9704
1cb5e2a4
JB
97052010-01-19 Joel Brobecker <brobecker@adacore.com>
9706
9707 Add -Wunused-function to compile flags.
9708 * configure.ac: Add -Wunused-function to build_warnings.
9709 * configure: Regenerate.
9710
0ec6cd0c
JB
97112010-01-19 Joel Brobecker <brobecker@adacore.com>
9712
9713 "delete" ada-lex.c:input function, not used.
9714 * ada-lex.l: #define YY_NO_INPUT.
9715
b74845da
JB
97162010-01-19 Joel Brobecker <brobecker@adacore.com>
9717
9718 Delete free_named_symtabs and associated cleanup.
9719 * symfile.h (free_named_symtabs): Delete declaration.
9720 * symfile.c: Remove some commented out code (clear_symtab_users_once).
9721 (cashier_psymtab): Comment function out.
9722 Delete declaration.
9723 (free_named_symtabs): Delete.
9724 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
9725 * dbxread.c (end_psymtab): Likewise.
9726 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
9727 * exec.c (exec_close_1): Ditto.
9728 * xcoffread.c (xcoff_end_psymtab): Likewise.
9729
65c06092
JB
97302010-01-19 Joel Brobecker <brobecker@adacore.com>
9731
9732 * stack.c (print_block_frame_labels): Comment function out.
9733
d5cd6034
JB
97342010-01-19 Joel Brobecker <brobecker@adacore.com>
9735
9736 Delete unused or undefined functions.
9737 * breakpoint.c (ep_parse_optional_filename): Delete.
9738 * dcache.c (dcache_write_line): Remove declaration.
9739 * infrun.c (build_infrun): Remove declaration.
9740 * tracepoint.c (tracepoint_save_command): Remove declaration.
9741 * linux-nat.c (init_lwp_list): Delete. No longer used.
9742 * event-loop.c (check_async_signal_handlers): Delete declaration.
9743 * infrun.c (init_execution_control_state): Delete.
9744 (proceed): Update comment to avoid mentioning
9745 init_execution_control_state.
9746 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
9747 * ada-lang.c (ada_to_static_fixed_value): Delete.
9748 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
9749 * cp-namespace.c (cp_copy_usings): Delete.
9750 * xml-syscall.c (xml_number_of_syscalls): Delete.
9751 * progspace.c (find_program_space_by_num): Delete.
9752 * inflow.c (handle_sigio): Delete declaration.
9753 * hppa-tdep.c (hppa_alignof): Delete.
9754 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
9755 (mipsnbsd_core_osabi_sniffer): Delete.
9756
4e8f195d
TT
97572010-01-18 Tom Tromey <tromey@redhat.com>
9758
9759 PR c++/9680:
9760 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
9761 (CONST_CAST): New tokens.
9762 (exp): Add new productions.
9763 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
9764 reinterpret_cast.
9765 (is_cast_operator): New function.
9766 (yylex): Handle cast operators specially.
9767 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
9768 UNOP_REINTERPRET_CAST>: New cases.
9769 * expprint.c (print_subexp_standard): Likewise.
9770 (op_name_standard): Likewise.
9771 (dump_subexp_body_standard): Likewise.
9772 * parse.c (operator_length_standard): Likewise.
9773 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
9774 UNOP_REINTERPRET_CAST.
9775 * gdbtypes.c (class_types_same_p): New function.
9776 (is_ancestor): Use it.
9777 (is_public_ancestor): New function.
9778 (is_unique_ancestor_worker): Likewise.
9779 (is_unique_ancestor): Likewise.
9780 * gdbtypes.h (class_types_same_p, is_public_ancestor)
9781 (is_unique_ancestor): Declare.
9782 * valops.c (value_reinterpret_cast): New function.
9783 (dynamic_cast_check_1): Likewise.
9784 (dynamic_cast_check_2): Likewise.
9785 (value_dynamic_cast): Likewise.
9786 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
9787
d9c57d9f
JB
97882010-01-18 Joel Brobecker <brobecker@adacore.com>
9789
9790 Fix build failure when building without Python support.
9791 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
9792 is not defined.
9793
f80d3ff2
JB
97942010-01-18 Joel Brobecker <brobecker@adacore.com>
9795
9796 Use XVS field type instead of doing a parallel lookup.
9797 * ada-lang.c (ada_get_base_type): Follow the XVS field type
9798 if it is a reference type instead of doing a type lookup using
9799 the XVS field name.
9800
5bf03f13
JB
98012010-01-18 Joel Brobecker <brobecker@adacore.com>
9802
9803 Trust PAD types instead of using PAD___XVS.
9804 * ada-lang.c (trust_pad_over_xvs): New static variable.
9805 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
9806 parallel XVS type, follow the XVS type instead of the PAD type.
9807 (unwrap_value): Make sure that there is no parallel XVE type
9808 before returning the value as is.
9809 (set_ada_list, show_ada_list): New static variables.
9810 (set_ada_command, show_ada_command): New functions.
9811 (_initialize_ada_language): Add new "set/show ada" prefix commands.
9812 Add new "set/show ada trust-PAD-over-XVS" setting.
9813
973817a3
JB
98142010-01-18 Tom Tromey <tromey@redhat.com>
9815 Thiago Jung Bauermann <bauerman@br.ibm.com>
9816
9817 Allow "source" to load python scripts.
9818 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
9819 * python/python.c (source_python_script): New function.
9820 * python/python.h (source_python_script): Add declaration.
9821 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
9822 (script_ext_off, script_ext_soft, script_ext_strict)
9823 (script_ext_enums, script_ext_mode): New static constants.
9824 (show_script_ext_mode, find_and_open_script): New functions.
9825 (source_script): Enhance to handle Python scripts.
9826 (init_cli_cmds): Add set/show script-extension commands.
9827
98e03262
SS
98282010-01-16 Stan Shebs <stan@codesourcery.com>
9829
9830 * tracepoint.h (struct trace_status): Use unsigned long long
9831 instead of size_t.
9832 * tracepoint.c (trace_status_command): Fix printf directive.
9833 (trace_save_command): Check fwrite returns, fix printf directive.
9834 (trace_filename): New global.
9835 (tfile_open): Set it, check read returns.
9836 (tfile_close): Free trace_filename.
9837 (tfile_get_traceframe_address): Check read returns.
9838 (tfile_trace_find): Ditto.
9839 (tfile_fetch_registers): Ditto.
9840 (tfile_xfer_partial): Ditto.
9841 (tfile_get_trace_state_variable_value): Ditto.
9842
00bf0b85
SS
98432010-01-15 Stan Shebs <stan@codesourcery.com>
9844
9845 Add trace file support.
9846 * tracepoint.h (enum trace_stop_reason): New enum.
9847 (struct trace_status): New struct.
9848 (parse_trace_status): Declare.
9849 (struct uploaded_tp): Move here from remote.c,
9850 add fields for actions.
9851 (struct uploaded_tsv): New struct.
9852 * tracepoint.c (tfile_ops): New target vector.
9853 (trace_fd): New global.
9854 (tfile_open): New function.
9855 (tfile_close): New function.
9856 (tfile_files_info): New function.
9857 (tfile_get_trace_status): New function.
9858 (tfile_get_traceframe_address): New function.
9859 (tfile_trace_find): New function.
9860 (tfile_fetch_registers): New function.
9861 (tfile_xfer_partial): New function.
9862 (tfile_get_trace_state_variable_value): New function.
9863 (init_tfile_ops): New function.
9864 (_initialize_tracepoint): Call it, add tfile target.
9865 (trace_status): New global.
9866 (current_trace_status): New function.
9867 (trace_running_p): Remove, change all users to get from
9868 current_trace_status()->running.
9869 (get_trace_status): Remove.
9870 (trace_status_command): Call target_get_trace_status directly,
9871 report more detail including tracing stop reasons.
9872 (trace_find_command): Always allow tfind on a file.
9873 (trace_find_pc_command): Ditto.
9874 (trace_find_tracepoint_command): Ditto.
9875 (trace_find_line_command): Ditto.
9876 (trace_find_range_command): Ditto.
9877 (trace_find_outside_command): Ditto.
9878 (trace_frames_offset, cur_offset): Declare as off_t.
9879 (trace_regblock_size): Rename from reg_size, update users.
9880 (parse_trace_status): New function.
9881 (tfile_interp_line): New function.
9882 (disconnect_or_stop_tracing): Ensure current trace
9883 status before asking what to do.
9884 (stop_reason_names): New global.
9885 (trace_save_command): New command.
9886 (get_uploaded_tp): Move here from remote.c.
9887 (find_matching_tracepoint): Ditto.
9888 (merge_uploaded_tracepoints): New function.
9889 (parse_trace_status): Use stop_reason_names.
9890 (_initialize_tracepoint): Define tsave command.
9891 * target.h (target_ops): New fields to_save_trace_data,
9892 to_upload_tracepoints, to_upload_trace_state_variables,
9893 to_get_raw_trace_data, change to_get_trace_status
9894 to take a pointer to a status struct.
9895 (target_save_trace_data): New macro.
9896 (target_upload_tracepoints): New macro.
9897 (target_upload_trace_state_variables): New macro.
9898 (target_get_raw_trace_data): New macro.
9899 * target.c (update_current_target): Add new methods, change
9900 signature of to_get_trace_status.
9901 * remote.c (hex2bin): Make globally visible.
9902 (bin2hex): Ditto.
9903 (remote_download_trace_state_variable): Download name also.
9904 (remote_get_trace_status): Update parameter, use
9905 parse_trace_status.
9906 (remote_save_trace_data): New function.
9907 (remote_upload_tracepoints): New function.
9908 (remote_upload_trace_state_variables): New function.
9909 (remote_get_raw_trace_data): New function.
9910 (remote_start_remote): Use them.
9911 (_initialize_remote_ops): Add operations.
9912 * ax-gdb.c: Include breakpoint.h.
9913 * breakpoint.c (create_tracepoint_from_upload): Use
9914 break_command_really, return tracepoint, warn about unimplemented
9915 parts.
9916 * NEWS: Mention trace file addition.
9917
d904de5b
JK
99182010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9919
9920 Fix compilation warning on gcc-3.4.
9921 * exec.c (print_section_info): Move the `displacement' variable
9922 initialization to its declaration.
9923
64aa9731
JK
99242010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9925
9926 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
9927 comparison.
9928
ca1f5def 99292010-01-15 Eric Botcazou <botcazou@adacore.com>
9f0dec2d
JB
9930
9931 "info tasks" broken by typedefs in ATCB type definitions.
9932 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
9933 ada_check_typedef before retrieving the length of the type for
9934 regular fields.
9935
12ab9e09
JB
99362010-01-15 Joel Brobecker <brobecker@adacore.com>
9937
9938 Do not use name-based lookup for unconstrained packed arrays.
9939 * ada-lang.c (find_parallel_type_by_descriptive_type):
9940 Limit the fallback to name-based lookups to the case where
9941 the type is a constrained packed array.
9942
c389c3dc
JB
99432010-01-15 Joel Brobecker <brobecker@adacore.com>
9944
9945 Enhance gdb-gdb.py to handle main_type.type_specific.
9946 * gdb-gdb.py: Print the type-specific part of struct main_type.
9947
7991dee7
JK
99482010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9949
9950 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
9951 * configure: Regenerate.
9952 * config.in: Regenerate.
9953 * utils.c: Include sys/resource.h.
9954 (dump_core, can_dump_core): New.
9955 (internal_vproblem): Update the comment. Check can_dump_core while
9956 setting dump_core_p. Replace two abort calls by dump_core calls.
9957
93c26624
JK
99582010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9959 Eli Zaretskii <eliz@gnu.org>
9960
9961 * NEWS: Document the PIE support.
9962
55235ad7
JK
99632010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9964
9965 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
9966 (check_is_pie_binary, _initialize_linux_tdep): Remove.
9967
41752192
JK
99682010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9969
9970 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
9971 Replace exec_entry_point call by bfd_get_start_address.
9972
9f2982ff
JK
99732010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9974
9975 Support Valgrind attachments broken by the PIE support.
9976 * auxv.c: Include gdbcore.h.
9977 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
9978 parameters ops, object and annex. Remove their assertions.
9979 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
9980 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
9981 (memory_xfer_auxv): ... here.
9982 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
9983 memory_xfer_auxv.
9984 * procfs.c (procfs_xfer_partial): Likewise.
9985 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
9986 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
9987 (svr4_solib_create_inferior_hook): Conditionalize the
9988 svr4_relocate_main_executable call.
9989
61f0d762
JK
99902010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9991
9992 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
9993 target_section. Find SECT in current_target_sections, gdb_assert it.
9994 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
9995 New variable abfd.
9996 * symtab.c (lookup_objfile_from_block): Return the binary file instead
9997 of separate debug info file.
9998
51bee8e9
JK
99992010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10000
10001 Support PIEs with no symfile_objfile.
10002 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
10003 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
10004
b8040f19
JK
100052010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10006
10007 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
10008 code part to ...
10009 (svr4_static_exec_displacement): ... a new function.
10010 (svr4_exec_displacement): New function.
10011 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
10012 new_offsets using alloca now. Remove variable old_chain and changed.
10013 Call objfile_relocate unconditionally now.
10014
eb90ce83
DE
100152010-01-14 Doug Evans <dje@google.com>
10016
10017 * gdbtypes.c (arch_flags_type): Fix comment.
10018 * gdbtypes.h (arch_composite_type): Fix comment.
10019
bdfed3bc
TG
100202009-01-14 Tristan Gingold <gingold@adacore.com>
10021
10022 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
10023 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
10024 to symbol_file_add_from_bfd. Add OSO as separate objfile.
10025 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
10026 macho_add_oso_symfile.
10027 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
10028
1596ad23
JB
100292010-01-14 Joel Brobecker <brobecker@adacore.com>
10030
10031 Tru64: Dead threads are never deleted.
10032 * dec-thread.c (dec_thread_ptid_is_alive): New function.
10033 (dec_thread_count_gdb_threads): Fix counter increment.
10034 (dec_thread_add_gdb_thread): Fix *listp increment.
10035 (resync_thread_list): Fix bug in deletion of dead threads that
10036 caused all threads to be deleted, instead of just the dead ones.
10037
be759fcf
PM
100382010-01-13 Phil Muldoon <pmuldoon@redhat.com>
10039
10040 PR python/10705
10041
10042 * python/python-internal.h: Add lazy_string_object_type
10043 definition.
10044 (create_lazy_string_object, gdbpy_initialize_lazy_string)
10045 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
10046 * python/py-value.c (valpy_lazy_string): New function.
10047 (convert_value_from_python): Add lazy string conversion.
10048 * python/py-prettyprint.c (pretty_print_one_value): Check if
10049 return is also a lazy string.
10050 (print_string_repr): Add lazy string printing branch.
10051 (print_children): Likewise.
10052 * python/py-lazy-string.c: New file. Implement lazy strings.
10053 * python/python.c (_initialize_python): Call
10054 gdbpy_initialize_lazy_string.
10055 * varobj.c (value_get_print_value): Add lazy string printing
10056 branch. Account for encoding.
10057 * c-lang.c (c_printstr): Account for new encoding argument. If
10058 encoding is NULL, find encoding suited for type, otherwise use
10059 user encoding.
10060 * language.h (language_defn): Add encoding argument.
10061 (LA_PRINT_STRING): Likewise.
10062 * language.c (unk_lang_printstr): Update to reflect new encoding
10063 argument to language_defn.
10064 * ada-lang.h (ada_printstr): Likewise.
10065 * c-lang.h (c_printstr): Likewise.
10066 * p-lang.h (pascal_printstr);
10067 * f-lang.c (f_printstr): Likewise.
10068 * m2-lang.c (m2_printstr): Likewise.
10069 * objc-lang.c (objc_printstr): Likewise.
10070 * p-lang.c (pascal_printstr): Likewise.
10071 * scm-lang.c (scm_printstr): Likewise.
10072 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
10073 encoding argument.
10074 * ada-valprint.c (ada_printstr): Likewise.
10075 * f-valprint.c (f_val_print): Likewise
10076 * m2-valprint.c (m2_val_print): Likewise.
10077 * p-valprint.c (pascal_val_print): Likewise.
10078 * expprint.c (print_subexp_standard): Likewise.
10079 * valprint.c (val_print_string): Likewise.
10080 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
10081 (SUBDIR_PYTHON_SRCS): Likewise.
10082 (py-lazy-string.o): New rule.
10083
1fe72117 100842010-01-13 Doug Evans <dje@google.com>
8eee9c5a
DE
10085
10086 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
10087 uninitialized" warning from gcc on local `tree'.
10088
dc146f7c
VP
100892010-01-13 Vladimir Prus <vladimir@codesourcery.com>
10090
10091 Implement core awareness.
10092
10093 * bcache.c (compare_ints): Remove
10094 (print_percentage): Use compare_positive_ints.
10095 * defs.h (compare_positive_ints): Declare.
10096 * linux-nat.h (struct lin_lwp): New field core.
10097 (linux_nat_core_of_thread_1): Declare.
10098 * linux-nat.c (add_lwp): Init the 'core' field.
10099 (linux_nat_wait_1): Record the core.
10100 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
10101 (linux_nat_add_target): Register the above.
10102 * linux-thread-db.c (update_thread_core): New.
10103 (thread_db_find_new_threads): Update core information for
10104 every thread.
10105 * remote.c (struct private_thread_info): New.
10106 (free_private_thread_info, demand_private_info): New.
10107 (PACKET_qXfer_threads, use_osdata_threads): New.
10108 (struct thread_item, threads_parsing_context
10109 (start_thread, end_thread, thread_attributes)
10110 (thread_children, threads_children, threads_elements): New.
10111 (remote_threads_info): Try qXfer:threads before anything
10112 else.
10113 (remote_protocol_packets): Register qXfer:threads.
10114 (remote_open_1): Init use_osdata_threads.
10115 (struct stop_reply): New field 'core'.
10116 (remote_parse_stop_reply): Parse core number.
10117 (process_stop_reply): Record core number.
10118 (remote_xfer_partial): Handle qXfer:threads.
10119 (remote_core_of_thread): New.
10120 (init_remote_ops): Register remote_core_of_thread.
10121 (_initialize_remote): Register qXfer:read.
10122 * target.c (target_core_of_thread): New
10123 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
10124 (struct target_ops): New field to_core_of_threads.
10125 (target_core_of_thread): Declare.
10126 * gdbthread.h (struct thread_info): New field private_dtor.
10127 * thread.c (print_thread_info): Report the core.
10128 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
10129 * utils.c (compare_positive_ints): New.
10130 * features/threads.dtd: New.
10131 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
10132 * mi/mi-main.c (struct collect_cores_data, collect_cores)
10133 (do_nothing, free_vector_of_osdata_items)
10134 (splay_tree_int_comparator, free_splay_tree): New.
10135 (print_one_inferior_data): Implemented printing of selected
10136 inferiors. Collect and print cores.
10137 (output_cores): New.
10138 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
10139 thread groups together with --available.
10140
d30c5336
JK
101412010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
10142
10143 * configure: Regenerate (for _STRUCTURED_PROC).
10144
02893727
JB
101452010-01-12 Joel Brobecker <brobecker@adacore.com>
10146
10147 Delete dead function.
10148 * ada-lang.c (extract_string): Delete. No longer used.
10149
46ed2d6f
JB
101502010-01-12 Joel Brobecker <brobecker@adacore.com>
10151
10152 Fix -Wunused warning in dec-thread.c.
10153 * dec-thread.c (dec_thread_count_gdb_threads)
10154 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
10155
606b8d1a
JB
101562010-01-12 Joel Brobecker <brobecker@adacore.com>
10157
10158 * ada-valprint.c (ada_print_floating): Remove trailing space.
10159
b4ba55a1
JB
101602010-01-12 Joel Brobecker <brobecker@adacore.com>
10161
10162 Add support for DW_AT_GNAT_descriptive_type.
10163 * gdbtypes.h (enum type_specific_kind): New enum.
10164 (struct main_type) [type_specific_field]: New component.
10165 [type_specific]: Add new component "gnat_stuff".
10166 (struct gnat_aux_type): New type.
10167 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
10168 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
10169 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
10170 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
10171 (TYPE_SPECIFIC_FIELD): New macros.
10172 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
10173 type does not hold any cplus-specific data.
10174 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
10175 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
10176 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
10177 cplus-specific data.
10178 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
10179 Set new component TYPE_SPECIFIC_FIELD (type).
10180 (gnat_aux_default): New constant.
10181 (allocate_gnat_aux_type): New function.
10182 (init_type): Add initialization the type-specific stuff for
10183 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
10184 (print_gnat_stuff): New function.
10185 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
10186 specific data. Adjust code that prints the contents of the
10187 type-specific union using the TYPE_SPECIFIC_FIELD value.
10188 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
10189 the type cplus stuff for Ada types.
10190 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
10191 Error out if these routines are called with an Ada type.
10192 (read_structure_type, read_array_type, read_subrange_type):
10193 Add call to set_descriptive_type.
10194 (set_die_type): Initialize the gnat-specific data if necessary.
10195 (need_gnat_info, die_descriptive_type, set_descriptive_type):
10196 New functions.
10197 * ada-lang.c (decode_constrained_packed_array_type): Use
10198 decode_constrained_packed_array_type instead of doing a standard
10199 lookup to locate a parallel type.
10200 (find_parallel_type_by_descriptive_type): New function.
10201 (ada_find_parallel_type_with_name): New function.
10202 (ada_find_parallel_type): Reimplement using
10203 ada_find_parallel_type_with_name.
10204 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
10205 to check if type has a cplus stuff.
10206 * linespec.c (total_number_of_methods): Likewise.
10207 * mdebugread.c (new_type): Likewise.
10208
b0f02ee9
JK
102092010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10210
10211 * NEWS: Document the 0b binary number prefix parsing.
10212
b260e109
JK
102132010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10214
10215 * objfiles.c (objfile_relocate1): Change the return type to int.
10216 Describe the new return value. Return non-zero if data changed.
10217 (objfile_relocate): New variable changed. Set it. Call
10218 breakpoint_re_set depending on CHANGED.
10219
b5cfddf5
JK
102202010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10221
10222 Implement binary numbers parsing.
10223 * c-exp.y (parse_number): New case 'b' and 'B'.
10224
e0ae4240
JK
102252010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10226 Tristan Gingold <gingold@adacore.com>
10227
10228 * solib.c (info_sharedlibrary_command): Replace
10229 objfile_has_partial_symbols and objfile_has_full_symbols calls by
10230 objfile_has_symbols.
10231
6e0e5977
JB
102322010-01-10 Joel Brobecker <brobecker@adacore.com>
10233
10234 * NEWS: Document the improvements made to the mips-irix port.
10235
7348c5e1
JB
102362010-01-09 Joel Brobecker <brobecker@adacore.com>
10237
10238 Fix the documentation of valprint.c:value_print.
10239 * valprint.c (value_print): Update the function description to
10240 mention that the syntax of the output follows the current_language,
10241 not necessarily C.
10242
567995e1
JK
102432010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
10244
10245 Fix displacement of separate debug info files.
10246 * objfiles.c (objfile_relocate): Rename to ...
10247 (objfile_relocate1): ... here and make it static. Extend the comment.
10248 (objfile_relocate): New function.
10249 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
10250 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
10251 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
10252 allocated using alloca.
10253 * symfile.c (copy_section_addr_info): Remove.
10254 (build_section_addr_info_from_objfile): Make it global. New variables
10255 addr_bit and mask, use them.
10256 * symfile.h (build_section_addr_info_from_objfile): New prototype.
10257 (copy_section_addr_info): Remove.
10258
6d8eadbd
JB
102592010-01-09 Joel Brobecker <brobecker@adacore.com>
10260
10261 Signal unwinder for mips-irix N32.
10262 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
10263 tramp-frame.h.
10264 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
10265 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
8d95cc3b
PA
10266 (SIGCONTEXT_LO_OFF): New macros.
10267 (mips_irix_n32_tramp_frame_init): New function.
6d8eadbd
JB
10268 (mips_irix_n32_tramp_frame): New static constant.
10269 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
10270
27087a3d
JB
102712010-01-09 Joel Brobecker <brobecker@adacore.com>
10272
10273 Breakpoint in shared library does not work on mips-irix.
10274 * procfs.c: #include "observer.h".
10275 (procfs_inferior_created): New function, moving here the code
10276 which unsets the syssgi syscall-exit notifications.
10277 (procfs_create_inferior): Remove the code which unsets the syssgi
10278 syscall-exit notifications. It is too early to do this here.
10279 (_initialize_procfs): Attach the procfs_inferior_created observer.
10280
f08877ba
JB
102812010-01-09 Joel Brobecker <brobecker@adacore.com>
10282
10283 Wrong return convention for arrays (mips-irix).
10284 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
10285 128 bits or smaller are returned the same way as structs
10286 and unions of the the same size.
10287
e4b97d48
JB
102882010-01-09 Joel Brobecker <brobecker@adacore.com>
10289
10290 Cannot set the PC on mips-irix.
10291 * irix5-nat.c (fill_gregset): Check regno against the raw PC
10292 register number, no the cooked one.
10293
11377e68
JB
102942010-01-09 Joel Brobecker <brobecker@adacore.com>
10295
10296 Error while loading core file on mips-irix.
10297 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
10298 if debugging from a core file.
10299
b2391021
JB
103002010-01-09 Joel Brobecker <brobecker@adacore.com>
10301
10302 GDB hangs when attaching to process on mips-irix.
10303 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
10304 attaching to a process.
10305
f2ec0ecf
JB
103062010-01-09 Joel Brobecker <brobecker@adacore.com>
10307
10308 Use the correct breakpoint instruction on mips-irix.
10309 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
10310 containing the correct breakpoint instruction to use on mips-irix.
10311 Use it when the osabi is GDB_OSABI_IRIX.
10312
3c95f01c
JB
103132010-01-09 Joel Brobecker <brobecker@adacore.com>
10314
10315 -Wunused warning in procfs.c (mips-irix only).
10316 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
10317 throughout instead of using praddset and prdelset respectively.
10318
4b7703ad
JB
103192010-01-09 Joel Brobecker <brobecker@adacore.com>
10320
10321 GDB crash while stepping into function.
10322 * infrun.c (handle_inferior_event): Refetch the current frame
10323 after handling what.main_action, in case that pointer became
10324 dangling.
10325
12c89474
JB
103262010-01-09 Joel Brobecker <brobecker@adacore.com>
10327
10328 Fix build failure of solaris-hosted cross debuggers.
10329 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
10330
1a3fd262 103312010-01-09 Daniel Gutson <dgutson@codesourcery.com>
4c490650
JB
10332
10333 Fix build failure on sparc-solaris.
10334 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
10335
75242ef4
JK
103362010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
10337
10338 Move some symfile code into subroutines.
10339 * symfile.h (relative_addr_info_to_section_offsets)
10340 (addr_info_make_relative): New prototypes.
10341 * symfile.c (default_symfile_offsets): Move a part to ...
10342 (relative_addr_info_to_section_offsets): ... this new function.
10343 (default_symfile_offsets): Call it.
10344 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
10345 this part to ...
10346 (addr_info_make_relative): ... this new function.
10347
268a4a75
JK
103482010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
10349
10350 Add from_tty to solib_create_inferior_hook.
10351 * infcmd.c (post_create_inferior): Move solib_add after
10352 solib_create_inferior_hook. Pass from_tty to
10353 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
10354 0 from_tty and comment why.
10355 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
10356 * linux-nat.c (linux_child_follow_fork): Likewise.
10357 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
10358 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
10359 from_tty.
10360 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
10361 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
10362 * solib-null.c (null_solib_create_inferior_hook): Likewise.
10363 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
10364 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
10365 * solib-som.c (som_solib_create_inferior_hook): Likewise.
10366 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
10367 Pass it to svr4_so_ops.solib_create_inferior_hook.
10368 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
10369 from_tty.
10370 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
10371 solib_add.
10372 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
10373 enable_break.
10374 * solib-target.c (solib_target_solib_create_inferior_hook): New
10375 parameter from_tty.
10376 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
10377 it to ops->solib_create_inferior_hook.
10378 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
10379 Move solib_add after solib_create_inferior_hook, call it now with
10380 from_tty as 0. New comment there.
10381 * solib.h (solib_create_inferior_hook): New parameter from_tty.
10382 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
10383 Likewise.
10384
cf00dfa7
VP
103852010-01-08 Vladimir Prus <vladimir@codesourcery.com>
10386
10387 Fix multiexec race.
10388 * infrun.c (handle_inferior_event): Use get_thread_regcache
10389 with events ptid, not get_current_regcache.
10390
f91e5ac3
JB
103912009-01-08 Joel Brobecker <brobecker@adacore.com>
10392
10393 GDB crash with empty executable name (MinGW).
10394 * source.c (openp): Add assert that parameter string is not NULL.
10395 if parameter string is an empty string, then return with a failure
10396 immediately.
10397
92b9ce5b
JB
103982009-01-08 Joel Brobecker <brobecker@adacore.com>
10399
10400 Get rid of support for VAX Floats.
10401 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
10402 (ada_vax_float_print_function): Delete.
10403 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
10404 (ada_vax_float_print_function): Delete.
10405 * ada-typeprint.c (print_vax_floating_point_type): Delete.
10406 (ada_print_type): Remove support for VAX floats.
10407 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
10408
268a4a75 104092010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
d24d8548
JK
10410
10411 * stabsread.c (read_args): Handle zero arguments.
10412
f0f20949
JB
104132009-01-08 Joel Brobecker <brobecker@adacore.com>
10414
10415 Cannot find in-tree libiconv.a after reconfigure.
10416 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
10417 that we can use, then cache the path to this archive.
10418 * configure: Regenerate.
10419
6b6218c5
SS
104202010-01-07 Stan Shebs <stan@codesourcery.com>
10421
35b1e5cc
SS
10422 Make tracepoint operations go through target vector.
10423 * target.h (enum trace_find_type): New enum.
10424 (struct target_ops): New fields to_trace_init,
10425 to_download_tracepoint, to_download_trace_state_variable,
10426 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
10427 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
10428 to_set_disconnected_tracing.
10429 (target_trace_init): New macro.
10430 (target_download_tracepoint): New macro.
10431 (target_download_trace_state_variable): New macro.
10432 (target_trace_start): New macro.
10433 (target_trace_set_readonly_regions): New macro.
10434 (target_get_trace_status): New macro.
10435 (target_trace_stop): New macro.
10436 (target_trace_find): New macro.
10437 (target_get_trace_state_variable_value): New macro.
10438 (target_set_disconnected_tracing): New macro.
10439 * target.c (update_current_target): Inherit and set defaults for
10440 tracepoint operations.
10441 * tracepoint.c (default_collect): Make globally visible.
10442 (target_is_remote): Remove, along with all calls.
10443 (tvariables_info): Call target_get_trace_state_variable_value.
10444 (remote_set_transparent_ranges): Remove.
10445 (trace_start_command): Call target_trace_init,
10446 target_download_tracepoint, etc.
10447 (download_tracepoint): Remove.
10448 (trace_stop_command): Simplify.
10449 (stop_tracing): Call target_trace_stop.
10450 (get_trace_status): Call target_get_trace_status.
10451 (trace_status_command): Add case for targets that cannot trace.
10452 (finish_tfind_command): Change to take numerical arguments, call
10453 target_trace_find.
10454 (trace_find_command): Update call to finish_tfind_command.
10455 (trace_find_pc_command): Ditto.
10456 (trace_find_tracepoint_command): Ditto.
10457 (trace_find_line_command): Ditto.
10458 (trace_find_range_command): Ditto.
10459 (trace_find_outside_command): Ditto.
10460 (set_disconnected_tracing_value): Call
10461 target_set_disconnected_tracing.
10462 * remote.c: Add protocol encoding bits from tracepoint.c.
10463 (trace_error): Move from tracepoint.c.
10464 (remote_get_noisy_reply): Ditto.
10465 (free_actions_list_cleanup_wrapper): Ditto.
10466 (free_actions_list): Ditto.
10467 (remote_trace_init): New function.
10468 (remote_download_tracepoint): New function.
10469 (remote_download_trace_state_variable): New function.
10470 (remote_trace_set_readonly_regions): New function.
10471 (remote_trace_start): New function.
10472 (remote_get_trace_status): New function.
10473 (remote_trace_stop): New function.
10474 (remote_trace_find): New function.
10475 (remote_download_trace_state_variable): New function.
10476 (remote_set_disconnected_tracing): New function.
10477 (init_remote_ops): Add tracepoint operations.
10478
6b6218c5
SS
10479 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
10480
089b4803
TG
104812010-01-07 Tristan Gingold <gingold@adacore.com>
10482
10483 * symfile.c (build_section_addr_info_from_objfile): New function.
10484 (symbol_file_add_separate): Don't use offsets from objfile but
10485 built an addr info.
10486
d5551862
SS
104872010-01-06 Stan Shebs <stan@codesourcery.com>
10488
10489 Support disconnected tracing.
10490 * infcmd.c (detach_command): Ask whether to stop tracing.
10491 * cli/cli-cmds.c (quit_command): Ditto.
10492 * breakpoint.h (struct breakpoint): New field number_on_target.
10493 * breakpoint.c (create_tracepoint_from_upload): New function.
10494 (get_tracepoint_by_number_on_target): New function.
10495 * remote.c (struct remote): New field disconnected_tracing.
10496 (remote_disconnected_tracing_feature): New function.
10497 (remote_protocol_features): Add DisconnectedTracing.
10498 (struct uploaded_tp): New struct.
10499 (uploaded_tps): New global.
10500 (get_uploaded_tp): New function.
10501 (find_matching_tracepoint): New function.
10502 (remote_get_tracing_state): New function.
10503 (remote_start_remote): Call it.
10504 * tracepoint.c (disconnected_tracing): New global.
10505 (trace_start_command): Initialize number_on_target.
10506 (stop_tracing): New function, split out from...
10507 (trace_stop_command): Call stop_tracing.
10508 (get_trace_status): New function, split out from...
10509 (trace_status_command): Call get_trace_status, add info on
10510 disconnection behavior.
10511 (disconnect_or_stop_tracing): New function.
10512 (finish_tfind_command): Translate from number on target.
10513 (trace_find_tracepoint_command): Translate to number on target.
10514 (send_disconnected_tracing_value): New function.
10515 (set_disconnected_tracing): New function.
10516 (_initialize_tracepoint): Add disconnected-tracing variable.
10517 * NEWS: Mention disconnected tracing.
10518
15d123c9
TG
105192010-01-06 Tristan Gingold <gingold@adacore.com>
10520
10521 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
10522 parameter to main_objfile. Iterate on all separate debug objfiles.
10523 * symfile.h (symbol_file_add_separate)
10524 (find_separate_debug_file_by_debuglink): Remove parameter names.
10525 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
10526 (reread_symbols): Use free_objfile_separate_debug.
10527 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
10528 Adjust comment.
10529 (objfile_separate_debug_iterate, add_separate_debug_objfile)
10530 (free_objfile_separate_debug): New prototypes.
10531 * objfiles.c (objfile_separate_debug_iterate): New function.
10532 (add_separate_debug_objfile, free_objfile_separate_debug): New
10533 functions.
10534 (free_objfile): Use free_objfile_separate_debug. Adjust for
10535 multiple separate debug objfile.
10536 (objfile_has_symbols): Adjust comment. Iterate on all separate
10537 debug objfiles.
10538 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
10539 debug objfile.
10540 (lookup_minimal_symbol_text): Ditto.
10541 (lookup_minimal_symbol_by_pc_name): Ditto.
10542 (lookup_minimal_symbol_solib_trampoline): Ditto.
10543 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
10544 debug objfiles.
10545
7a697b8d
SS
105462010-01-05 Stan Shebs <stan@codesourcery.com>
10547
10548 Add fast tracepoints.
10549 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
10550 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
10551 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
10552 * breakpoint.c (tracepoint_type): New function.
10553 (ALL_TRACEPOINTS): Use it.
10554 (should_be_inserted): Ditto.
10555 (bpstat_check_location): Ditto.
10556 (print_one_breakpoint_location): Ditto.
10557 (user_settable_breakpoint): Ditto.
10558 (set_breakpoint_location_function): Ditto.
10559 (disable_breakpoints_in_shlibs): Ditto.
10560 (delete_trace_command): Ditto.
10561 (print_it_typical): Add bp_fast_tracepoint case.
10562 (bpstat_what): Ditto.
10563 (print_one_breakpoint_location): Ditto.
10564 (allocate_bp_location): Ditto.
10565 (mention): Ditto.
10566 (breakpoint_re_set_one): Ditto.
10567 (disable_command): Ditto.
10568 (enable_command): Ditto.
10569 (check_fast_tracepoint_sals): New function.
10570 (break_command_really): Call it.
10571 (ftrace_command): New function.
10572 (_initialize_breakpoint): Add ftrace command.
10573 * gdbarch.sh (fast_tracepoint_valid_at): New.
10574 * gdbarch.h, gdbarch.c: Regenerate.
10575 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
10576 (i386_gdbarch_init): Use it.
10577 * remote.c (struct remote_state): New field fast_tracepoints.
10578 (PACKET_FastTracepoints): New packet config type.
10579 (remote_fast_tracepoint_feature): New function.
10580 (remote_protocol_features): Add FastTracepoints.
10581 (remote_supports_fast_tracepoints): New function.
10582 (_initialize_remote): Add FastTracepoints.
10583 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
10584 * NEWS: Mention fast tracepoints.
10585
737a160e
JB
105862010-01-06 Joel Brobecker <brobecker@adacore.com>
10587
10588 * gdb-gdb.py: New file.
10589
ce6cca6d
MS
105902010-01-05 Michael Snyder <msnyder@vmware.com>
10591
10592 * infrun.c (handle_inferior_event): Fix typo in comment.
10593
0d15807d
JK
105942010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10595
10596 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
10597
7803799a
UW
105982010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10599
c8d5aac9 10600 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
7803799a
UW
10601 and s390x-linux64.
10602 (s390-linux32-expedite): Define.
10603 (s390-linux64-expedite): Define.
10604 (s390x-linux64-expedite): Define.
10605 * features/s390-acr.xml: New file.
10606 * features/s390-fpr.xml: New file.
10607 * features/s390-core32.xml: New file.
10608 * features/s390-core64.xml: New file.
10609 * features/s390x-core64.xml: New file.
10610 * features/s390-linux32.xml: New file.
10611 * features/s390-linux64.xml: New file.
10612 * features/s390x-linux64.xml: New file.
10613 * features/s390-linux32.c: New generated file.
10614 * features/s390-linux64.c: New generated file.
10615 * features/s390x-linux64.c: New generated file.
10616
10617 * regformats/s390-linux32.dat: New generated file.
10618 * regformats/s390-linux64.dat: New generated file.
10619 * regformats/s390x-linux64.dat: New generated file.
10620 * regformats/reg-s390.dat: Remove.
10621 * regformats/reg-s390x.dat: Remove.
10622
10623 * s390-nat.c: Include "auxv.h" and <elf.h>.
10624 (HWCAP_S390_HIGH_GPRS): Define if undefined.
10625 (s390_target_wordsize): New function.
10626 (s390_auxv_parse): Likewise.
10627 (s390_get_hwcap): Likewise.
10628 (s390_read_description): Likewise.
10629 (_initialize_s390_nat): Install s390_auxv_parse and
10630 s390_read_description.
10631
10632 * s390-tdep.c: Include "features/s390-linux32.c",
10633 "features/s390-linux64.c", and "features/s390x-linux64.c".
10634 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
10635 (s390_register_call_saved): New function.
10636 (s390_register_name): Remove.
10637 (s390_register_type): Remove.
10638 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
10639 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
10640 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
10641 (s390_pseudo_register_name): New function.
10642 (s390_pseudo_register_type): New function.
10643 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
10644 Handle full GPR pesudos and varying pseudo register numbers.
10645 (s390_pseudo_register_write): Likewise
10646 (s390x_pseudo_register_read): Remove.
10647 (s390x_pseudo_register_write): Likewise.
10648 (s390_register_group): Remove.
10649 (s390_pseudo_register_group): New function.
10650 (s390_regmap_gregset): Add GPR upper halves.
10651 (s390x_regmap_gregset): Likewise.
10652 (s390_regmap_fpregset): Likewise.
10653 (s390_regmap_upper): New global variable.
10654 (s390_upper_regset): New global variable.
10655 (s390_upper_regset_sections): New global variable.
10656 (s390_regset_from_core_section): Handle GPR upper halves.
10657 (s390_core_read_description): New function.
10658 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
10659 register information. Handle varying pseudo register numbers.
10660 (s390_backchain_frame_unwind_cache): Likewise.
10661 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
10662 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
10663 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
10664 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
10665 Handle varying pseudo register numbers.
10666 (s390_unwind_pc): Handle varying pseudo register numbers.
10667 (s390_dwarf2_prev_register): New function.
10668 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
10669 register information. Handle varying pseudo register numbers.
10670 Install s390_dwarf2_prev_register to unwind full GPRs.
10671 (s390_gdbarch_init): Handle target descriptions. Assign varying
10672 pseudo register numbers. Install s390_adjust_frame_regnum.
10673 (_initialize_s390_tdep): Initialize target descriptions.
10674
10675 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
10676 (S390_NUM_REGS): Redefine to include upper half registers.
10677 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
10678 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
10679 (tdesc_s390_linux32): Add declaration.
10680 (tdesc_s390_linux64): Likewise.
10681 (tdesc_s390x_linux64): Likewise.
10682
1b1818e4
UW
106832010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10684
10685 * regset.h (struct core_regset_section): Add HUMAN_NAME.
10686 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
10687 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
10688 (ppc_linux_vmx_regset_sections): Likewise.
10689 (ppc_linux_fp_regset_sections): Likewise.
10690
10691 * corelow.c (get_core_register_section): Constify arguments.
10692 (get_core_registers): Use gdbarch_core_regset_sections instead
10693 of hard-coded platform-specific register section names.
10694
dcbf108f
UW
106952010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10696
10697 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
b3f41522 10698 a register, assume the least-significant part is used.
dcbf108f
UW
10699 (write_pieced_value): Likewise.
10700
704e9165
UW
107012010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10702
10703 * printcmd.c: Include "arch-utils.h".
10704 (do_one_display): Re-parse expression if current architecture changed.
10705
c54eabfa
JK
107062010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10707 Joel Brobecker <brobecker@adacore.com>
10708
10709 * gdbtypes.c (check_typedef): New comment on type length.
10710 * value.c (allocate_value_lazy): Remove the unused atype variable. New
10711 comment on type length.
10712 (value_primitive_field): Keep the original TYPE value, new comment.
10713
50cb2941
JK
107142010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10715
10716 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
10717 p_start. Change != comparisons to > and < comparisons.
10718
be66db07
JK
107192010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10720
10721 * cli/cli-script.c (process_next_line): Check P2 overrun.
10722
abd775ce
JB
107232009-01-01 Joel Brobecker <brobecker@adacore.com>
10724
10725 Update the copyright hearder to add year 2010 for most GDB files.
10726
6479260d
JB
107272009-01-01 Joel Brobecker <brobecker@adacore.com>
10728
10729 Fix build failure in inf-ptrace.c.
10730 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
10731
4a70f654
JB
107322010-01-01 Joel Brobecker <brobecker@adacore.com>
10733
10734 * top.c (print_gdb_version): Update copyright year.
10735
595939de 107362010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
b9ee2233
JB
10737
10738 Fix break *FUN'address thread NUM.
10739 * ada-lex.l (task): Expand rule to also match the thread keyword.
10740
70575d34
JB
107412010-01-01 Joel Brobecker <brobecker@adacore.com>
10742
10743 Fix break *FUN'address task NUM.
10744 * ada-lex.l (task): New rule.
10745 * ada-lang.c (valid_task_id): Make sure the Ada task list has
10746 been built before using it.
10747
e1e4d4a4 10748For older changes see ChangeLog-2009.
c906108c
SS
10749\f
10750Local Variables:
10751mode: change-log
10752left-margin: 8
10753fill-column: 74
10754version-control: never
57da7796 10755coding: utf-8
c906108c 10756End:
This page took 1.823373 seconds and 4 git commands to generate.