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