* mi/mi-main.c (mi_cmd_execute): Fix typo.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2010-02-24 Pedro Alves <pedro@codesourcery.com>
2
3 * mi/mi-main.c (mi_cmd_execute): Fix typo.
4
5 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
6 Tom Tromey <tromey@redhat.com>
7 Thiago Jung Bauermann <bauerman@br.ibm.com>
8
9 * python/python.c (_initialize_python): Call
10 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
11 gdbpy_initialize_blocks.
12 * python/python-internal.h: Declare struct symbol, block and
13 symtab_and_line. Declare block_object_type and
14 symbol_object_type
15 (gdbpy_lookup_symbol gdbpy_block_for_pc)
16 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
17 (symbol_to_symbol_object, block_to_block_object)
18 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
19 (gdbpy_initialize_blocks ): Declare.
20 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
21 (frapy_select): Add methods.
22 (frapy_read_var): Add symbol branch.
23 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
24 py-block.
25 (SUBDIR_PYTHON_SRCS): Likewise.
26 (py-symbol.o): New rule.
27 (py-symtab.o): Likewise.
28 (py-block.o): Likewise.
29 * python/py-symbol.c: New file.
30 * python/py-symtab.c: Likewise.
31 * python/py-block.c: Likewise.
32
33 2010-02-24 Pedro Alves <pedro@codesourcery.com>
34
35 PR gdb/11321
36
37 * inferior.h (prepare_for_detach): Declare.
38 (struct inferior) <detaching>: New field.
39 * infrun.c (prepare_for_detach): New.
40 (handle_inferior_event) <random signal>: Don't stop if detaching.
41 * target.c (target_detach): Call prepare_for_detach.
42
43 2010-02-24 Pedro Alves <pedro@codesourcery.com>
44
45 Per-process displaced stepping queue.
46
47 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
48 (displaced_step_gdbarch, displaced_step_closure,
49 (displaced_step_original, displaced_step_copy): Move globals to
50 this...
51 (struct displaced_step_inferior_state): ... new structure.
52 (displaced_step_inferior_states): New global.
53 (get_displaced_stepping_state, add_displaced_stepping_state)
54 (remove_displaced_stepping_state, infrun_inferior_exit): New
55 functions.
56 (displaced_step_clear): Add displaced_step_inferior_state
57 parameter, and adjust to handle it.
58 (displaced_step_clear_cleanup): Parameter is now a
59 displaced_step_inferior_state. Adjust.
60 (displaced_step_prepare): Adjust.
61 (displaced_step_fixup, displaced_step_fixup)
62 (infrun_thread_ptid_changed, resume): Adjust.
63 (init_wait_for_inferior): Don't call displaced_step_clear.
64 (infrun_thread_stop_requested): Rewrite.
65 (_initialize_infrun): Install infrun_inferior_exit as
66 inferior_exit observer.
67
68 2010-02-24 Pedro Alves <pedro@codesourcery.com>
69
70 * inferior.h (ptid_match): Declare.
71 * infrun.c (ptid_match): New.
72 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
73 (handle_notification): Add debug output.
74 * linux-nat.c (ptid_match): Delete.
75
76 2010-02-24 David S. Miller <davem@davemloft.net>
77
78 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
79 * syscalls/sparc-linux.xml: New.
80 * syscalls/sparc64-linux.xml: New.
81 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
82 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
83 (sparc32_linux_get_syscall_number): New function.
84 (sparc32_linux_init_abi): Set syscall XML file name and hook up
85 syscall number fetcher.
86 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
87 (sparc64_linux_get_syscall_number): New function.
88 (sparc64_linux_init_abi): Set syscall XML file name and hook up
89 syscall number fetcher.
90
91 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
92
93 Multiexec MI
94
95 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
96 * inferior.c (add_inferior_silent): Notify inferior_added
97 observer.
98 (delete_inferior_1): Notify inferior_removed observer.
99 (exit_inferior_1): Pass inferior, not pid, to observer.
100 (inferior_appeared): Likewise.
101 (add_inferior_with_spaces): New.
102 (add_inferior_command): Use the above.
103 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
104 Declare.
105
106 * inflow.c (inflow_inferior_exit): Likewise.
107 * jit.c (jit_inferior_exit_hook): Likewise.
108
109 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
110 remove-inferior.
111 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
112 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
113 (report_initial_inferior): New.
114 (mi_inferior_removed): Register the above. Make sure
115 inferior_added observer is called on the first inferior.
116 (mi_new_thread, mi_thread_exit): Thread group is now identified by
117 inferior number, not pid.
118 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
119 affected.
120 * mi/mi-main.c (current_context): New.
121 (proceed_thread_callback): Use typed closure.
122 Proceed everything if pid is 0. Most implementation split into
123 (proceed_thread): ... this.
124 (run_one_inferior): New.
125 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
126 Adjust for multiexec behaviour.
127 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
128 (mi_cmd_execute): Handle the 'thread-group' option here.
129 Do some extra checks.
130 * mi-parse.c (mi_parse): Handle the --all and --thread-group
131 options.
132 * mi-parse.h (struct mi_parse): New fields all and thread_group.
133
134 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
135
136 Make -exec-run a proper MI commands.
137
138 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
139 * mi/mi-cmds.c (mi_cmds): Adjust.
140 * mi/mi-main.c (mi_cmd_exec_run): New.
141
142 2010-02-24 Pedro Alves <pedro@codesourcery.com>
143 Stan Shebs <stan@codesourcery.com>
144
145 * tracepoint.h (set_traceframe_number)
146 (cleanup_restore_current_traceframe): Declare.
147 * tracepoint.c (set_traceframe_number): New.
148 (struct current_traceframe_cleanup): New.
149 (do_restore_current_traceframe_cleanup)
150 (restore_current_traceframe_cleanup_dtor)
151 (make_cleanup_restore_current_traceframe): New.
152 * infrun.c: Include tracepoint.h.
153 (fetch_inferior_event): Switch out and in of tfind mode.
154
155 2010-02-24 Pedro Alves <pedro@codesourcery.com>
156
157 * breakpoint.c (breakpoint_init_inferior): Also delete
158 bp_shlib_event breakpoints.
159 * solib-frv.c (enable_break): Remove call to
160 remove_solib_event_breakpoints.
161 * solib-svr4.c (enable_break): Ditto.
162 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
163 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
164 * solib-som.c (som_solib_create_inferior_hook): Ditto.
165 * solib-spu.c (spu_enable_break): Ditto.
166
167 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
168
169 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
170
171 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
172
173 * varobj.c (varobj_update): Avoid non-constants in initializers.
174
175 2010-02-23 Tom Tromey <tromey@redhat.com>
176
177 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
178 handle big-endian values.
179 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
180
181 2010-02-22 Pedro Alves <pedro@codesourcery.com>
182
183 PR9605
184
185 gdb/
186 * breakpoint.c (insert_bp_location): If inserting the read
187 watchpoint failed, fallback to an access watchpoint.
188 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
189 if the value changed, if not watching the same memory for writes.
190 (watchpoint_locations_match): Add comment.
191 (update_global_location_list): Copy the location's watchpoint type.
192 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
193 handle read watchpoints here.
194 (i386_insert_watchpoint): Read watchpoints aren't supported.
195 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
196 packets.
197 * target.h (target_insert_watchpoint): Update description.
198
199 2010-02-19 Tom Tromey <tromey@redhat.com>
200
201 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
202 * m2-typeprint.c (m2_print_type): Update.
203 * gdbtypes.c (recursive_dump_type): Update.
204 (copy_type_recursive): Update.
205 * c-typeprint.c (c_type_print_varspec_prefix): Update.
206 (c_type_print_base): Update.
207 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
208 Remove.
209 (struct cplus_struct_type) <ntemplate_args>: Remove.
210 <struct template_arg>: Remove.
211 <is_dynamic>: Move earlier.
212 (TYPE_TEMPLATE_ARGS): Remove.
213 (TYPE_NTEMPLATE_ARGS): Remove.
214 (TYPE_TEMPLATE_ARG): Remove.
215
216 2010-02-19 Tom Tromey <tromey@redhat.com>
217
218 PR c++/8693, PR c++/9496:
219 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
220 * c-exp.y (lex_one_token): Rename from yylex. Don't call
221 write_dollar_variable. Don't try to classify NAME tokens.
222 (token_and_value): New type.
223 (token_fifo, popping, name_obstack): New globals.
224 (classify_name): New function.
225 (classify_inner_name): Likewise.
226 (yylex): Likewise.
227 (VARIABLE): Now has type sval.
228 (exp : VARIABLE): Call write_dollar_variable.
229 (qualified_name): Use TYPENAME, not typebase. Add production for
230 multiple "::" instances.
231 (variable): Use name_not_typename.
232 (qualified_type): Remove.
233 (typebase): Update.
234
235 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
236
237 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
238 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
239 found by bfd_get_section_by_name.
240 * symfile.h (struct section_addr_info) <sectindex>: New comment.
241
242 2010-02-19 Joel Brobecker <brobecker@adacore.com>
243
244 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
245 7.0 section" into "Changes in 7.1".
246
247 2010-02-19 Joel Brobecker <brobecker@adacore.com>
248
249 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
250 * version.in: Bump version to 7.1.50.20100219-cvs.
251
252 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
253
254 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
255 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
256
257 2010-02-17 Tom Tromey <tromey@redhat.com>
258
259 * NEWS: Add Python API Improvements section.
260
261 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
262
263 * NEWS: Correct typo.
264
265 2010-02-17 Tom Tromey <tromey@redhat.com>
266
267 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
268
269 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
270
271 * symfile.c (build_section_addr_info_from_objfile): Include sections
272 only if they are SEC_ALLOC or SEC_LOAD.
273
274 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
275
276 PR shlibs/11293
277 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
278 of ULONGEST for address size.
279
280 2010-02-17 Tom Tromey <tromey@redhat.com>
281
282 * NEWS: Add C++ improvements section.
283
284 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
285
286 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
287 PyThreadState_Swap): Avoid "statement with no effect" warning.
288
289 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
290
291 * solib-svr4.c (enable_break <target_auxv_search>): New variable
292 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
293
294 2010-02-17 Tristan Gingold <gingold@adacore.com>
295 Petr Hluzín <petr.hluzin@gmail.com>
296
297 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
298 gdb_assert. Fix info->size for SIG prologue.
299
300 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
301
302 * infcmd.c (show_inferior_tty_command): Check for NULL.
303 Correct output message.
304
305 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
306
307 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
308 FUNCTION contains parentheses. Improve removal of a trailing
309 single quote.
310
311 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
312
313 * gcore.c (do_bfd_delete_cleanup): New function.
314 (gcore_command): Use it. Discard the cleanup after success.
315 (gcore_copy_callback): Delete dead code.
316
317 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
318
319 * symfile.c (addr_info_make_relative): Always use
320 find_lowest_section.
321
322 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
323
324 * NEWS: Added entry for namespace fixes.
325
326 2010-02-15 Tom Tromey <tromey@redhat.com>
327
328 * dwarf2read.c (guess_structure_name): Allocate name on the
329 objfile obstack.
330
331 2010-02-15 Tom Tromey <tromey@redhat.com>
332
333 * c-typeprint.c (c_type_print_base): Reverse order of test.
334
335 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
336
337 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
338 initialize it from ELF BFD. Extend the prelink condition by it.
339
340 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
341
342 * defs.h (parse_pid_to_attach): New.
343 * utils.c (parse_pid_to_attach): New.
344 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
345 * gnu-nat.c (gnu_attach): Likewise.
346 * nto-procfs.c (procfs_attach): Likewise.
347 * procfs.c (procfs_attach): Likewise.
348 * windows-nat.c (windows_attach): Likewise.
349 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
350 * inf-ttrace.c (inf_ttrace_attach): Likewise.
351 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
352 check.
353
354 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
355
356 * MAINTAINERS: Add myself for write after approval privileges.
357
358 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
359
360 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
361 block.
362
363 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
364
365 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
366 only if INFO_VERBOSE.
367
368 2010-02-12 Tomas Holmberg <th@virtutech.com>
369
370 * mi/mi-main.c: Added the --reverse flag to the following MI
371 commands: exec-continue, exec-finish, exec-next, exec-step,
372 exec-next-instruction, exec-step-instruction. This is to
373 support reverse execution over the MI interface to gdb.
374
375 2010-02-12 Pedro Alves <pedro@codesourcery.com>
376
377 * tracepoint.c (_initialize_tracepoint): Specify that the address
378 range of `tfind outsize' is exclusive, and that the address range
379 of `tfind range' is inclusive, in the commands' help strings.
380
381 2010-02-12 Joel Brobecker <brobecker@adacore.com>
382
383 Spurious "dll not found" error messages on x64-windows.
384 * windows-nat.c: Add include of complaints.h.
385 (handle_unload_dll): Change dll-not-found error into a complaint.
386
387 2010-02-12 Pedro Alves <pedro@codesourcery.com>
388
389 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
390 bp_tracepoint and bp_fast_tracepoint, not
391 bp_loc_software_breakpoint.
392 (update_global_location_list): Tracepoints are never duplicates of
393 anything.
394
395 2010-02-12 Pedro Alves <pedro@codesourcery.com>
396
397 * breakpoint.c (break_command_really): Change return type to int.
398 Return false if no breakpoint was created, true otherwise.
399 (trace_command): Don't set the tracepoint count if no tracepoint
400 was created.
401 (ftrace_command): Ditto.
402 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
403 created in the breakpoints table.
404
405 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
406 Ulrich Weigand <uweigand@de.ibm.com>
407
408 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
409
410 2010-02-11 Pedro Alves <pedro@codesourcery.com>
411
412 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
413 the offset value isn't of integral type.
414
415 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
416
417 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
418 New.
419
420 2010-02-11 Pedro Alves <pedro@codesourcery.com>
421
422 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
423 non-subscriptable types.
424 * valarith.c (binop_types_user_defined_p): New, abstracted out
425 from ...
426 (binop_user_defined_p): ... this.
427 * value.h (binop_types_user_defined_p): Declare.
428
429 2010-02-11 Pedro Alves <pedro@codesourcery.com>
430
431 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
432 Merge uploaded TSVs before merging uploaded tracepoints.
433
434 2010-02-11 Pedro Alves <pedro@codesourcery.com>
435
436 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
437
438 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
439
440 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
441 whitespace character after a dot in comment.
442 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
443 Likewise.
444 (list_args_or_locals): For the 'all' (that is
445 -stack-list-variables) case, always output list of tuples.
446 Output 'arg' field if variable is argument.
447
448 2010-02-10 Tom Tromey <tromey@redhat.com>
449
450 * parser-defs.h (parser_debug): Declare.
451 * parse.c (_initialize_parse): Install "debug parser" set/show
452 command.
453 (parser_debug): New global.
454 (show_parserdebug): New function.
455 * c-exp.y (c_parse): Set yydebug.
456
457 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
458
459 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
460 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
461 (tdesc_predefined_types): Add i387_ext, i386_eflags and
462 i386_mxcsr.
463 (tdesc_find_type): New.
464 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
465 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
466
467 * target-descriptions.h (tdesc_find_type): New.
468
469 2010-02-10 Michael Snyder <msnyder@vmware.com>
470
471 * gdb-gdb.py: Comment fix.
472
473 2010-02-09 Tristan Gingold <gingold@adacore.com>
474
475 * machoread.c (macho_symfile_relocate): New function.
476 (macho_sym_fns): Use macho_symfile_relocate instead of
477 default_symfile_relocate.
478 (macho_oso_data): New type.
479 (current_oso): New variable.
480 (macho_add_oso_symfile): Do not compute section_addr_info, but
481 instead set vma of sections.
482 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
483 Set and clear current_oso.
484
485 2010-02-09 Joel Brobecker <brobecker@adacore.com>
486
487 Wrong type description for tagged type parameter.
488 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
489 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
490 reference to a tagged type.
491
492 2010-02-09 Tristan Gingold <gingold@adacore.com>
493
494 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
495 brothers of the parent.
496
497 2010-02-08 Tom Tromey <tromey@redhat.com>
498
499 PR c++/8017:
500 * value.h: Update.
501 * valops.c (search_struct_field): Make 'name' const.
502 (search_struct_method): Likewise.
503 (find_method_list): Make 'method' const.
504 (value_struct_elt): Make 'name' and 'err' const.
505 (value_find_oload_method_list): Make 'method' const.
506 (find_overload_match): Make 'name' const.
507 * eval.c (evaluate_subexp_standard): New locals function,
508 function_name.
509 <OP_FUNCALL>: Handle OP_SCOPE specially.
510
511 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
512
513 * infrun.c (handle_inferior_event): Do not look up regcache
514 for exited processes.
515
516 Mon Feb 8 13:17:10 2010 Chris Moller <moller@mollerware.com>
517
518 PR gdb/10728
519 * valarith.c (value_ptrdiff): Added a test for a zero type length,
520 warn if found, and assume length = 1.
521
522 2010-02-08 Chris Moller <cmoller@redhat.com>
523
524 PR gdb/9067
525 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
526 cp_print_static_field) Fix use of obstacks.
527
528 2010-02-08 Pedro Alves <pedro@codesourcery.com>
529
530 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
531 resumed LWPs as resumed.
532 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
533 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
534 of throwing an internal error. If an LWP of a process we're not
535 waiting for reports a signal, don't force collecting a SIGSTOP,
536 and if it was breakpoint hit in non-stop mode, cancel it. Don't
537 go through all LWPs cancelling breakpoints in non-stop mode.
538 (resume_stopped_resumed_lwps): New.
539 (linux_nat_wait): Use it.
540
541 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
542
543 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
544 i386/amd64 and i386/amd64-linux.
545 (i386/i386-expedite): New.
546 (i386/i386-linux-expedite): Likewise.
547 (i386/amd64-expedite):Likewise.
548 (i386/amd64-linux-expedite): Likewise.
549 ($(outdir)/i386/i386-linux.dat): Likewise.
550 ($(outdir)/i386/amd64.dat): Likewise.
551 ($(outdir)/i386/amd64-linux.dat): Likewise.
552
553 * features/i386/32bit-core.xml: New.
554 * features/i386/32bit-linux.xml: Likewise.
555 * features/i386/32bit-sse.xml: Likewise.
556 * features/i386/64bit-core.xml: Likewise.
557 * features/i386/64bit-linux.xml: Likewise.
558 * features/i386/64bit-sse.xml: Likewise.
559 * features/i386/i386-linux.xml: Likewise.
560 * features/i386/i386.xml: Likewise.
561 * features/i386/amd64-linux.xml: Likewise.
562 * features/i386/amd64.xml: Likewise.
563 * features/i386/i386-linux.c: Likewise.
564 * features/i386/i386.c: Likewise.
565 * features/i386/amd64-linux.c: Likewise.
566 * features/i386/amd64.c: Likewise.
567
568 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
569
570 PR c++/7935:
571 * cp-support.h: Added char* alias element to using_direct data
572 struct.
573 (cp_add_using): Added char* alias argument.
574 (cp_add_using_directive): Ditto.
575 * cp-namespace.c: Updated with the above changes.
576 (cp_lookup_symbol_imports): Check for aliases.
577 * dwarf2read.c (read_import_statement): Figure out local alias
578 for the import and pass it on to cp_add_using.
579 (read_namespace): Pass alias argument to cp_add_using.
580
581 2010-02-05 Hui Zhu <teawater@gmail.com>
582
583 * defs.h (gdb_bfd_errmsg): New extern.
584 * exec.c (exec_file_attach): Change bfd_errmsg to
585 gdb_bfd_errmsg.
586 * utils.c (AMBIGUOUS_MESS1): New macro.
587 (AMBIGUOUS_MESS2): New macro.
588 (gdb_bfd_errmsg): New function.
589
590 2010-02-04 Doug Evans <dje@google.com>
591
592 * solib-svr4.c (enable_break): Add comment.
593
594 2010-02-04 Anthony Green <green@moxielogic.com>
595
596 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
597 gracefully.
598
599 2010-02-04 Tom Tromey <tromey@redhat.com>
600
601 * valops.c (search_struct_field): Account for
602 value_embedded_offset. Fix check for virtual base past the end of
603 the object. Use value_copy when making a slice of the value.
604
605 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
606
607 PR tui/9622
608 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
609 only if gdb_stdout is a tty.
610
611 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
612
613 * target-descriptions.c: Include "osabi.h".
614 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
615 OSABI.
616
617 2010-02-04 Tristan Gingold <gingold@adacore.com>
618
619 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
620 (macho_symtab_read): Adjust calls to macho_add_oso.
621 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
622 (macho_symfile_read): Adjust call to macho_oso_symfile.
623 (macho_new_init): Move this function after declarations.
624 (macho_symfile_init): Ditto.
625 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
626 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
627
628 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
629
630 Include MI command in remotelog.
631
632 * mi/mi-main.c (mi_execute_command): Call target_log_command.
633
634 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
635
636 * remote.c (remote_state): Remove gdbarch.
637 (init_remote_state): Don't set gdbarch.
638 (remote_query_supported): Pass target_gdbarch instead of
639 rs->gdbarch to gdbarch_qsupported.
640
641 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
642
643 * gdbarch.sh: Add qsupported.
644
645 * gdbarch.c: Regenerated.
646 * gdbarch.h: Likewise.
647
648 * remote.c (remote_state): Add gdbarch.
649 (init_remote_state): Set gdbarch.
650 (remote_query_supported): Support gdbarch_qsupported.
651
652 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
653
654 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
655 __FreeBSD_kernel_version.
656
657 2010-02-03 Tristan Gingold <gingold@adacore.com>
658
659 * symfile.h (struct sym_fns): Add sym_relocate field.
660 (default_symfile_relocate): New prototype.
661 (symfile_relocate_debug_section): First argument is now an objfile.
662 * symfile.c (default_symfile_relocate): Rename from
663 symfile_relocate_debug_section, first argument is now an objfile.
664 (symfile_relocate_debug_section): New function.
665 * coffread.c (coff_sym_fns): Set sym_relocate field.
666 * somread.c (som_sym_fns): Ditto.
667 * mipsread.c (ecoff_sym_fns): Ditto.
668 * machoread.c (macho_sym_fns): Ditto.
669 * elfread.c (elf_sym_fns): Ditto.
670 * dwarf2read.c (dwarf2_read_section): Ditto.
671 * xcoffread.c (xcoff_sym_fns): Ditto.
672 * dbxread.c (aout_sym_fns): Ditto.
673 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
674 (elfstab_build_psymtabs): Ditto.
675
676 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
677
678 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
679
680 2010-02-02 Tom Tromey <tromey@redhat.com>
681
682 * valops.c (value_cast_structs): Try downcasting using the RTTI
683 type.
684
685 2010-02-02 Tom Tromey <tromey@redhat.com>
686
687 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
688 (gnuv2_baseclass_offset): Now static.
689 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
690 * gnu-v2-abi.h: Remove.
691
692 2010-02-02 Tom Tromey <tromey@redhat.com>
693
694 * m2-typeprint.c (m2_record_fields): Don't use
695 TYPE_DECLARED_TYPE.
696 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
697 (struct main_type) <flag_declared_class>: New field.
698 (struct cplus_struct_type) <declared_type>: Remove.
699 <ntemplate_args>: Move earlier.
700 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
701 (DECLARED_TYPE_TEMPLATE): Remove.
702 (TYPE_DECLARED_TYPE): Remove.
703 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
704 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
705 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
706 TYPE_DECLARED_TYPE.
707
708 2010-02-02 Tom Tromey <tromey@redhat.com>
709
710 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
711 * valops.c (search_struct_field): Compute nbases after calling
712 CHECK_TYPEDEF.
713 (check_field): Call CHECK_TYPEDEF.
714 * cp-valprint.c (cp_print_value): Pass correct address to
715 baseclass_offset. Fix check for virtual base past the end of the
716 object. Don't offset address passed to cp_print_value_fields or
717 apply_val_pretty_printer.
718 (cp_print_value_fields): Fix call to val_print.
719 (cp_print_value_fields_rtti): New function.
720 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
721 * p-valprint.c (pascal_object_print_value_fields): Fix call to
722 val_print.
723 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
724 offset to address.
725 * language.h (struct language_defn) <la_val_print>: Document.
726 * c-lang.h (cp_print_value_fields_rtti): Declare.
727
728 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
729
730 PR libc/11214:
731 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
732 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
733 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
734
735 2010-02-01 Michael Matz <matz@suse.de>
736 Daniel Jacobowitz <dan@codesourcery.com>
737
738 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
739 functions use a frame pointer.
740
741 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
742
743 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
744 by a conditional setting DYN_ADDR. Use DYN_ADDR.
745 * config/djgpp/fnchange.lst: Add translations for
746 symbol-without-target_section.exp and symbol-without-target_section.c.
747
748 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
749
750 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
751 (remote_breakpoint_for_pc): Correct invalid_p check.
752 * gdbarch.c: Regenerated.
753
754 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
755
756 * arm-tdep.c (arm_find_mapping_symbol): New function, from
757 arm_pc_is_thumb.
758 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
759 (extend_buffer_earlier): New function.
760 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
761 (arm_adjust_breakpoint_address): New function.
762 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
763
764 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
765
766 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
767 (arm_linux_thumb2_le_breakpoint): New constants.
768 (arm_linux_init_abi): Set thumb2_breakpoint and
769 thumb2_breakpoint_size.
770 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
771 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
772 Implement support for single stepping through IT blocks if
773 a 32-bit Thumb breakpoint instruction is available.
774 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
775 is available, use it when needed.
776 (arm_remote_breakpoint_from_pc): New function.
777 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
778 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
779 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
780
781 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
782
783 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
784 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
785 * gdbarch.c, gdbarch.h: Regenerated.
786 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
787 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
788 gdbarch_remote_breakpoint_from_pc.
789
790 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
791
792 * infrun.c (prepare_to_proceed): Handle other signals which might
793 match a breakpoint.
794 (handle_inferior_event): Move the check for unusual breakpoint
795 signals earlier.
796
797 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
798
799 amd64 - function returning record with field straddling 2 registers.
800 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
801 a record of length <= 16 in which a field straddles the two
802 eightbytes.
803
804 2010-01-29 Joel Brobecker <brobecker@adacore.com>
805
806 Implement return values on amd64-windows.
807 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
808 (amd64_windows_return_value): New function.
809 (amd64_windows_init_abi): Call set_gdbarch_return_value with
810 amd64_windows_return_value.
811
812 2010-01-29 Joel Brobecker <brobecker@adacore.com>
813
814 amd64-windows: 32 bytes allocated on stack by caller for integer
815 parameter registers.
816 * i386-tdep.h (struct gdbarch_tdep): Add new field
817 integer_param_regs_saved_in_caller_frame.
818 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
819 tdep->integer_param_regs_saved_in_caller_frame to 1.
820 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
821 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
822
823 2010-01-29 Joel Brobecker <brobecker@adacore.com>
824
825 amd64-windows: memory args passed by pointer during function calls.
826 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
827 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
828 where tdep->memory_args_by_pointer is non-zero.
829 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
830 tdep->memory_args_by_pointer to 1.
831
832 2010-01-29 Joel Brobecker <brobecker@adacore.com>
833
834 amd64-windows: Integer parameters in function calls.
835 * i386-tdep.h (enum amd64_reg_class): New, moved here from
836 amd64-tdep.c.
837 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
838 call_dummy_integer_regs, and classify.
839 * amd64-tdep.h (amd64_classify): Add declaration.
840 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
841 (amd64_reg_class): Delete, moved to i386-tdep.h.
842 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
843 Replace call to amd64_classify by call to tdep->classify.
844 (amd64_push_arguments): Get the list of registers to use for
845 passing integer parameters from the gdbarch tdep structure,
846 rather than using a hardcoded one. Replace calls to amd64_classify
847 by calls to tdep->classify.
848 (amd64_push_dummy_call): Get the register number used for
849 the "hidden" argument from tdep->call_dummy_integer_regs.
850 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
851 and tdep->call_dummy_integer_regs. Set tdep->classify.
852 * amd64-windows-tdep.c: Add include of gdbtypes.h.
853 (amd64_windows_dummy_call_integer_regs): New static global.
854 (amd64_windows_classify): New function.
855 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
856 tdep->call_dummy_integer_regs and tdep->classify.
857
858 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
859
860 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
861 for the new regcache. All callers updated.
862 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
863 (get_thread_arch_regcache): Do not set aspace here.
864 * regcache.h (regcache_xmalloc): Update declaration.
865
866 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
867 regcache_xmalloc updated.
868
869 2010-01-28 Joel Brobecker <brobecker@adacore.com>
870
871 Another -Wunused-function error in procfs.c (sparc-solaris)
872 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
873 Only define if SYS_syssgi is defined.
874 (remove_dbx_link_breakpoint): Delete declaration. Move up.
875 (dbx_link_addr, insert_dbx_link_bpt_in_file)
876 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
877 is itself defined.
878
879 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
880
881 * windows-nat.c (windows_initialization_done): New variable.
882 (get_windows_debug_event): Issue error when process dies before
883 completely initializing.
884 (do_initial_windows_stuff): Set flag to indicate when we are done with
885 the initial steps of attaching to the child.
886
887 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
888
889 * symtab.h (struct symbol <symtab>): New comment on NULL values.
890
891 2010-01-27 Doug Evans <dje@google.com>
892
893 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
894
895 * breakpoint.c (bpstat_stop_status): Delete useless code.
896
897 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
898
899 * printcmd.c (display_uses_solib_p): Remove variable section. Access
900 objfile via SYMBOL_SYMTAB.
901
902 2010-01-26 Tom Tromey <tromey@redhat.com>
903
904 PR exp/7643:
905 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
906 coerce_array on result.
907
908 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
909
910 * cp-namespace.c (cp_lookup_symbol_namespace): Added
911 search_parent argument.
912 (cp_add_using): Initialize 'searched' field.
913 (reset_directive_searched): New function.
914 * cp-support.h: Add 'searched' field to using_direct struct.
915 (cp_lookup_symbol_imports): Ditto.
916 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
917 Perform recursive search.
918 Implement non parent search.
919 * valops.c (value_maybe_namespace_elt): Updated.
920
921 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
922
923 PR gdb/10929:
924 * dwarf2read.c (read_lexical_block_scope): Create blocks for
925 scopes which contain using directives even if they contain no
926 declarations.
927 * symtab.c (lookup_symbol_aux): Pass lowest level block to
928 la_lookup_symbol_nonlocal.
929 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
930 cp_lookup_symbol_namespace.
931 (cp_lookup_symbol_namespace): Perform an import lookup at every
932 block level.
933 (cp_lookup_symbol_imports): New function.
934 (cp_lookup_symbol_in_namespace): New function.
935
936 2010-01-25 Tom Tromey <tromey@redhat.com>
937
938 PR gdb/11049:
939 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
940 result.
941
942 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
943
944 * configure.ac: Only use host_os part when disabling TUI on osf.
945 Use test to check variables, prefix strings with x.
946 * configure: Regenerate.
947
948 * solib-osf.c (osf_current_sos): Initialize tail.
949
950 2010-01-25 gingold <gingold@adacore.com>
951
952 * windows-nat.c (windows_continue): Use %x to print thread id.
953 (get_windows_debug_event): Ditto.
954
955 2010-01-22 Tom Tromey <tromey@redhat.com>
956
957 PR symtab/11199:
958 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
959 type and arguments. Use smash_to_methodptr_type.
960 (read_structure_type): Call quirk_gcc_member_function_pointer
961 later.
962 * gdbtypes.h (smash_to_methodptr_type): Declare.
963 * gdbtypes.c (smash_to_methodptr_type): New function.
964 (lookup_methodptr_type): Use it.
965
966 2010-01-21 Tom Tromey <tromey@redhat.com>
967
968 PR symtab/11198:
969 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
970 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
971 * glibc-tdep.c (find_minsym_and_objfile): Remove.
972 (glibc_skip_solib_resolver): Use
973 lookup_minimal_symbol_and_objfile.
974
975 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
976
977 * inflow.c (check_syscall): Guard by #if clause for GO32 and
978 WIN32 targets.
979
980 2010-01-20 Tom Tromey <tromey@redhat.com>
981
982 PR backtrace/10770:
983 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
984 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
985 * dwarf2expr.c (new_dwarf_expr_context): Allocate
986 dwarf_stack_values, not CORE_ADDRs.
987 (execute_stack_op): Change DW_OP_div and comparison operators to
988 use signed operands.
989
990 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
991
992 Per-inferior args and tty and environment.
993
994 * infcmd.c (inferior_args): Rename to ...
995 (inferior_args_scratch): ... this.
996 (inferior_io_terminal): Rename to ...
997 (inferior_io_terminal_scratch): ... this.
998 (inferior_argc, inferior_argv): Remove.
999 (set_inferior_io_terminal, get_inferior_io_terminal): Store
1000 inside current_inferior().
1001 (set_inferior_tty_command, show_inferior_tty_command): New.
1002 (get_inferior_args, set_inferior_args): Store inside
1003 current_inferior().
1004 (notice_args_set): Likewise and rename to...
1005 (set_args_command): ... this.
1006 (set_inferior_args_vector): Likewise.
1007 (notice_args_read): Rename to...
1008 (show_args_command): ...new.
1009 (tty_command): Remove.
1010 (run_command_1): Don't free old args, as they are freed by
1011 set_inferior_arg now.
1012 (run_no_args_command): Likewise.
1013 (inferior_environ): Remove.
1014 (run_command_1): Use environment of the current inferior.
1015 (environment_info, set_environment_command)
1016 (unset_environment_command, path_info, path_command): Likewise.
1017 (_initialize_infcmd): Adjust for function and variable renames.
1018 Do not init inferior_environ.
1019 * inferior.h (set_inferior_arg): Adjust prototype.
1020 (struct inferior): New fields args, argc, argv, terminal, environment.
1021 (inferior_environ): Remove declaration.
1022 * inferior.c (free_inferior): Free new fields.
1023 (add_inferior_silent): Initialize 'environment' field.
1024 * main.c (captured_main): Set arguments only after the initial
1025 inferior has been created. Set set_inferior_io_terminal,
1026 not tty_command.
1027 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
1028 inferior.
1029 (_initialize_mi_cmd_env): Adjust for disappearance of global
1030 inferior_environ.
1031 * solib.c (solib_find): Use environment of the current inferior.
1032
1033 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1034
1035 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
1036 HAVE_PYTHON.
1037 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
1038
1039 2010-01-20 Joel Brobecker <brobecker@adacore.com>
1040
1041 Get rid of ada-lang.c:function_name_from_pc.
1042 * ada-lang.c: Add "stack.h" #include.
1043 (function_name_from_pc): Delete.
1044 (is_known_support_routine): Replace call to function_name_from_pc
1045 by call to find_frame_funname.
1046 (ada_unhandled_exception_name_addr_from_raise): Likewise.
1047
1048 2010-01-19 Tom Tromey <tromey@redhat.com>
1049
1050 PR c++/11026:
1051 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
1052 objfile obstack.
1053
1054 2010-01-19 Tom Tromey <tromey@redhat.com>
1055
1056 * top.c (stop_sig, float_handler, do_nothing): Remove.
1057
1058 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1059
1060 * breakpoint.c (watchpoint_check): Check the call
1061 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
1062 Extend the comment.
1063 * config/djgpp/fnchange.lst: Add translations for
1064 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
1065 watchpoint-cond-gone-stripped.c.
1066
1067 2010-01-19 Tom Tromey <tromey@redhat.com>
1068
1069 PR c++/8000:
1070 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
1071 into parent scope, and enumerator into grandparent scope.
1072
1073 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1074
1075 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
1076
1077 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1078
1079 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
1080 i[34567]86-*-solaris2.1[0-9]*.
1081 * configure.tgt: Likewise.
1082
1083 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1084
1085 * NEWS: Document the source command enhancement allowing it
1086 to load Python scripts. Document the "set/show script-extension"
1087 commands.
1088
1089 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1090
1091 Add -Wunused-function to compile flags.
1092 * configure.ac: Add -Wunused-function to build_warnings.
1093 * configure: Regenerate.
1094
1095 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1096
1097 "delete" ada-lex.c:input function, not used.
1098 * ada-lex.l: #define YY_NO_INPUT.
1099
1100 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1101
1102 Delete free_named_symtabs and associated cleanup.
1103 * symfile.h (free_named_symtabs): Delete declaration.
1104 * symfile.c: Remove some commented out code (clear_symtab_users_once).
1105 (cashier_psymtab): Comment function out.
1106 Delete declaration.
1107 (free_named_symtabs): Delete.
1108 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
1109 * dbxread.c (end_psymtab): Likewise.
1110 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
1111 * exec.c (exec_close_1): Ditto.
1112 * xcoffread.c (xcoff_end_psymtab): Likewise.
1113
1114 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1115
1116 * stack.c (print_block_frame_labels): Comment function out.
1117
1118 2010-01-19 Joel Brobecker <brobecker@adacore.com>
1119
1120 Delete unused or undefined functions.
1121 * breakpoint.c (ep_parse_optional_filename): Delete.
1122 * dcache.c (dcache_write_line): Remove declaration.
1123 * infrun.c (build_infrun): Remove declaration.
1124 * tracepoint.c (tracepoint_save_command): Remove declaration.
1125 * linux-nat.c (init_lwp_list): Delete. No longer used.
1126 * event-loop.c (check_async_signal_handlers): Delete declaration.
1127 * infrun.c (init_execution_control_state): Delete.
1128 (proceed): Update comment to avoid mentioning
1129 init_execution_control_state.
1130 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
1131 * ada-lang.c (ada_to_static_fixed_value): Delete.
1132 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
1133 * cp-namespace.c (cp_copy_usings): Delete.
1134 * xml-syscall.c (xml_number_of_syscalls): Delete.
1135 * progspace.c (find_program_space_by_num): Delete.
1136 * inflow.c (handle_sigio): Delete declaration.
1137 * hppa-tdep.c (hppa_alignof): Delete.
1138 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
1139 (mipsnbsd_core_osabi_sniffer): Delete.
1140
1141 2010-01-18 Tom Tromey <tromey@redhat.com>
1142
1143 PR c++/9680:
1144 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
1145 (CONST_CAST): New tokens.
1146 (exp): Add new productions.
1147 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
1148 reinterpret_cast.
1149 (is_cast_operator): New function.
1150 (yylex): Handle cast operators specially.
1151 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
1152 UNOP_REINTERPRET_CAST>: New cases.
1153 * expprint.c (print_subexp_standard): Likewise.
1154 (op_name_standard): Likewise.
1155 (dump_subexp_body_standard): Likewise.
1156 * parse.c (operator_length_standard): Likewise.
1157 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
1158 UNOP_REINTERPRET_CAST.
1159 * gdbtypes.c (class_types_same_p): New function.
1160 (is_ancestor): Use it.
1161 (is_public_ancestor): New function.
1162 (is_unique_ancestor_worker): Likewise.
1163 (is_unique_ancestor): Likewise.
1164 * gdbtypes.h (class_types_same_p, is_public_ancestor)
1165 (is_unique_ancestor): Declare.
1166 * valops.c (value_reinterpret_cast): New function.
1167 (dynamic_cast_check_1): Likewise.
1168 (dynamic_cast_check_2): Likewise.
1169 (value_dynamic_cast): Likewise.
1170 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
1171
1172 2010-01-18 Joel Brobecker <brobecker@adacore.com>
1173
1174 Fix build failure when building without Python support.
1175 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
1176 is not defined.
1177
1178 2010-01-18 Joel Brobecker <brobecker@adacore.com>
1179
1180 Use XVS field type instead of doing a parallel lookup.
1181 * ada-lang.c (ada_get_base_type): Follow the XVS field type
1182 if it is a reference type instead of doing a type lookup using
1183 the XVS field name.
1184
1185 2010-01-18 Joel Brobecker <brobecker@adacore.com>
1186
1187 Trust PAD types instead of using PAD___XVS.
1188 * ada-lang.c (trust_pad_over_xvs): New static variable.
1189 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
1190 parallel XVS type, follow the XVS type instead of the PAD type.
1191 (unwrap_value): Make sure that there is no parallel XVE type
1192 before returning the value as is.
1193 (set_ada_list, show_ada_list): New static variables.
1194 (set_ada_command, show_ada_command): New functions.
1195 (_initialize_ada_language): Add new "set/show ada" prefix commands.
1196 Add new "set/show ada trust-PAD-over-XVS" setting.
1197
1198 2010-01-18 Tom Tromey <tromey@redhat.com>
1199 Thiago Jung Bauermann <bauerman@br.ibm.com>
1200
1201 Allow "source" to load python scripts.
1202 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
1203 * python/python.c (source_python_script): New function.
1204 * python/python.h (source_python_script): Add declaration.
1205 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
1206 (script_ext_off, script_ext_soft, script_ext_strict)
1207 (script_ext_enums, script_ext_mode): New static constants.
1208 (show_script_ext_mode, find_and_open_script): New functions.
1209 (source_script): Enhance to handle Python scripts.
1210 (init_cli_cmds): Add set/show script-extension commands.
1211
1212 2010-01-16 Stan Shebs <stan@codesourcery.com>
1213
1214 * tracepoint.h (struct trace_status): Use unsigned long long
1215 instead of size_t.
1216 * tracepoint.c (trace_status_command): Fix printf directive.
1217 (trace_save_command): Check fwrite returns, fix printf directive.
1218 (trace_filename): New global.
1219 (tfile_open): Set it, check read returns.
1220 (tfile_close): Free trace_filename.
1221 (tfile_get_traceframe_address): Check read returns.
1222 (tfile_trace_find): Ditto.
1223 (tfile_fetch_registers): Ditto.
1224 (tfile_xfer_partial): Ditto.
1225 (tfile_get_trace_state_variable_value): Ditto.
1226
1227 2010-01-15 Stan Shebs <stan@codesourcery.com>
1228
1229 Add trace file support.
1230 * tracepoint.h (enum trace_stop_reason): New enum.
1231 (struct trace_status): New struct.
1232 (parse_trace_status): Declare.
1233 (struct uploaded_tp): Move here from remote.c,
1234 add fields for actions.
1235 (struct uploaded_tsv): New struct.
1236 * tracepoint.c (tfile_ops): New target vector.
1237 (trace_fd): New global.
1238 (tfile_open): New function.
1239 (tfile_close): New function.
1240 (tfile_files_info): New function.
1241 (tfile_get_trace_status): New function.
1242 (tfile_get_traceframe_address): New function.
1243 (tfile_trace_find): New function.
1244 (tfile_fetch_registers): New function.
1245 (tfile_xfer_partial): New function.
1246 (tfile_get_trace_state_variable_value): New function.
1247 (init_tfile_ops): New function.
1248 (_initialize_tracepoint): Call it, add tfile target.
1249 (trace_status): New global.
1250 (current_trace_status): New function.
1251 (trace_running_p): Remove, change all users to get from
1252 current_trace_status()->running.
1253 (get_trace_status): Remove.
1254 (trace_status_command): Call target_get_trace_status directly,
1255 report more detail including tracing stop reasons.
1256 (trace_find_command): Always allow tfind on a file.
1257 (trace_find_pc_command): Ditto.
1258 (trace_find_tracepoint_command): Ditto.
1259 (trace_find_line_command): Ditto.
1260 (trace_find_range_command): Ditto.
1261 (trace_find_outside_command): Ditto.
1262 (trace_frames_offset, cur_offset): Declare as off_t.
1263 (trace_regblock_size): Rename from reg_size, update users.
1264 (parse_trace_status): New function.
1265 (tfile_interp_line): New function.
1266 (disconnect_or_stop_tracing): Ensure current trace
1267 status before asking what to do.
1268 (stop_reason_names): New global.
1269 (trace_save_command): New command.
1270 (get_uploaded_tp): Move here from remote.c.
1271 (find_matching_tracepoint): Ditto.
1272 (merge_uploaded_tracepoints): New function.
1273 (parse_trace_status): Use stop_reason_names.
1274 (_initialize_tracepoint): Define tsave command.
1275 * target.h (target_ops): New fields to_save_trace_data,
1276 to_upload_tracepoints, to_upload_trace_state_variables,
1277 to_get_raw_trace_data, change to_get_trace_status
1278 to take a pointer to a status struct.
1279 (target_save_trace_data): New macro.
1280 (target_upload_tracepoints): New macro.
1281 (target_upload_trace_state_variables): New macro.
1282 (target_get_raw_trace_data): New macro.
1283 * target.c (update_current_target): Add new methods, change
1284 signature of to_get_trace_status.
1285 * remote.c (hex2bin): Make globally visible.
1286 (bin2hex): Ditto.
1287 (remote_download_trace_state_variable): Download name also.
1288 (remote_get_trace_status): Update parameter, use
1289 parse_trace_status.
1290 (remote_save_trace_data): New function.
1291 (remote_upload_tracepoints): New function.
1292 (remote_upload_trace_state_variables): New function.
1293 (remote_get_raw_trace_data): New function.
1294 (remote_start_remote): Use them.
1295 (_initialize_remote_ops): Add operations.
1296 * ax-gdb.c: Include breakpoint.h.
1297 * breakpoint.c (create_tracepoint_from_upload): Use
1298 break_command_really, return tracepoint, warn about unimplemented
1299 parts.
1300 * NEWS: Mention trace file addition.
1301
1302 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1303
1304 Fix compilation warning on gcc-3.4.
1305 * exec.c (print_section_info): Move the `displacement' variable
1306 initialization to its declaration.
1307
1308 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1309
1310 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
1311 comparison.
1312
1313 2010-01-15 Eric Botcazou <botcazou@adacore.com>
1314
1315 "info tasks" broken by typedefs in ATCB type definitions.
1316 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
1317 ada_check_typedef before retrieving the length of the type for
1318 regular fields.
1319
1320 2010-01-15 Joel Brobecker <brobecker@adacore.com>
1321
1322 Do not use name-based lookup for unconstrained packed arrays.
1323 * ada-lang.c (find_parallel_type_by_descriptive_type):
1324 Limit the fallback to name-based lookups to the case where
1325 the type is a constrained packed array.
1326
1327 2010-01-15 Joel Brobecker <brobecker@adacore.com>
1328
1329 Enhance gdb-gdb.py to handle main_type.type_specific.
1330 * gdb-gdb.py: Print the type-specific part of struct main_type.
1331
1332 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1333
1334 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
1335 * configure: Regenerate.
1336 * config.in: Regenerate.
1337 * utils.c: Include sys/resource.h.
1338 (dump_core, can_dump_core): New.
1339 (internal_vproblem): Update the comment. Check can_dump_core while
1340 setting dump_core_p. Replace two abort calls by dump_core calls.
1341
1342 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1343 Eli Zaretskii <eliz@gnu.org>
1344
1345 * NEWS: Document the PIE support.
1346
1347 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1348
1349 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
1350 (check_is_pie_binary, _initialize_linux_tdep): Remove.
1351
1352 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1353
1354 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
1355 Replace exec_entry_point call by bfd_get_start_address.
1356
1357 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1358
1359 Support Valgrind attachments broken by the PIE support.
1360 * auxv.c: Include gdbcore.h.
1361 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
1362 parameters ops, object and annex. Remove their assertions.
1363 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
1364 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
1365 (memory_xfer_auxv): ... here.
1366 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
1367 memory_xfer_auxv.
1368 * procfs.c (procfs_xfer_partial): Likewise.
1369 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
1370 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
1371 (svr4_solib_create_inferior_hook): Conditionalize the
1372 svr4_relocate_main_executable call.
1373
1374 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1375
1376 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
1377 target_section. Find SECT in current_target_sections, gdb_assert it.
1378 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
1379 New variable abfd.
1380 * symtab.c (lookup_objfile_from_block): Return the binary file instead
1381 of separate debug info file.
1382
1383 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1384
1385 Support PIEs with no symfile_objfile.
1386 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
1387 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
1388
1389 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1390
1391 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
1392 code part to ...
1393 (svr4_static_exec_displacement): ... a new function.
1394 (svr4_exec_displacement): New function.
1395 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
1396 new_offsets using alloca now. Remove variable old_chain and changed.
1397 Call objfile_relocate unconditionally now.
1398
1399 2010-01-14 Doug Evans <dje@google.com>
1400
1401 * gdbtypes.c (arch_flags_type): Fix comment.
1402 * gdbtypes.h (arch_composite_type): Fix comment.
1403
1404 2009-01-14 Tristan Gingold <gingold@adacore.com>
1405
1406 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
1407 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
1408 to symbol_file_add_from_bfd. Add OSO as separate objfile.
1409 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
1410 macho_add_oso_symfile.
1411 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
1412
1413 2010-01-14 Joel Brobecker <brobecker@adacore.com>
1414
1415 Tru64: Dead threads are never deleted.
1416 * dec-thread.c (dec_thread_ptid_is_alive): New function.
1417 (dec_thread_count_gdb_threads): Fix counter increment.
1418 (dec_thread_add_gdb_thread): Fix *listp increment.
1419 (resync_thread_list): Fix bug in deletion of dead threads that
1420 caused all threads to be deleted, instead of just the dead ones.
1421
1422 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
1423
1424 PR python/10705
1425
1426 * python/python-internal.h: Add lazy_string_object_type
1427 definition.
1428 (create_lazy_string_object, gdbpy_initialize_lazy_string)
1429 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
1430 * python/py-value.c (valpy_lazy_string): New function.
1431 (convert_value_from_python): Add lazy string conversion.
1432 * python/py-prettyprint.c (pretty_print_one_value): Check if
1433 return is also a lazy string.
1434 (print_string_repr): Add lazy string printing branch.
1435 (print_children): Likewise.
1436 * python/py-lazy-string.c: New file. Implement lazy strings.
1437 * python/python.c (_initialize_python): Call
1438 gdbpy_initialize_lazy_string.
1439 * varobj.c (value_get_print_value): Add lazy string printing
1440 branch. Account for encoding.
1441 * c-lang.c (c_printstr): Account for new encoding argument. If
1442 encoding is NULL, find encoding suited for type, otherwise use
1443 user encoding.
1444 * language.h (language_defn): Add encoding argument.
1445 (LA_PRINT_STRING): Likewise.
1446 * language.c (unk_lang_printstr): Update to reflect new encoding
1447 argument to language_defn.
1448 * ada-lang.h (ada_printstr): Likewise.
1449 * c-lang.h (c_printstr): Likewise.
1450 * p-lang.h (pascal_printstr);
1451 * f-lang.c (f_printstr): Likewise.
1452 * m2-lang.c (m2_printstr): Likewise.
1453 * objc-lang.c (objc_printstr): Likewise.
1454 * p-lang.c (pascal_printstr): Likewise.
1455 * scm-lang.c (scm_printstr): Likewise.
1456 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
1457 encoding argument.
1458 * ada-valprint.c (ada_printstr): Likewise.
1459 * f-valprint.c (f_val_print): Likewise
1460 * m2-valprint.c (m2_val_print): Likewise.
1461 * p-valprint.c (pascal_val_print): Likewise.
1462 * expprint.c (print_subexp_standard): Likewise.
1463 * valprint.c (val_print_string): Likewise.
1464 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
1465 (SUBDIR_PYTHON_SRCS): Likewise.
1466 (py-lazy-string.o): New rule.
1467
1468 2010-01-13 Doug Evans <dje@google.com>
1469
1470 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
1471 uninitialized" warning from gcc on local `tree'.
1472
1473 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
1474
1475 Implement core awareness.
1476
1477 * bcache.c (compare_ints): Remove
1478 (print_percentage): Use compare_positive_ints.
1479 * defs.h (compare_positive_ints): Declare.
1480 * linux-nat.h (struct lin_lwp): New field core.
1481 (linux_nat_core_of_thread_1): Declare.
1482 * linux-nat.c (add_lwp): Init the 'core' field.
1483 (linux_nat_wait_1): Record the core.
1484 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
1485 (linux_nat_add_target): Register the above.
1486 * linux-thread-db.c (update_thread_core): New.
1487 (thread_db_find_new_threads): Update core information for
1488 every thread.
1489 * remote.c (struct private_thread_info): New.
1490 (free_private_thread_info, demand_private_info): New.
1491 (PACKET_qXfer_threads, use_osdata_threads): New.
1492 (struct thread_item, threads_parsing_context
1493 (start_thread, end_thread, thread_attributes)
1494 (thread_children, threads_children, threads_elements): New.
1495 (remote_threads_info): Try qXfer:threads before anything
1496 else.
1497 (remote_protocol_packets): Register qXfer:threads.
1498 (remote_open_1): Init use_osdata_threads.
1499 (struct stop_reply): New field 'core'.
1500 (remote_parse_stop_reply): Parse core number.
1501 (process_stop_reply): Record core number.
1502 (remote_xfer_partial): Handle qXfer:threads.
1503 (remote_core_of_thread): New.
1504 (init_remote_ops): Register remote_core_of_thread.
1505 (_initialize_remote): Register qXfer:read.
1506 * target.c (target_core_of_thread): New
1507 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
1508 (struct target_ops): New field to_core_of_threads.
1509 (target_core_of_thread): Declare.
1510 * gdbthread.h (struct thread_info): New field private_dtor.
1511 * thread.c (print_thread_info): Report the core.
1512 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
1513 * utils.c (compare_positive_ints): New.
1514 * features/threads.dtd: New.
1515 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
1516 * mi/mi-main.c (struct collect_cores_data, collect_cores)
1517 (do_nothing, free_vector_of_osdata_items)
1518 (splay_tree_int_comparator, free_splay_tree): New.
1519 (print_one_inferior_data): Implemented printing of selected
1520 inferiors. Collect and print cores.
1521 (output_cores): New.
1522 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
1523 thread groups together with --available.
1524
1525 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1526
1527 * configure: Regenerate (for _STRUCTURED_PROC).
1528
1529 2010-01-12 Joel Brobecker <brobecker@adacore.com>
1530
1531 Delete dead function.
1532 * ada-lang.c (extract_string): Delete. No longer used.
1533
1534 2010-01-12 Joel Brobecker <brobecker@adacore.com>
1535
1536 Fix -Wunused warning in dec-thread.c.
1537 * dec-thread.c (dec_thread_count_gdb_threads)
1538 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
1539
1540 2010-01-12 Joel Brobecker <brobecker@adacore.com>
1541
1542 * ada-valprint.c (ada_print_floating): Remove trailing space.
1543
1544 2010-01-12 Joel Brobecker <brobecker@adacore.com>
1545
1546 Add support for DW_AT_GNAT_descriptive_type.
1547 * gdbtypes.h (enum type_specific_kind): New enum.
1548 (struct main_type) [type_specific_field]: New component.
1549 [type_specific]: Add new component "gnat_stuff".
1550 (struct gnat_aux_type): New type.
1551 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
1552 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
1553 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
1554 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
1555 (TYPE_SPECIFIC_FIELD): New macros.
1556 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
1557 type does not hold any cplus-specific data.
1558 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
1559 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
1560 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
1561 cplus-specific data.
1562 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
1563 Set new component TYPE_SPECIFIC_FIELD (type).
1564 (gnat_aux_default): New constant.
1565 (allocate_gnat_aux_type): New function.
1566 (init_type): Add initialization the type-specific stuff for
1567 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
1568 (print_gnat_stuff): New function.
1569 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
1570 specific data. Adjust code that prints the contents of the
1571 type-specific union using the TYPE_SPECIFIC_FIELD value.
1572 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
1573 the type cplus stuff for Ada types.
1574 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
1575 Error out if these routines are called with an Ada type.
1576 (read_structure_type, read_array_type, read_subrange_type):
1577 Add call to set_descriptive_type.
1578 (set_die_type): Initialize the gnat-specific data if necessary.
1579 (need_gnat_info, die_descriptive_type, set_descriptive_type):
1580 New functions.
1581 * ada-lang.c (decode_constrained_packed_array_type): Use
1582 decode_constrained_packed_array_type instead of doing a standard
1583 lookup to locate a parallel type.
1584 (find_parallel_type_by_descriptive_type): New function.
1585 (ada_find_parallel_type_with_name): New function.
1586 (ada_find_parallel_type): Reimplement using
1587 ada_find_parallel_type_with_name.
1588 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
1589 to check if type has a cplus stuff.
1590 * linespec.c (total_number_of_methods): Likewise.
1591 * mdebugread.c (new_type): Likewise.
1592
1593 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1594
1595 * NEWS: Document the 0b binary number prefix parsing.
1596
1597 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1598
1599 * objfiles.c (objfile_relocate1): Change the return type to int.
1600 Describe the new return value. Return non-zero if data changed.
1601 (objfile_relocate): New variable changed. Set it. Call
1602 breakpoint_re_set depending on CHANGED.
1603
1604 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1605
1606 Implement binary numbers parsing.
1607 * c-exp.y (parse_number): New case 'b' and 'B'.
1608
1609 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1610 Tristan Gingold <gingold@adacore.com>
1611
1612 * solib.c (info_sharedlibrary_command): Replace
1613 objfile_has_partial_symbols and objfile_has_full_symbols calls by
1614 objfile_has_symbols.
1615
1616 2010-01-10 Joel Brobecker <brobecker@adacore.com>
1617
1618 * NEWS: Document the improvements made to the mips-irix port.
1619
1620 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1621
1622 Fix the documentation of valprint.c:value_print.
1623 * valprint.c (value_print): Update the function description to
1624 mention that the syntax of the output follows the current_language,
1625 not necessarily C.
1626
1627 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1628
1629 Fix displacement of separate debug info files.
1630 * objfiles.c (objfile_relocate): Rename to ...
1631 (objfile_relocate1): ... here and make it static. Extend the comment.
1632 (objfile_relocate): New function.
1633 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
1634 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
1635 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
1636 allocated using alloca.
1637 * symfile.c (copy_section_addr_info): Remove.
1638 (build_section_addr_info_from_objfile): Make it global. New variables
1639 addr_bit and mask, use them.
1640 * symfile.h (build_section_addr_info_from_objfile): New prototype.
1641 (copy_section_addr_info): Remove.
1642
1643 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1644
1645 Signal unwinder for mips-irix N32.
1646 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
1647 tramp-frame.h.
1648 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
1649 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
1650 (SIGCONTEXT_LO_OFF): New macros.
1651 (mips_irix_n32_tramp_frame_init): New function.
1652 (mips_irix_n32_tramp_frame): New static constant.
1653 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
1654
1655 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1656
1657 Breakpoint in shared library does not work on mips-irix.
1658 * procfs.c: #include "observer.h".
1659 (procfs_inferior_created): New function, moving here the code
1660 which unsets the syssgi syscall-exit notifications.
1661 (procfs_create_inferior): Remove the code which unsets the syssgi
1662 syscall-exit notifications. It is too early to do this here.
1663 (_initialize_procfs): Attach the procfs_inferior_created observer.
1664
1665 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1666
1667 Wrong return convention for arrays (mips-irix).
1668 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
1669 128 bits or smaller are returned the same way as structs
1670 and unions of the the same size.
1671
1672 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1673
1674 Cannot set the PC on mips-irix.
1675 * irix5-nat.c (fill_gregset): Check regno against the raw PC
1676 register number, no the cooked one.
1677
1678 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1679
1680 Error while loading core file on mips-irix.
1681 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
1682 if debugging from a core file.
1683
1684 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1685
1686 GDB hangs when attaching to process on mips-irix.
1687 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
1688 attaching to a process.
1689
1690 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1691
1692 Use the correct breakpoint instruction on mips-irix.
1693 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
1694 containing the correct breakpoint instruction to use on mips-irix.
1695 Use it when the osabi is GDB_OSABI_IRIX.
1696
1697 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1698
1699 -Wunused warning in procfs.c (mips-irix only).
1700 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
1701 throughout instead of using praddset and prdelset respectively.
1702
1703 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1704
1705 GDB crash while stepping into function.
1706 * infrun.c (handle_inferior_event): Refetch the current frame
1707 after handling what.main_action, in case that pointer became
1708 dangling.
1709
1710 2010-01-09 Joel Brobecker <brobecker@adacore.com>
1711
1712 Fix build failure of solaris-hosted cross debuggers.
1713 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
1714
1715 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
1716
1717 Fix build failure on sparc-solaris.
1718 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
1719
1720 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1721
1722 Move some symfile code into subroutines.
1723 * symfile.h (relative_addr_info_to_section_offsets)
1724 (addr_info_make_relative): New prototypes.
1725 * symfile.c (default_symfile_offsets): Move a part to ...
1726 (relative_addr_info_to_section_offsets): ... this new function.
1727 (default_symfile_offsets): Call it.
1728 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
1729 this part to ...
1730 (addr_info_make_relative): ... this new function.
1731
1732 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1733
1734 Add from_tty to solib_create_inferior_hook.
1735 * infcmd.c (post_create_inferior): Move solib_add after
1736 solib_create_inferior_hook. Pass from_tty to
1737 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
1738 0 from_tty and comment why.
1739 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
1740 * linux-nat.c (linux_child_follow_fork): Likewise.
1741 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
1742 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
1743 from_tty.
1744 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
1745 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
1746 * solib-null.c (null_solib_create_inferior_hook): Likewise.
1747 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
1748 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
1749 * solib-som.c (som_solib_create_inferior_hook): Likewise.
1750 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
1751 Pass it to svr4_so_ops.solib_create_inferior_hook.
1752 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
1753 from_tty.
1754 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
1755 solib_add.
1756 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
1757 enable_break.
1758 * solib-target.c (solib_target_solib_create_inferior_hook): New
1759 parameter from_tty.
1760 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
1761 it to ops->solib_create_inferior_hook.
1762 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
1763 Move solib_add after solib_create_inferior_hook, call it now with
1764 from_tty as 0. New comment there.
1765 * solib.h (solib_create_inferior_hook): New parameter from_tty.
1766 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
1767 Likewise.
1768
1769 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
1770
1771 Fix multiexec race.
1772 * infrun.c (handle_inferior_event): Use get_thread_regcache
1773 with events ptid, not get_current_regcache.
1774
1775 2009-01-08 Joel Brobecker <brobecker@adacore.com>
1776
1777 GDB crash with empty executable name (MinGW).
1778 * source.c (openp): Add assert that parameter string is not NULL.
1779 if parameter string is an empty string, then return with a failure
1780 immediately.
1781
1782 2009-01-08 Joel Brobecker <brobecker@adacore.com>
1783
1784 Get rid of support for VAX Floats.
1785 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
1786 (ada_vax_float_print_function): Delete.
1787 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
1788 (ada_vax_float_print_function): Delete.
1789 * ada-typeprint.c (print_vax_floating_point_type): Delete.
1790 (ada_print_type): Remove support for VAX floats.
1791 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
1792
1793 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1794
1795 * stabsread.c (read_args): Handle zero arguments.
1796
1797 2009-01-08 Joel Brobecker <brobecker@adacore.com>
1798
1799 Cannot find in-tree libiconv.a after reconfigure.
1800 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
1801 that we can use, then cache the path to this archive.
1802 * configure: Regenerate.
1803
1804 2010-01-07 Stan Shebs <stan@codesourcery.com>
1805
1806 Make tracepoint operations go through target vector.
1807 * target.h (enum trace_find_type): New enum.
1808 (struct target_ops): New fields to_trace_init,
1809 to_download_tracepoint, to_download_trace_state_variable,
1810 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
1811 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
1812 to_set_disconnected_tracing.
1813 (target_trace_init): New macro.
1814 (target_download_tracepoint): New macro.
1815 (target_download_trace_state_variable): New macro.
1816 (target_trace_start): New macro.
1817 (target_trace_set_readonly_regions): New macro.
1818 (target_get_trace_status): New macro.
1819 (target_trace_stop): New macro.
1820 (target_trace_find): New macro.
1821 (target_get_trace_state_variable_value): New macro.
1822 (target_set_disconnected_tracing): New macro.
1823 * target.c (update_current_target): Inherit and set defaults for
1824 tracepoint operations.
1825 * tracepoint.c (default_collect): Make globally visible.
1826 (target_is_remote): Remove, along with all calls.
1827 (tvariables_info): Call target_get_trace_state_variable_value.
1828 (remote_set_transparent_ranges): Remove.
1829 (trace_start_command): Call target_trace_init,
1830 target_download_tracepoint, etc.
1831 (download_tracepoint): Remove.
1832 (trace_stop_command): Simplify.
1833 (stop_tracing): Call target_trace_stop.
1834 (get_trace_status): Call target_get_trace_status.
1835 (trace_status_command): Add case for targets that cannot trace.
1836 (finish_tfind_command): Change to take numerical arguments, call
1837 target_trace_find.
1838 (trace_find_command): Update call to finish_tfind_command.
1839 (trace_find_pc_command): Ditto.
1840 (trace_find_tracepoint_command): Ditto.
1841 (trace_find_line_command): Ditto.
1842 (trace_find_range_command): Ditto.
1843 (trace_find_outside_command): Ditto.
1844 (set_disconnected_tracing_value): Call
1845 target_set_disconnected_tracing.
1846 * remote.c: Add protocol encoding bits from tracepoint.c.
1847 (trace_error): Move from tracepoint.c.
1848 (remote_get_noisy_reply): Ditto.
1849 (free_actions_list_cleanup_wrapper): Ditto.
1850 (free_actions_list): Ditto.
1851 (remote_trace_init): New function.
1852 (remote_download_tracepoint): New function.
1853 (remote_download_trace_state_variable): New function.
1854 (remote_trace_set_readonly_regions): New function.
1855 (remote_trace_start): New function.
1856 (remote_get_trace_status): New function.
1857 (remote_trace_stop): New function.
1858 (remote_trace_find): New function.
1859 (remote_download_trace_state_variable): New function.
1860 (remote_set_disconnected_tracing): New function.
1861 (init_remote_ops): Add tracepoint operations.
1862
1863 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
1864
1865 2010-01-07 Tristan Gingold <gingold@adacore.com>
1866
1867 * symfile.c (build_section_addr_info_from_objfile): New function.
1868 (symbol_file_add_separate): Don't use offsets from objfile but
1869 built an addr info.
1870
1871 2010-01-06 Stan Shebs <stan@codesourcery.com>
1872
1873 Support disconnected tracing.
1874 * infcmd.c (detach_command): Ask whether to stop tracing.
1875 * cli/cli-cmds.c (quit_command): Ditto.
1876 * breakpoint.h (struct breakpoint): New field number_on_target.
1877 * breakpoint.c (create_tracepoint_from_upload): New function.
1878 (get_tracepoint_by_number_on_target): New function.
1879 * remote.c (struct remote): New field disconnected_tracing.
1880 (remote_disconnected_tracing_feature): New function.
1881 (remote_protocol_features): Add DisconnectedTracing.
1882 (struct uploaded_tp): New struct.
1883 (uploaded_tps): New global.
1884 (get_uploaded_tp): New function.
1885 (find_matching_tracepoint): New function.
1886 (remote_get_tracing_state): New function.
1887 (remote_start_remote): Call it.
1888 * tracepoint.c (disconnected_tracing): New global.
1889 (trace_start_command): Initialize number_on_target.
1890 (stop_tracing): New function, split out from...
1891 (trace_stop_command): Call stop_tracing.
1892 (get_trace_status): New function, split out from...
1893 (trace_status_command): Call get_trace_status, add info on
1894 disconnection behavior.
1895 (disconnect_or_stop_tracing): New function.
1896 (finish_tfind_command): Translate from number on target.
1897 (trace_find_tracepoint_command): Translate to number on target.
1898 (send_disconnected_tracing_value): New function.
1899 (set_disconnected_tracing): New function.
1900 (_initialize_tracepoint): Add disconnected-tracing variable.
1901 * NEWS: Mention disconnected tracing.
1902
1903 2010-01-06 Tristan Gingold <gingold@adacore.com>
1904
1905 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
1906 parameter to main_objfile. Iterate on all separate debug objfiles.
1907 * symfile.h (symbol_file_add_separate)
1908 (find_separate_debug_file_by_debuglink): Remove parameter names.
1909 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
1910 (reread_symbols): Use free_objfile_separate_debug.
1911 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
1912 Adjust comment.
1913 (objfile_separate_debug_iterate, add_separate_debug_objfile)
1914 (free_objfile_separate_debug): New prototypes.
1915 * objfiles.c (objfile_separate_debug_iterate): New function.
1916 (add_separate_debug_objfile, free_objfile_separate_debug): New
1917 functions.
1918 (free_objfile): Use free_objfile_separate_debug. Adjust for
1919 multiple separate debug objfile.
1920 (objfile_has_symbols): Adjust comment. Iterate on all separate
1921 debug objfiles.
1922 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
1923 debug objfile.
1924 (lookup_minimal_symbol_text): Ditto.
1925 (lookup_minimal_symbol_by_pc_name): Ditto.
1926 (lookup_minimal_symbol_solib_trampoline): Ditto.
1927 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
1928 debug objfiles.
1929
1930 2010-01-05 Stan Shebs <stan@codesourcery.com>
1931
1932 Add fast tracepoints.
1933 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
1934 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
1935 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
1936 * breakpoint.c (tracepoint_type): New function.
1937 (ALL_TRACEPOINTS): Use it.
1938 (should_be_inserted): Ditto.
1939 (bpstat_check_location): Ditto.
1940 (print_one_breakpoint_location): Ditto.
1941 (user_settable_breakpoint): Ditto.
1942 (set_breakpoint_location_function): Ditto.
1943 (disable_breakpoints_in_shlibs): Ditto.
1944 (delete_trace_command): Ditto.
1945 (print_it_typical): Add bp_fast_tracepoint case.
1946 (bpstat_what): Ditto.
1947 (print_one_breakpoint_location): Ditto.
1948 (allocate_bp_location): Ditto.
1949 (mention): Ditto.
1950 (breakpoint_re_set_one): Ditto.
1951 (disable_command): Ditto.
1952 (enable_command): Ditto.
1953 (check_fast_tracepoint_sals): New function.
1954 (break_command_really): Call it.
1955 (ftrace_command): New function.
1956 (_initialize_breakpoint): Add ftrace command.
1957 * gdbarch.sh (fast_tracepoint_valid_at): New.
1958 * gdbarch.h, gdbarch.c: Regenerate.
1959 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
1960 (i386_gdbarch_init): Use it.
1961 * remote.c (struct remote_state): New field fast_tracepoints.
1962 (PACKET_FastTracepoints): New packet config type.
1963 (remote_fast_tracepoint_feature): New function.
1964 (remote_protocol_features): Add FastTracepoints.
1965 (remote_supports_fast_tracepoints): New function.
1966 (_initialize_remote): Add FastTracepoints.
1967 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
1968 * NEWS: Mention fast tracepoints.
1969
1970 2010-01-06 Joel Brobecker <brobecker@adacore.com>
1971
1972 * gdb-gdb.py: New file.
1973
1974 2010-01-05 Michael Snyder <msnyder@vmware.com>
1975
1976 * infrun.c (handle_inferior_event): Fix typo in comment.
1977
1978 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1979
1980 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
1981
1982 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
1983
1984 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
1985 and s390x-linux64.
1986 (s390-linux32-expedite): Define.
1987 (s390-linux64-expedite): Define.
1988 (s390x-linux64-expedite): Define.
1989 * features/s390-acr.xml: New file.
1990 * features/s390-fpr.xml: New file.
1991 * features/s390-core32.xml: New file.
1992 * features/s390-core64.xml: New file.
1993 * features/s390x-core64.xml: New file.
1994 * features/s390-linux32.xml: New file.
1995 * features/s390-linux64.xml: New file.
1996 * features/s390x-linux64.xml: New file.
1997 * features/s390-linux32.c: New generated file.
1998 * features/s390-linux64.c: New generated file.
1999 * features/s390x-linux64.c: New generated file.
2000
2001 * regformats/s390-linux32.dat: New generated file.
2002 * regformats/s390-linux64.dat: New generated file.
2003 * regformats/s390x-linux64.dat: New generated file.
2004 * regformats/reg-s390.dat: Remove.
2005 * regformats/reg-s390x.dat: Remove.
2006
2007 * s390-nat.c: Include "auxv.h" and <elf.h>.
2008 (HWCAP_S390_HIGH_GPRS): Define if undefined.
2009 (s390_target_wordsize): New function.
2010 (s390_auxv_parse): Likewise.
2011 (s390_get_hwcap): Likewise.
2012 (s390_read_description): Likewise.
2013 (_initialize_s390_nat): Install s390_auxv_parse and
2014 s390_read_description.
2015
2016 * s390-tdep.c: Include "features/s390-linux32.c",
2017 "features/s390-linux64.c", and "features/s390x-linux64.c".
2018 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
2019 (s390_register_call_saved): New function.
2020 (s390_register_name): Remove.
2021 (s390_register_type): Remove.
2022 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
2023 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
2024 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
2025 (s390_pseudo_register_name): New function.
2026 (s390_pseudo_register_type): New function.
2027 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
2028 Handle full GPR pesudos and varying pseudo register numbers.
2029 (s390_pseudo_register_write): Likewise
2030 (s390x_pseudo_register_read): Remove.
2031 (s390x_pseudo_register_write): Likewise.
2032 (s390_register_group): Remove.
2033 (s390_pseudo_register_group): New function.
2034 (s390_regmap_gregset): Add GPR upper halves.
2035 (s390x_regmap_gregset): Likewise.
2036 (s390_regmap_fpregset): Likewise.
2037 (s390_regmap_upper): New global variable.
2038 (s390_upper_regset): New global variable.
2039 (s390_upper_regset_sections): New global variable.
2040 (s390_regset_from_core_section): Handle GPR upper halves.
2041 (s390_core_read_description): New function.
2042 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
2043 register information. Handle varying pseudo register numbers.
2044 (s390_backchain_frame_unwind_cache): Likewise.
2045 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
2046 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
2047 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
2048 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
2049 Handle varying pseudo register numbers.
2050 (s390_unwind_pc): Handle varying pseudo register numbers.
2051 (s390_dwarf2_prev_register): New function.
2052 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
2053 register information. Handle varying pseudo register numbers.
2054 Install s390_dwarf2_prev_register to unwind full GPRs.
2055 (s390_gdbarch_init): Handle target descriptions. Assign varying
2056 pseudo register numbers. Install s390_adjust_frame_regnum.
2057 (_initialize_s390_tdep): Initialize target descriptions.
2058
2059 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
2060 (S390_NUM_REGS): Redefine to include upper half registers.
2061 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
2062 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
2063 (tdesc_s390_linux32): Add declaration.
2064 (tdesc_s390_linux64): Likewise.
2065 (tdesc_s390x_linux64): Likewise.
2066
2067 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
2068
2069 * regset.h (struct core_regset_section): Add HUMAN_NAME.
2070 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
2071 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
2072 (ppc_linux_vmx_regset_sections): Likewise.
2073 (ppc_linux_fp_regset_sections): Likewise.
2074
2075 * corelow.c (get_core_register_section): Constify arguments.
2076 (get_core_registers): Use gdbarch_core_regset_sections instead
2077 of hard-coded platform-specific register section names.
2078
2079 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
2080
2081 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
2082 a register, assume the least-significant part is used.
2083 (write_pieced_value): Likewise.
2084
2085 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
2086
2087 * printcmd.c: Include "arch-utils.h".
2088 (do_one_display): Re-parse expression if current architecture changed.
2089
2090 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2091 Joel Brobecker <brobecker@adacore.com>
2092
2093 * gdbtypes.c (check_typedef): New comment on type length.
2094 * value.c (allocate_value_lazy): Remove the unused atype variable. New
2095 comment on type length.
2096 (value_primitive_field): Keep the original TYPE value, new comment.
2097
2098 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2099
2100 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
2101 p_start. Change != comparisons to > and < comparisons.
2102
2103 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2104
2105 * cli/cli-script.c (process_next_line): Check P2 overrun.
2106
2107 2009-01-01 Joel Brobecker <brobecker@adacore.com>
2108
2109 Update the copyright hearder to add year 2010 for most GDB files.
2110
2111 2009-01-01 Joel Brobecker <brobecker@adacore.com>
2112
2113 Fix build failure in inf-ptrace.c.
2114 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
2115
2116 2010-01-01 Joel Brobecker <brobecker@adacore.com>
2117
2118 * top.c (print_gdb_version): Update copyright year.
2119
2120 2010-01-01 Joel Brobecker <brobecker@adacore.com>
2121
2122 Fix break *FUN'address thread NUM.
2123 * ada-lex.l (task): Expand rule to also match the thread keyword.
2124
2125 2010-01-01 Joel Brobecker <brobecker@adacore.com>
2126
2127 Fix break *FUN'address task NUM.
2128 * ada-lex.l (task): New rule.
2129 * ada-lang.c (valid_task_id): Make sure the Ada task list has
2130 been built before using it.
2131
2132 For older changes see ChangeLog-2009.
2133 \f
2134 Local Variables:
2135 mode: change-log
2136 left-margin: 8
2137 fill-column: 74
2138 version-control: never
2139 coding: utf-8
2140 End:
This page took 0.07034 seconds and 5 git commands to generate.