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