]>
Commit | Line | Data |
---|---|---|
011aacb0 VP |
1 | 2010-03-24 Vladimir Prus <[email protected]> |
2 | ||
3 | Implement -trace-save. | |
4 | ||
5 | * mi-cmds.h (mi_cmds_trace_save): Declare. | |
6 | * mi-cmds.c (mi_cmds): Register -trace-save. | |
7 | * mi/mi-main.c (mi_cmd_trace_save): New. | |
8 | * remote.c (remote_save_trace_data): Take const parameter. | |
9 | * target.h (struct target_ops::to_save_trace_data): Take | |
10 | const parameter. | |
11 | * target.c (update_current_target): Adjust to the above. | |
12 | * tracepoint.c (trave_save): New, extracted from | |
13 | (trace_save_command): ...this. | |
14 | (tfile_trace_find): Remove message that is unnecessary now | |
15 | that 'tfind' reports found frame. | |
16 | * tracepoint.h (trace_save): Declare. | |
17 | ||
f197e0f1 VP |
18 | 2010-03-24 Vladimir Prus <[email protected]> |
19 | ||
20 | Implement -trace-find. | |
21 | ||
22 | * mi/mi-cmds.c (mi_cmds): Register -trace-find. | |
23 | * mi/mi-cmds.h (mi_cmd_trace_find): Declare. | |
24 | * mi/mi-main.c (mi_cmd_trace_find): New. | |
25 | * target.h (struct target_ops): Document to_trace_find. | |
26 | * tracepoint.h (tfind_1): Declare. | |
27 | * tracepoint.c (finish_tfind_command): Rename to... | |
28 | (tfind_1): ...this. | |
29 | * remote.c (remote_trace_find): Return -1 if target say | |
30 | there's no frame. Improve error diagnostics. | |
31 | ||
40e1c229 VP |
32 | 2010-03-24 Vladimir Prus <[email protected]> |
33 | ||
34 | -trace-define-variable and -trace-list-variables. | |
35 | ||
36 | * tracepoint.c (create_trace_state_variable): Make | |
37 | private copy of name, as opposed to assuming the | |
38 | pointer lives forever. | |
39 | (tvariables_info_1): New. | |
40 | (tvariables_info): Use the above. | |
41 | * tracepoint.h (create_trace_state_variable, tvariables_info_1): | |
42 | Declare. | |
43 | * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable | |
44 | and -trace-list-variables. | |
45 | * mi/mi-cmds.h (mi_cmd_trace_define_variable) | |
46 | (mi_cmd_trace_list_variables): New. | |
47 | * mi/mi-main.c (mi_cmd_trace_define_variable) | |
48 | (mi_cmd_trace_list_variables): New. | |
49 | ||
9b4c786c VP |
50 | 2010-03-24 Vladimir Prus <[email protected]> |
51 | ||
52 | Implement -break-passcount. | |
53 | ||
54 | * mi/mi-cmd-break.c (mi_cmd_break_passcount): New. | |
55 | * mi/mi-cmds.c (mi_cmds): Register -break-passcount. | |
56 | * mi/mi-cmds.h (mi_cmd_break_passcount): Declare. | |
57 | ||
f224b49d VP |
58 | 2010-03-24 Vladimir Prus <[email protected]> |
59 | ||
60 | -trace-start/-trace-end/-trace-status. | |
61 | ||
62 | * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status | |
63 | and -trace-stop. | |
64 | * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status) | |
65 | (mi_cmd_trace_stop): Declare. | |
66 | * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status) | |
67 | (mi_cmd_trace_stop): New. | |
68 | * tracepoint.c (start_tracing): New, extracted from... | |
69 | (trace_start_command): ...this. | |
70 | (trace_status_mi): New. | |
71 | * tracepoint.h (struct trace_status): Document | |
72 | stopping_tracepoint. | |
73 | (start_tracing, stop_tracing, trace_status_mi): Declare. | |
74 | ||
6534d786 VP |
75 | 2010-03-24 Vladimir Prus <[email protected]> |
76 | ||
77 | Implement creating tracepoints with -break-insert. | |
78 | ||
79 | * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a | |
80 | to mean that tracepoint should be created. | |
81 | ||
51661e93 VP |
82 | 2010-03-24 Vladimir Prus <[email protected]> |
83 | ||
84 | * breakpoint.c (check_no_tracepoint_commands): Use | |
85 | current spelling of 'teval'. | |
86 | ||
a7bdde9e VP |
87 | 2010-03-24 Vladimir Prus <[email protected]> |
88 | ||
89 | Unify actions and commands | |
90 | ||
91 | * defs.h (read_command_lines, read_command_lines_1): New | |
92 | parameters validator and closure. | |
93 | * tracepoint.h (struct action_line): Remove. | |
94 | * breakpoint.h (struct breakpoint): Remove the 'actions' | |
95 | field. | |
96 | * defs.h (enum command_control_type): New value | |
97 | while_stepping_control. | |
98 | (struct command_line): Add comments. | |
99 | * breakpoint.c (breakoint_is_tracepoint): New. | |
100 | (breakpoint_set_commands): For tracepoints, | |
101 | verify the commands are permissible. | |
102 | (check_tracepoint_commands): New. | |
103 | (commands_command): Require that each new line is validated using | |
104 | check_tracepoint_command, if we set commands for a tracepoint. | |
105 | (create_tracepoint_from_upload): Likewise. | |
106 | (print_one_breakpoint_location): Remove the code to print | |
107 | actions specifically. | |
108 | (tracepoint_save_command): Relay to print_command_lines. | |
109 | * cli/cli-script.c (process_next_line): New parameters validator | |
110 | and closure. Handle 'while-stepping'. Call validator if not null. | |
111 | (read_command_lines, read_command_lines1): Likewise. | |
112 | (recurse_read_control_structure): New parameters validator and | |
113 | closure. Handle while_stepping_control. | |
114 | (print_command_lines): Handle while-stepping. | |
115 | (get_command_line, define_command, document_command): Adjust. | |
116 | * remote.c (remote_download_tracepoint): Adjust. | |
117 | * tracepoint.c (make_cleanup_free_actions, read_actions) | |
118 | (free_actions, do_free_actions_cleanup): Remove. | |
119 | (trace_actions_command): Use read_command_lines. | |
120 | (validate_actionline): Use error in one place. | |
121 | (encode_actions_1): New, extracted from... | |
122 | (encode_actions): ...this. Also use cleanups for exception | |
123 | safety. | |
124 | (trace_dump_command): Adjust. | |
125 | * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if | |
126 | it's tracepoint. | |
127 | ||
64e3cf3d MF |
128 | 2010-03-23 Mike Frysinger <[email protected]> |
129 | ||
130 | * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/.. | |
131 | ||
52e9fde8 SS |
132 | 2010-03-22 Stan Shebs <[email protected]> |
133 | ||
134 | * value.c (value_static_field): Be lazy about the field's value. | |
135 | ||
508ccb1f TT |
136 | 2010-03-22 Reid Kleckner <[email protected]> |
137 | ||
138 | PR gdb/11094 | |
139 | * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add | |
140 | bp_jit_event. | |
141 | (disable_breakpoints_in_shlibs): Likewise. | |
142 | ||
acebe513 UW |
143 | 2010-03-22 Ulrich Weigand <[email protected]> |
144 | ||
145 | * dwarf2read.c (partial_die_parent_scope): Work around buggy | |
146 | GCC 4.1 debug info generation (GCC PR c++/28460). | |
147 | (determine_prefix): Likewise. | |
148 | ||
957b8b5a DJ |
149 | 2010-03-20 Daniel Jacobowitz <[email protected]> |
150 | ||
151 | * tui/tui-disasm.c (tui_get_begin_asm_address): Default to | |
152 | get_current_arch. | |
153 | * tui/tui-layout.c (extract_display_start_addr): Likewise. | |
154 | ||
3b11a015 SS |
155 | 2010-03-19 Stan Shebs <[email protected]> |
156 | ||
157 | * ax-gdb.c (gen_fetch): Handle bool. | |
158 | (gen_usual_unary): Ditto. | |
159 | (gen_cast): Ditto. | |
160 | (gen_equal): New function. | |
161 | (gen_less): New function. | |
162 | (gen_expr_binop_rest): Call them, also return integer type from | |
163 | logical operations. | |
164 | (gen_expr): Ditto. | |
165 | ||
20781792 TT |
166 | 2010-03-19 Tom Tromey <[email protected]> |
167 | ||
168 | * jv-lang.c (jv_dynamics_objfile_data_key) | |
169 | (jv_type_objfile_data_key): New globals. | |
170 | (class_symtab): Move earlier. | |
171 | (jv_per_objfile_free): New function. | |
172 | (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch' | |
173 | parameter. | |
174 | Remove ancient #if 1. | |
175 | (add_class_symbol): Remove redundant declaration. | |
176 | (java_lookup_class): Use alloc_type, not alloc_type_arch. | |
177 | (java_link_class_type): Mark as static. Update. | |
178 | (jv_clear_object_type): New function. | |
179 | (set_java_object_type): Likewise. | |
180 | (get_java_object_type): Use set_java_object_type. | |
181 | (is_object_type): Likewise. | |
182 | (_initialize_java_language): Register new objfile keys. | |
183 | (get_java_class_symtab): Add 'gdbarch' parameter. | |
184 | (add_class_symtab_symbol): Update. | |
185 | (type_from_class): Update. | |
186 | ||
cf3e25ca SS |
187 | 2010-03-19 Stan Shebs <[email protected]> |
188 | ||
189 | * ax-general.c (ax_const_l): Fix a sizing bug. | |
190 | ||
f1ae44c9 | 191 | 2010-03-18 Joel Brobecker <[email protected]> |
192 | ||
193 | GDB 7.1 released. | |
194 | ||
4daf5ac0 SS |
195 | 2010-03-18 Stan Shebs <[email protected]> |
196 | Pedro Alves <[email protected]> | |
197 | ||
198 | * target.h (struct target_ops): New method | |
199 | to_set_circular_trace_buffer. | |
200 | (target_set_circular_trace_buffer): New macro. | |
201 | * target.c (update_current_target): Add | |
202 | to_set_circular_trace_buffer, fix to_set_disconnected_tracing | |
203 | default behavior. | |
204 | * remote.c (remote_set_circular_trace_buffer): New function. | |
205 | (init_remote_ops): Add it to vector. | |
206 | * tracepoint.h (struct trace_status): New field traceframes_created, | |
207 | change buffer_size and buffer_free to int. | |
208 | * tracepoint.c (circular_trace_buffer): New global. | |
209 | (start_tracing): Send values of disconnected tracing and circular | |
210 | trace buffer settings. | |
211 | (set_circular_trace_buffer): New function. | |
212 | (parse_trace_state): Handle total space and frames created. | |
213 | (trace_status_command): Display total space and total frames | |
214 | created. | |
215 | (trace_save): Write out new status values. | |
216 | (parse_trace_status): Set traceframe_count, traceframes_created, | |
217 | buffer_free and buffer_size to -1 by default. | |
218 | (_initialize_tracepoint): New setshow for circular-trace-buffer. | |
219 | * NEWS: Mention the circular trace buffer option. | |
220 | ||
40c549d6 TT |
221 | 2010-03-18 Tom Tromey <[email protected]> |
222 | ||
223 | * infcmd.c (finish_command_continuation): Wrap print_return_value | |
224 | in TRY_CATCH. | |
225 | ||
e8d05480 JB |
226 | 2010-03-18 Joel Brobecker <[email protected]> |
227 | ||
228 | * dwarf2read.c (add_partial_subprogram): Make sure the subprogram | |
229 | DIE has a name before creating the associated partial symbol. | |
230 | (read_func_scope): Emit a complaint if the subprogram does not | |
231 | have a name or when we can't extract the subprogram PC bounds. | |
232 | ||
441b986a UW |
233 | 2010-03-18 Ulrich Weigand <[email protected]> |
234 | ||
235 | * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch | |
236 | instead of selected frame architecture. | |
237 | ||
4247603b PA |
238 | 2010-03-18 Pedro Alves <[email protected]> |
239 | ||
240 | * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's | |
241 | a valid selected thread, and that it is not running. | |
242 | (advance_command): Ditto. | |
243 | (finish_command): Ditto. | |
244 | ||
400c6af0 SS |
245 | 2010-03-17 Stan Shebs <[email protected]> |
246 | ||
3a96536b SS |
247 | * ax-gdb.c (require_rvalue): Disallow non-scalars. |
248 | ||
573cda03 SS |
249 | * infcall.c: Include tracepoint.h. |
250 | (call_function_by_hand): Disallow calls in tfind mode. | |
251 | * infcmd.c: Include tracepoint.h. | |
252 | (ensure_not_tfind_mode): New function. | |
253 | (continue_1): Call it. | |
254 | (step_1) Ditto. | |
255 | (jump_command): Ditto. | |
256 | (signal_command): Ditto. | |
257 | (advance_command): Ditto. | |
258 | (until_command): Ditto. | |
259 | (finish_command): Ditto. | |
260 | * tracepoint.h (disconnect_or_stop_tracing): Declare. | |
261 | ||
400c6af0 SS |
262 | * ax-gdb.h (struct axs_value): New field optimized_out. |
263 | (gen_trace_for_var): Add gdbarch argument. | |
264 | * ax-gdb.c (gen_trace_static_fields): New function. | |
265 | (gen_traced_pop): Call it, add gdbarch argument. | |
266 | (gen_trace_for_expr): Update call to it. | |
267 | (gen_trace_for_var): Ditto, and report optimized-out variables. | |
268 | (gen_struct_ref_recursive): Check for optimized-out value. | |
269 | (gen_struct_elt_for_reference): Ditto. | |
270 | (gen_static_field): Pass gdbarch instead of expression, assume | |
271 | optimization if field not found. | |
272 | (gen_var_ref): Set the optimized_out flag. | |
273 | (gen_expr): Error on optimized-out variable. | |
274 | * tracepoint.c (collect_symbol): Handle struct-valued vars as | |
275 | expressions, skip optimized-out variables with computed locations. | |
276 | * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of | |
277 | erroring out if location expression missing. | |
278 | (loclist_tracepoint_var_ref): Don't error out here. | |
279 | ||
a3b2a86b TT |
280 | 2010-03-17 Tom Tromey <[email protected]> |
281 | ||
282 | * dwarf2read.c (dwarf2_get_section_info): Handle case where no | |
283 | DWARF data is available. | |
284 | ||
38963c97 DJ |
285 | 2010-03-17 Daniel Jacobowitz <[email protected]> |
286 | ||
287 | * symfile.c (generic_load): Reset breakpoints after loading. | |
288 | ||
ddabfc73 TT |
289 | 2010-03-17 Tom Tromey <[email protected]> |
290 | ||
291 | * linux-nat.c (linux_nat_detach): Check debug_linux_nat. | |
292 | ||
d8c09fb5 JK |
293 | 2010-03-17 Jan Kratochvil <[email protected]> |
294 | ||
295 | * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the | |
296 | create_breakpoint call, adjust the parameters. | |
297 | ||
bbb0eef6 JK |
298 | 2010-03-16 Jan Kratochvil <[email protected]> |
299 | Chandru <[email protected]> | |
300 | ||
301 | * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED. | |
302 | * valarith.c (value_subscripted_rvalue): Suppress error if | |
303 | TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED. | |
304 | ||
46956e39 HZ |
305 | 2010-03-16 Holger Hans Peter Freyther <[email protected]> |
306 | ||
307 | * linux-record.c (record_linux_msghdr): Remove unintended semicolons. | |
308 | ||
b8d088ac JB |
309 | 2010-03-16 Joel Brobecker <[email protected]> |
310 | ||
311 | * ada-tasks.c (task_command_1): Check that the task ptid is valid | |
312 | before doing the associated thread switch. | |
313 | ||
322be962 DJ |
314 | 2010-03-16 Daniel Jacobowitz <[email protected]> |
315 | ||
316 | * MAINTAINERS: Update my email address. | |
317 | ||
8cdf0e15 VP |
318 | 2010-03-16 Vladimir Prus <[email protected]> |
319 | ||
320 | Simplify MI breakpoint setting. | |
321 | ||
322 | * breakpoint.c (break_command_really): Make nonstatic and | |
323 | rename to... | |
324 | (create_breakpoint): ...this. Rename prior function by this name | |
325 | to... | |
326 | (create_breakpoint_sal): ...this. | |
327 | (create_breakpoints): Rename to... | |
328 | (create_breakpoints_sal): ...this. | |
329 | (set_breakpoint): Remove. | |
330 | * breakpoint.h: Adjust to above changes. | |
331 | * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify. | |
332 | ||
b6e7192f SS |
333 | 2010-03-15 Stan Shebs <[email protected]> |
334 | ||
335 | * ax-gdb.c: Include cp-support.h. | |
336 | (find_field): Remove. | |
337 | (gen_primitive_field): New function. | |
338 | (gen_struct_ref_recursive): New function. | |
339 | (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead | |
340 | of find_field. | |
341 | (gen_static_field): New function. | |
342 | (gen_struct_elt_for_reference): New. | |
343 | (gen_namespace_elt): New. | |
344 | (gen_maybe_namespace_elt): New. | |
345 | (gen_aggregate_elt_ref): New. | |
346 | (gen_expr): Add OP_SCOPE, display opcode name in error message. | |
347 | ||
1054b214 TT |
348 | 2010-03-15 Tom Tromey <[email protected]> |
349 | ||
350 | * dwarf2read.c (die_needs_namespace): Also return 0 for | |
351 | DW_TAG_subprogram. | |
352 | ||
13387711 SW |
353 | 2010-03-15 Sami Wagiaalla <[email protected]> |
354 | ||
355 | PR c++/7936: | |
356 | * cp-support.h: Added char *declaration element to using_direct | |
357 | data struct. | |
358 | (cp_add_using): Added char *declaration argument. | |
359 | (cp_add_using_directive): Ditto. | |
360 | (cp_lookup_symbol_imports): made extern. | |
361 | * cp-namespace.c: Updated with the above changes. | |
362 | * dwarf2read.c (read_import_statement): Ditto. | |
363 | (read_namespace): Ditto. | |
364 | (read_import_statement): Support import declarations. | |
365 | * cp-namespace.c (cp_lookup_symbol_imports): Check for imported | |
366 | declarations. | |
367 | Added support for 'declaration_only' search. | |
368 | (cp_lookup_symbol_namespace): Attempt to search for the name as | |
369 | is before consideration of imports. | |
370 | * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only' | |
371 | search at every block level search. | |
372 | Now takes language argument. | |
373 | (lookup_symbol_aux): Updated. | |
374 | ||
6e31430b TT |
375 | 2010-03-15 Tom Tromey <[email protected]> |
376 | ||
377 | * c-exp.y (name_not_typename): Add 'operator' clause. | |
378 | ||
4dea3bb7 | 379 | 2010-03-15 Ralf Corsepius <[email protected]> (tiny change) |
bf307134 JB |
380 | |
381 | * configure.ac: Exit if ${gdb_target_obs}" is not set. | |
382 | * configure: Regenerate. | |
383 | ||
4d9743af JK |
384 | 2010-03-15 Jan Kratochvil <[email protected]> |
385 | ||
386 | * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss" | |
387 | and ".sdynbss". Update the comment. | |
388 | ||
f75150fe JZ |
389 | 2010-03-15 Jie Zhang <[email protected]> |
390 | ||
391 | * MAINTAINERS: Update my email address. | |
392 | ||
3c13bc11 DJ |
393 | 2010-03-14 Daniel Jacobowitz <[email protected]> |
394 | ||
395 | * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check. | |
396 | ||
43484f03 DJ |
397 | 2010-03-14 Daniel Jacobowitz <[email protected]> |
398 | ||
399 | * charset.c [USE_WIN32API]: Include <windows.h>. | |
400 | (_initialize_charset): Correct type of w32_host_default_charset. | |
401 | ||
5f25d77d PA |
402 | 2010-03-14 Pedro Alves <[email protected]> |
403 | ||
404 | * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid. | |
405 | ||
1c809c68 TT |
406 | 2010-03-12 Tom Tromey <[email protected]> |
407 | ||
408 | PR c++/9708: | |
409 | * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable | |
410 | in a lexical block does not need a namespace. | |
411 | (new_symbol) <DW_TAG_variable>: Put extern variables on | |
412 | list_in_scope in all cases. | |
413 | ||
948103cf SS |
414 | 2010-03-12 Stan Shebs <[email protected]> |
415 | ||
416 | * ax-gdb.c (gen_expr): Add shift expressions. | |
417 | (gen_expr_binop_rest): Ditto. | |
418 | ||
00ae8fef SW |
419 | 2010-03-12 Sami Wagiaalla <[email protected]> |
420 | ||
421 | * buildsym.c (finish_block): Reset using_directives pointer | |
422 | after block initialization. | |
423 | ||
9cad29ac L |
424 | 2010-03-12 H.J. Lu <[email protected]> |
425 | ||
426 | * amd64-tdep.c (amd64_word_names): Replace "sp" with "". | |
427 | * i386-tdep.c (i386_word_names): Likewise. | |
428 | ||
2f4d8875 PA |
429 | 2010-03-12 Pedro Alves <[email protected]> |
430 | ||
431 | * target.c (memory_xfer_partial): Don't use the stack cache if | |
432 | inspecting trace frames. | |
433 | * tracepoint.c (finish_tfind_command): Invalidate the target | |
434 | dcache. | |
435 | ||
ccf26247 JK |
436 | 2010-03-11 Jan Kratochvil <[email protected]> |
437 | ||
438 | * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered | |
439 | for the PIC displacement, print also the displacement value. | |
440 | (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE. | |
441 | ||
477c84a7 KB |
442 | 2010-03-10 Kevin Buettner <[email protected]> |
443 | ||
444 | * remote-mips.c (close_ports, mips_initialize_cleanups) | |
445 | (mips_exit_cleanups, mips_send_command, mips_open, pmon_open) | |
446 | (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint) | |
447 | (mips_stopped_by_watchpoint, send_srec, pmon_checkset) | |
448 | (pmon_make_fastrec, pmon_check_ack, mips_expect_download) | |
449 | (pmon_check_entry_address, pmon_check_total, pmon_end_download) | |
450 | (pmon_download, pmon_load_fast, _initialize_remote_mips): Add | |
451 | comments describing each of these functions. | |
452 | (mips_enter_debug, mips_exit_debug, common_open) | |
453 | (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add | |
454 | blank line after the comment describing the function. | |
455 | ||
01c30d6e JK |
456 | 2010-03-10 Jan Kratochvil <[email protected]> |
457 | ||
458 | * solib-svr4.c (svr4_exec_displacement): Return now success, new | |
459 | parameter displacementp. Update comment. | |
460 | (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS | |
461 | element exists. Return if svr4_exec_displacement was not successful. | |
462 | Update comment. | |
463 | ||
09919ac2 JK |
464 | 2010-03-10 Jan Kratochvil <[email protected]> |
465 | Daniel Jacobowitz <[email protected]> | |
466 | ||
467 | * solib-svr4.c (read_program_header): Support type == -1 to read | |
468 | all program headers. | |
469 | (read_program_headers_from_bfd): New function. | |
470 | (svr4_static_exec_displacement): Remove and move the comment ... | |
471 | (svr4_exec_displacement): ... here. Remove variable found. New | |
472 | variable displacement. Check also DYNAMIC. Verify DISPLACEMENT | |
473 | alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF | |
474 | targets using read_program_headers_from_bfd. Remove the call of | |
475 | svr4_static_exec_displacement. | |
476 | ||
d146bf1e TT |
477 | 2010-03-10 Tom Tromey <[email protected]> |
478 | ||
479 | * dwarf2read.c (struct pubnames_header): Remove. | |
480 | (_PUBNAMES_HEADER): Remove. | |
481 | (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove. | |
482 | (struct aranges_header): Remove. | |
483 | (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove. | |
484 | (struct dwarf2_per_objfile) <pubnames, aranges>: Remove. | |
485 | (PUBNAMES_SECTION): Remove. | |
486 | (ARANGES_SECTION): Remove. | |
487 | (dwarf2_locate_sections): Don't handle pubnames or aranges. | |
488 | (dwarf2_build_psymtabs): Remove dead code. | |
489 | (dwarf2_build_psymtabs_easy): Remove. | |
490 | ||
be391dca TT |
491 | 2010-03-10 Tom Tromey <[email protected]> |
492 | ||
493 | * elfread.c (elf_symfile_read): Don't call | |
494 | dwarf2_build_frame_info. | |
495 | * dwarf2read.c (struct dwarf2_section_info) <readin>: New field. | |
496 | (struct dwarf2_per_objfile) <objfile>: New field. | |
497 | (dwarf2_has_info): Now idempotent. Set objfile field. | |
498 | (dwarf2_read_section): Check and set readin field. Call | |
499 | posix_madvise. | |
500 | (dwarf2_build_psymtabs): Don't read all sections. | |
501 | (read_type_comp_unit_head): Read types section. | |
502 | (create_debug_types_hash_table): Likewise. | |
503 | (init_cu_die_reader): Add asserts. | |
504 | (process_type_comp_unit): Add assert. | |
505 | (dwarf2_build_psymtabs_hard): Read info section. | |
506 | (load_partial_comp_unit): Add assert. | |
507 | (create_all_comp_units): Read info section. | |
508 | (load_full_comp_unit): Likewise. | |
509 | (dwarf2_ranges_read): Read ranges section. | |
510 | (dwarf2_record_block_ranges): Add assert. | |
511 | (dwarf2_read_abbrevs): Read abbrev section. | |
512 | (read_indirect_string): Read str section. | |
513 | (dwarf_decode_line_header): Read line section. | |
514 | (read_signatured_type_at_offset): Read types section. | |
515 | (dwarf_decode_macros): Read macinfo section. | |
516 | (dwarf2_symbol_mark_computed): Read loc section. | |
517 | * dwarf2-frame.c (dwarf2_frame_find_fde): Call | |
518 | dwarf2_build_frame_info. | |
519 | (dwarf2_build_frame_info): Unconditionally set | |
520 | dwarf2_frame_objfile_data on the objfile. | |
521 | * configure.ac: Check for posix_madvise. | |
522 | * config.in, configure: Rebuild. | |
523 | ||
ccefe4c4 TT |
524 | 2010-03-10 Tom Tromey <[email protected]> |
525 | ||
e38df1d0 TT |
526 | * xcoffread.c (xcoff_start_psymtab): Update. |
527 | (xcoff_end_psymtab): Update. | |
528 | * psymtab.c (allocate_psymtab): Remove dead code. | |
529 | * psympriv.h (struct partial_symtab) <read_symtab_private>: Now | |
530 | void*. | |
531 | * mdebugread.c (parse_partial_symbols): Update. | |
532 | (new_psymtab): Likewise. | |
533 | * dwarf2read.c (process_psymtab_comp_unit): Update. | |
534 | (psymtab_to_symtab_1): Update. | |
535 | * dbxread.c (start_psymtab): Update. | |
536 | (end_psymtab): Likewise. | |
537 | ||
be391dca | 538 | 2010-03-10 Tom Tromey <[email protected]> |
e38df1d0 | 539 | |
ccefe4c4 TT |
540 | * xcoffread.c: Include psymtab.h. |
541 | (xcoff_sym_fns): Update. | |
542 | * symtab.h (struct partial_symbol): Remove. | |
543 | (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove. | |
544 | (struct partial_symtab): Remove. | |
545 | (PSYMTAB_TO_SYMTAB): Remove. | |
546 | (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab) | |
547 | (find_pc_sect_psymtab): Remove. | |
548 | (find_pc_sect_symtab_via_partial): Declare. | |
549 | (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab) | |
550 | (find_main_psymtab): Remove. | |
551 | (find_main_filename): Declare. | |
552 | (fixup_psymbol_section): Remove. | |
553 | (fixup_section): Declare. | |
554 | * symtab.c: Include psymtab.h. | |
555 | (lookup_symtab): Use lookup_symtab method. | |
556 | (lookup_partial_symtab): Remove. | |
557 | (find_pc_sect_psymtab_closer): Remove. | |
558 | (find_pc_sect_psymtab): Remove. | |
559 | (find_pc_sect_symtab_via_partial): New function. | |
560 | (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove. | |
561 | (fixup_section): No longer static. | |
562 | (fixup_psymbol_section): Remove. | |
563 | (lookup_symbol_aux): Use lookup_symbol_aux_quick. | |
564 | (lookup_global_symbol_from_objfile): Likewise. | |
565 | (lookup_symbol_aux_psymtabs): Remove. | |
566 | (lookup_symbol_aux_quick): New function. | |
567 | (lookup_symbol_global): Use lookup_symbol_aux_quick. | |
568 | (lookup_partial_symbol): Remove. | |
569 | (basic_lookup_transparent_type_quick): New function. | |
570 | (basic_lookup_transparent_type): Use it. | |
571 | (find_main_psymtab): Remove. | |
572 | (find_main_filename): New function. | |
573 | (find_pc_sect_symtab): Use find_pc_sect_symtab method. | |
574 | (find_line_symtab): Use expand_symtabs_with_filename method. | |
575 | (output_partial_symbol_filename): New function. | |
576 | (sources_info): Use map_partial_symbol_filenames. | |
577 | (struct search_symbols_data): New type. | |
578 | (search_symbols_file_matches): New function. | |
579 | (search_symbols_name_matches): Likewise. | |
580 | (search_symbols): Use expand_symtabs_matching method. | |
581 | (struct add_name_data): Rename from add_macro_name_data. | |
582 | (add_macro_name): Update. | |
583 | (add_partial_symbol_name): New function. | |
584 | (default_make_symbol_completion_list): Use | |
585 | map_partial_symbol_names. | |
586 | (struct add_partial_symbol_name): New type. | |
587 | (maybe_add_partial_symtab_filename): New function. | |
588 | (make_source_files_completion_list): Use | |
589 | map_partial_symbol_filenames. | |
590 | (expand_line_sal): Use expand_symtabs_with_filename method. | |
591 | * symmisc.c: Include psymtab.h. | |
592 | (print_objfile_statistics): Use print_stats method. | |
593 | (dump_objfile): Use dump method. | |
594 | (dump_psymtab, maintenance_print_psymbols) | |
595 | (maintenance_info_psymtabs, maintenance_check_symtabs) | |
596 | (extend_psymbol_list): Remove. | |
597 | * symfile.h (struct quick_symbol_functions): New struct. | |
598 | (struct sym_fns) <qf>: New field. | |
599 | (sort_pst_symbols): Remove. | |
600 | (increment_reading_symtab): Declare. | |
601 | * symfile.c: Include psymtab.h. | |
602 | (compare_psymbols, sort_pst_symbols): Remove. | |
603 | (psymtab_to_symtab): Remove. | |
604 | (increment_reading_symtab): New function. | |
605 | (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs | |
606 | method. | |
607 | (set_initial_language): Use find_main_filename. | |
608 | (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove. | |
609 | (free_named_symtabs): Remove unused code. | |
610 | (start_psymtab_common, add_psymbol_to_bcache) | |
611 | (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list): | |
612 | Remove. | |
613 | * stack.c: Include psymtab.h, symfile.h. | |
614 | (backtrace_command_1): Use find_pc_sect_symtab_via_partial. | |
615 | * source.h (psymtab_to_fullname): Don't declare. | |
616 | * source.c: Include psymtab.h. | |
617 | (select_source_symtab): Use find_last_source_symtab method. | |
618 | (forget_cached_source_info): Use forget_cached_source_info | |
619 | method. | |
620 | (find_and_open_source): No longer static. | |
621 | (psymtab_to_fullname): Remove. | |
622 | * somread.c: Include psymtab.h. | |
623 | (som_sym_fns): Update. | |
624 | * psympriv.h: New file. | |
625 | * psymtab.h: New file. | |
626 | * psymtab.c: New file. | |
627 | * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove. | |
628 | (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise. | |
629 | * objfiles.c: Include psymtab.h. | |
630 | (objfile_relocate1): Use relocate method. | |
631 | (objfile_has_partial_symbols): Use has_symbols method. | |
632 | * mipsread.c: Include psymtab.h. | |
633 | (ecoff_sym_fns): Update. | |
634 | * mi/mi-cmd-file.c: Include psymtab.h. | |
635 | (print_partial_file_name): New function. | |
636 | (mi_cmd_file_list_exec_source_files): Use | |
637 | map_partial_symbol_filenames. | |
638 | * mdebugread.c: Include psympriv.h. | |
639 | * machoread.c: Include psympriv.h. | |
640 | (macho_sym_fns): Update. | |
641 | * m2-exp.y (yylex): Use lookup_symtab. | |
642 | * elfread.c: Include psympriv.h. | |
643 | (elf_sym_fns): Update. | |
644 | * dwarf2read.c: Include psympriv.h. | |
645 | * dbxread.c: Include psympriv.h. | |
646 | (aout_sym_fns): Update. | |
647 | * cp-support.c: Include psymtab.h. | |
648 | (read_in_psymtabs): Remove. | |
649 | (make_symbol_overload_list_qualified): Use | |
650 | expand_symtabs_for_function method. | |
651 | * coffread.c: Include psympriv.h. | |
652 | (coff_sym_fns): Update. | |
653 | * blockframe.c: Include psymtab.h. | |
654 | (find_pc_partial_function): Use find_pc_sect_symtab method. | |
655 | * ada-lang.h (ada_update_initial_language): Update. | |
656 | * ada-lang.c: Include psymtab.h. | |
657 | (ada_update_initial_language): Remove 'main_pst' argument. | |
658 | (ada_lookup_partial_symbol): Remove. | |
659 | (struct ada_psym_data): New type. | |
660 | (ada_add_psyms): New function. | |
661 | (ada_add_non_local_symbols): Use map_ada_symtabs method. | |
662 | (struct add_partial_datum): New type. | |
663 | (ada_add_partial_symbol_completions): New function. | |
664 | (ada_make_symbol_completion_list): Use map_partial_symbol_names. | |
665 | (ada_exception_support_info_sniffer): Update. | |
666 | * Makefile.in (SFILES): Add psymtab.c. | |
667 | (COMMON_OBS): Add psymtab.o. | |
668 | (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h. | |
669 | ||
7d8500b7 PM |
670 | 2010-03-10 Pierre Muller <[email protected]> |
671 | ||
672 | * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API. | |
673 | ||
c0cc3a76 SW |
674 | 2010-03-10 Sami Wagiaalla <[email protected]> |
675 | ||
676 | PR C++/11236: | |
677 | * cp-namespace.c (cp_add_using): Deleted. | |
678 | (cp_add_using_directive): Use obstack allocations. | |
679 | Merged the function cp_add_using into this one. | |
680 | Added 'struct obstack *' argument. | |
681 | (cp_scan_for_anonymous_namespaces): Updated. | |
682 | * cp-support.h: Updated. | |
683 | * dwarf2read.c (read_import_statement): Updated. | |
684 | (read_namespace): Updated. | |
685 | ||
452fa064 CF |
686 | 2010-03-10 Pierre Muller <[email protected]> |
687 | ||
688 | * windows-nat.c (cygwin_conv_path): Remove old macro. | |
689 | ||
60e1c644 PA |
690 | 2010-03-10 Pedro Alves <[email protected]> |
691 | ||
692 | * breakpoint.c (condition_command): Handle watchpoint conditions. | |
693 | (is_hardware_watchpoint): Add comment. | |
694 | (is_watchpoint): New. | |
695 | (update_watchpoint): Don't reparse the watchpoint's condition | |
696 | unless necessary. | |
697 | (WP_IGNORE): New. | |
698 | (watchpoint_check): Use it. | |
699 | (bpstat_check_watchpoint): Handle it. | |
700 | (bpstat_check_breakpoint_conditions): Evaluate watchpoint local | |
701 | conditions in a frame where it makes sense. | |
702 | (watch_command_1): Store the innermost block of the condition | |
703 | expression. | |
704 | (delete_breakpoint): Delete the watchpoint condition expression. | |
705 | * breakpoint.h (struct bp_location) <cond>: Update comment. | |
706 | (struct breakpoint): New field `cond_exp_valid_block'. | |
707 | ||
af6b7be1 JB |
708 | 2010-03-09 Joel Brobecker <[email protected]> |
709 | ||
710 | Adjust handling of Ada DIEs after dwarf2_physname patch. | |
711 | * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs. | |
712 | ||
60c5c021 CF |
713 | 2010-03-09 Christopher Faylor <[email protected]> |
714 | Pierre Muller <[email protected]> | |
715 | ||
716 | * windows-nat.c (cygwin_conv_path): Redefine to properly convert | |
717 | from/to posix/win32. | |
718 | (windows_make_so): Use non-Cygwin 1.7 specific function. | |
719 | (windows_create_inferior): Make sure that cygallargs points to | |
720 | original args in non Cygwin 1.7. case. | |
721 | ||
60a1502a MS |
722 | 2010-03-09 Michael Snyder <[email protected]> |
723 | ||
724 | * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int | |
725 | after target_read_memory to get host byte order. | |
726 | (i386_process_record): Ditto. | |
727 | ||
94af9270 KS |
728 | 2010-03-09 Keith Seitz <[email protected]> |
729 | ||
730 | Based on work from Daniel Jacobowitz <[email protected]> | |
731 | * c-typeprint.c (cp_type_print_method_args): For non-static methods, | |
732 | print out const or volatile qualifiers, too. | |
733 | (c_type_print_args): Add parameters show_artificial and language. | |
734 | Skip artificial parameters when requested. | |
735 | Use the appropriate language printer. | |
736 | (c_type_print_varspec): Tell c_type_print_args to skip artificial | |
737 | parameters and pass language_c. | |
738 | * dwarf2read.c (die_list): New file global. | |
739 | (struct partial_die_info): Update comments for name field. | |
740 | (pdi_needs_namespace): Renamed to ... | |
741 | (die_needs_namespace): ... this. Rewrite. | |
742 | (dwarf2_linkage_name): Remove. | |
743 | (add_partial_symbol): Do not predicate the call to | |
744 | partial_die_full_name based on pdi_needs_namespace. | |
745 | Remove call to cp_check_possible_namespace_symbols and associated | |
746 | outdated comments. | |
747 | (guess_structure_name): Do not inspect child subprogram DIEs. | |
748 | (dwarf2_fullname): Update comments. | |
749 | Use die_needs_namespace to assist in computing the name. | |
750 | (read_func_scope): Use dwarf2_name to get the DIE's name. | |
751 | Use dwarf2_physname to get the "linkage name" of the DIE. | |
752 | (dwarf2_add_member_field): Use dwarf2_physname instead of | |
753 | dwarf2_linkage_name. | |
754 | (read_structure_type): For structs and classes, set TYPE_NAME, too. | |
755 | (determine_class): Remove. | |
756 | (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages | |
757 | except Ada. | |
758 | (new_symbol): Unconditionally call dwarf2_name. | |
759 | Compute the "linkage name" using dwarf2_physname. | |
760 | Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs. | |
761 | When determining to scan for anonymous C++ namespaces, ignore | |
762 | the linkage name. | |
763 | (dwarf2_physname): New function. | |
764 | (dwarf2_full_name): Move content to new function and call | |
765 | that. | |
766 | (dwarf2_compute_name): "New" function. | |
767 | (_initialize_dwarf2_read): Initialize die_list. | |
768 | * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable | |
769 | physname. | |
770 | (gnu_v3_print_method_ptr): Use the physname for virtual methods | |
771 | without a demangled name. | |
772 | Print out type information for non-virtual methods. | |
773 | * linespec.c (decode_line_1): Force ANY string using "::" (or | |
774 | "." for java) to use decode_compound, and clean up any stray quoting. | |
775 | If we found a file symtab, re-evaluate whether the remainder is_quoted. | |
776 | (decode_compound): Stop consuming at an open parenthesis. | |
777 | Keep template parameters. | |
778 | Keep any overload information. | |
779 | Keep keywords like "const". | |
780 | Remove paren_pointer. | |
781 | Move is_quoted check from set_flags to here. | |
782 | Remove #if 0 code from 2000. Ten years is long enough. | |
783 | (find_method): Before comparing symbol names, canonicalize the string | |
784 | from the user. | |
785 | If a specific overload is requested, find it. Otherwise throw an error. | |
786 | (find_method_overload_end): New function. | |
787 | (set_flags): Remove. | |
788 | (decode_compound): Assume that parentheses are matched. | |
789 | It's a lot easier. | |
790 | * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag | |
791 | to cplus_demangle. | |
792 | * linespec.c (decode_line_1): Keep important keywords like | |
793 | "const" and "volatile". | |
794 | * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove. | |
795 | * typeprint.h (c_type_print_args): Add declaration. | |
796 | * ui-file.c (do_ui_file_obsavestring): New function. | |
797 | (ui_file_obsavestring): New function. | |
798 | * ui-file.h (ui_file_obsavestring): Add declaration. | |
799 | * valops.c (find_overload_match): Resolve the object to | |
800 | a non-pointer type. | |
801 | If the object is a data member, search the object for the member | |
802 | and return with staticp set. | |
803 | Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME. | |
804 | Do not attempt to extract a function name from non-function types. | |
805 | If the extracted function name and the original name are the same, | |
806 | we don't have a C++ method. | |
807 | ||
808 | From Jan Kratochvil <[email protected]>: | |
809 | * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name. | |
810 | ||
811 | * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters | |
812 | and arguments from symbol lookups. | |
813 | * ax-gdb.c (gen_expr): Likewise. | |
814 | * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope, | |
815 | cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type, | |
816 | lookup_possible_namespace_symbol): Likewise. | |
817 | * cp-support.c (read_in_psymtabs): Likewise. | |
818 | * cp-support.h (cp_lookup_symbol_nonlocal): Likewise. | |
819 | * language.h (la_lookup_symbol_nonlocal): Likewise. | |
820 | * scm-valprint.c (scm_inferior_print): Likewise. | |
821 | * solib-darwin.c (darwin_relocate_section_addresses): Likewise. | |
822 | * solib-svr.c (elf_lookup_lib): Likewise. | |
823 | * solib.c (show_auto_solib_add): Likewise. | |
824 | * solist.h (lookup_lib_global, solib_global_lookup): Likewise. | |
825 | * symmisc.c (maintenance_check_symtabs): Likewise. | |
826 | * symtab.c (lookup_symbol_in_language, lookup_symbol_aux, | |
827 | lookup_symbol_aux_local, lookup_symbol_aux_block, | |
828 | lookup_symbol_from_objfile, lookup_symbol_aux_symtabs, | |
829 | lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal, | |
830 | lookup_symbol_static, lookup_symbol_global, symbol_matches_domain, | |
831 | basic_lookup_transparent_type, find_main_psymtab, | |
832 | lookup_block_symbol): Likewise. | |
833 | * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static, | |
834 | lookup_symbol_global, lookup_symbol_aux_block, | |
835 | lookup_symbol_partial_symbol, lookup_block_symbol, | |
836 | lookup_global_symbol, value_maybe_namespace_elt): Likewise. | |
837 | ||
9cb74f47 PM |
838 | 2010-03-09 Pierre Muller <[email protected]> |
839 | ||
840 | * python/python-internal.h: Include symtab.h. | |
841 | ||
af6b7be1 JB |
842 | 2010-03-09 Joel Brobecker <[email protected]> |
843 | Pierre Muller <[email protected]> | |
e13eedd5 PM |
844 | |
845 | * p-lang.c (is_pascal_string_type): Remove unneeded parentheses. | |
846 | * p-valprint.c (pascal_val_print): Remove undeed block and fix | |
847 | indentation. | |
848 | ||
bad56014 TT |
849 | 2010-03-08 Tom Tromey <[email protected]> |
850 | ||
851 | * breakpoint.c (breakpoint_1): Add "QUIT". | |
852 | ||
08105857 PA |
853 | 2010-03-08 Daniel Jacobowitz <[email protected]> |
854 | Pedro Alves <[email protected]> | |
855 | ||
856 | * solib.c (solib_find): Replace extension if | |
857 | solib_symbols_extension is set in the target gdbarch. | |
858 | * arm-symbian-tdep.c (arm_symbian_init_abi): Set | |
859 | solib_symbols_extension to "sym". | |
860 | * gdbarch.sh (solib_symbols_extension): New variable. | |
861 | (pstring): New function. | |
862 | * gdbarch.h, gdbarch.c: Regenerate. | |
863 | ||
7c953934 TT |
864 | 2010-03-08 Tom Tromey <[email protected]> |
865 | ||
866 | PR cli/9591: | |
867 | * NEWS: Update. | |
868 | * utils.c: Include main.h. | |
869 | (fputs_maybe_filtered): Don't paginate if `batch_flag'. | |
870 | (defaulted_query): Use default answer if `batch_flag'. | |
871 | * main.h (batch_flag): Declare. | |
872 | * main.c (batch_flag): New global. | |
873 | (captured_main): Remove 'batch'. Update. | |
874 | ||
bbd2783e KB |
875 | 2010-03-08 Kevin Buettner <[email protected]> |
876 | ||
877 | From Richard Sandiford, Martin M. Hunt, Corinna Vinschen, | |
878 | and Kevin Buettner: | |
879 | ||
880 | * remote-mips.c (rockhopper_ops): New target_ops struct. | |
881 | (MON_ROCKHOPPER): New mips_monitor_type. | |
882 | (read_hex_value): New function. | |
883 | (mips_request): Send 8-byte values with a 'T' packet. Read the | |
884 | packet argument as a string and use read_hex_value to parse it. | |
885 | (mips_exit_debug): Wait for response when using MON_ROCKHOPPER. | |
886 | (rockhopper_open): New function. | |
887 | (mips_wait): Read the PC, FP and SP fields as strings. Use | |
888 | read_hex_value to parse them and mips_set_register to commit them. | |
889 | (mips_set_register): New function. | |
890 | (mips_fetch_registers): Do not cast register value to "unsigned" | |
891 | when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register. | |
892 | (mips_store_registers): Use a 'T' packet to set registers when | |
893 | using MON_ROCKHOPPER. | |
894 | (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER | |
895 | and expect the total to be printed before the entry address. | |
896 | (_initialize_remote_mips): Initialize and add rockhopper_ops. | |
897 | ||
566f3d17 KB |
898 | 2010-03-08 Kevin Buettner <[email protected]> |
899 | ||
900 | * remote-mips.c (mips_fetch_word): Add new parameter, `valp'. | |
901 | Change return value to int. Store value fetched in location | |
902 | addressed by `val'. Use function's return value as success | |
903 | or failure indicator. Adjust all callers. | |
904 | ||
9c8ee2ab | 905 | 2010-03-08 Pierre Muller <[email protected]> |
f72d4b77 PM |
906 | |
907 | * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL. | |
908 | ||
7155de5a HZ |
909 | 2010-03-08 Jan Kratochvil <[email protected]> |
910 | Hui Zhu <[email protected]> | |
911 | ||
912 | * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and | |
913 | tmp_to_stopped_data_address. | |
914 | (record_open): Reset tmp_to_stopped_by_watchpoint and | |
915 | tmp_to_stopped_data_address. | |
916 | * target.c (init_dummy_target): Add to_stopped_by_watchpoint and | |
917 | to_stopped_data_address. | |
918 | ||
580879fc HZ |
919 | 2010-03-08 Hui Zhu <[email protected]> |
920 | ||
921 | * i386-tdep.c (i386_process_record): Initialize regnum. | |
922 | ||
b0fcb67f JK |
923 | 2010-03-08 Jan Kratochvil <[email protected]> |
924 | ||
925 | * symfile.c (addr_info_make_relative): New variable sect_name, use it. | |
926 | Do not warn on ".gnu.liblist" and ".gnu.conflict". | |
927 | ||
08597104 JB |
928 | 2010-03-08 Joel Brobecker <[email protected]> |
929 | ||
930 | Memory error when reading wrong core file. | |
931 | * solib-svr4.c (solib_svr4_r_map): catch and print all exception | |
932 | errors while reading the inferior memory, and return zero if | |
933 | an exception was raised. | |
934 | ||
425b824a MS |
935 | 2010-03-07 Michael Snyder <[email protected]> |
936 | ||
ec6dbf37 MS |
937 | * record.c (record_restore): Rename tmpu8 to rectype. |
938 | ||
648d0c8b MS |
939 | * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables |
940 | tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64. | |
941 | ||
942 | (i386_record_push): Rename local tmpulongest to addr. | |
943 | ||
944 | (i386_process_record): Rename local tmpulongest to addr. | |
945 | ||
946 | Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32, | |
947 | addr64. | |
955db0c0 MS |
948 | |
949 | Rename local variable tmpu8 to opcode8 and regnum. | |
425b824a | 950 | |
10760264 JB |
951 | 2010-03-07 Joel Brobecker <[email protected]> |
952 | ||
953 | * remote.c (remote_get_ada_task_ptid): New function. | |
954 | (init_remote_ops): Set remote_ops.to_get_ada_task_ptid. | |
955 | ||
b3c613f2 CF |
956 | 2010-03-06 Christopher Faylor <[email protected]> |
957 | ||
958 | * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one | |
959 | block. Define helper macros to reduce ifdefs in code. | |
960 | (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer | |
961 | size. Call unadorned GetModuleFileNameEx rather than | |
962 | GetModuleFileNameEx*. | |
963 | (windows_make_so): Use __PMAX to denote maximum buffer size and | |
964 | cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as | |
965 | appropriate. | |
966 | (get_image_name): Use __PMAX to denote maximum buffer size. | |
967 | (handle_load_dll): Likewise. | |
968 | (windows_pid_to_exec_file): Likewise. | |
969 | (windows_create_inferior): Add many accommodations for older Cygwin and | |
970 | non-Cygwin. | |
971 | (bad_GetModuleFileNameExW): Control inclusion of this function based on | |
972 | __USEWIDE conditional. | |
973 | (bad_GetModuleFileNameExA): Likewise. | |
974 | (_initialize_loadable): Just use real function names without the dyn_ | |
975 | part since they are defined earlier. | |
976 | ||
f870a310 TT |
977 | 2010-03-05 Corinna Vinschen <[email protected]> |
978 | Tom Tromey <[email protected]> | |
979 | ||
980 | * utils.c (host_char_to_target): Add 'gdbarch' argument. | |
981 | (parse_escape): Likewise. | |
982 | * python/py-utils.c (unicode_to_target_string): Update. | |
983 | (unicode_to_target_python_string): Update. | |
984 | (target_string_to_unicode): Update. | |
985 | * printcmd.c (printf_command): Update. | |
986 | * p-exp.y (yylex): Update. | |
987 | * objc-exp.y (yylex): Update. | |
988 | * mi/mi-parse.c: Include charset.h. | |
989 | (mi_parse_escape): New function. | |
990 | (mi_parse_argv): Use it. | |
991 | * jv-exp.y (yylex): Update. | |
992 | * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New | |
993 | function. | |
994 | (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset. | |
995 | * gdbarch.sh (auto_charset, auto_wide_charset): New. | |
996 | * gdbarch.c: Rebuild. | |
997 | * gdbarch.h: Rebuild. | |
998 | * defs.h (parse_escape): Update. | |
999 | * cli/cli-setshow.c: Include arch-utils.h. | |
1000 | (do_setshow_command): Update. | |
1001 | * cli/cli-cmds.c (echo_command): Update. | |
1002 | * charset.h (target_charset, target_wide_charset): Update. | |
1003 | * charset.c: Include arch-utils.h. | |
1004 | (target_charset_name): Default to "auto". | |
1005 | (target_wide_charset_name): Likewise. | |
1006 | (show_target_charset_name): Handle "auto". | |
1007 | (show_target_wide_charset_name): Likewise. | |
1008 | (be_le_arch): New global. | |
1009 | (set_be_le_names): Add 'gdbarch' argument. | |
1010 | (validate): Likewise. Don't call set_be_le_names. | |
1011 | (set_charset_sfunc, set_host_charset_sfunc) | |
1012 | (set_target_charset_sfunc, set_target_wide_charset_sfunc): | |
1013 | Update. | |
1014 | (target_charset): Add 'gdbarch' argument. | |
1015 | (target_wide_charset): Likewise. Remove 'byte_order' argument. | |
1016 | (auto_target_charset_name): New global. | |
1017 | (default_auto_charset, default_auto_wide_charset): New functions. | |
1018 | (_initialize_charset): Set auto_target_charset_name. Allow "auto" | |
1019 | for target charsets. Copy result of nl_langinfo. Use GetACP if | |
1020 | USE_WIN32API. | |
1021 | * c-lang.c (charset_for_string_type): Add 'gdbarch' argument, | |
1022 | remove 'byte_order' argument. Update. | |
1023 | (classify_type): Likewise. | |
1024 | (c_emit_char): Update. | |
1025 | (c_printchar): Update. | |
1026 | (c_printstr): Update. | |
1027 | (c_get_string): Update. | |
1028 | (evaluate_subexp_c): Update. | |
1029 | * arch-utils.h (default_auto_charset, default_auto_wide_charset): | |
1030 | Declare. | |
1031 | * python/python.c (gdbpy_target_charset): New function. | |
1032 | (gdbpy_target_wide_charset): Likewise. | |
1033 | (GdbMethods): Update. | |
1034 | * NEWS: Update. | |
1035 | ||
4e7386b0 UW |
1036 | 2010-03-05 Ulrich Weigand <[email protected]> |
1037 | ||
1038 | * symfile.c (build_section_addr_info_from_objfile): Do not mask | |
1039 | off high address bits. | |
1040 | ||
aab48ede UW |
1041 | 2010-03-05 Ulrich Weigand <[email protected]> |
1042 | ||
1043 | * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract | |
1044 | address as UnsignedLongLong, not LongLong. | |
1045 | ||
8eeafb51 KB |
1046 | 2010-03-05 Kevin Buettner <[email protected]> |
1047 | Pedro Alves <[email protected]> | |
1048 | ||
1049 | * remote-mips.c (gdbthread.h): Include. | |
1050 | (remote_mips_ptid): Declare. | |
1051 | (mips_error): Only mourn the inferior when inferior_ptid is non-null. | |
1052 | (common_open): Set inferior_ptid, add it as an inferior, and | |
1053 | as a thread too. Delete FIXME comment regarding start_remote(). | |
1054 | (mips_close): Invoke generic_mourn_inferior(). | |
1055 | (mips_kill): Make sure that target_mourn_inferior is invoked. | |
1056 | (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as | |
1057 | it's now invoked from mips_close(). | |
1058 | (mips_load): Don't null out inferior_ptid. Don't call | |
1059 | clear_symtab_users(). | |
1060 | (mips_thread_alive, mips_pid_to_str): New functions. | |
1061 | (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize | |
1062 | to_thread_alive and to_pid_to_str operations. | |
1063 | ||
ae411497 TT |
1064 | 2010-03-04 Tom Tromey <[email protected]> |
1065 | ||
1066 | * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size | |
1067 | in DWARF 3 and later. | |
1068 | (read_attribute_value) <DW_FORM_ref_addr>: Likewise. | |
1069 | ||
0e0b460e KS |
1070 | 2010-03-04 Keith Seitz <[email protected]> |
1071 | ||
1072 | * linespec.c (decode_line_1): Update comments for is_quote_enclosed. | |
1073 | If the filename portion of the linespec was quoted, recheck the | |
1074 | remainder for additional quoting. | |
1075 | (locate_first_half): Skip over completer chars, too. | |
1076 | ||
1b93ff13 TT |
1077 | 2010-03-04 Tom Tromey <[email protected]> |
1078 | ||
1079 | * printcmd.c (printf_command): Pass dummy argument to | |
1080 | printf_filtered. | |
1081 | ||
fc36e839 DE |
1082 | 2010-03-04 Doug Evans <[email protected]> |
1083 | ||
111f853c DE |
1084 | * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg, |
1085 | unwound_fp. | |
1086 | ||
fc36e839 DE |
1087 | * arm-tdep.c (arm_stub_unwind_sniffer): Add comment. |
1088 | ||
c7437ca6 PA |
1089 | 2010-03-04 Pedro Alves <[email protected]> |
1090 | ||
1091 | * breakpoint.c (update_watchpoint): Create a sentinel location if | |
1092 | the software watchpoint isn't watching any memory. | |
1093 | (breakpoint_address_bits): Skip dummy software watchpoint locations. | |
1094 | ||
58dadb1b PA |
1095 | 2010-03-04 Pedro Alves <[email protected]> |
1096 | ||
1097 | * utils.c (fputs_maybe_filtered): Check if there's already a top | |
1098 | level interpreter before dereferencing it. If there isn't one, | |
1099 | don't paginate either. | |
1100 | ||
50e98be4 DJ |
1101 | 2010-03-04 Matthew Gretton-Dann <[email protected]> |
1102 | ||
1103 | * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get | |
1104 | the state right when single stepping. | |
1105 | (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions. | |
1106 | Get the next PC along with the instruction state. | |
1107 | (thumb_get_next_pc): Remove. | |
1108 | (arm_get_next_pc): Modified to use arm_get_next_pc_raw. | |
1109 | ||
2e3ceee9 HZ |
1110 | 2010-03-04 Hui Zhu <[email protected]> |
1111 | ||
1112 | * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64". | |
1113 | ||
390a8aca PA |
1114 | 2010-03-03 Pedro Alves <[email protected]> |
1115 | ||
1116 | * utils.c (fputs_maybe_filtered): Always disable pagination if the | |
1117 | top level interpreter is MI. | |
1118 | ||
9355b391 SS |
1119 | 2010-03-03 Stan Shebs <[email protected]> |
1120 | ||
1121 | * remote.c (remote_download_tracepoint): Iterate over locations. | |
1122 | * tracepoint.c (validate_actionline): Ditto. | |
1123 | (encode_actions): Add location argument. | |
1124 | (trace_dump_command): Check all locations to see if stepping | |
1125 | frame. | |
390a8aca | 1126 | |
8685c86f L |
1127 | 2010-03-03 H.J. Lu <[email protected]> |
1128 | Eli Zaretskii <[email protected]> | |
1129 | ||
1130 | * NEWS: Add X86 general purpose registers section. | |
1131 | ||
e8f781e2 TT |
1132 | 2010-03-03 Tom Tromey <[email protected]> |
1133 | ||
1134 | PR mi/11098: | |
1135 | * varobj.c (install_new_value): Handle case where new print_value | |
1136 | is NULL. | |
1137 | ||
a0e0ef55 TT |
1138 | 2010-03-03 Dainis Jonitis <[email protected]> |
1139 | ||
1140 | PR gdb/11345: | |
1141 | * printcmd.c (printf_command): Print end of format string using | |
1142 | printf_filtered. | |
1143 | ||
a58d7472 TT |
1144 | 2010-03-02 Tom Tromey <[email protected]> |
1145 | ||
1146 | * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'. | |
1147 | * defs.h (read_command_lines_1): Add missing 'void'. | |
1148 | * cli/cli-script.c (recurse_read_control_structure): Add missing | |
1149 | 'void'. | |
1150 | (read_next_line): Likewise. | |
1151 | (read_command_lines_1): Likewise. | |
1152 | ||
ce50d78b UW |
1153 | 2010-03-02 Ulrich Weigand <[email protected]> |
1154 | ||
1155 | * spu-tdep.c (spu_analyze_prologue): Track instruction to | |
1156 | store backchain as part of prologue. | |
1157 | ||
7e9af34a DJ |
1158 | 2010-03-02 Daniel Jacobowitz <[email protected]> |
1159 | ||
1160 | * progspace.c (update_address_spaces): Update inferior address spaces | |
1161 | also. | |
1162 | ||
01637564 DE |
1163 | 2010-03-02 Doug Evans <[email protected]> |
1164 | ||
1165 | * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to | |
1166 | lowpc,highpc args to addrmap_set_empty. | |
1167 | ||
1ba53b71 L |
1168 | 2010-03-02 H.J. Lu <[email protected]> |
1169 | ||
1170 | * amd64-tdep.c (amd64_byte_names): New. | |
1171 | (amd64_word_names): Likewise. | |
1172 | (amd64_dword_names): Likewise. | |
1173 | (amd64_pseudo_register_name): Likewise. | |
1174 | (amd64_pseudo_register_read): Likewise. | |
1175 | (amd64_pseudo_register_write): Likewise. | |
1176 | (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs | |
1177 | and num_mmx_regs. Call set_gdbarch_pseudo_register_read, | |
1178 | set_gdbarch_pseudo_register_write and | |
1179 | set_tdesc_pseudo_register_name. Don't call | |
1180 | set_gdbarch_num_pseudo_regs. Don't set mm0_regnum. | |
1181 | ||
1182 | * i386-tdep.c (i386_num_mmx_regs): Removed. | |
1183 | (i386_num_pseudo_regs): Likewise. | |
1184 | (i386_byte_names): New. | |
1185 | (i386_word_names): Likewise. | |
1186 | (i386_byte_regnum_p): Likewise. | |
1187 | (i386_word_regnum_p): Likewise. | |
1188 | (i386_mmx_regnum_p): Updated. | |
1189 | (i386_pseudo_register_name): Make it global. Handle byte and | |
1190 | word pseudo-registers. | |
1191 | (i386_pseudo_register_read): Likewise. | |
1192 | (i386_pseudo_register_write): Likewise. | |
1193 | (i386_pseudo_register_type): Handle byte, word and dword | |
1194 | pseudo-registers | |
1195 | (i386_register_reggroup_p): Don't include pseudo | |
1196 | registers, except for MXX, in any register groups. Don't | |
1197 | include pseudo byte, word, dword registers in general_reggroup. | |
1198 | (i386_gdbarch_init): Set num_byte_regs, num_word_regs, | |
1199 | num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX | |
1200 | pseudo-registers after word pseudo-registers. Call | |
1201 | set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi. | |
1202 | ||
1203 | * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs, | |
1204 | al_regnum, num_word_regs, ax_regnum, num_dword_regs and | |
1205 | eax_regnum. | |
1206 | (i386_byte_regnum_p): New. | |
1207 | (i386_word_regnum_p): Likewise. | |
1208 | (i386_dword_regnum_p): Likewise. | |
1209 | (i386_pseudo_register_name): Likewise. | |
1210 | (i386_pseudo_register_read): Likewise. | |
1211 | (i386_pseudo_register_write): Likewise. | |
1212 | ||
a6f5ef51 L |
1213 | 2010-03-01 H.J. Lu <[email protected]> |
1214 | ||
1215 | * target-descriptions.c (tdesc_type): Remove | |
1216 | TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR. | |
1217 | (tdesc_predefined_types): Likewise. | |
1218 | (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag | |
1219 | if flag name is empty. | |
1220 | (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS. | |
1221 | ||
1222 | * features/i386/32bit-core.xml: Define i386_eflags. | |
1223 | * features/i386/64bit-core.xml: Likewise. | |
1224 | ||
1225 | * features/i386/32bit-sse.xml: Define i386_mxcsr. | |
1226 | * features/i386/64bit-sse.xml: Likewise. | |
1227 | ||
1228 | * features/i386/amd64-linux.c: Regenerated. | |
1229 | * features/i386/amd64.c: Likewise. | |
1230 | * features/i386/i386-linux.c: Likewise. | |
1231 | * features/i386/i386.c: Likewise. | |
1232 | ||
f5dff777 DJ |
1233 | 2010-03-01 Daniel Jacobowitz <[email protected]> |
1234 | ||
1235 | * gdbtypes.c (append_composite_type_field_raw): New. | |
1236 | (append_composite_type_field_aligned): Use the new function. | |
1237 | * gdbtypes.h (append_composite_type_field_raw): Declare. | |
1238 | * target-descriptions.c (struct tdesc_type_field): Add start and end. | |
1239 | (struct tdesc_type_flag): New type. | |
1240 | (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to | |
1241 | kind. Add size to u.u. Add u.f for flags. | |
1242 | (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS. | |
1243 | (tdesc_free_type): Likewise. | |
1244 | (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New. | |
1245 | (tdesc_add_field): Handle TDESC_TYPE_STRUCT. | |
1246 | (tdesc_add_bitfield, tdesc_add_flag): New. | |
1247 | * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size) | |
1248 | (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare. | |
1249 | * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to | |
1250 | current_type. Add current_type_size and current_type_is_flags. | |
1251 | (tdesc_start_union): Clear the new fields. | |
1252 | (tdesc_start_struct, tdesc_start_flags): New. | |
1253 | (tdesc_start_field): Handle struct fields, including bitfields. | |
1254 | (field_attributes): Make type optional. Add start and end. | |
1255 | (union_children): Rename to struct_union_children. | |
1256 | (union_attributes): Rename to struct_union_attributes. Add optional | |
1257 | size. | |
1258 | (flags_attributes): New. | |
1259 | (feature_children): Add struct and flags. | |
1260 | * features/gdb-target.dtd: Add flags and struct to features. | |
1261 | Make field type optional. Add field start and end. | |
1262 | ||
90884b2b L |
1263 | 2010-03-01 H.J. Lu <[email protected]> |
1264 | ||
1265 | * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New. | |
1266 | (amd64_linux_read_description): Likewise. | |
1267 | (_initialize_amd64_linux_nat): Set to_read_description to | |
1268 | amd64_linux_read_description. | |
1269 | ||
1270 | * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c". | |
1271 | (amd64_linux_register_name): Removed. | |
1272 | (amd64_linux_register_type): Likewise. | |
1273 | (amd64_linux_core_read_description): New. | |
1274 | (amd64_linux_init_abi): Set target description to | |
1275 | tdesc_amd64_linux if needed. Support orig_rax in target | |
1276 | description. Don't call set_gdbarch_register_name nor | |
1277 | set_gdbarch_register_type. Call | |
1278 | set_gdbarch_core_read_description. | |
1279 | (_initialize_amd64_linux_tdep): Call | |
1280 | initialize_tdesc_amd64_linux. | |
1281 | ||
1282 | * amd64-linux-tdep.h (tdesc_amd64_linux): New. | |
1283 | ||
1284 | * amd64-tdep.c: Include "features/i386/amd64.c". | |
1285 | (amd64_register_names): Removed. | |
1286 | (amd64_register_name): Likewise. | |
1287 | (amd64_register_type): Likewise. | |
1288 | (amd64_init_abi): Set num_core_regs and register_names. Set | |
1289 | target description to tdesc_amd64 if needed. Don't call | |
1290 | set_gdbarch_register_name nor set_gdbarch_register_type. | |
1291 | (_initialize_amd64_tdep): New. | |
1292 | ||
1293 | * i386-linux-nat.c (i386_linux_read_description): New. | |
1294 | (_initialize_i386_linux_nat): Set to_read_description to | |
1295 | i386_linux_read_description. | |
1296 | ||
1297 | * i386-linux-tdep.c: Include "features/i386/i386-linux.c". | |
1298 | (i386_linux_register_name): Removed. | |
1299 | (i386_linux_core_read_description): New. | |
1300 | (i386_linux_read_description): Likewise. | |
1301 | (i386_linux_init_abi): Don't call set_gdbarch_register_name. | |
1302 | Set target description to tdesc_i386_linux if needed. Support | |
1303 | orig_eax. Set register_reggroup_p. Call | |
1304 | set_gdbarch_core_read_description. | |
1305 | (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux. | |
1306 | ||
1307 | * i386-linux-tdep.h (tdesc_i386_linux): New. | |
1308 | ||
1309 | * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS | |
1310 | with I387_NUM_REGS. | |
1311 | ||
1312 | * i386-tdep.c: Include "features/i386/i386.c". | |
1313 | (i386_register_names): Make it const. | |
1314 | (i386_mmx_names): Likewise. | |
1315 | (i386_num_register_names): Removed. | |
1316 | (i386_register_name): Likewise. | |
1317 | (i386_eflags_type): Likewise. | |
1318 | (i386_mxcsr_type): Likewise. | |
1319 | (i386_sse_type): Likewise. | |
1320 | (i386_register_type): Likewise. | |
1321 | (i387_ext_type): Call tdesc_find_type instead of arch_float_type. | |
1322 | (i386_pseudo_register_name): New. | |
1323 | (i386_pseudo_register_type): Likewise. | |
1324 | (i386_mmx_type): Make it static. | |
1325 | (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with | |
1326 | I387_NUM_REGS. Set num_core_regs and register_names. Don't | |
1327 | call set_gdbarch_register_name nor set_gdbarch_register_type. | |
1328 | Set register_reggroup_p. Set target description to tdesc_i386 | |
1329 | if needed. Call set_tdesc_pseudo_register_type, | |
1330 | set_tdesc_pseudo_register_name and tdesc_use_registers. | |
1331 | (_initialize_i386_tdep): Call initialize_tdesc_i386. | |
1332 | initialize_tdesc_x86_64. | |
1333 | ||
1334 | * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type, | |
1335 | i386_mxcsr_type and i386_sse_type. Add num_core_regs, | |
1336 | register_names, tdesc and register_reggroup_p. | |
1337 | (I386_NUM_FREGS): Removed. | |
1338 | (i386_eflags_type): Likewise. | |
1339 | (i386_mxcsr_type): Likewise. | |
1340 | (i386_mmx_type): Likewise. | |
1341 | (i386_sse_type): Likewise. | |
1342 | (i386_register_name): Likewise. | |
1343 | (i386_regnum): Add I386_MXCSR_REGNUM. | |
1344 | (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM. | |
1345 | ||
1346 | * i387-tdep.h (I387_NUM_REGS): New. | |
1347 | ||
1348 | * regformats/i386/i386-linux.dat: Generated. | |
1349 | * regformats/i386/i386.dat: Likewise. | |
1350 | * regformats/i386/amd64-linux.dat: Likewise. | |
1351 | * regformats/i386/amd64.dat: Likewise. | |
1352 | ||
1353 | * regformats/reg-i386-linux.dat: Removed. | |
1354 | * regformats/reg-i386.dat: Likewise. | |
1355 | * regformats/reg-x86-64-linux.dat: Likewise. | |
1356 | * regformats/reg-x86-64.dat: Likewise. | |
1357 | ||
d0d0ab16 CV |
1358 | 2010-03-01 Corinna Vinschen <[email protected]> |
1359 | ||
1360 | * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7 | |
1361 | cygwin_conv_path API rather than the deprecated | |
1362 | cygwin_conv_to_full_posix_path. | |
1363 | * windows-nat.c: | |
1364 | (GetModuleFileNameExA): Undefine for Cygwin. | |
1365 | (GetModuleFileNameExW): Define for Cygwin. | |
1366 | (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin. | |
1367 | Call GetModuleFileNameExW and convert path to POSIX using | |
1368 | cygwin_conv_path. | |
1369 | (windows_make_so): Always define p. Drop unused variable m. | |
1370 | Don't use Win32 functions to check file existance, rather use | |
1371 | access on Cygwin. Fetch system directory using GetSystemDirectoryW. | |
1372 | Use canonicalize_file_name to get full path. | |
1373 | (get_image_name): Use wcstombs, rather than WideCharToMultiByte | |
1374 | to convert Unicode pathname to multibyte on Cygwin. Otherwise, | |
1375 | use correct target buffer size in call to WideCharToMultiByte. | |
1376 | (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin. | |
1377 | (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin. | |
1378 | (windows_create_inferior): Convert all paths and arguments to wchar_t | |
1379 | and use CreateProcessW on Cygwin. | |
1380 | (_initialize_windows_nat): Disable DOS-style path warning on Cygwin. | |
1381 | (bad_GetModuleFileNameExA): Undefine for Cygwin. | |
1382 | (bad_GetModuleFileNameExW): Define for Cygwin. | |
1383 | (_initialize_loadable): Load GetModuleFileNameExW into | |
1384 | dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin. | |
1385 | ||
dc00d89f PM |
1386 | 2010-02-28 Phil Muldoon <[email protected]> |
1387 | ||
1388 | PR python/11036 | |
1389 | * python/py-frame.c (frapy_read_var): Add block argument and logic | |
1390 | to cope with user provided blocks. | |
1391 | ||
0e095b7e JK |
1392 | 2010-02-28 Jan Kratochvil <[email protected]> |
1393 | ||
1394 | * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp. | |
1395 | New comment. | |
1396 | ||
2f9e05b4 CV |
1397 | 2010-02-28 Corinna Vinschen <[email protected]> |
1398 | ||
1399 | * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here... | |
1400 | (COMMON_OBS): ... to here since it's used unconditionally. | |
1401 | (SUBDIR_MI_SRCS): Move mi/mi-common.c from here... | |
1402 | (SFILES): To here. | |
1403 | ||
eb195664 DD |
1404 | 2010-02-26 David Daney <[email protected]> |
1405 | ||
1406 | * mips-linux-tdep.c: Update struct sigframe comments. | |
1407 | (SIGFRAME_CODE_OFFSET): Delete macro. | |
1408 | (mips_linux_o32_sigframe_init): Calculate sigcontext_base using | |
1409 | this_frame's sp. | |
1410 | (mips_linux_n32n64_sigframe_init): Same. | |
1411 | ||
97b0f3e2 KB |
1412 | 2010-02-26 Kevin Buettner <[email protected]> |
1413 | ||
1414 | * remote-mips.c (mips_load): Don't use pseudo-register when | |
1415 | invalidating regcache. | |
1416 | ||
4069ebbe DJ |
1417 | 2010-02-26 Daniel Jacobowitz <[email protected]> |
1418 | ||
1419 | * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode. | |
1420 | ||
05071a4d PA |
1421 | 2010-02-26 Pedro Alves <[email protected]> |
1422 | ||
1423 | * NEWS: Add "New targets" section, and mention ARM Symbian | |
1424 | support. | |
1425 | ||
6063c216 UW |
1426 | 2010-02-26 Ulrich Weigand <[email protected]> |
1427 | ||
1428 | * dwarf2loc.c (struct piece_closure): Remove ARCH member, | |
1429 | add ADDR_SIZE member. | |
1430 | (allocate_piece_closure): Update. | |
1431 | (copy_pieced_value_closure): Likewise. | |
1432 | (dwarf2_evaluate_loc_desc): Likewise. | |
1433 | (read_pieced_value): Use DWARF address size instead of | |
1434 | GDB's gdbarch_addr_bit as size of values on the DWARF stack. | |
1435 | ||
5107b149 PM |
1436 | 2010-02-26 Phil Muldoon <[email protected]> |
1437 | Tom Tromey <[email protected]> | |
1438 | ||
1439 | * python/py-type.c (typy_lookup_typename): Add in block argument. | |
1440 | If provided restrict lookup to specified blocks. | |
1441 | (gdbpy_lookup_type): Likewise. | |
1442 | (typy_lookup_type): Likewise. | |
1443 | ||
78664fa3 PA |
1444 | 2010-02-25 Daniel Jacobowitz <[email protected]> |
1445 | ||
1446 | Symbian config | |
1447 | ||
1448 | gdb/ | |
1449 | * arm-symbian-tdep.c: New. | |
1450 | * configure.tgt (arm*-*-symbianelf*): New target. | |
1451 | (*-*-symbianelf*): New OS. | |
1452 | * osabi.c (gdb_osabi_names): Add Symbian. | |
1453 | * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN. | |
1454 | * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o. | |
1455 | (ALLDEPFILES): Add arm-symbian-tdep.c. | |
1456 | ||
eb73e134 DJ |
1457 | 2010-02-25 Daniel Jacobowitz <[email protected]> |
1458 | ||
1459 | * symfile.c (find_lowest_section): Include SEC_ALLOC sections. | |
1460 | ||
46ef47e5 PA |
1461 | 2010-02-24 Pedro Alves <[email protected]> |
1462 | ||
1463 | * mi/mi-main.c (mi_cmd_execute): Fix typo. | |
1464 | ||
f3e9a817 PM |
1465 | 2010-02-24 Phil Muldoon <[email protected]> |
1466 | Tom Tromey <[email protected]> | |
1467 | Thiago Jung Bauermann <[email protected]> | |
1468 | ||
1469 | * python/python.c (_initialize_python): Call | |
1470 | gdbpy_initialize_symtabs, gdbpy_initialize_symbols and | |
1471 | gdbpy_initialize_blocks. | |
1472 | * python/python-internal.h: Declare struct symbol, block and | |
1473 | symtab_and_line. Declare block_object_type and | |
1474 | symbol_object_type | |
1475 | (gdbpy_lookup_symbol gdbpy_block_for_pc) | |
1476 | (symtab_and_line_to_sal_object, symtab_to_symtab_object) | |
1477 | (symbol_to_symbol_object, block_to_block_object) | |
1478 | (gdbpy_initialize_symtabs,gdbpy_initialize_symbols) | |
1479 | (gdbpy_initialize_blocks ): Declare. | |
1480 | * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal) | |
1481 | (frapy_select): Add methods. | |
1482 | (frapy_read_var): Add symbol branch. | |
1483 | * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab, | |
1484 | py-block. | |
1485 | (SUBDIR_PYTHON_SRCS): Likewise. | |
1486 | (py-symbol.o): New rule. | |
1487 | (py-symtab.o): Likewise. | |
1488 | (py-block.o): Likewise. | |
1489 | * python/py-symbol.c: New file. | |
1490 | * python/py-symtab.c: Likewise. | |
1491 | * python/py-block.c: Likewise. | |
1492 | ||
24291992 PA |
1493 | 2010-02-24 Pedro Alves <[email protected]> |
1494 | ||
1495 | PR gdb/11321 | |
1496 | ||
1497 | * inferior.h (prepare_for_detach): Declare. | |
1498 | (struct inferior) <detaching>: New field. | |
1499 | * infrun.c (prepare_for_detach): New. | |
1500 | (handle_inferior_event) <random signal>: Don't stop if detaching. | |
1501 | * target.c (target_detach): Call prepare_for_detach. | |
1502 | ||
fc1cf338 PA |
1503 | 2010-02-24 Pedro Alves <[email protected]> |
1504 | ||
1505 | Per-process displaced stepping queue. | |
1506 | ||
1507 | * infrun.c (displaced_step_ptid, displaced_step_request_queue) | |
1508 | (displaced_step_gdbarch, displaced_step_closure, | |
1509 | (displaced_step_original, displaced_step_copy): Move globals to | |
1510 | this... | |
1511 | (struct displaced_step_inferior_state): ... new structure. | |
1512 | (displaced_step_inferior_states): New global. | |
1513 | (get_displaced_stepping_state, add_displaced_stepping_state) | |
1514 | (remove_displaced_stepping_state, infrun_inferior_exit): New | |
1515 | functions. | |
1516 | (displaced_step_clear): Add displaced_step_inferior_state | |
1517 | parameter, and adjust to handle it. | |
1518 | (displaced_step_clear_cleanup): Parameter is now a | |
1519 | displaced_step_inferior_state. Adjust. | |
1520 | (displaced_step_prepare): Adjust. | |
1521 | (displaced_step_fixup, displaced_step_fixup) | |
1522 | (infrun_thread_ptid_changed, resume): Adjust. | |
1523 | (init_wait_for_inferior): Don't call displaced_step_clear. | |
1524 | (infrun_thread_stop_requested): Rewrite. | |
1525 | (_initialize_infrun): Install infrun_inferior_exit as | |
1526 | inferior_exit observer. | |
1527 | ||
0723dbf5 PA |
1528 | 2010-02-24 Pedro Alves <[email protected]> |
1529 | ||
1530 | * inferior.h (ptid_match): Declare. | |
1531 | * infrun.c (ptid_match): New. | |
1532 | * remote.c (queued_stop_reply): Rewrite and use ptid_match. | |
1533 | (handle_notification): Add debug output. | |
1534 | * linux-nat.c (ptid_match): Delete. | |
1535 | ||
09de9781 DM |
1536 | 2010-02-24 David S. Miller <[email protected]> |
1537 | ||
1538 | * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it. | |
1539 | * syscalls/sparc-linux.xml: New. | |
1540 | * syscalls/sparc64-linux.xml: New. | |
1541 | * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files. | |
1542 | * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define. | |
1543 | (sparc32_linux_get_syscall_number): New function. | |
1544 | (sparc32_linux_init_abi): Set syscall XML file name and hook up | |
1545 | syscall number fetcher. | |
1546 | * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define. | |
1547 | (sparc64_linux_get_syscall_number): New function. | |
1548 | (sparc64_linux_init_abi): Set syscall XML file name and hook up | |
1549 | syscall number fetcher. | |
1550 | ||
a79b8f6e VP |
1551 | 2010-02-24 Vladimir Prus <[email protected]> |
1552 | ||
1553 | Multiexec MI | |
1554 | ||
1555 | * breakpoint.c (clear_syscall_counts): Take struct inferior*. | |
1556 | * inferior.c (add_inferior_silent): Notify inferior_added | |
1557 | observer. | |
1558 | (delete_inferior_1): Notify inferior_removed observer. | |
1559 | (exit_inferior_1): Pass inferior, not pid, to observer. | |
1560 | (inferior_appeared): Likewise. | |
1561 | (add_inferior_with_spaces): New. | |
1562 | (add_inferior_command): Use the above. | |
1563 | * inferior.h (delete_inferior_1, add_inferior_with_spaces): | |
1564 | Declare. | |
1565 | ||
1566 | * inflow.c (inflow_inferior_exit): Likewise. | |
1567 | * jit.c (jit_inferior_exit_hook): Likewise. | |
1568 | ||
1569 | * mi/mi-cmds.c (mi_cmds): Register add-inferior and | |
1570 | remove-inferior. | |
1571 | * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New. | |
1572 | * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New. | |
1573 | (report_initial_inferior): New. | |
1574 | (mi_inferior_removed): Register the above. Make sure | |
1575 | inferior_added observer is called on the first inferior. | |
1576 | (mi_new_thread, mi_thread_exit): Thread group is now identified by | |
1577 | inferior number, not pid. | |
1578 | (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are | |
1579 | affected. | |
1580 | * mi/mi-main.c (current_context): New. | |
1581 | (proceed_thread_callback): Use typed closure. | |
1582 | Proceed everything if pid is 0. Most implementation split into | |
1583 | (proceed_thread): ... this. | |
1584 | (run_one_inferior): New. | |
1585 | (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run): | |
1586 | Adjust for multiexec behaviour. | |
1587 | (mi_cmd_add_inferior, mi_cmd_remove_inferior): New. | |
1588 | (mi_cmd_execute): Handle the 'thread-group' option here. | |
1589 | Do some extra checks. | |
1590 | * mi-parse.c (mi_parse): Handle the --all and --thread-group | |
1591 | options. | |
1592 | * mi-parse.h (struct mi_parse): New fields all and thread_group. | |
1593 | ||
115d30f9 VP |
1594 | 2010-02-24 Vladimir Prus <[email protected]> |
1595 | ||
1596 | Make -exec-run a proper MI commands. | |
1597 | ||
1598 | * mi/mi-cmds.h (mi_cmd_exec_run): Declare. | |
1599 | * mi/mi-cmds.c (mi_cmds): Adjust. | |
1600 | * mi/mi-main.c (mi_cmd_exec_run): New. | |
1601 | ||
06cd862c PA |
1602 | 2010-02-24 Pedro Alves <[email protected]> |
1603 | Stan Shebs <[email protected]> | |
1604 | ||
1605 | * tracepoint.h (set_traceframe_number) | |
1606 | (cleanup_restore_current_traceframe): Declare. | |
1607 | * tracepoint.c (set_traceframe_number): New. | |
1608 | (struct current_traceframe_cleanup): New. | |
1609 | (do_restore_current_traceframe_cleanup) | |
1610 | (restore_current_traceframe_cleanup_dtor) | |
1611 | (make_cleanup_restore_current_traceframe): New. | |
1612 | * infrun.c: Include tracepoint.h. | |
1613 | (fetch_inferior_event): Switch out and in of tfind mode. | |
1614 | ||
ab92d69b PA |
1615 | 2010-02-24 Pedro Alves <[email protected]> |
1616 | ||
1617 | * breakpoint.c (breakpoint_init_inferior): Also delete | |
1618 | bp_shlib_event breakpoints. | |
1619 | * solib-frv.c (enable_break): Remove call to | |
1620 | remove_solib_event_breakpoints. | |
1621 | * solib-svr4.c (enable_break): Ditto. | |
1622 | * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto. | |
1623 | * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto. | |
1624 | * solib-som.c (som_solib_create_inferior_hook): Ditto. | |
1625 | * solib-spu.c (spu_enable_break): Ditto. | |
1626 | ||
e707a91d PA |
1627 | 2010-02-23 Harald Koenig <[email protected]> |
1628 | ||
1629 | * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE. | |
1630 | ||
cfce2ea2 PA |
1631 | 2010-02-23 Harald Koenig <[email protected]> |
1632 | ||
1633 | * varobj.c (varobj_update): Avoid non-constants in initializers. | |
1634 | ||
05566b3b TT |
1635 | 2010-02-23 Tom Tromey <[email protected]> |
1636 | ||
1637 | * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly | |
1638 | handle big-endian values. | |
1639 | (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise. | |
1640 | ||
85d721b8 PA |
1641 | 2010-02-22 Pedro Alves <[email protected]> |
1642 | ||
1643 | PR9605 | |
1644 | ||
1645 | gdb/ | |
1646 | * breakpoint.c (insert_bp_location): If inserting the read | |
1647 | watchpoint failed, fallback to an access watchpoint. | |
1648 | (bpstat_check_watchpoint): Stop for read watchpoint triggers even | |
1649 | if the value changed, if not watching the same memory for writes. | |
1650 | (watchpoint_locations_match): Add comment. | |
1651 | (update_global_location_list): Copy the location's watchpoint type. | |
1652 | * i386-nat.c (i386_length_and_rw_bits): It's an internal error to | |
1653 | handle read watchpoints here. | |
1654 | (i386_insert_watchpoint): Read watchpoints aren't supported. | |
1655 | * remote.c (remote_insert_watchpoint): Return 1 for unsupported | |
1656 | packets. | |
1657 | * target.h (target_insert_watchpoint): Update description. | |
1658 | ||
48ea67a7 TT |
1659 | 2010-02-19 Tom Tromey <[email protected]> |
1660 | ||
1661 | * p-typeprint.c (pascal_type_print_varspec_prefix): Update. | |
1662 | * m2-typeprint.c (m2_print_type): Update. | |
1663 | * gdbtypes.c (recursive_dump_type): Update. | |
1664 | (copy_type_recursive): Update. | |
1665 | * c-typeprint.c (c_type_print_varspec_prefix): Update. | |
1666 | (c_type_print_base): Update. | |
1667 | * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG): | |
1668 | Remove. | |
1669 | (struct cplus_struct_type) <ntemplate_args>: Remove. | |
1670 | <struct template_arg>: Remove. | |
1671 | <is_dynamic>: Move earlier. | |
1672 | (TYPE_TEMPLATE_ARGS): Remove. | |
1673 | (TYPE_NTEMPLATE_ARGS): Remove. | |
1674 | (TYPE_TEMPLATE_ARG): Remove. | |
1675 | ||
48e32051 TT |
1676 | 2010-02-19 Tom Tromey <[email protected]> |
1677 | ||
1678 | PR c++/8693, PR c++/9496: | |
1679 | * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION. | |
1680 | * c-exp.y (lex_one_token): Rename from yylex. Don't call | |
1681 | write_dollar_variable. Don't try to classify NAME tokens. | |
1682 | (token_and_value): New type. | |
1683 | (token_fifo, popping, name_obstack): New globals. | |
1684 | (classify_name): New function. | |
1685 | (classify_inner_name): Likewise. | |
1686 | (yylex): Likewise. | |
1687 | (VARIABLE): Now has type sval. | |
1688 | (exp : VARIABLE): Call write_dollar_variable. | |
1689 | (qualified_name): Use TYPENAME, not typebase. Add production for | |
1690 | multiple "::" instances. | |
1691 | (variable): Use name_not_typename. | |
1692 | (qualified_type): Remove. | |
1693 | (typebase): Update. | |
1694 | ||
672d9c23 JK |
1695 | 2010-02-19 Jan Kratochvil <[email protected]> |
1696 | ||
1697 | * symfile.c (addr_info_make_relative): Extend comment. Move SECT to | |
1698 | a more inner block. Initialize ADDR by LOWER_OFFSET only if it was | |
1699 | found by bfd_get_section_by_name. | |
1700 | * symfile.h (struct section_addr_info) <sectindex>: New comment. | |
1701 | ||
bfbf3774 JB |
1702 | 2010-02-19 Joel Brobecker <[email protected]> |
1703 | ||
1704 | * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since | |
1705 | 7.0 section" into "Changes in 7.1". | |
1706 | ||
6756b09b | 1707 | 2010-02-19 Joel Brobecker <[email protected]> |
1708 | ||
1709 | GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC) | |
1710 | * version.in: Bump version to 7.1.50.20100219-cvs. | |
1711 | ||
202b96c1 PA |
1712 | 2010-02-18 Harald Koenig <[email protected]> |
1713 | ||
1714 | * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'. | |
1715 | * symfile.c (symfile_map_offsets_to_segments): Fix assertion. | |
1716 | ||
de2e5182 TT |
1717 | 2010-02-17 Tom Tromey <[email protected]> |
1718 | ||
1719 | * NEWS: Add Python API Improvements section. | |
1720 | ||
7280022e DJ |
1721 | 2010-02-18 Daniel Jacobowitz <[email protected]> |
1722 | ||
1723 | * NEWS: Correct typo. | |
1724 | ||
6f451e5e TT |
1725 | 2010-02-17 Tom Tromey <[email protected]> |
1726 | ||
1727 | * objfiles.c (gdb_bfd_ref): Handle abfd==NULL. | |
1728 | ||
012836ea JK |
1729 | 2010-02-17 Jan Kratochvil <[email protected]> |
1730 | ||
1731 | * symfile.c (build_section_addr_info_from_objfile): Include sections | |
1732 | only if they are SEC_ALLOC or SEC_LOAD. | |
1733 | ||
d182d057 L |
1734 | 2010-02-17 H.J. Lu <[email protected]> |
1735 | ||
1736 | PR shlibs/11293 | |
1737 | * solib-svr4.c (enable_break): Check size of CORE_ADDR instead | |
1738 | of ULONGEST for address size. | |
1739 | ||
4eef138c TT |
1740 | 2010-02-17 Tom Tromey <[email protected]> |
1741 | ||
1742 | * NEWS: Add C++ improvements section. | |
1743 | ||
548a926a UW |
1744 | 2010-02-17 Ulrich Weigand <[email protected]> |
1745 | ||
1746 | * python/python-internal.h [!WITH_THREAD] (PyGILState_Release, | |
1747 | PyThreadState_Swap): Avoid "statement with no effect" warning. | |
1748 | ||
ad3a0e5b JK |
1749 | 2010-02-17 Jan Kratochvil <[email protected]> |
1750 | ||
1751 | * solib-svr4.c (enable_break <target_auxv_search>): New variable | |
1752 | addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors. | |
1753 | ||
243e2c5d TG |
1754 | 2010-02-17 Tristan Gingold <[email protected]> |
1755 | Petr Hluzín <[email protected]> | |
1756 | ||
1757 | * avr-tdep.c (avr_scan_prologue): Convert an if statement to a | |
1758 | gdb_assert. Fix info->size for SIG prologue. | |
1759 | ||
275f2e57 DJ |
1760 | 2010-02-16 Daniel Jacobowitz <[email protected]> |
1761 | ||
1762 | * infcmd.c (show_inferior_tty_command): Check for NULL. | |
1763 | Correct output message. | |
1764 | ||
791dfb64 DJ |
1765 | 2010-02-16 Daniel Jacobowitz <[email protected]> |
1766 | ||
1767 | * linespec.c (decode_line_1): Handle FILE:FUNCTION even if | |
1768 | FUNCTION contains parentheses. Improve removal of a trailing | |
1769 | single quote. | |
1770 | ||
14d1346b DJ |
1771 | 2010-02-16 Daniel Jacobowitz <[email protected]> |
1772 | ||
1773 | * gcore.c (do_bfd_delete_cleanup): New function. | |
1774 | (gcore_command): Use it. Discard the cleanup after success. | |
1775 | (gcore_copy_callback): Delete dead code. | |
1776 | ||
e76ab67f DJ |
1777 | 2010-02-16 Daniel Jacobowitz <[email protected]> |
1778 | ||
1779 | * symfile.c (addr_info_make_relative): Always use | |
1780 | find_lowest_section. | |
1781 | ||
71dee663 SW |
1782 | 2010-02-16 Sami Wagiaalla <[email protected]> |
1783 | ||
1784 | * NEWS: Added entry for namespace fixes. | |
1785 | ||
a9854bd5 TT |
1786 | 2010-02-15 Tom Tromey <[email protected]> |
1787 | ||
1788 | * dwarf2read.c (guess_structure_name): Allocate name on the | |
1789 | objfile obstack. | |
1790 | ||
fd9e29b5 TT |
1791 | 2010-02-15 Tom Tromey <[email protected]> |
1792 | ||
1793 | * c-typeprint.c (c_type_print_base): Reverse order of test. | |
1794 | ||
4e1fc9c9 JK |
1795 | 2010-02-15 Jan Kratochvil <[email protected]> |
1796 | ||
1797 | * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally | |
1798 | initialize it from ELF BFD. Extend the prelink condition by it. | |
1799 | ||
74164c56 JK |
1800 | 2010-02-15 Jan Kratochvil <[email protected]> |
1801 | ||
1802 | * defs.h (parse_pid_to_attach): New. | |
1803 | * utils.c (parse_pid_to_attach): New. | |
1804 | * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid. | |
1805 | * gnu-nat.c (gnu_attach): Likewise. | |
1806 | * nto-procfs.c (procfs_attach): Likewise. | |
1807 | * procfs.c (procfs_attach): Likewise. | |
1808 | * windows-nat.c (windows_attach): Likewise. | |
1809 | * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy. | |
1810 | * inf-ttrace.c (inf_ttrace_attach): Likewise. | |
1811 | * remote.c (extended_remote_attach_1): Likewise. New comment on getpid | |
1812 | check. | |
1813 | ||
bf6adea8 MM |
1814 | 2010-02-14 Masaki Muranaka <[email protected]> |
1815 | ||
1816 | * MAINTAINERS: Add myself for write after approval privileges. | |
1817 | ||
28f34a8f JK |
1818 | 2010-02-13 Jan Kratochvil <[email protected]> |
1819 | ||
1820 | * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner | |
1821 | block. | |
1822 | ||
701ed6dc JK |
1823 | 2010-02-13 Jan Kratochvil <[email protected]> |
1824 | ||
1825 | * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment | |
1826 | only if INFO_VERBOSE. | |
1827 | ||
e5829bee MS |
1828 | 2010-02-12 Tomas Holmberg <[email protected]> |
1829 | ||
1830 | * mi/mi-main.c: Added the --reverse flag to the following MI | |
1831 | commands: exec-continue, exec-finish, exec-next, exec-step, | |
1832 | exec-next-instruction, exec-step-instruction. This is to | |
1833 | support reverse execution over the MI interface to gdb. | |
1834 | ||
081dfbf7 PA |
1835 | 2010-02-12 Pedro Alves <[email protected]> |
1836 | ||
1837 | * tracepoint.c (_initialize_tracepoint): Specify that the address | |
1838 | range of `tfind outsize' is exclusive, and that the address range | |
1839 | of `tfind range' is inclusive, in the commands' help strings. | |
1840 | ||
ecc13e53 JB |
1841 | 2010-02-12 Joel Brobecker <[email protected]> |
1842 | ||
1843 | Spurious "dll not found" error messages on x64-windows. | |
1844 | * windows-nat.c: Add include of complaints.h. | |
1845 | (handle_unload_dll): Change dll-not-found error into a complaint. | |
1846 | ||
15c3d785 PA |
1847 | 2010-02-12 Pedro Alves <[email protected]> |
1848 | ||
1849 | * breakpoint.c (allocate_bp_location): Use bp_loc_other for | |
1850 | bp_tracepoint and bp_fast_tracepoint, not | |
1851 | bp_loc_software_breakpoint. | |
1852 | (update_global_location_list): Tracepoints are never duplicates of | |
1853 | anything. | |
1854 | ||
fd9b8c24 PA |
1855 | 2010-02-12 Pedro Alves <[email protected]> |
1856 | ||
1857 | * breakpoint.c (break_command_really): Change return type to int. | |
1858 | Return false if no breakpoint was created, true otherwise. | |
1859 | (trace_command): Don't set the tracepoint count if no tracepoint | |
1860 | was created. | |
1861 | (ftrace_command): Ditto. | |
1862 | (create_tracepoint_from_upload): Bail out if the tracepoint wasn't | |
1863 | created in the breakpoints table. | |
1864 | ||
5c0d192f JK |
1865 | 2010-02-11 Jan Kratochvil <[email protected]> |
1866 | Ulrich Weigand <[email protected]> | |
1867 | ||
1868 | * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition. | |
1869 | ||
5d5b640e PA |
1870 | 2010-02-11 Pedro Alves <[email protected]> |
1871 | ||
1872 | * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if | |
1873 | the offset value isn't of integral type. | |
1874 | ||
e5a0a904 JK |
1875 | 2010-02-11 Jan Kratochvil <[email protected]> |
1876 | ||
1877 | * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>: | |
1878 | New. | |
1879 | ||
be636754 PA |
1880 | 2010-02-11 Pedro Alves <[email protected]> |
1881 | ||
1882 | * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on | |
1883 | non-subscriptable types. | |
1884 | * valarith.c (binop_types_user_defined_p): New, abstracted out | |
1885 | from ... | |
1886 | (binop_user_defined_p): ... this. | |
1887 | * value.h (binop_types_user_defined_p): Declare. | |
1888 | ||
10ef8d6a PA |
1889 | 2010-02-11 Pedro Alves <[email protected]> |
1890 | ||
1891 | * tracepoint.c (tfile_open): Remove spurious discard_cleanups. | |
1892 | Merge uploaded TSVs before merging uploaded tracepoints. | |
1893 | ||
b1028c8e PA |
1894 | 2010-02-11 Pedro Alves <[email protected]> |
1895 | ||
1896 | * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers. | |
1897 | ||
7a93fb82 | 1898 | 2010-02-11 Vladimir Prus <[email protected]> |
84d90c10 | 1899 | |
7a93fb82 VP |
1900 | * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra |
1901 | whitespace character after a dot in comment. | |
1902 | (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables): | |
1903 | Likewise. | |
1904 | (list_args_or_locals): For the 'all' (that is | |
1905 | -stack-list-variables) case, always output list of tuples. | |
1906 | Output 'arg' field if variable is argument. | |
84d90c10 | 1907 | |
92981e24 TT |
1908 | 2010-02-10 Tom Tromey <[email protected]> |
1909 | ||
1910 | * parser-defs.h (parser_debug): Declare. | |
1911 | * parse.c (_initialize_parse): Install "debug parser" set/show | |
1912 | command. | |
1913 | (parser_debug): New global. | |
1914 | (show_parserdebug): New function. | |
1915 | * c-exp.y (c_parse): Set yydebug. | |
1916 | ||
9fd3625f L |
1917 | 2010-02-10 H.J. Lu <[email protected]> |
1918 | ||
1919 | * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT, | |
1920 | TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR. | |
1921 | (tdesc_predefined_types): Add i387_ext, i386_eflags and | |
1922 | i386_mxcsr. | |
1923 | (tdesc_find_type): New. | |
1924 | (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT, | |
1925 | TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR. | |
1926 | ||
1927 | * target-descriptions.h (tdesc_find_type): New. | |
1928 | ||
2fe842e5 MS |
1929 | 2010-02-10 Michael Snyder <[email protected]> |
1930 | ||
1931 | * gdb-gdb.py: Comment fix. | |
1932 | ||
f18b4cab TG |
1933 | 2010-02-09 Tristan Gingold <[email protected]> |
1934 | ||
1935 | * machoread.c (macho_symfile_relocate): New function. | |
1936 | (macho_sym_fns): Use macho_symfile_relocate instead of | |
1937 | default_symfile_relocate. | |
1938 | (macho_oso_data): New type. | |
1939 | (current_oso): New variable. | |
1940 | (macho_add_oso_symfile): Do not compute section_addr_info, but | |
1941 | instead set vma of sections. | |
1942 | Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd. | |
1943 | Set and clear current_oso. | |
1944 | ||
31dbc1c5 JB |
1945 | 2010-02-09 Joel Brobecker <[email protected]> |
1946 | ||
1947 | Wrong type description for tagged type parameter. | |
1948 | * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is | |
1949 | EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a | |
1950 | reference to a tagged type. | |
1951 | ||
399f313b TG |
1952 | 2010-02-09 Tristan Gingold <[email protected]> |
1953 | ||
1954 | * objfiles.c (objfile_separate_debug_iterate): Do not iterate on | |
1955 | brothers of the parent. | |
1956 | ||
714f19d5 TT |
1957 | 2010-02-08 Tom Tromey <[email protected]> |
1958 | ||
1959 | PR c++/8017: | |
1960 | * value.h: Update. | |
1961 | * valops.c (search_struct_field): Make 'name' const. | |
1962 | (search_struct_method): Likewise. | |
1963 | (find_method_list): Make 'method' const. | |
1964 | (value_struct_elt): Make 'name' and 'err' const. | |
1965 | (value_find_oload_method_list): Make 'method' const. | |
1966 | (find_overload_match): Make 'name' const. | |
1967 | * eval.c (evaluate_subexp_standard): New locals function, | |
1968 | function_name. | |
1969 | <OP_FUNCALL>: Handle OP_SCOPE specially. | |
1970 | ||
de0a0249 UW |
1971 | 2010-02-08 Ulrich Weigand <[email protected]> |
1972 | ||
1973 | * infrun.c (handle_inferior_event): Do not look up regcache | |
1974 | for exited processes. | |
1975 | ||
83b10087 CM |
1976 | Mon Feb 8 13:17:10 2010 Chris Moller <[email protected]> |
1977 | ||
1978 | PR gdb/10728 | |
1979 | * valarith.c (value_ptrdiff): Added a test for a zero type length, | |
1980 | warn if found, and assume length = 1. | |
1981 | ||
99903ae3 CM |
1982 | 2010-02-08 Chris Moller <[email protected]> |
1983 | ||
1984 | PR gdb/9067 | |
1985 | * cp-valprint.c (cp_print_value_fields) Fix use of obstacks. | |
1986 | cp_print_static_field) Fix use of obstacks. | |
1987 | ||
e3e9f5a2 PA |
1988 | 2010-02-08 Pedro Alves <[email protected]> |
1989 | ||
1990 | * linux-nat.c (linux_nat_resume): In non-stop, also only tag | |
1991 | resumed LWPs as resumed. | |
1992 | (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs | |
1993 | we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead | |
1994 | of throwing an internal error. If an LWP of a process we're not | |
1995 | waiting for reports a signal, don't force collecting a SIGSTOP, | |
1996 | and if it was breakpoint hit in non-stop mode, cancel it. Don't | |
1997 | go through all LWPs cancelling breakpoints in non-stop mode. | |
1998 | (resume_stopped_resumed_lwps): New. | |
1999 | (linux_nat_wait): Use it. | |
2000 | ||
46763423 L |
2001 | 2010-02-07 H.J. Lu <[email protected]> |
2002 | ||
2003 | * features/Makefile (WHICH): Add i386/i386, i386/i386-linux, | |
2004 | i386/amd64 and i386/amd64-linux. | |
2005 | (i386/i386-expedite): New. | |
2006 | (i386/i386-linux-expedite): Likewise. | |
2007 | (i386/amd64-expedite):Likewise. | |
2008 | (i386/amd64-linux-expedite): Likewise. | |
2009 | ($(outdir)/i386/i386-linux.dat): Likewise. | |
2010 | ($(outdir)/i386/amd64.dat): Likewise. | |
2011 | ($(outdir)/i386/amd64-linux.dat): Likewise. | |
2012 | ||
2013 | * features/i386/32bit-core.xml: New. | |
2014 | * features/i386/32bit-linux.xml: Likewise. | |
2015 | * features/i386/32bit-sse.xml: Likewise. | |
2016 | * features/i386/64bit-core.xml: Likewise. | |
2017 | * features/i386/64bit-linux.xml: Likewise. | |
2018 | * features/i386/64bit-sse.xml: Likewise. | |
2019 | * features/i386/i386-linux.xml: Likewise. | |
2020 | * features/i386/i386.xml: Likewise. | |
2021 | * features/i386/amd64-linux.xml: Likewise. | |
2022 | * features/i386/amd64.xml: Likewise. | |
2023 | * features/i386/i386-linux.c: Likewise. | |
2024 | * features/i386/i386.c: Likewise. | |
2025 | * features/i386/amd64-linux.c: Likewise. | |
2026 | * features/i386/amd64.c: Likewise. | |
2027 | ||
82856980 SW |
2028 | 2010-02-05 Sami Wagiaalla <[email protected]> |
2029 | ||
2030 | PR c++/7935: | |
2031 | * cp-support.h: Added char* alias element to using_direct data | |
2032 | struct. | |
2033 | (cp_add_using): Added char* alias argument. | |
2034 | (cp_add_using_directive): Ditto. | |
2035 | * cp-namespace.c: Updated with the above changes. | |
2036 | (cp_lookup_symbol_imports): Check for aliases. | |
2037 | * dwarf2read.c (read_import_statement): Figure out local alias | |
2038 | for the import and pass it on to cp_add_using. | |
2039 | (read_namespace): Pass alias argument to cp_add_using. | |
2040 | ||
d18b8b7a HZ |
2041 | 2010-02-05 Hui Zhu <[email protected]> |
2042 | ||
2043 | * defs.h (gdb_bfd_errmsg): New extern. | |
2044 | * exec.c (exec_file_attach): Change bfd_errmsg to | |
2045 | gdb_bfd_errmsg. | |
2046 | * utils.c (AMBIGUOUS_MESS1): New macro. | |
2047 | (AMBIGUOUS_MESS2): New macro. | |
2048 | (gdb_bfd_errmsg): New function. | |
2049 | ||
48379de6 DE |
2050 | 2010-02-04 Doug Evans <[email protected]> |
2051 | ||
2052 | * solib-svr4.c (enable_break): Add comment. | |
2053 | ||
4ee73e90 AG |
2054 | 2010-02-04 Anthony Green <[email protected]> |
2055 | ||
2056 | * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis | |
2057 | gracefully. | |
2058 | ||
1a334831 TT |
2059 | 2010-02-04 Tom Tromey <[email protected]> |
2060 | ||
2061 | * valops.c (search_struct_field): Account for | |
2062 | value_embedded_offset. Fix check for virtual base past the end of | |
2063 | the object. Use value_copy when making a slice of the value. | |
2064 | ||
1180b2c8 L |
2065 | 2010-02-04 H.J. Lu <[email protected]> |
2066 | ||
2067 | PR tui/9622 | |
2068 | * tui/tui-interp.c (tui_init): Call tui_initialize_readline | |
2069 | only if gdb_stdout is a tty. | |
2070 | ||
c3f08eb7 L |
2071 | 2010-02-04 H.J. Lu <[email protected]> |
2072 | ||
2073 | * target-descriptions.c: Include "osabi.h". | |
2074 | (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid | |
2075 | OSABI. | |
2076 | ||
2d33f7b8 TG |
2077 | 2010-02-04 Tristan Gingold <[email protected]> |
2078 | ||
2079 | * machoread.c (macho_add_oso): Renamed to macho_register_oso. | |
2080 | (macho_symtab_read): Adjust calls to macho_add_oso. | |
2081 | (macho_oso_symfile): Renamed to macho_symfile_read_all_oso. | |
2082 | (macho_symfile_read): Adjust call to macho_oso_symfile. | |
2083 | (macho_new_init): Move this function after declarations. | |
2084 | (macho_symfile_init): Ditto. | |
2085 | * darwin-nat-info.c (darwin_lib_gdb_ports): Remove. | |
2086 | * darwin-nat.c (darwin_lookup_task): Remove unused prototype. | |
2087 | ||
11334b82 VP |
2088 | 2010-02-04 Vladimir Prus <[email protected]> |
2089 | ||
2090 | Include MI command in remotelog. | |
2091 | ||
2092 | * mi/mi-main.c (mi_execute_command): Call target_log_command. | |
2093 | ||
ff97be06 L |
2094 | 2010-02-03 H.J. Lu <[email protected]> |
2095 | ||
2096 | * remote.c (remote_state): Remove gdbarch. | |
2097 | (init_remote_state): Don't set gdbarch. | |
2098 | (remote_query_supported): Pass target_gdbarch instead of | |
2099 | rs->gdbarch to gdbarch_qsupported. | |
2100 | ||
75cebea9 L |
2101 | 2010-02-03 H.J. Lu <[email protected]> |
2102 | ||
2103 | * gdbarch.sh: Add qsupported. | |
2104 | ||
2105 | * gdbarch.c: Regenerated. | |
2106 | * gdbarch.h: Likewise. | |
2107 | ||
2108 | * remote.c (remote_state): Add gdbarch. | |
2109 | (init_remote_state): Set gdbarch. | |
2110 | (remote_query_supported): Support gdbarch_qsupported. | |
2111 | ||
c1dec97b DJ |
2112 | 2010-02-03 Daniel Jacobowitz <[email protected]> |
2113 | ||
2114 | * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for | |
2115 | __FreeBSD_kernel_version. | |
2116 | ||
ac8035ab TG |
2117 | 2010-02-03 Tristan Gingold <[email protected]> |
2118 | ||
2119 | * symfile.h (struct sym_fns): Add sym_relocate field. | |
2120 | (default_symfile_relocate): New prototype. | |
2121 | (symfile_relocate_debug_section): First argument is now an objfile. | |
2122 | * symfile.c (default_symfile_relocate): Rename from | |
2123 | symfile_relocate_debug_section, first argument is now an objfile. | |
2124 | (symfile_relocate_debug_section): New function. | |
2125 | * coffread.c (coff_sym_fns): Set sym_relocate field. | |
2126 | * somread.c (som_sym_fns): Ditto. | |
2127 | * mipsread.c (ecoff_sym_fns): Ditto. | |
2128 | * machoread.c (macho_sym_fns): Ditto. | |
2129 | * elfread.c (elf_sym_fns): Ditto. | |
2130 | * dwarf2read.c (dwarf2_read_section): Ditto. | |
2131 | * xcoffread.c (xcoff_sym_fns): Ditto. | |
2132 | * dbxread.c (aout_sym_fns): Ditto. | |
2133 | (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section. | |
2134 | (elfstab_build_psymtabs): Ditto. | |
2135 | ||
be52b756 L |
2136 | 2010-02-03 H.J. Lu <[email protected]> |
2137 | ||
2138 | * defs.h (MAX_REGISTER_SIZE): Increase to 32. | |
2139 | ||
9c3c02fd TT |
2140 | 2010-02-02 Tom Tromey <[email protected]> |
2141 | ||
2142 | * valops.c (value_cast_structs): Try downcasting using the RTTI | |
2143 | type. | |
2144 | ||
f23f4c59 TT |
2145 | 2010-02-02 Tom Tromey <[email protected]> |
2146 | ||
2147 | * gnu-v2-abi.c: Don't include gnu-v2-abi.h. | |
2148 | (gnuv2_baseclass_offset): Now static. | |
2149 | * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h. | |
2150 | * gnu-v2-abi.h: Remove. | |
2151 | ||
0cc2414c TT |
2152 | 2010-02-02 Tom Tromey <[email protected]> |
2153 | ||
2154 | * m2-typeprint.c (m2_record_fields): Don't use | |
2155 | TYPE_DECLARED_TYPE. | |
2156 | * gdbtypes.h (TYPE_DECLARED_CLASS): New macro. | |
2157 | (struct main_type) <flag_declared_class>: New field. | |
2158 | (struct cplus_struct_type) <declared_type>: Remove. | |
2159 | <ntemplate_args>: Move earlier. | |
2160 | (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT) | |
2161 | (DECLARED_TYPE_TEMPLATE): Remove. | |
2162 | (TYPE_DECLARED_TYPE): Remove. | |
2163 | * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE. | |
2164 | * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS. | |
2165 | * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not | |
2166 | TYPE_DECLARED_TYPE. | |
2167 | ||
edf3d5f3 TT |
2168 | 2010-02-02 Tom Tromey <[email protected]> |
2169 | ||
2170 | PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890: | |
2171 | * valops.c (search_struct_field): Compute nbases after calling | |
2172 | CHECK_TYPEDEF. | |
2173 | (check_field): Call CHECK_TYPEDEF. | |
2174 | * cp-valprint.c (cp_print_value): Pass correct address to | |
2175 | baseclass_offset. Fix check for virtual base past the end of the | |
2176 | object. Don't offset address passed to cp_print_value_fields or | |
2177 | apply_val_pretty_printer. | |
2178 | (cp_print_value_fields): Fix call to val_print. | |
2179 | (cp_print_value_fields_rtti): New function. | |
2180 | * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti. | |
2181 | * p-valprint.c (pascal_object_print_value_fields): Fix call to | |
2182 | val_print. | |
2183 | * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded | |
2184 | offset to address. | |
2185 | * language.h (struct language_defn) <la_val_print>: Document. | |
2186 | * c-lang.h (cp_print_value_fields_rtti): Declare. | |
2187 | ||
e4b7f41c JK |
2188 | 2010-02-01 Jan Kratochvil <[email protected]> |
2189 | ||
2190 | PR libc/11214: | |
2191 | * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New. | |
2192 | (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU]. | |
2193 | (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New. | |
2194 | ||
7618e12b DJ |
2195 | 2010-02-01 Michael Matz <[email protected]> |
2196 | Daniel Jacobowitz <[email protected]> | |
2197 | ||
e4b7f41c | 2198 | * i386-tdep.c (i386_frame_cache): Assume valid anonymous |
7618e12b DJ |
2199 | functions use a frame pointer. |
2200 | ||
b381ea14 JK |
2201 | 2010-02-01 Jan Kratochvil <[email protected]> |
2202 | ||
2203 | * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert | |
2204 | by a conditional setting DYN_ADDR. Use DYN_ADDR. | |
2205 | * config/djgpp/fnchange.lst: Add translations for | |
2206 | symbol-without-target_section.exp and symbol-without-target_section.c. | |
2207 | ||
0e05dfcb DJ |
2208 | 2010-02-01 Daniel Jacobowitz <[email protected]> |
2209 | ||
2210 | * gdbarch.sh: Set LANG and LC_ALL to C, not c. | |
2211 | (remote_breakpoint_for_pc): Correct invalid_p check. | |
2212 | * gdbarch.c: Regenerated. | |
2213 | ||
f9d67f43 DJ |
2214 | 2010-02-01 Daniel Jacobowitz <[email protected]> |
2215 | ||
2216 | * arm-tdep.c (arm_find_mapping_symbol): New function, from | |
2217 | arm_pc_is_thumb. | |
2218 | (arm_pc_is_thumb): Use arm_find_mapping_symbol. | |
2219 | (extend_buffer_earlier): New function. | |
2220 | (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants. | |
2221 | (arm_adjust_breakpoint_address): New function. | |
2222 | (arm_gdbarch_init): Register arm_adjust_breakpoint_address. | |
2223 | ||
177321bd DJ |
2224 | 2010-02-01 Daniel Jacobowitz <[email protected]> |
2225 | ||
2226 | * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint) | |
2227 | (arm_linux_thumb2_le_breakpoint): New constants. | |
2228 | (arm_linux_init_abi): Set thumb2_breakpoint and | |
2229 | thumb2_breakpoint_size. | |
2230 | * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions. | |
2231 | (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE. | |
2232 | Implement support for single stepping through IT blocks if | |
2233 | a 32-bit Thumb breakpoint instruction is available. | |
2234 | (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction | |
2235 | is available, use it when needed. | |
2236 | (arm_remote_breakpoint_from_pc): New function. | |
2237 | (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc. | |
2238 | * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint | |
2239 | comment. Add thumb2_breakpoint and thumb2_breakpoint_size. | |
2240 | ||
a1dcb23a DJ |
2241 | 2010-02-01 Daniel Jacobowitz <[email protected]> |
2242 | ||
2243 | * arch-utils.c (default_remote_breakpoint_from_pc): New function. | |
2244 | * arch-utils.h (default_remote_breakpoint_from_pc): Declare. | |
2245 | * gdbarch.c, gdbarch.h: Regenerated. | |
2246 | * gdbarch.sh (remote_breakpoint_from_pc): New architecture method. | |
2247 | * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use | |
2248 | gdbarch_remote_breakpoint_from_pc. | |
2249 | ||
2b009048 DJ |
2250 | 2010-01-29 Daniel Jacobowitz <[email protected]> |
2251 | ||
2252 | * infrun.c (prepare_to_proceed): Handle other signals which might | |
2253 | match a breakpoint. | |
2254 | (handle_inferior_event): Move the check for unusual breakpoint | |
2255 | signals earlier. | |
2256 | ||
e4e2711a JB |
2257 | 2010-01-29 Paul Hilfinger <[email protected]> |
2258 | ||
2259 | amd64 - function returning record with field straddling 2 registers. | |
2260 | * amd64-tdep.c (amd_classify_aggregate): Handle the case of | |
2261 | a record of length <= 16 in which a field straddles the two | |
2262 | eightbytes. | |
2263 | ||
cba6fab5 JB |
2264 | 2010-01-29 Joel Brobecker <[email protected]> |
2265 | ||
2266 | Implement return values on amd64-windows. | |
2267 | * amd64-windows-tdep.c: #include gdbcore.h and regcache.h. | |
2268 | (amd64_windows_return_value): New function. | |
2269 | (amd64_windows_init_abi): Call set_gdbarch_return_value with | |
2270 | amd64_windows_return_value. | |
2271 | ||
3af6ddfe JB |
2272 | 2010-01-29 Joel Brobecker <[email protected]> |
2273 | ||
2274 | amd64-windows: 32 bytes allocated on stack by caller for integer | |
cba6fab5 | 2275 | parameter registers. |
3af6ddfe JB |
2276 | * i386-tdep.h (struct gdbarch_tdep): Add new field |
2277 | integer_param_regs_saved_in_caller_frame. | |
2278 | * amd64-windows-tdep.c (amd64_windows_init_abi): Set | |
2279 | tdep->integer_param_regs_saved_in_caller_frame to 1. | |
2280 | * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on | |
2281 | stack if tdep->integer_param_regs_saved_in_caller_frame is set. | |
2282 | ||
80d19a06 JB |
2283 | 2010-01-29 Joel Brobecker <[email protected]> |
2284 | ||
2285 | amd64-windows: memory args passed by pointer during function calls. | |
2286 | * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer. | |
2287 | * amd64-tdep.c (amd64_push_arguments): Add handling of architectures | |
2288 | where tdep->memory_args_by_pointer is non-zero. | |
2289 | * amd64-windows-tdep.c (amd64_windows_init_abi): Set | |
2290 | tdep->memory_args_by_pointer to 1. | |
2291 | ||
ba581dc1 JB |
2292 | 2010-01-29 Joel Brobecker <[email protected]> |
2293 | ||
4966b6c2 | 2294 | amd64-windows: Integer parameters in function calls. |
ba581dc1 JB |
2295 | * i386-tdep.h (enum amd64_reg_class): New, moved here from |
2296 | amd64-tdep.c. | |
2297 | (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs, | |
2298 | call_dummy_integer_regs, and classify. | |
2299 | * amd64-tdep.h (amd64_classify): Add declaration. | |
2300 | * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant. | |
2301 | (amd64_reg_class): Delete, moved to i386-tdep.h. | |
2302 | (amd64_classify): Make non-static. Move declaration to amd64-tdep.h. | |
2303 | Replace call to amd64_classify by call to tdep->classify. | |
2304 | (amd64_push_arguments): Get the list of registers to use for | |
2305 | passing integer parameters from the gdbarch tdep structure, | |
2306 | rather than using a hardcoded one. Replace calls to amd64_classify | |
2307 | by calls to tdep->classify. | |
2308 | (amd64_push_dummy_call): Get the register number used for | |
2309 | the "hidden" argument from tdep->call_dummy_integer_regs. | |
2310 | (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs | |
2311 | and tdep->call_dummy_integer_regs. Set tdep->classify. | |
2312 | * amd64-windows-tdep.c: Add include of gdbtypes.h. | |
2313 | (amd64_windows_dummy_call_integer_regs): New static global. | |
2314 | (amd64_windows_classify): New function. | |
2315 | (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs | |
2316 | tdep->call_dummy_integer_regs and tdep->classify. | |
2317 | ||
d37346f0 DJ |
2318 | 2010-01-28 Daniel Jacobowitz <[email protected]> |
2319 | ||
2320 | * regcache.c (regcache_xmalloc): Add aspace argument. Use it | |
2321 | for the new regcache. All callers updated. | |
2322 | (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here. | |
2323 | (get_thread_arch_regcache): Do not set aspace here. | |
2324 | * regcache.h (regcache_xmalloc): Update declaration. | |
2325 | ||
2326 | * frame.c, infcall.c, ppc-linux-tdep.c: Calls to | |
2327 | regcache_xmalloc updated. | |
2328 | ||
7434dadd JB |
2329 | 2010-01-28 Joel Brobecker <[email protected]> |
2330 | ||
2331 | Another -Wunused-function error in procfs.c (sparc-solaris) | |
2332 | * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up. | |
2333 | Only define if SYS_syssgi is defined. | |
2334 | (remove_dbx_link_breakpoint): Delete declaration. Move up. | |
2335 | (dbx_link_addr, insert_dbx_link_bpt_in_file) | |
2336 | (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi | |
2337 | is itself defined. | |
2338 | ||
16d905e2 CF |
2339 | 2010-01-27 Christopher Faylor <[email protected]> |
2340 | ||
2341 | * windows-nat.c (windows_initialization_done): New variable. | |
2342 | (get_windows_debug_event): Issue error when process dies before | |
2343 | completely initializing. | |
2344 | (do_initial_windows_stuff): Set flag to indicate when we are done with | |
2345 | the initial steps of attaching to the child. | |
2346 | ||
cd55e50f JK |
2347 | 2010-01-27 Jan Kratochvil <[email protected]> |
2348 | ||
2349 | * symtab.h (struct symbol <symtab>): New comment on NULL values. | |
2350 | ||
99cc78aa DE |
2351 | 2010-01-27 Doug Evans <[email protected]> |
2352 | ||
4c7dcb84 DE |
2353 | * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity. |
2354 | ||
99cc78aa DE |
2355 | * breakpoint.c (bpstat_stop_status): Delete useless code. |
2356 | ||
52334bf5 JK |
2357 | 2010-01-27 Jan Kratochvil <[email protected]> |
2358 | ||
2359 | * printcmd.c (display_uses_solib_p): Remove variable section. Access | |
2360 | objfile via SYMBOL_SYMTAB. | |
2361 | ||
708ead4e TT |
2362 | 2010-01-26 Tom Tromey <[email protected]> |
2363 | ||
2364 | PR exp/7643: | |
2365 | * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call | |
2366 | coerce_array on result. | |
2367 | ||
b14e635e SW |
2368 | 2010-01-26 Sami Wagiaalla <[email protected]> |
2369 | ||
2370 | * cp-namespace.c (cp_lookup_symbol_namespace): Added | |
2371 | search_parent argument. | |
2372 | (cp_add_using): Initialize 'searched' field. | |
2373 | (reset_directive_searched): New function. | |
2374 | * cp-support.h: Add 'searched' field to using_direct struct. | |
2375 | (cp_lookup_symbol_imports): Ditto. | |
2376 | * cp-namespace.c (cp_lookup_symbol_imports): Ditto. | |
2377 | Perform recursive search. | |
2378 | Implement non parent search. | |
2379 | * valops.c (value_maybe_namespace_elt): Updated. | |
2380 | ||
8540c487 SW |
2381 | 2010-01-26 Sami Wagiaalla <[email protected]> |
2382 | ||
2383 | PR gdb/10929: | |
2384 | * dwarf2read.c (read_lexical_block_scope): Create blocks for | |
2385 | scopes which contain using directives even if they contain no | |
2386 | declarations. | |
2387 | * symtab.c (lookup_symbol_aux): Pass lowest level block to | |
2388 | la_lookup_symbol_nonlocal. | |
2389 | * cp-namespace.c (cp_lookup_symbol_nonlocal): call | |
2390 | cp_lookup_symbol_namespace. | |
2391 | (cp_lookup_symbol_namespace): Perform an import lookup at every | |
2392 | block level. | |
2393 | (cp_lookup_symbol_imports): New function. | |
2394 | (cp_lookup_symbol_in_namespace): New function. | |
2395 | ||
421d5d99 TT |
2396 | 2010-01-25 Tom Tromey <[email protected]> |
2397 | ||
2398 | PR gdb/11049: | |
2399 | * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer | |
2400 | result. | |
2401 | ||
6bcc772d RO |
2402 | 2010-01-25 Rainer Orth <[email protected]> |
2403 | ||
2404 | * configure.ac: Only use host_os part when disabling TUI on osf. | |
2405 | Use test to check variables, prefix strings with x. | |
2406 | * configure: Regenerate. | |
2407 | ||
2408 | * solib-osf.c (osf_current_sos): Initialize tail. | |
2409 | ||
1c1238a5 TG |
2410 | 2010-01-25 gingold <[email protected]> |
2411 | ||
2412 | * windows-nat.c (windows_continue): Use %x to print thread id. | |
2413 | (get_windows_debug_event): Ditto. | |
2414 | ||
0b92b5bb TT |
2415 | 2010-01-22 Tom Tromey <[email protected]> |
2416 | ||
2417 | PR symtab/11199: | |
2418 | * dwarf2read.c (quirk_gcc_member_function_pointer): Change return | |
2419 | type and arguments. Use smash_to_methodptr_type. | |
2420 | (read_structure_type): Call quirk_gcc_member_function_pointer | |
2421 | later. | |
2422 | * gdbtypes.h (smash_to_methodptr_type): Declare. | |
2423 | * gdbtypes.c (smash_to_methodptr_type): New function. | |
2424 | (lookup_methodptr_type): Use it. | |
2425 | ||
0d5392b8 TT |
2426 | 2010-01-21 Tom Tromey <[email protected]> |
2427 | ||
2428 | PR symtab/11198: | |
2429 | * symtab.h (lookup_minimal_symbol_and_objfile): Declare. | |
2430 | * minsyms.c (lookup_minimal_symbol_and_objfile): New function. | |
2431 | * glibc-tdep.c (find_minsym_and_objfile): Remove. | |
2432 | (glibc_skip_solib_resolver): Use | |
2433 | lookup_minimal_symbol_and_objfile. | |
2434 | ||
e6d088ec KT |
2435 | 2010-01-21 Kai Tietz <[email protected]> |
2436 | ||
2437 | * inflow.c (check_syscall): Guard by #if clause for GO32 and | |
2438 | WIN32 targets. | |
2439 | ||
b966cb8a TT |
2440 | 2010-01-20 Tom Tromey <[email protected]> |
2441 | ||
2442 | PR backtrace/10770: | |
2443 | * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and | |
2444 | BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case. | |
2445 | * dwarf2expr.c (new_dwarf_expr_context): Allocate | |
2446 | dwarf_stack_values, not CORE_ADDRs. | |
2447 | (execute_stack_op): Change DW_OP_div and comparison operators to | |
2448 | use signed operands. | |
2449 | ||
3f81c18a VP |
2450 | 2010-01-20 Vladimir Prus <[email protected]> |
2451 | ||
2452 | Per-inferior args and tty and environment. | |
2453 | ||
2454 | * infcmd.c (inferior_args): Rename to ... | |
2455 | (inferior_args_scratch): ... this. | |
2456 | (inferior_io_terminal): Rename to ... | |
2457 | (inferior_io_terminal_scratch): ... this. | |
2458 | (inferior_argc, inferior_argv): Remove. | |
2459 | (set_inferior_io_terminal, get_inferior_io_terminal): Store | |
2460 | inside current_inferior(). | |
2461 | (set_inferior_tty_command, show_inferior_tty_command): New. | |
2462 | (get_inferior_args, set_inferior_args): Store inside | |
2463 | current_inferior(). | |
2464 | (notice_args_set): Likewise and rename to... | |
2465 | (set_args_command): ... this. | |
2466 | (set_inferior_args_vector): Likewise. | |
2467 | (notice_args_read): Rename to... | |
2468 | (show_args_command): ...new. | |
2469 | (tty_command): Remove. | |
2470 | (run_command_1): Don't free old args, as they are freed by | |
2471 | set_inferior_arg now. | |
2472 | (run_no_args_command): Likewise. | |
2473 | (inferior_environ): Remove. | |
2474 | (run_command_1): Use environment of the current inferior. | |
2475 | (environment_info, set_environment_command) | |
2476 | (unset_environment_command, path_info, path_command): Likewise. | |
2477 | (_initialize_infcmd): Adjust for function and variable renames. | |
2478 | Do not init inferior_environ. | |
2479 | * inferior.h (set_inferior_arg): Adjust prototype. | |
2480 | (struct inferior): New fields args, argc, argv, terminal, environment. | |
2481 | (inferior_environ): Remove declaration. | |
2482 | * inferior.c (free_inferior): Free new fields. | |
2483 | (add_inferior_silent): Initialize 'environment' field. | |
2484 | * main.c (captured_main): Set arguments only after the initial | |
2485 | inferior has been created. Set set_inferior_io_terminal, | |
2486 | not tty_command. | |
2487 | * mi/mi-main.c (mi_cmd_env_path): Use environment of the current | |
2488 | inferior. | |
2489 | (_initialize_mi_cmd_env): Adjust for disappearance of global | |
2490 | inferior_environ. | |
2491 | * solib.c (solib_find): Use environment of the current inferior. | |
2492 | ||
d8b65138 JK |
2493 | 2010-01-20 Jan Kratochvil <[email protected]> |
2494 | ||
2495 | * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if | |
2496 | HAVE_PYTHON. | |
2497 | (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function. | |
2498 | ||
692465f1 JB |
2499 | 2010-01-20 Joel Brobecker <[email protected]> |
2500 | ||
2501 | Get rid of ada-lang.c:function_name_from_pc. | |
2502 | * ada-lang.c: Add "stack.h" #include. | |
2503 | (function_name_from_pc): Delete. | |
2504 | (is_known_support_routine): Replace call to function_name_from_pc | |
2505 | by call to find_frame_funname. | |
2506 | (ada_unhandled_exception_name_addr_from_raise): Likewise. | |
2507 | ||
95519e0e TT |
2508 | 2010-01-19 Tom Tromey <[email protected]> |
2509 | ||
2510 | PR c++/11026: | |
2511 | * dwarf2read.c (read_partial_die): Allocate partial DIE's name on | |
2512 | objfile obstack. | |
2513 | ||
95c11dc7 TT |
2514 | 2010-01-19 Tom Tromey <[email protected]> |
2515 | ||
2516 | * top.c (stop_sig, float_handler, do_nothing): Remove. | |
2517 | ||
a0f49112 JK |
2518 | 2010-01-19 Jan Kratochvil <[email protected]> |
2519 | ||
2520 | * breakpoint.c (watchpoint_check): Check the call | |
2521 | gdbarch_in_function_epilogue_p before calling frame_find_by_id. | |
2522 | Extend the comment. | |
2523 | * config/djgpp/fnchange.lst: Add translations for | |
2524 | watchpoint-cond-gone.exp, watchpoint-cond-gone.c and | |
2525 | watchpoint-cond-gone-stripped.c. | |
2526 | ||
ceeb3d5a TT |
2527 | 2010-01-19 Tom Tromey <[email protected]> |
2528 | ||
2529 | PR c++/8000: | |
2530 | * dwarf2read.c (partial_die_parent_scope): Put enumeration type | |
2531 | into parent scope, and enumerator into grandparent scope. | |
2532 | ||
2b71fc8e JB |
2533 | 2010-01-19 Joel Brobecker <[email protected]> |
2534 | ||
2535 | * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands. | |
2536 | ||
03564ed9 JB |
2537 | 2010-01-19 Joel Brobecker <[email protected]> |
2538 | ||
2539 | * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of | |
2540 | i[34567]86-*-solaris2.1[0-9]*. | |
2541 | * configure.tgt: Likewise. | |
2542 | ||
fb2e7cb4 JB |
2543 | 2010-01-19 Joel Brobecker <[email protected]> |
2544 | ||
2545 | * NEWS: Document the source command enhancement allowing it | |
2546 | to load Python scripts. Document the "set/show script-extension" | |
2547 | commands. | |
2548 | ||
1cb5e2a4 JB |
2549 | 2010-01-19 Joel Brobecker <[email protected]> |
2550 | ||
2551 | Add -Wunused-function to compile flags. | |
2552 | * configure.ac: Add -Wunused-function to build_warnings. | |
2553 | * configure: Regenerate. | |
2554 | ||
0ec6cd0c JB |
2555 | 2010-01-19 Joel Brobecker <[email protected]> |
2556 | ||
2557 | "delete" ada-lex.c:input function, not used. | |
2558 | * ada-lex.l: #define YY_NO_INPUT. | |
2559 | ||
b74845da JB |
2560 | 2010-01-19 Joel Brobecker <[email protected]> |
2561 | ||
2562 | Delete free_named_symtabs and associated cleanup. | |
2563 | * symfile.h (free_named_symtabs): Delete declaration. | |
2564 | * symfile.c: Remove some commented out code (clear_symtab_users_once). | |
2565 | (cashier_psymtab): Comment function out. | |
2566 | Delete declaration. | |
2567 | (free_named_symtabs): Delete. | |
2568 | * coffread.c (coff_end_symtab): Remove call to free_named_symtabs. | |
2569 | * dbxread.c (end_psymtab): Likewise. | |
2570 | * dwarf2read.c (process_psymtab_comp_unit): Ditto. | |
2571 | * exec.c (exec_close_1): Ditto. | |
2572 | * xcoffread.c (xcoff_end_psymtab): Likewise. | |
2573 | ||
65c06092 JB |
2574 | 2010-01-19 Joel Brobecker <[email protected]> |
2575 | ||
2576 | * stack.c (print_block_frame_labels): Comment function out. | |
2577 | ||
d5cd6034 JB |
2578 | 2010-01-19 Joel Brobecker <[email protected]> |
2579 | ||
2580 | Delete unused or undefined functions. | |
2581 | * breakpoint.c (ep_parse_optional_filename): Delete. | |
2582 | * dcache.c (dcache_write_line): Remove declaration. | |
2583 | * infrun.c (build_infrun): Remove declaration. | |
2584 | * tracepoint.c (tracepoint_save_command): Remove declaration. | |
2585 | * linux-nat.c (init_lwp_list): Delete. No longer used. | |
2586 | * event-loop.c (check_async_signal_handlers): Delete declaration. | |
2587 | * infrun.c (init_execution_control_state): Delete. | |
2588 | (proceed): Update comment to avoid mentioning | |
2589 | init_execution_control_state. | |
2590 | * target.c (kill_or_be_killed, nosupport_runtime): Delete. | |
2591 | * ada-lang.c (ada_to_static_fixed_value): Delete. | |
2592 | * scm-lang.c (evaluate_subexp_scm): Delete declaration. | |
2593 | * cp-namespace.c (cp_copy_usings): Delete. | |
2594 | * xml-syscall.c (xml_number_of_syscalls): Delete. | |
2595 | * progspace.c (find_program_space_by_num): Delete. | |
2596 | * inflow.c (handle_sigio): Delete declaration. | |
2597 | * hppa-tdep.c (hppa_alignof): Delete. | |
2598 | * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset) | |
2599 | (mipsnbsd_core_osabi_sniffer): Delete. | |
2600 | ||
4e8f195d TT |
2601 | 2010-01-18 Tom Tromey <[email protected]> |
2602 | ||
2603 | PR c++/9680: | |
2604 | * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST) | |
2605 | (CONST_CAST): New tokens. | |
2606 | (exp): Add new productions. | |
2607 | (ident_tokens): Add const_cast, dynamic_cast, static_cast, and | |
2608 | reinterpret_cast. | |
2609 | (is_cast_operator): New function. | |
2610 | (yylex): Handle cast operators specially. | |
2611 | * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST, | |
2612 | UNOP_REINTERPRET_CAST>: New cases. | |
2613 | * expprint.c (print_subexp_standard): Likewise. | |
2614 | (op_name_standard): Likewise. | |
2615 | (dump_subexp_body_standard): Likewise. | |
2616 | * parse.c (operator_length_standard): Likewise. | |
2617 | * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST, | |
2618 | UNOP_REINTERPRET_CAST. | |
2619 | * gdbtypes.c (class_types_same_p): New function. | |
2620 | (is_ancestor): Use it. | |
2621 | (is_public_ancestor): New function. | |
2622 | (is_unique_ancestor_worker): Likewise. | |
2623 | (is_unique_ancestor): Likewise. | |
2624 | * gdbtypes.h (class_types_same_p, is_public_ancestor) | |
2625 | (is_unique_ancestor): Declare. | |
2626 | * valops.c (value_reinterpret_cast): New function. | |
2627 | (dynamic_cast_check_1): Likewise. | |
2628 | (dynamic_cast_check_2): Likewise. | |
2629 | (value_dynamic_cast): Likewise. | |
2630 | * value.h (value_reinterpret_cast, value_dynamic_cast): Declare. | |
2631 | ||
d9c57d9f JB |
2632 | 2010-01-18 Joel Brobecker <[email protected]> |
2633 | ||
2634 | Fix build failure when building without Python support. | |
2635 | * python/python.c: Always include exceptions.h, even when HAVE_PYTHON | |
2636 | is not defined. | |
2637 | ||
f80d3ff2 JB |
2638 | 2010-01-18 Joel Brobecker <[email protected]> |
2639 | ||
2640 | Use XVS field type instead of doing a parallel lookup. | |
2641 | * ada-lang.c (ada_get_base_type): Follow the XVS field type | |
2642 | if it is a reference type instead of doing a type lookup using | |
2643 | the XVS field name. | |
2644 | ||
5bf03f13 JB |
2645 | 2010-01-18 Joel Brobecker <[email protected]> |
2646 | ||
2647 | Trust PAD types instead of using PAD___XVS. | |
2648 | * ada-lang.c (trust_pad_over_xvs): New static variable. | |
2649 | (ada_is_aligner_type): If !trust_pad_over_xvs and there is a | |
2650 | parallel XVS type, follow the XVS type instead of the PAD type. | |
2651 | (unwrap_value): Make sure that there is no parallel XVE type | |
2652 | before returning the value as is. | |
2653 | (set_ada_list, show_ada_list): New static variables. | |
2654 | (set_ada_command, show_ada_command): New functions. | |
2655 | (_initialize_ada_language): Add new "set/show ada" prefix commands. | |
2656 | Add new "set/show ada trust-PAD-over-XVS" setting. | |
2657 | ||
973817a3 JB |
2658 | 2010-01-18 Tom Tromey <[email protected]> |
2659 | Thiago Jung Bauermann <[email protected]> | |
2660 | ||
2661 | Allow "source" to load python scripts. | |
2662 | * exceptions.h (enum errors): Add UNSUPPORTED_ERROR. | |
2663 | * python/python.c (source_python_script): New function. | |
2664 | * python/python.h (source_python_script): Add declaration. | |
2665 | * cli/cli-cmds.c: #include exceptions.h and python/python.h. | |
2666 | (script_ext_off, script_ext_soft, script_ext_strict) | |
2667 | (script_ext_enums, script_ext_mode): New static constants. | |
2668 | (show_script_ext_mode, find_and_open_script): New functions. | |
2669 | (source_script): Enhance to handle Python scripts. | |
2670 | (init_cli_cmds): Add set/show script-extension commands. | |
2671 | ||
98e03262 SS |
2672 | 2010-01-16 Stan Shebs <[email protected]> |
2673 | ||
2674 | * tracepoint.h (struct trace_status): Use unsigned long long | |
2675 | instead of size_t. | |
2676 | * tracepoint.c (trace_status_command): Fix printf directive. | |
2677 | (trace_save_command): Check fwrite returns, fix printf directive. | |
2678 | (trace_filename): New global. | |
2679 | (tfile_open): Set it, check read returns. | |
2680 | (tfile_close): Free trace_filename. | |
2681 | (tfile_get_traceframe_address): Check read returns. | |
2682 | (tfile_trace_find): Ditto. | |
2683 | (tfile_fetch_registers): Ditto. | |
2684 | (tfile_xfer_partial): Ditto. | |
2685 | (tfile_get_trace_state_variable_value): Ditto. | |
2686 | ||
00bf0b85 SS |
2687 | 2010-01-15 Stan Shebs <[email protected]> |
2688 | ||
2689 | Add trace file support. | |
2690 | * tracepoint.h (enum trace_stop_reason): New enum. | |
2691 | (struct trace_status): New struct. | |
2692 | (parse_trace_status): Declare. | |
2693 | (struct uploaded_tp): Move here from remote.c, | |
2694 | add fields for actions. | |
2695 | (struct uploaded_tsv): New struct. | |
2696 | * tracepoint.c (tfile_ops): New target vector. | |
2697 | (trace_fd): New global. | |
2698 | (tfile_open): New function. | |
2699 | (tfile_close): New function. | |
2700 | (tfile_files_info): New function. | |
2701 | (tfile_get_trace_status): New function. | |
2702 | (tfile_get_traceframe_address): New function. | |
2703 | (tfile_trace_find): New function. | |
2704 | (tfile_fetch_registers): New function. | |
2705 | (tfile_xfer_partial): New function. | |
2706 | (tfile_get_trace_state_variable_value): New function. | |
2707 | (init_tfile_ops): New function. | |
2708 | (_initialize_tracepoint): Call it, add tfile target. | |
2709 | (trace_status): New global. | |
2710 | (current_trace_status): New function. | |
2711 | (trace_running_p): Remove, change all users to get from | |
2712 | current_trace_status()->running. | |
2713 | (get_trace_status): Remove. | |
2714 | (trace_status_command): Call target_get_trace_status directly, | |
2715 | report more detail including tracing stop reasons. | |
2716 | (trace_find_command): Always allow tfind on a file. | |
2717 | (trace_find_pc_command): Ditto. | |
2718 | (trace_find_tracepoint_command): Ditto. | |
2719 | (trace_find_line_command): Ditto. | |
2720 | (trace_find_range_command): Ditto. | |
2721 | (trace_find_outside_command): Ditto. | |
2722 | (trace_frames_offset, cur_offset): Declare as off_t. | |
2723 | (trace_regblock_size): Rename from reg_size, update users. | |
2724 | (parse_trace_status): New function. | |
2725 | (tfile_interp_line): New function. | |
2726 | (disconnect_or_stop_tracing): Ensure current trace | |
2727 | status before asking what to do. | |
2728 | (stop_reason_names): New global. | |
2729 | (trace_save_command): New command. | |
2730 | (get_uploaded_tp): Move here from remote.c. | |
2731 | (find_matching_tracepoint): Ditto. | |
2732 | (merge_uploaded_tracepoints): New function. | |
2733 | (parse_trace_status): Use stop_reason_names. | |
2734 | (_initialize_tracepoint): Define tsave command. | |
2735 | * target.h (target_ops): New fields to_save_trace_data, | |
2736 | to_upload_tracepoints, to_upload_trace_state_variables, | |
2737 | to_get_raw_trace_data, change to_get_trace_status | |
2738 | to take a pointer to a status struct. | |
2739 | (target_save_trace_data): New macro. | |
2740 | (target_upload_tracepoints): New macro. | |
2741 | (target_upload_trace_state_variables): New macro. | |
2742 | (target_get_raw_trace_data): New macro. | |
2743 | * target.c (update_current_target): Add new methods, change | |
2744 | signature of to_get_trace_status. | |
2745 | * remote.c (hex2bin): Make globally visible. | |
2746 | (bin2hex): Ditto. | |
2747 | (remote_download_trace_state_variable): Download name also. | |
2748 | (remote_get_trace_status): Update parameter, use | |
2749 | parse_trace_status. | |
2750 | (remote_save_trace_data): New function. | |
2751 | (remote_upload_tracepoints): New function. | |
2752 | (remote_upload_trace_state_variables): New function. | |
2753 | (remote_get_raw_trace_data): New function. | |
2754 | (remote_start_remote): Use them. | |
2755 | (_initialize_remote_ops): Add operations. | |
2756 | * ax-gdb.c: Include breakpoint.h. | |
2757 | * breakpoint.c (create_tracepoint_from_upload): Use | |
2758 | break_command_really, return tracepoint, warn about unimplemented | |
2759 | parts. | |
2760 | * NEWS: Mention trace file addition. | |
2761 | ||
d904de5b JK |
2762 | 2010-01-15 Jan Kratochvil <[email protected]> |
2763 | ||
2764 | Fix compilation warning on gcc-3.4. | |
2765 | * exec.c (print_section_info): Move the `displacement' variable | |
2766 | initialization to its declaration. | |
2767 | ||
64aa9731 JK |
2768 | 2010-01-15 Jan Kratochvil <[email protected]> |
2769 | ||
2770 | * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE | |
2771 | comparison. | |
2772 | ||
ca1f5def | 2773 | 2010-01-15 Eric Botcazou <[email protected]> |
9f0dec2d JB |
2774 | |
2775 | "info tasks" broken by typedefs in ATCB type definitions. | |
2776 | * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to | |
2777 | ada_check_typedef before retrieving the length of the type for | |
2778 | regular fields. | |
2779 | ||
12ab9e09 JB |
2780 | 2010-01-15 Joel Brobecker <[email protected]> |
2781 | ||
2782 | Do not use name-based lookup for unconstrained packed arrays. | |
2783 | * ada-lang.c (find_parallel_type_by_descriptive_type): | |
2784 | Limit the fallback to name-based lookups to the case where | |
2785 | the type is a constrained packed array. | |
2786 | ||
c389c3dc JB |
2787 | 2010-01-15 Joel Brobecker <[email protected]> |
2788 | ||
2789 | Enhance gdb-gdb.py to handle main_type.type_specific. | |
2790 | * gdb-gdb.py: Print the type-specific part of struct main_type. | |
2791 | ||
7991dee7 JK |
2792 | 2010-01-15 Jan Kratochvil <[email protected]> |
2793 | ||
2794 | * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit. | |
2795 | * configure: Regenerate. | |
2796 | * config.in: Regenerate. | |
2797 | * utils.c: Include sys/resource.h. | |
2798 | (dump_core, can_dump_core): New. | |
2799 | (internal_vproblem): Update the comment. Check can_dump_core while | |
2800 | setting dump_core_p. Replace two abort calls by dump_core calls. | |
2801 | ||
93c26624 JK |
2802 | 2010-01-14 Jan Kratochvil <[email protected]> |
2803 | Eli Zaretskii <[email protected]> | |
2804 | ||
2805 | * NEWS: Document the PIE support. | |
2806 | ||
55235ad7 JK |
2807 | 2010-01-14 Jan Kratochvil <[email protected]> |
2808 | ||
2809 | * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h. | |
2810 | (check_is_pie_binary, _initialize_linux_tdep): Remove. | |
2811 | ||
41752192 JK |
2812 | 2010-01-14 Jan Kratochvil <[email protected]> |
2813 | ||
2814 | * solib-svr4.c (svr4_exec_displacement): New comment for entry_point. | |
2815 | Replace exec_entry_point call by bfd_get_start_address. | |
2816 | ||
9f2982ff JK |
2817 | 2010-01-14 Jan Kratochvil <[email protected]> |
2818 | ||
2819 | Support Valgrind attachments broken by the PIE support. | |
2820 | * auxv.c: Include gdbcore.h. | |
2821 | (procfs_xfer_auxv): Make static. Reduce its comment. Drop its | |
2822 | parameters ops, object and annex. Remove their assertions. | |
2823 | (ld_so_xfer_auxv, memory_xfer_auxv): New function. | |
2824 | * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ... | |
2825 | (memory_xfer_auxv): ... here. | |
2826 | * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to | |
2827 | memory_xfer_auxv. | |
2828 | * procfs.c (procfs_xfer_partial): Likewise. | |
2829 | * solib-svr4.c (svr4_relocate_main_executable): New prototype. | |
2830 | (svr4_special_symbol_handling): Call svr4_relocate_main_executable. | |
2831 | (svr4_solib_create_inferior_hook): Conditionalize the | |
2832 | svr4_relocate_main_executable call. | |
2833 | ||
61f0d762 JK |
2834 | 2010-01-14 Jan Kratochvil <[email protected]> |
2835 | ||
2836 | * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable | |
2837 | target_section. Find SECT in current_target_sections, gdb_assert it. | |
2838 | (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile. | |
2839 | New variable abfd. | |
2840 | * symtab.c (lookup_objfile_from_block): Return the binary file instead | |
2841 | of separate debug info file. | |
2842 | ||
51bee8e9 JK |
2843 | 2010-01-14 Jan Kratochvil <[email protected]> |
2844 | ||
2845 | Support PIEs with no symfile_objfile. | |
2846 | * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point. | |
2847 | * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block. | |
2848 | ||
b8040f19 JK |
2849 | 2010-01-14 Jan Kratochvil <[email protected]> |
2850 | ||
2851 | * solib-svr4.c (svr4_relocate_main_executable): Move the static exec | |
2852 | code part to ... | |
2853 | (svr4_static_exec_displacement): ... a new function. | |
2854 | (svr4_exec_displacement): New function. | |
2855 | (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate | |
2856 | new_offsets using alloca now. Remove variable old_chain and changed. | |
2857 | Call objfile_relocate unconditionally now. | |
2858 | ||
eb90ce83 DE |
2859 | 2010-01-14 Doug Evans <[email protected]> |
2860 | ||
2861 | * gdbtypes.c (arch_flags_type): Fix comment. | |
2862 | * gdbtypes.h (arch_composite_type): Fix comment. | |
2863 | ||
bdfed3bc TG |
2864 | 2009-01-14 Tristan Gingold <[email protected]> |
2865 | ||
2866 | * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter. | |
2867 | Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags | |
2868 | to symbol_file_add_from_bfd. Add OSO as separate objfile. | |
2869 | (macho_oso_symfile): Add symfile_flags parameter. Pass it to | |
2870 | macho_add_oso_symfile. | |
2871 | (macho_symfile_read): Pass symfile_flags to macho_oso_symfile. | |
2872 | ||
1596ad23 JB |
2873 | 2010-01-14 Joel Brobecker <[email protected]> |
2874 | ||
2875 | Tru64: Dead threads are never deleted. | |
2876 | * dec-thread.c (dec_thread_ptid_is_alive): New function. | |
2877 | (dec_thread_count_gdb_threads): Fix counter increment. | |
2878 | (dec_thread_add_gdb_thread): Fix *listp increment. | |
2879 | (resync_thread_list): Fix bug in deletion of dead threads that | |
2880 | caused all threads to be deleted, instead of just the dead ones. | |
2881 | ||
be759fcf PM |
2882 | 2010-01-13 Phil Muldoon <[email protected]> |
2883 | ||
2884 | PR python/10705 | |
2885 | ||
2886 | * python/python-internal.h: Add lazy_string_object_type | |
2887 | definition. | |
2888 | (create_lazy_string_object, gdbpy_initialize_lazy_string) | |
2889 | (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define. | |
2890 | * python/py-value.c (valpy_lazy_string): New function. | |
2891 | (convert_value_from_python): Add lazy string conversion. | |
2892 | * python/py-prettyprint.c (pretty_print_one_value): Check if | |
2893 | return is also a lazy string. | |
2894 | (print_string_repr): Add lazy string printing branch. | |
2895 | (print_children): Likewise. | |
2896 | * python/py-lazy-string.c: New file. Implement lazy strings. | |
2897 | * python/python.c (_initialize_python): Call | |
2898 | gdbpy_initialize_lazy_string. | |
2899 | * varobj.c (value_get_print_value): Add lazy string printing | |
2900 | branch. Account for encoding. | |
2901 | * c-lang.c (c_printstr): Account for new encoding argument. If | |
2902 | encoding is NULL, find encoding suited for type, otherwise use | |
2903 | user encoding. | |
2904 | * language.h (language_defn): Add encoding argument. | |
2905 | (LA_PRINT_STRING): Likewise. | |
2906 | * language.c (unk_lang_printstr): Update to reflect new encoding | |
2907 | argument to language_defn. | |
2908 | * ada-lang.h (ada_printstr): Likewise. | |
2909 | * c-lang.h (c_printstr): Likewise. | |
2910 | * p-lang.h (pascal_printstr); | |
2911 | * f-lang.c (f_printstr): Likewise. | |
2912 | * m2-lang.c (m2_printstr): Likewise. | |
2913 | * objc-lang.c (objc_printstr): Likewise. | |
2914 | * p-lang.c (pascal_printstr): Likewise. | |
2915 | * scm-lang.c (scm_printstr): Likewise. | |
2916 | * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for | |
2917 | encoding argument. | |
2918 | * ada-valprint.c (ada_printstr): Likewise. | |
2919 | * f-valprint.c (f_val_print): Likewise | |
2920 | * m2-valprint.c (m2_val_print): Likewise. | |
2921 | * p-valprint.c (pascal_val_print): Likewise. | |
2922 | * expprint.c (print_subexp_standard): Likewise. | |
2923 | * valprint.c (val_print_string): Likewise. | |
2924 | * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string. | |
2925 | (SUBDIR_PYTHON_SRCS): Likewise. | |
2926 | (py-lazy-string.o): New rule. | |
2927 | ||
1fe72117 | 2928 | 2010-01-13 Doug Evans <[email protected]> |
8eee9c5a DE |
2929 | |
2930 | * mi/mi-main.c (list_available_thread_groups): Avoid "may be used | |
2931 | uninitialized" warning from gcc on local `tree'. | |
2932 | ||
dc146f7c VP |
2933 | 2010-01-13 Vladimir Prus <[email protected]> |
2934 | ||
2935 | Implement core awareness. | |
2936 | ||
2937 | * bcache.c (compare_ints): Remove | |
2938 | (print_percentage): Use compare_positive_ints. | |
2939 | * defs.h (compare_positive_ints): Declare. | |
2940 | * linux-nat.h (struct lin_lwp): New field core. | |
2941 | (linux_nat_core_of_thread_1): Declare. | |
2942 | * linux-nat.c (add_lwp): Init the 'core' field. | |
2943 | (linux_nat_wait_1): Record the core. | |
2944 | (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New. | |
2945 | (linux_nat_add_target): Register the above. | |
2946 | * linux-thread-db.c (update_thread_core): New. | |
2947 | (thread_db_find_new_threads): Update core information for | |
2948 | every thread. | |
2949 | * remote.c (struct private_thread_info): New. | |
2950 | (free_private_thread_info, demand_private_info): New. | |
2951 | (PACKET_qXfer_threads, use_osdata_threads): New. | |
2952 | (struct thread_item, threads_parsing_context | |
2953 | (start_thread, end_thread, thread_attributes) | |
2954 | (thread_children, threads_children, threads_elements): New. | |
2955 | (remote_threads_info): Try qXfer:threads before anything | |
2956 | else. | |
2957 | (remote_protocol_packets): Register qXfer:threads. | |
2958 | (remote_open_1): Init use_osdata_threads. | |
2959 | (struct stop_reply): New field 'core'. | |
2960 | (remote_parse_stop_reply): Parse core number. | |
2961 | (process_stop_reply): Record core number. | |
2962 | (remote_xfer_partial): Handle qXfer:threads. | |
2963 | (remote_core_of_thread): New. | |
2964 | (init_remote_ops): Register remote_core_of_thread. | |
2965 | (_initialize_remote): Register qXfer:read. | |
2966 | * target.c (target_core_of_thread): New | |
2967 | * target.h (enum target_object): New value TARGET_OBJECT_THREADS. | |
2968 | (struct target_ops): New field to_core_of_threads. | |
2969 | (target_core_of_thread): Declare. | |
2970 | * gdbthread.h (struct thread_info): New field private_dtor. | |
2971 | * thread.c (print_thread_info): Report the core. | |
2972 | * ui-out.c (MAX_UI_OUT_LEVELS): Increase. | |
2973 | * utils.c (compare_positive_ints): New. | |
2974 | * features/threads.dtd: New. | |
2975 | * mi/mi-interp.c (mi_on_normal_stop): Report the core. | |
2976 | * mi/mi-main.c (struct collect_cores_data, collect_cores) | |
2977 | (do_nothing, free_vector_of_osdata_items) | |
2978 | (splay_tree_int_comparator, free_splay_tree): New. | |
2979 | (print_one_inferior_data): Implemented printing of selected | |
2980 | inferiors. Collect and print cores. | |
2981 | (output_cores): New. | |
2982 | (mi_cmd_list_thread_groups): Support --recurse. Permit specifying | |
2983 | thread groups together with --available. | |
2984 | ||
d30c5336 JK |
2985 | 2010-01-12 Jan Kratochvil <[email protected]> |
2986 | ||
2987 | * configure: Regenerate (for _STRUCTURED_PROC). | |
2988 | ||
02893727 JB |
2989 | 2010-01-12 Joel Brobecker <[email protected]> |
2990 | ||
2991 | Delete dead function. | |
2992 | * ada-lang.c (extract_string): Delete. No longer used. | |
2993 | ||
46ed2d6f JB |
2994 | 2010-01-12 Joel Brobecker <[email protected]> |
2995 | ||
2996 | Fix -Wunused warning in dec-thread.c. | |
2997 | * dec-thread.c (dec_thread_count_gdb_threads) | |
2998 | (dec_thread_add_gdb_thread): Prevent -Wunused warning. | |
2999 | ||
606b8d1a JB |
3000 | 2010-01-12 Joel Brobecker <[email protected]> |
3001 | ||
3002 | * ada-valprint.c (ada_print_floating): Remove trailing space. | |
3003 | ||
b4ba55a1 JB |
3004 | 2010-01-12 Joel Brobecker <[email protected]> |
3005 | ||
3006 | Add support for DW_AT_GNAT_descriptive_type. | |
3007 | * gdbtypes.h (enum type_specific_kind): New enum. | |
3008 | (struct main_type) [type_specific_field]: New component. | |
3009 | [type_specific]: Add new component "gnat_stuff". | |
3010 | (struct gnat_aux_type): New type. | |
3011 | (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type). | |
3012 | (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type). | |
3013 | (gnat_aux_default, allocate_gnat_aux_type): Add declaration. | |
3014 | (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO) | |
3015 | (TYPE_SPECIFIC_FIELD): New macros. | |
3016 | (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given | |
3017 | type does not hold any cplus-specific data. | |
3018 | (TYPE_RAW_CPLUS_SPECIFIC): New macro. | |
3019 | (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros. | |
3020 | (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has | |
3021 | cplus-specific data. | |
3022 | * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite. | |
3023 | Set new component TYPE_SPECIFIC_FIELD (type). | |
3024 | (gnat_aux_default): New constant. | |
3025 | (allocate_gnat_aux_type): New function. | |
3026 | (init_type): Add initialization the type-specific stuff for | |
3027 | TYPE_CODE_FLT and TYPE_CODE_FUNC types. | |
3028 | (print_gnat_stuff): New function. | |
3029 | (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus- | |
3030 | specific data. Adjust code that prints the contents of the | |
3031 | type-specific union using the TYPE_SPECIFIC_FIELD value. | |
3032 | * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate | |
3033 | the type cplus stuff for Ada types. | |
3034 | (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type): | |
3035 | Error out if these routines are called with an Ada type. | |
3036 | (read_structure_type, read_array_type, read_subrange_type): | |
3037 | Add call to set_descriptive_type. | |
3038 | (set_die_type): Initialize the gnat-specific data if necessary. | |
3039 | (need_gnat_info, die_descriptive_type, set_descriptive_type): | |
3040 | New functions. | |
3041 | * ada-lang.c (decode_constrained_packed_array_type): Use | |
3042 | decode_constrained_packed_array_type instead of doing a standard | |
3043 | lookup to locate a parallel type. | |
3044 | (find_parallel_type_by_descriptive_type): New function. | |
3045 | (ada_find_parallel_type_with_name): New function. | |
3046 | (ada_find_parallel_type): Reimplement using | |
3047 | ada_find_parallel_type_with_name. | |
3048 | * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT | |
3049 | to check if type has a cplus stuff. | |
3050 | * linespec.c (total_number_of_methods): Likewise. | |
3051 | * mdebugread.c (new_type): Likewise. | |
3052 | ||
b0f02ee9 JK |
3053 | 2010-01-11 Jan Kratochvil <[email protected]> |
3054 | ||
3055 | * NEWS: Document the 0b binary number prefix parsing. | |
3056 | ||
b260e109 JK |
3057 | 2010-01-11 Jan Kratochvil <[email protected]> |
3058 | ||
3059 | * objfiles.c (objfile_relocate1): Change the return type to int. | |
3060 | Describe the new return value. Return non-zero if data changed. | |
3061 | (objfile_relocate): New variable changed. Set it. Call | |
3062 | breakpoint_re_set depending on CHANGED. | |
3063 | ||
b5cfddf5 JK |
3064 | 2010-01-11 Jan Kratochvil <[email protected]> |
3065 | ||
3066 | Implement binary numbers parsing. | |
3067 | * c-exp.y (parse_number): New case 'b' and 'B'. | |
3068 | ||
e0ae4240 JK |
3069 | 2010-01-11 Jan Kratochvil <[email protected]> |
3070 | Tristan Gingold <[email protected]> | |
3071 | ||
3072 | * solib.c (info_sharedlibrary_command): Replace | |
3073 | objfile_has_partial_symbols and objfile_has_full_symbols calls by | |
3074 | objfile_has_symbols. | |
3075 | ||
6e0e5977 JB |
3076 | 2010-01-10 Joel Brobecker <[email protected]> |
3077 | ||
3078 | * NEWS: Document the improvements made to the mips-irix port. | |
3079 | ||
7348c5e1 JB |
3080 | 2010-01-09 Joel Brobecker <[email protected]> |
3081 | ||
3082 | Fix the documentation of valprint.c:value_print. | |
3083 | * valprint.c (value_print): Update the function description to | |
3084 | mention that the syntax of the output follows the current_language, | |
3085 | not necessarily C. | |
3086 | ||
567995e1 JK |
3087 | 2010-01-09 Jan Kratochvil <[email protected]> |
3088 | ||
3089 | Fix displacement of separate debug info files. | |
3090 | * objfiles.c (objfile_relocate): Rename to ... | |
3091 | (objfile_relocate1): ... here and make it static. Extend the comment. | |
3092 | (objfile_relocate): New function. | |
3093 | * solib-spu.c (spu_relocate_main_executable): Explicitly check if | |
3094 | SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain. | |
3095 | Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now | |
3096 | allocated using alloca. | |
3097 | * symfile.c (copy_section_addr_info): Remove. | |
3098 | (build_section_addr_info_from_objfile): Make it global. New variables | |
3099 | addr_bit and mask, use them. | |
3100 | * symfile.h (build_section_addr_info_from_objfile): New prototype. | |
3101 | (copy_section_addr_info): Remove. | |
3102 | ||
6d8eadbd JB |
3103 | 2010-01-09 Joel Brobecker <[email protected]> |
3104 | ||
3105 | Signal unwinder for mips-irix N32. | |
3106 | * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and | |
3107 | tramp-frame.h. | |
3108 | (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF) | |
3109 | (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF) | |
3110 | (SIGCONTEXT_LO_OFF): New macros. | |
3111 | (mips_irix_n32_tramp_frame_init): New function. | |
3112 | (mips_irix_n32_tramp_frame): New static constant. | |
3113 | (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder. | |
3114 | ||
27087a3d JB |
3115 | 2010-01-09 Joel Brobecker <[email protected]> |
3116 | ||
3117 | Breakpoint in shared library does not work on mips-irix. | |
3118 | * procfs.c: #include "observer.h". | |
3119 | (procfs_inferior_created): New function, moving here the code | |
3120 | which unsets the syssgi syscall-exit notifications. | |
3121 | (procfs_create_inferior): Remove the code which unsets the syssgi | |
3122 | syscall-exit notifications. It is too early to do this here. | |
3123 | (_initialize_procfs): Attach the procfs_inferior_created observer. | |
3124 | ||
f08877ba JB |
3125 | 2010-01-09 Joel Brobecker <[email protected]> |
3126 | ||
3127 | Wrong return convention for arrays (mips-irix). | |
3128 | * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is | |
3129 | 128 bits or smaller are returned the same way as structs | |
3130 | and unions of the the same size. | |
3131 | ||
e4b97d48 JB |
3132 | 2010-01-09 Joel Brobecker <[email protected]> |
3133 | ||
3134 | Cannot set the PC on mips-irix. | |
3135 | * irix5-nat.c (fill_gregset): Check regno against the raw PC | |
3136 | register number, no the cooked one. | |
3137 | ||
11377e68 JB |
3138 | 2010-01-09 Joel Brobecker <[email protected]> |
3139 | ||
3140 | Error while loading core file on mips-irix. | |
3141 | * solib-irix.c (irix_solib_create_inferior_hook): Do nothing | |
3142 | if debugging from a core file. | |
3143 | ||
b2391021 JB |
3144 | 2010-01-09 Joel Brobecker <[email protected]> |
3145 | ||
3146 | GDB hangs when attaching to process on mips-irix. | |
3147 | * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if | |
3148 | attaching to a process. | |
3149 | ||
f2ec0ecf JB |
3150 | 2010-01-09 Joel Brobecker <[email protected]> |
3151 | ||
3152 | Use the correct breakpoint instruction on mips-irix. | |
3153 | * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable | |
3154 | containing the correct breakpoint instruction to use on mips-irix. | |
3155 | Use it when the osabi is GDB_OSABI_IRIX. | |
3156 | ||
3c95f01c JB |
3157 | 2010-01-09 Joel Brobecker <[email protected]> |
3158 | ||
3159 | -Wunused warning in procfs.c (mips-irix only). | |
3160 | * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them | |
3161 | throughout instead of using praddset and prdelset respectively. | |
3162 | ||
4b7703ad JB |
3163 | 2010-01-09 Joel Brobecker <[email protected]> |
3164 | ||
3165 | GDB crash while stepping into function. | |
3166 | * infrun.c (handle_inferior_event): Refetch the current frame | |
3167 | after handling what.main_action, in case that pointer became | |
3168 | dangling. | |
3169 | ||
12c89474 JB |
3170 | 2010-01-09 Joel Brobecker <[email protected]> |
3171 | ||
3172 | Fix build failure of solaris-hosted cross debuggers. | |
3173 | * ada-valprint.c, parse.c: Include defs.h before including ctype.h. | |
3174 | ||
1a3fd262 | 3175 | 2010-01-09 Daniel Gutson <[email protected]> |
4c490650 JB |
3176 | |
3177 | Fix build failure on sparc-solaris. | |
3178 | * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus. | |
3179 | ||
75242ef4 JK |
3180 | 2010-01-08 Jan Kratochvil <[email protected]> |
3181 | ||
3182 | Move some symfile code into subroutines. | |
3183 | * symfile.h (relative_addr_info_to_section_offsets) | |
3184 | (addr_info_make_relative): New prototypes. | |
3185 | * symfile.c (default_symfile_offsets): Move a part to ... | |
3186 | (relative_addr_info_to_section_offsets): ... this new function. | |
3187 | (default_symfile_offsets): Call it. | |
3188 | (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move | |
3189 | this part to ... | |
3190 | (addr_info_make_relative): ... this new function. | |
3191 | ||
268a4a75 JK |
3192 | 2010-01-08 Jan Kratochvil <[email protected]> |
3193 | ||
3194 | Add from_tty to solib_create_inferior_hook. | |
3195 | * infcmd.c (post_create_inferior): Move solib_add after | |
3196 | solib_create_inferior_hook. Pass from_tty to | |
3197 | solib_create_inferior_hook. Call solib_add and SOLIB_ADD with | |
3198 | 0 from_tty and comment why. | |
3199 | * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0. | |
3200 | * linux-nat.c (linux_child_follow_fork): Likewise. | |
3201 | * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise. | |
3202 | * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter | |
3203 | from_tty. | |
3204 | * solib-frv.c (frv_solib_create_inferior_hook): Likewise. | |
3205 | * solib-irix.c (irix_solib_create_inferior_hook): Likewise. | |
3206 | * solib-null.c (null_solib_create_inferior_hook): Likewise. | |
3207 | * solib-osf.c (osf_solib_create_inferior_hook): Likewise. | |
3208 | * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise. | |
3209 | * solib-som.c (som_solib_create_inferior_hook): Likewise. | |
3210 | * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty. | |
3211 | Pass it to svr4_so_ops.solib_create_inferior_hook. | |
3212 | * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter | |
3213 | from_tty. | |
3214 | * solib-svr4.c (enable_break): New parameter from_tty. Pass it to | |
3215 | solib_add. | |
3216 | (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to | |
3217 | enable_break. | |
3218 | * solib-target.c (solib_target_solib_create_inferior_hook): New | |
3219 | parameter from_tty. | |
3220 | * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass | |
3221 | it to ops->solib_create_inferior_hook. | |
3222 | (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook. | |
3223 | Move solib_add after solib_create_inferior_hook, call it now with | |
3224 | from_tty as 0. New comment there. | |
3225 | * solib.h (solib_create_inferior_hook): New parameter from_tty. | |
3226 | * solist.h (struct target_so_ops <solib_create_inferior_hook>): | |
3227 | Likewise. | |
3228 | ||
cf00dfa7 VP |
3229 | 2010-01-08 Vladimir Prus <[email protected]> |
3230 | ||
3231 | Fix multiexec race. | |
3232 | * infrun.c (handle_inferior_event): Use get_thread_regcache | |
3233 | with events ptid, not get_current_regcache. | |
3234 | ||
f91e5ac3 JB |
3235 | 2009-01-08 Joel Brobecker <[email protected]> |
3236 | ||
3237 | GDB crash with empty executable name (MinGW). | |
3238 | * source.c (openp): Add assert that parameter string is not NULL. | |
3239 | if parameter string is an empty string, then return with a failure | |
3240 | immediately. | |
3241 | ||
92b9ce5b JB |
3242 | 2009-01-08 Joel Brobecker <[email protected]> |
3243 | ||
3244 | Get rid of support for VAX Floats. | |
3245 | * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix) | |
3246 | (ada_vax_float_print_function): Delete. | |
3247 | * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix) | |
3248 | (ada_vax_float_print_function): Delete. | |
3249 | * ada-typeprint.c (print_vax_floating_point_type): Delete. | |
3250 | (ada_print_type): Remove support for VAX floats. | |
3251 | * ada-valprint.c (ada_val_print_1): Remove support for VAX floats. | |
3252 | ||
268a4a75 | 3253 | 2010-01-08 Jan Kratochvil <[email protected]> |
d24d8548 JK |
3254 | |
3255 | * stabsread.c (read_args): Handle zero arguments. | |
3256 | ||
f0f20949 JB |
3257 | 2009-01-08 Joel Brobecker <[email protected]> |
3258 | ||
3259 | Cannot find in-tree libiconv.a after reconfigure. | |
3260 | * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a | |
3261 | that we can use, then cache the path to this archive. | |
3262 | * configure: Regenerate. | |
3263 | ||
6b6218c5 SS |
3264 | 2010-01-07 Stan Shebs <[email protected]> |
3265 | ||
35b1e5cc SS |
3266 | Make tracepoint operations go through target vector. |
3267 | * target.h (enum trace_find_type): New enum. | |
3268 | (struct target_ops): New fields to_trace_init, | |
3269 | to_download_tracepoint, to_download_trace_state_variable, | |
3270 | to_trace_set_readonly_regions, to_trace_start, to_get_trace_status, | |
3271 | to_trace_stop, to_trace_find, to_get_trace_state_variable_value, | |
3272 | to_set_disconnected_tracing. | |
3273 | (target_trace_init): New macro. | |
3274 | (target_download_tracepoint): New macro. | |
3275 | (target_download_trace_state_variable): New macro. | |
3276 | (target_trace_start): New macro. | |
3277 | (target_trace_set_readonly_regions): New macro. | |
3278 | (target_get_trace_status): New macro. | |
3279 | (target_trace_stop): New macro. | |
3280 | (target_trace_find): New macro. | |
3281 | (target_get_trace_state_variable_value): New macro. | |
3282 | (target_set_disconnected_tracing): New macro. | |
3283 | * target.c (update_current_target): Inherit and set defaults for | |
3284 | tracepoint operations. | |
3285 | * tracepoint.c (default_collect): Make globally visible. | |
3286 | (target_is_remote): Remove, along with all calls. | |
3287 | (tvariables_info): Call target_get_trace_state_variable_value. | |
3288 | (remote_set_transparent_ranges): Remove. | |
3289 | (trace_start_command): Call target_trace_init, | |
3290 | target_download_tracepoint, etc. | |
3291 | (download_tracepoint): Remove. | |
3292 | (trace_stop_command): Simplify. | |
3293 | (stop_tracing): Call target_trace_stop. | |
3294 | (get_trace_status): Call target_get_trace_status. | |
3295 | (trace_status_command): Add case for targets that cannot trace. | |
3296 | (finish_tfind_command): Change to take numerical arguments, call | |
3297 | target_trace_find. | |
3298 | (trace_find_command): Update call to finish_tfind_command. | |
3299 | (trace_find_pc_command): Ditto. | |
3300 | (trace_find_tracepoint_command): Ditto. | |
3301 | (trace_find_line_command): Ditto. | |
3302 | (trace_find_range_command): Ditto. | |
3303 | (trace_find_outside_command): Ditto. | |
3304 | (set_disconnected_tracing_value): Call | |
3305 | target_set_disconnected_tracing. | |
3306 | * remote.c: Add protocol encoding bits from tracepoint.c. | |
3307 | (trace_error): Move from tracepoint.c. | |
3308 | (remote_get_noisy_reply): Ditto. | |
3309 | (free_actions_list_cleanup_wrapper): Ditto. | |
3310 | (free_actions_list): Ditto. | |
3311 | (remote_trace_init): New function. | |
3312 | (remote_download_tracepoint): New function. | |
3313 | (remote_download_trace_state_variable): New function. | |
3314 | (remote_trace_set_readonly_regions): New function. | |
3315 | (remote_trace_start): New function. | |
3316 | (remote_get_trace_status): New function. | |
3317 | (remote_trace_stop): New function. | |
3318 | (remote_trace_find): New function. | |
3319 | (remote_download_trace_state_variable): New function. | |
3320 | (remote_set_disconnected_tracing): New function. | |
3321 | (init_remote_ops): Add tracepoint operations. | |
3322 | ||
6b6218c5 SS |
3323 | * tracepoint.c (trace_dump_command): Don't decr_pc_after_break. |
3324 | ||
089b4803 TG |
3325 | 2010-01-07 Tristan Gingold <[email protected]> |
3326 | ||
3327 | * symfile.c (build_section_addr_info_from_objfile): New function. | |
3328 | (symbol_file_add_separate): Don't use offsets from objfile but | |
3329 | built an addr info. | |
3330 | ||
d5551862 SS |
3331 | 2010-01-06 Stan Shebs <[email protected]> |
3332 | ||
3333 | Support disconnected tracing. | |
3334 | * infcmd.c (detach_command): Ask whether to stop tracing. | |
3335 | * cli/cli-cmds.c (quit_command): Ditto. | |
3336 | * breakpoint.h (struct breakpoint): New field number_on_target. | |
3337 | * breakpoint.c (create_tracepoint_from_upload): New function. | |
3338 | (get_tracepoint_by_number_on_target): New function. | |
3339 | * remote.c (struct remote): New field disconnected_tracing. | |
3340 | (remote_disconnected_tracing_feature): New function. | |
3341 | (remote_protocol_features): Add DisconnectedTracing. | |
3342 | (struct uploaded_tp): New struct. | |
3343 | (uploaded_tps): New global. | |
3344 | (get_uploaded_tp): New function. | |
3345 | (find_matching_tracepoint): New function. | |
3346 | (remote_get_tracing_state): New function. | |
3347 | (remote_start_remote): Call it. | |
3348 | * tracepoint.c (disconnected_tracing): New global. | |
3349 | (trace_start_command): Initialize number_on_target. | |
3350 | (stop_tracing): New function, split out from... | |
3351 | (trace_stop_command): Call stop_tracing. | |
3352 | (get_trace_status): New function, split out from... | |
3353 | (trace_status_command): Call get_trace_status, add info on | |
3354 | disconnection behavior. | |
3355 | (disconnect_or_stop_tracing): New function. | |
3356 | (finish_tfind_command): Translate from number on target. | |
3357 | (trace_find_tracepoint_command): Translate to number on target. | |
3358 | (send_disconnected_tracing_value): New function. | |
3359 | (set_disconnected_tracing): New function. | |
3360 | (_initialize_tracepoint): Add disconnected-tracing variable. | |
3361 | * NEWS: Mention disconnected tracing. | |
3362 | ||
15d123c9 TG |
3363 | 2010-01-06 Tristan Gingold <[email protected]> |
3364 | ||
3365 | * symtab.c (lookup_global_symbol_from_objfile): Rename objfile | |
3366 | parameter to main_objfile. Iterate on all separate debug objfiles. | |
3367 | * symfile.h (symbol_file_add_separate) | |
3368 | (find_separate_debug_file_by_debuglink): Remove parameter names. | |
3369 | * symfile.c (symbol_file_add_separate): Use add_separate_objfile. | |
3370 | (reread_symbols): Use free_objfile_separate_debug. | |
3371 | * objfiles.h (struct objfile): Add separate_debug_objfile_link. | |
3372 | Adjust comment. | |
3373 | (objfile_separate_debug_iterate, add_separate_debug_objfile) | |
3374 | (free_objfile_separate_debug): New prototypes. | |
3375 | * objfiles.c (objfile_separate_debug_iterate): New function. | |
3376 | (add_separate_debug_objfile, free_objfile_separate_debug): New | |
3377 | functions. | |
3378 | (free_objfile): Use free_objfile_separate_debug. Adjust for | |
3379 | multiple separate debug objfile. | |
3380 | (objfile_has_symbols): Adjust comment. Iterate on all separate | |
3381 | debug objfiles. | |
3382 | * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate | |
3383 | debug objfile. | |
3384 | (lookup_minimal_symbol_text): Ditto. | |
3385 | (lookup_minimal_symbol_by_pc_name): Ditto. | |
3386 | (lookup_minimal_symbol_solib_trampoline): Ditto. | |
3387 | (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate | |
3388 | debug objfiles. | |
3389 | ||
7a697b8d SS |
3390 | 2010-01-05 Stan Shebs <[email protected]> |
3391 | ||
3392 | Add fast tracepoints. | |
3393 | * arch-utils.h (default_fast_tracepoint_valid_at): Declare. | |
3394 | * arch-utils.c (default_fast_tracepoint_valid_at): New function. | |
3395 | * breakpoint.h (enum bptype): Add bp_fast_tracepoint. | |
3396 | * breakpoint.c (tracepoint_type): New function. | |
3397 | (ALL_TRACEPOINTS): Use it. | |
3398 | (should_be_inserted): Ditto. | |
3399 | (bpstat_check_location): Ditto. | |
3400 | (print_one_breakpoint_location): Ditto. | |
3401 | (user_settable_breakpoint): Ditto. | |
3402 | (set_breakpoint_location_function): Ditto. | |
3403 | (disable_breakpoints_in_shlibs): Ditto. | |
3404 | (delete_trace_command): Ditto. | |
3405 | (print_it_typical): Add bp_fast_tracepoint case. | |
3406 | (bpstat_what): Ditto. | |
3407 | (print_one_breakpoint_location): Ditto. | |
3408 | (allocate_bp_location): Ditto. | |
3409 | (mention): Ditto. | |
3410 | (breakpoint_re_set_one): Ditto. | |
3411 | (disable_command): Ditto. | |
3412 | (enable_command): Ditto. | |
3413 | (check_fast_tracepoint_sals): New function. | |
3414 | (break_command_really): Call it. | |
3415 | (ftrace_command): New function. | |
3416 | (_initialize_breakpoint): Add ftrace command. | |
3417 | * gdbarch.sh (fast_tracepoint_valid_at): New. | |
3418 | * gdbarch.h, gdbarch.c: Regenerate. | |
3419 | * i386-tdep.c (i386_fast_tracepoint_valid_at): New function. | |
3420 | (i386_gdbarch_init): Use it. | |
3421 | * remote.c (struct remote_state): New field fast_tracepoints. | |
3422 | (PACKET_FastTracepoints): New packet config type. | |
3423 | (remote_fast_tracepoint_feature): New function. | |
3424 | (remote_protocol_features): Add FastTracepoints. | |
3425 | (remote_supports_fast_tracepoints): New function. | |
3426 | (_initialize_remote): Add FastTracepoints. | |
3427 | * tracepoint.c (download_tracepoint): Add fast tracepoint option. | |
3428 | * NEWS: Mention fast tracepoints. | |
3429 | ||
737a160e JB |
3430 | 2010-01-06 Joel Brobecker <[email protected]> |
3431 | ||
3432 | * gdb-gdb.py: New file. | |
3433 | ||
ce6cca6d MS |
3434 | 2010-01-05 Michael Snyder <[email protected]> |
3435 | ||
3436 | * infrun.c (handle_inferior_event): Fix typo in comment. | |
3437 | ||
0d15807d JK |
3438 | 2010-01-05 Jan Kratochvil <[email protected]> |
3439 | ||
3440 | * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional. | |
3441 | ||
7803799a UW |
3442 | 2010-01-04 Ulrich Weigand <[email protected]> |
3443 | ||
3444 | * features/Makefile (WHICH): Add s390-linux32, s390-linux64, | |
3445 | and s390x-linux64. | |
3446 | (s390-linux32-expedite): Define. | |
3447 | (s390-linux64-expedite): Define. | |
3448 | (s390x-linux64-expedite): Define. | |
3449 | * features/s390-acr.xml: New file. | |
3450 | * features/s390-fpr.xml: New file. | |
3451 | * features/s390-core32.xml: New file. | |
3452 | * features/s390-core64.xml: New file. | |
3453 | * features/s390x-core64.xml: New file. | |
3454 | * features/s390-linux32.xml: New file. | |
3455 | * features/s390-linux64.xml: New file. | |
3456 | * features/s390x-linux64.xml: New file. | |
3457 | * features/s390-linux32.c: New generated file. | |
3458 | * features/s390-linux64.c: New generated file. | |
3459 | * features/s390x-linux64.c: New generated file. | |
3460 | ||
3461 | * regformats/s390-linux32.dat: New generated file. | |
3462 | * regformats/s390-linux64.dat: New generated file. | |
3463 | * regformats/s390x-linux64.dat: New generated file. | |
3464 | * regformats/reg-s390.dat: Remove. | |
3465 | * regformats/reg-s390x.dat: Remove. | |
3466 | ||
3467 | * s390-nat.c: Include "auxv.h" and <elf.h>. | |
3468 | (HWCAP_S390_HIGH_GPRS): Define if undefined. | |
3469 | (s390_target_wordsize): New function. | |
3470 | (s390_auxv_parse): Likewise. | |
3471 | (s390_get_hwcap): Likewise. | |
3472 | (s390_read_description): Likewise. | |
3473 | (_initialize_s390_nat): Install s390_auxv_parse and | |
3474 | s390_read_description. | |
3475 | ||
3476 | * s390-tdep.c: Include "features/s390-linux32.c", | |
3477 | "features/s390-linux64.c", and "features/s390x-linux64.c". | |
3478 | (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum. | |
3479 | (s390_register_call_saved): New function. | |
3480 | (s390_register_name): Remove. | |
3481 | (s390_register_type): Remove. | |
3482 | (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums. | |
3483 | (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs. | |
3484 | (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI. | |
3485 | (s390_pseudo_register_name): New function. | |
3486 | (s390_pseudo_register_type): New function. | |
3487 | (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases. | |
3488 | Handle full GPR pesudos and varying pseudo register numbers. | |
3489 | (s390_pseudo_register_write): Likewise | |
3490 | (s390x_pseudo_register_read): Remove. | |
3491 | (s390x_pseudo_register_write): Likewise. | |
3492 | (s390_register_group): Remove. | |
3493 | (s390_pseudo_register_group): New function. | |
3494 | (s390_regmap_gregset): Add GPR upper halves. | |
3495 | (s390x_regmap_gregset): Likewise. | |
3496 | (s390_regmap_fpregset): Likewise. | |
3497 | (s390_regmap_upper): New global variable. | |
3498 | (s390_upper_regset): New global variable. | |
3499 | (s390_upper_regset_sections): New global variable. | |
3500 | (s390_regset_from_core_section): Handle GPR upper halves. | |
3501 | (s390_core_read_description): New function. | |
3502 | (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered | |
3503 | register information. Handle varying pseudo register numbers. | |
3504 | (s390_backchain_frame_unwind_cache): Likewise. | |
3505 | (s390_frame_prev_register): Unwind full GPRs to show lower halves. | |
3506 | (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers. | |
3507 | (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as | |
3508 | PC and CC pseudos. Unwind upper halves and full GPRs as appropriate. | |
3509 | Handle varying pseudo register numbers. | |
3510 | (s390_unwind_pc): Handle varying pseudo register numbers. | |
3511 | (s390_dwarf2_prev_register): New function. | |
3512 | (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered | |
3513 | register information. Handle varying pseudo register numbers. | |
3514 | Install s390_dwarf2_prev_register to unwind full GPRs. | |
3515 | (s390_gdbarch_init): Handle target descriptions. Assign varying | |
3516 | pseudo register numbers. Install s390_adjust_frame_regnum. | |
3517 | (_initialize_s390_tdep): Initialize target descriptions. | |
3518 | ||
3519 | * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define. | |
3520 | (S390_NUM_REGS): Redefine to include upper half registers. | |
3521 | (S390_PC_REGNUM, S390_CC_REGNUM): Remove. | |
3522 | (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise. | |
3523 | (tdesc_s390_linux32): Add declaration. | |
3524 | (tdesc_s390_linux64): Likewise. | |
3525 | (tdesc_s390x_linux64): Likewise. | |
3526 | ||
1b1818e4 UW |
3527 | 2010-01-04 Ulrich Weigand <[email protected]> |
3528 | ||
3529 | * regset.h (struct core_regset_section): Add HUMAN_NAME. | |
3530 | * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME. | |
3531 | * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise. | |
3532 | (ppc_linux_vmx_regset_sections): Likewise. | |
3533 | (ppc_linux_fp_regset_sections): Likewise. | |
3534 | ||
3535 | * corelow.c (get_core_register_section): Constify arguments. | |
3536 | (get_core_registers): Use gdbarch_core_regset_sections instead | |
3537 | of hard-coded platform-specific register section names. | |
3538 | ||
dcbf108f UW |
3539 | 2010-01-04 Ulrich Weigand <[email protected]> |
3540 | ||
3541 | * dwarf2loc.c (read_pieced_value): If a piece occupies part of | |
b3f41522 | 3542 | a register, assume the least-significant part is used. |
dcbf108f UW |
3543 | (write_pieced_value): Likewise. |
3544 | ||
704e9165 UW |
3545 | 2010-01-04 Ulrich Weigand <[email protected]> |
3546 | ||
3547 | * printcmd.c: Include "arch-utils.h". | |
3548 | (do_one_display): Re-parse expression if current architecture changed. | |
3549 | ||
c54eabfa JK |
3550 | 2010-01-03 Jan Kratochvil <[email protected]> |
3551 | Joel Brobecker <[email protected]> | |
3552 | ||
3553 | * gdbtypes.c (check_typedef): New comment on type length. | |
3554 | * value.c (allocate_value_lazy): Remove the unused atype variable. New | |
3555 | comment on type length. | |
3556 | (value_primitive_field): Keep the original TYPE value, new comment. | |
3557 | ||
50cb2941 JK |
3558 | 2010-01-01 Jan Kratochvil <[email protected]> |
3559 | ||
3560 | * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as | |
3561 | p_start. Change != comparisons to > and < comparisons. | |
3562 | ||
be66db07 JK |
3563 | 2010-01-01 Jan Kratochvil <[email protected]> |
3564 | ||
3565 | * cli/cli-script.c (process_next_line): Check P2 overrun. | |
3566 | ||
abd775ce JB |
3567 | 2009-01-01 Joel Brobecker <[email protected]> |
3568 | ||
3569 | Update the copyright hearder to add year 2010 for most GDB files. | |
3570 | ||
6479260d JB |
3571 | 2009-01-01 Joel Brobecker <[email protected]> |
3572 | ||
3573 | Fix build failure in inf-ptrace.c. | |
3574 | * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo. | |
3575 | ||
4a70f654 JB |
3576 | 2010-01-01 Joel Brobecker <[email protected]> |
3577 | ||
3578 | * top.c (print_gdb_version): Update copyright year. | |
3579 | ||
b9ee2233 JB |
3580 | 2010-01-01 Joel Brobecker <[email protected]> |
3581 | ||
3582 | Fix break *FUN'address thread NUM. | |
3583 | * ada-lex.l (task): Expand rule to also match the thread keyword. | |
3584 | ||
70575d34 JB |
3585 | 2010-01-01 Joel Brobecker <[email protected]> |
3586 | ||
3587 | Fix break *FUN'address task NUM. | |
3588 | * ada-lex.l (task): New rule. | |
3589 | * ada-lang.c (valid_task_id): Make sure the Ada task list has | |
3590 | been built before using it. | |
3591 | ||
e1e4d4a4 | 3592 | For older changes see ChangeLog-2009. |
c906108c SS |
3593 | \f |
3594 | Local Variables: | |
3595 | mode: change-log | |
3596 | left-margin: 8 | |
3597 | fill-column: 74 | |
3598 | version-control: never | |
57da7796 | 3599 | coding: utf-8 |
c906108c | 3600 | End: |