Commit | Line | Data |
---|---|---|
7bfc9434 JB |
1 | 2011-01-21 Joel Brobecker <brobecker@adacore.com> |
2 | ||
3 | * inflow.c: Include "gdbcmd.h". | |
4 | (interactive_mode): New static global, moved here from top.c. | |
5 | (show_interactive_mode): New function, moved here from top.c. | |
6 | use gdb_has_a_terminal instead of input_from_terminal_p to | |
7 | determine the current mode. | |
8 | (gdb_has_a_terminal): Add handling of the "iteractive-mode" | |
9 | setting. | |
10 | (_initialize_inflow): Add the "set/show interactive-mode" | |
11 | commands. Moved here from top.c, after having adjusted slightly | |
12 | the help text. | |
13 | * top.c (interactive_mode, show_interactive_mode): Delete, moved | |
14 | to inflow.c. | |
15 | (input_from_terminal_p): Remove handling of "interactive-mode" | |
16 | setting, moved to infow.c. | |
17 | (init_main): Remove creation of the "set/show interactive-mode" | |
18 | commands, moved to inflow.c. | |
19 | ||
44603653 JB |
20 | 2011-01-19 Joel Brobecker <brobecker@adacore.com> |
21 | ||
22 | * NEWS: Add entry for native ia64-hpux support. | |
23 | ||
4694da01 TT |
24 | 2011-01-19 Tom Tromey <tromey@redhat.com> |
25 | ||
26 | PR mi/8618: | |
27 | * thread.c (free_thread): Free 'name'. | |
28 | (print_thread_info): Emit thread name. Change CLI output. | |
29 | (thread_name_command): New function. | |
30 | (do_captured_thread_select): Emit newline. | |
31 | (_initialize_thread): Register 'thread name' command. | |
32 | * target.h (struct target_ops) <to_thread_name>: New field. | |
33 | (target_thread_name): New macro. | |
34 | * target.c (update_current_target): Handle to_thread_name. | |
35 | * python/py-infthread.c (thpy_get_name): New function. | |
36 | (thpy_set_name): Likewise. | |
37 | (thread_object_getset): Add "name". | |
38 | * linux-nat.c (linux_nat_thread_name): New function. | |
39 | (linux_nat_add_target): Set to_thread_name. | |
40 | * gdbthread.h (struct thread_info) <name>: New field. | |
41 | ||
10d44370 JB |
42 | 2011-01-18 Joel Brobecker <brobecker@adacore.com> |
43 | ||
44 | * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast. | |
45 | (ada_val_print_1): Likewise. | |
46 | ||
e3acb115 JB |
47 | 2011-01-18 Joel Brobecker <brobecker@adacore.com> |
48 | ||
49 | * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue | |
50 | upper limit address is not greater than the function end address | |
51 | when the upper limit could not be computed using the debugging | |
52 | info. | |
53 | ||
dc92e161 TT |
54 | 2011-01-17 Tom Tromey <tromey@redhat.com> |
55 | ||
56 | * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use | |
57 | get_regcomp_error. | |
58 | * utils.c: Include gdb_regex.h. | |
59 | (do_regfree_cleanup): New function. | |
60 | (make_regfree_cleanup): Likewise. | |
61 | (get_regcomp_error): Likewise. | |
62 | * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare. | |
63 | ||
f55af66d TT |
64 | 2011-01-17 Tom Tromey <tromey@redhat.com> |
65 | ||
66 | * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call | |
67 | re_compile_fastmap. | |
68 | ||
a5a44b53 PM |
69 | 2011-01-17 Pierre Muller <muller@ics.u-strasbg.fr> |
70 | ||
71 | * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE | |
72 | for internal variables. | |
73 | (last_was_structop): New static variable. | |
74 | (COMPLETE): New token. | |
75 | (field_exp): New rule to group all '.' suffix handling. | |
76 | Add mark_struct_expression calls when approriate to be able | |
77 | to correctly find fields for completion. | |
78 | (yylex): Adapt to handle field completion and set INTVAR when | |
79 | required. | |
80 | ||
2c291032 YQ |
81 | 2011-01-14 Yao Qi <yao@codesourcery.com> |
82 | ||
83 | * arm-tdep.c (arm_register_reggroup_p): FPS register is in | |
84 | save_reggroup, restore_reggroup and all_reggroup. | |
85 | ||
447b483c JB |
86 | 2011-01-14 Joel Brobecker <brobecker@adacore.com> |
87 | ||
88 | * ada-valprint. (ada_printchar): Use the correct type length | |
89 | in call to ada_emit_char. | |
90 | * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR. | |
91 | ||
7b64a93b PM |
92 | 2011-01-14 Pierre Muller <muller@ics.u-strasbg.fr> |
93 | ||
94 | * solib-som.h (hpux_major_release): Declare variable here. | |
95 | * solib-som.c: Remove <sys/utsname.h> header. | |
96 | (DEFAULT_HPUX_MAJOR_RELEASE): New macro. | |
97 | (hpux_major_release): Make global, change default value to | |
98 | DEFAULT_HPUX_MAJOR_RELEASE. | |
99 | (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE. | |
100 | * hppa-hpux-nat.c: Add <sys/utsname.h> include. | |
101 | Add "solib-som.h" header. | |
102 | (set_hpux_major_release): New function. | |
103 | (_initialize_hppa_hpux_nat): Call set_hpux_major_release. | |
104 | ||
4e18c053 MF |
105 | 2011-01-14 Mike Frysinger <vapier@gentoo.org> |
106 | ||
107 | * configure.tgt (*-*-uclinux*): Match more Linux os targets | |
108 | ||
a9df6b22 JB |
109 | 2011-01-14 Joel Brobecker <brobecker@adacore.com> |
110 | ||
111 | * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing | |
112 | new-line at end of warning message. | |
113 | (ia64_hpux_store_register): Remove trailing new-line at end of | |
114 | error message. | |
115 | * ia64-hpux-tdep.c: Rephrase comment. | |
116 | * solib-ia64-hpux.c (struct dld_info): Change type of field | |
117 | dld_flags from "long long" to ULONGEST. | |
118 | ||
ecb956dd PA |
119 | 2011-01-14 Pedro Alves <pedro@codesourcery.com> |
120 | ||
121 | * target.h (deprecated_child_ops): Delete declaration. | |
122 | * target.c (deprecated_child_ops): Delete definition. | |
123 | ||
76adfcae PA |
124 | 2011-01-14 Pedro Alves <pedro@codesourcery.com> |
125 | ||
126 | * Makefile.in (hpux-thread.o): Delete rule. | |
127 | * configure.ac: Don't check for HPUX DCE threads support. | |
128 | * configure, config.in: Regenerate. | |
129 | * hppa-hpux-nat.c (child_suppress_run): Delete. | |
130 | (hppa_hpux_child_can_run): Delete. | |
131 | (_initialize_hppa_hpux_nat): Don't override to_can_run. | |
132 | * hpux-thread.c: Delete. | |
133 | ||
042e866e JB |
134 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
135 | ||
136 | * hpux-thread.c (hpux_pid_to_str): Delete. | |
137 | ||
4ffa5a33 JB |
138 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
139 | ||
140 | * ada-valprint.c (ada_emit_char): Remove strange code. | |
141 | Check that c is <= UCHAR_MAX before passing it to isascii. | |
142 | (char_at): Do not assume that TYPE_LEN is either 1 or 2. | |
143 | ||
de8fa76c JB |
144 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
145 | ||
146 | * top.c (input_from_terminal_p): Restrict the use of interactive_mode | |
147 | to the case where instream is stdin. | |
148 | ||
c4de7027 JB |
149 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
150 | ||
151 | * ia64-tdep.h (struct regcache): Forward declare. | |
152 | (struct ia64_infcall_ops): New struct type. | |
153 | (struct gdbarch_tdep): New fields "find_global_pointer_from_solib" | |
154 | and "infcall_ops". | |
155 | * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section): | |
156 | Renames ia64_find_global_pointer. | |
157 | (ia64_find_global_pointer, ia64_allocate_new_rse_frame) | |
158 | (ia64_store_argument_in_slot, ia64_set_function_addr: New function. | |
159 | (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops | |
160 | methods. | |
161 | (ia64_infcall_ops): New static global constant. | |
162 | (ia64_gdbarch_init): Set tdep->infcall_ops. | |
163 | * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function. | |
164 | (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing. | |
165 | * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h". | |
166 | (ia64_hpux_dummy_code): New static global constant. | |
167 | (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame) | |
168 | (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr) | |
169 | (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib): | |
170 | New function. | |
171 | (ia64_hpux_infcall_ops): New static global constant. | |
172 | (ia64_hpux_init_abi): Install gdbarch and tdep methods needed | |
173 | for inferior function calls to work properly on ia64-hpux. | |
174 | ||
77ca787b JB |
175 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
176 | ||
177 | * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS. | |
178 | * ia64-tdep.h (struct frame_info): forward declaration. | |
179 | (struct gdbarch_tdep): Add field size_of_register_frame. | |
180 | * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame | |
181 | to determine the size of the register frame. | |
182 | (ia64_size_of_register_frame): New function. | |
183 | (ia64_gdbarch_init): Set tdep->size_of_register_frame. | |
184 | * ia64-hpux-tdep.c: Include "target.h" and "frame.h". | |
185 | (IA64_HPUX_UREG_REASON): New macro. | |
186 | (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame): | |
187 | New functions. | |
188 | (ia64_hpux_init_abi): Set tdep->size_of_register_frame. | |
189 | * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function. | |
190 | (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS | |
191 | objects. | |
192 | ||
92c9a463 JB |
193 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
194 | ||
195 | Add support for ia64-hpux. | |
196 | * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c, | |
197 | ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files. | |
198 | ||
199 | * configure.host: Add handling for ia64-hpux hosts. Add associated | |
200 | floatformats. | |
201 | * configure.tgt: Add handling for ia64-hpux targets. | |
202 | * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o. | |
203 | (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h. | |
204 | (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c. | |
205 | ||
f688d93f JB |
206 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
207 | ||
208 | [ttrace] Compute thread list immediately after attach. | |
209 | * inf_ttrace_attach (inf_ttrace_create_threads_after_attach): | |
210 | New subprogram. | |
211 | (inf_ttrace_attach): Use it. | |
212 | ||
1b89e62f JB |
213 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
214 | ||
215 | * libunwind-frame.c (libunwind_frame_cache): Do not return NULL | |
216 | if we could not determine the frame's function address. Instead, | |
217 | use the frame's PC, and then continue. | |
218 | ||
3e5e6e2a JB |
219 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
220 | ||
221 | * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if | |
222 | not already defined. | |
223 | ||
825d6d8a JB |
224 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
225 | ||
226 | * ia64-tdep.c (ia64_struct_type_p): New function. | |
227 | (ia64_extract_return_value): Handle integral values that are | |
228 | less than 8 bytes long. | |
229 | (ia64_push_dummy_call): Likewise. | |
230 | ||
7458e667 JB |
231 | 2011-01-13 Joel Brobecker <brobecker@adacore.com> |
232 | ||
233 | * ia64-tdep.c (floatformat_ia64_ext_little): Renames | |
234 | floatformat_ia64_ext. | |
235 | (floatformat_ia64_ext_big): New static const. | |
236 | (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big. | |
237 | ||
1b05df00 TT |
238 | 2011-01-12 Tom Tromey <tromey@redhat.com> |
239 | ||
240 | * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error | |
241 | messages. | |
242 | * mi/mi-main.c (mi_cmd_thread_select): Fix error messages. | |
243 | (mi_cmd_thread_list_ids): Likewise. | |
244 | (mi_cmd_data_list_changed_registers): Likewise. | |
245 | (mi_cmd_data_list_register_values): Likewise. | |
246 | (mi_cmd_data_write_register_values): Likewise. | |
247 | (mi_cmd_data_evaluate_expression): Likewise. | |
248 | (mi_cmd_data_read_memory): Likewise. | |
249 | (mi_cmd_data_read_memory_bytes): Likewise. | |
250 | (mi_cmd_data_write_memory): Likewise. | |
251 | (mi_cmd_enable_timings): Likewise. | |
252 | * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages. | |
253 | * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages. | |
254 | (mi_cmd_var_delete): Likewise. | |
255 | (mi_cmd_var_set_format): Likewise. | |
256 | (mi_cmd_var_show_format): Likewise. | |
257 | (mi_cmd_var_info_num_children): Likewise. | |
258 | (mi_cmd_var_list_children): Likewise. | |
259 | (mi_cmd_var_info_type): Likewise. | |
260 | (mi_cmd_var_info_expression): Likewise. | |
261 | (mi_cmd_var_show_attributes): Likewise. | |
262 | (mi_cmd_var_assign): Likewise. | |
263 | (mi_cmd_var_update): Likewise. | |
264 | (mi_cmd_enable_pretty_printing): Likewise. | |
265 | (mi_cmd_var_set_update_range): Likewise. | |
266 | * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error | |
267 | messages. | |
268 | (mi_cmd_target_file_put): Likewise. | |
269 | (mi_cmd_target_file_delete): Likewise. | |
270 | * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error | |
271 | messages. | |
272 | (mi_cmd_stack_info_depth): Likewise. | |
273 | (mi_cmd_stack_list_locals): Likewise. | |
274 | (mi_cmd_stack_list_args): Likewise. | |
275 | (mi_cmd_stack_select_frame): Likewise. | |
276 | (mi_cmd_stack_select_frame): Likewise. | |
277 | (mi_cmd_stack_info_frame): Likewise. | |
278 | * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error | |
279 | messages. | |
280 | (mi_cmd_file_list_exec_source_files): Likewise. | |
281 | * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages. | |
282 | (mi_cmd_env_cd): Likewise. | |
283 | (mi_cmd_env_path): Likewise. | |
284 | (mi_cmd_env_dir): Likewise. | |
285 | (mi_cmd_inferior_tty_show): Likewise. | |
286 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages. | |
287 | * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages. | |
288 | (mi_cmd_break_watch): Likewise. | |
289 | ||
ad422571 TJB |
290 | 2011-01-12 Thiago Jung Bauermann <bauerman@br.ibm.com> |
291 | ||
292 | * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace. | |
293 | (ppc_linux_insert_hw_breakpoint): Likewise. | |
294 | (ppc_linux_remove_hw_breakpoint): Likewise. | |
295 | (ppc_linux_insert_watchpoint): Likewise. | |
296 | ||
c2ff108b JK |
297 | 2011-01-12 Andrew Burgess <aburgess@broadcom.com> |
298 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
299 | ||
300 | PR fortran/11104 and DWARF unbound arrays detection. | |
301 | * dwarf2read.c (read_subrange_type): Set zero length on unspecified | |
302 | upper bound. Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on | |
303 | unspecified upper bound. | |
304 | * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove | |
305 | variables array_size_array, tmp_type and offset_item. New variable | |
306 | array. Remove call to f77_get_upperbound. New variables array_type | |
307 | and index. Call value_subscripted_rvalue for each dimenasion. Remove | |
308 | the final call to deprecated_set_value_type. | |
309 | ||
41e8491f JK |
310 | 2011-01-12 Jan Kratochvil <jan.kratochvil@redhat.com> |
311 | ||
312 | Make value allocations more lazy. | |
313 | * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy | |
314 | instead of allocate_value and set_value_lazy when possible. | |
315 | * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy | |
316 | instead of allocate_value and set_value_lazy. | |
317 | * findvar.c (value_of_register_lazy): Likewise. | |
318 | (read_var_value): Remove V preallocation, call just check_typedef in | |
319 | advance. Move allocate_value to LOC_CONST, LOC_LABEL, | |
320 | LOC_CONST_BYTES. Use allocate_value_lazy in LOC_STATIC, LOC_ARG, | |
321 | LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK. Set ADDR instead of | |
322 | set_value_address and break in LOC_BLOCK. Use allocate_value_lazy and | |
323 | remove lval_memory set in LOC_REGPARM_ADDR. Use allocate_value_lazy | |
324 | in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT. Add setting lval_memory at | |
325 | the end, remove set_value_lazy there. | |
326 | * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy | |
327 | instead of allocate_value and set_value_lazy when possible. | |
328 | * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL. | |
329 | * value.c (allocate_computed_value): Use allocate_value_lazy instead | |
330 | of allocate_value and set_value_lazy. | |
331 | (value_from_contents_and_address): Use allocate_value_lazy instead of | |
332 | allocate_value and set_value_lazy when possible. | |
333 | ||
b716877b AB |
334 | 2011-01-12 Andrew Burgess <aburgess@broadcom.com> |
335 | ||
336 | * disasm.c (dump_insns): Support dumping opcodes for MI. | |
337 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control | |
338 | dumping of instruction opcodes. | |
339 | ||
d5ae309f JB |
340 | 2011-01-09 Robert Millan <rmh@gnu.org> (tiny patch) |
341 | ||
342 | * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi' | |
343 | appropiately. | |
344 | ||
98871305 TT |
345 | 2011-01-11 Tom Tromey <tromey@redhat.com> |
346 | ||
347 | * thread.c (do_captured_thread_select): Emit newline before | |
348 | printing frame. | |
349 | ||
c378eb4e MS |
350 | 2011-01-11 Michael Snyder <msnyder@vmware.com> |
351 | ||
352 | * s390-tdep.c: Comment cleanup, mostly periods and spaces. | |
353 | * score-tdep.c: Ditto. | |
354 | * score-tdep.h: Ditto. | |
355 | * ser-base.c: Ditto. | |
356 | * ser-go32.c: Ditto. | |
357 | * serial.c: Ditto. | |
358 | * serial.h: Ditto. | |
359 | * ser-mingw.c: Ditto. | |
360 | * ser-pipe.c: Ditto. | |
361 | * ser-tcp.c: Ditto. | |
362 | * ser-unix.c: Ditto. | |
363 | * sh64-tdep.c: Ditto. | |
364 | * shnbsd-nat.c: Ditto. | |
365 | * sh-tdep.c: Ditto. | |
366 | * sh-tdep.h: Ditto. | |
367 | * solib.c: Ditto. | |
368 | * solib-darwin.c: Ditto. | |
369 | * solib-frv.c: Ditto. | |
370 | * solib.h: Ditto. | |
371 | * solib-irix.c: Ditto. | |
372 | * solib-osf.c: Ditto. | |
373 | * solib-pa64.c: Ditto. | |
374 | * solib-som.c: Ditto. | |
375 | * solib-spu.c: Ditto. | |
376 | * solib-sunos.c: Ditto. | |
377 | * solib-svr4.c: Ditto. | |
378 | * solist.h: Ditto. | |
379 | * sol-thread.c: Ditto. | |
380 | * somread.c: Ditto. | |
381 | * source.c: Ditto. | |
382 | * source.h: Ditto. | |
383 | * sparc64-linux-tdep.c: Ditto. | |
384 | * sparc64-tdep.c: Ditto. | |
385 | * sparc-linux-nat.c: Ditto. | |
386 | * sparc-linux-tdep.c: Ditto. | |
387 | * sparc-sol2-nat.c: Ditto. | |
388 | * sparc-sol2-tdep.c: Ditto. | |
389 | * sparc-tdep.c: Ditto. | |
390 | * sparc-tdep.h: Ditto. | |
391 | * spu-tdep.c: Ditto. | |
392 | * stabsread.c: Ditto. | |
393 | * stabsread.h: Ditto. | |
394 | * stack.c: Ditto. | |
395 | * symfile.c: Ditto. | |
396 | * symfile.h: Ditto. | |
397 | * symmisc.c: Ditto. | |
398 | * symtab.c: Ditto. | |
399 | * symtab.h: Ditto. | |
400 | * target.c: Ditto. | |
401 | * target-descriptions.c: Ditto. | |
402 | * target-descriptions.h: Ditto. | |
403 | * target.h: Ditto. | |
404 | * target-memory.c: Ditto. | |
405 | * terminal.h: Ditto. | |
406 | * thread.c: Ditto. | |
407 | * top.c: Ditto. | |
408 | * tracepoint.c: Ditto. | |
409 | * tracepoint.h: Ditto. | |
410 | * trad-frame.h: Ditto. | |
411 | * typeprint.c: Ditto. | |
412 | ||
581e13c1 MS |
413 | 2011-01-11 Michael Snyder <msnyder@vmware.com> |
414 | ||
415 | * ui-file.c: Comment cleanup, mostly periods and spaces. | |
416 | * ui-file.h: Ditto. | |
417 | * ui-out.c: Ditto. | |
418 | * ui-out.h: Ditto. | |
419 | * utils.c: Ditto. | |
420 | * v850-tdep.c: Ditto. | |
421 | * valarith.c: Ditto. | |
422 | * valops.c: Ditto. | |
423 | * valprint.c: Ditto. | |
424 | * valprint.h: Ditto. | |
425 | * value.c: Ditto. | |
426 | * value.h: Ditto. | |
427 | * varobj.c: Ditto. | |
428 | * varobj.h: Ditto. | |
429 | * vax-tdep.c: Ditto. | |
430 | * vec.c: Ditto. | |
431 | * vec.h: Ditto. | |
432 | * version.h: Ditto. | |
433 | * windows-nat.c: Ditto. | |
434 | * windows-tdep.c: Ditto. | |
435 | * xcoffread.c: Ditto. | |
436 | * xcoffsolib.c: Ditto. | |
437 | * xml-support.c: Ditto. | |
438 | * xstormy16-tdep.c: Ditto. | |
439 | * xtensa-tdep.c: Ditto. | |
440 | * xtensa-tdep.h: Ditto. | |
441 | ||
90e4670f TJB |
442 | 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com> |
443 | ||
444 | * breakpoint.c (resources_needed_watchpoint): Fix indentation. | |
445 | * gdbtypes.c (is_scalar_type_recursive): Fix formatting. | |
446 | ||
e09342b5 TJB |
447 | 2011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com> |
448 | Thiago Jung Bauermann <bauerman@br.ibm.com> | |
449 | ||
450 | Implement support for PowerPC BookE ranged watchpoints. | |
451 | * breakpoint.h | |
452 | (struct breakpoint_ops) <resources_needed>: New method. | |
453 | Initialize to NULL in all existing breakpoint_ops instances. | |
454 | (struct breakpoint) <exact>: New field. | |
455 | (target_exact_watchpoints): Declare external global. | |
456 | * breakpoint.c (target_exact_watchpoints): New global flag. | |
457 | (update_watchpoint): Set b->type to bp_hardware_watchpoint and | |
458 | b->enable_state to bp_enabled before calling | |
459 | hw_watchpoint_used_count. | |
460 | (hw_watchpoint_used_count): Iterate over all bp_locations in a | |
461 | watchpoint. Call breakpoint's breakpoint_ops.resources_needed | |
462 | if available. | |
463 | (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte | |
464 | if the watchpoint is exact. | |
465 | (resources_needed_watchpoint): New function. | |
466 | (watchpoint_breakpoint_ops): Add resources_needed_watchpoint. | |
467 | (watch_command_1): Set b->exact if the user asked for an exact | |
468 | watchpoint and one can be set. | |
469 | (can_use_hardware_watchpoint): Add exact_watchpoints argument. | |
470 | Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if | |
471 | the user asks for an exact watchpoint and one can be set. Return | |
472 | number of needed debug registers to watch the expression. | |
473 | * gdbtypes.c (is_scalar_type): New function, based on | |
474 | valprint.c:scalar_type_p. | |
475 | (is_scalar_type_recursive): New function. | |
476 | * gdbtypes.h (is_scalar_type_recursive): Declare. | |
477 | * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always | |
478 | handle regions when ranged watchpoints are available. | |
479 | (create_watchpoint_request): New function. | |
480 | (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use | |
481 | create_watchpoint_request. | |
482 | * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function. | |
483 | (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the | |
484 | `set powerpc' and `show powerpc' commands. | |
485 | * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>: | |
486 | Mention documentation comment in the target macro. | |
487 | (target_region_ok_for_hw_watchpoint): Document return value. | |
488 | ||
9fa40276 TJB |
489 | 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com> |
490 | ||
491 | * breakpoint.c (update_watchpoint): Decide on using a software or | |
492 | hardware watchpoint after the bp_locations are created. | |
493 | ||
77b06cd7 TJB |
494 | 2010-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com> |
495 | ||
496 | Convert hardware watchpoints to use breakpoint_ops. | |
497 | * breakpoint.h (breakpoint_ops) <insert>: Rename to... | |
498 | <insert_location>: ... this. Return int instead of void. | |
499 | Accept pointer to struct bp_location instead of pointer to | |
500 | struct breakpoint. Adapt all implementations. | |
501 | (breakpoint_ops) <remove>: Rename to... | |
502 | <remove_location>: ... this. Accept pointer to struct bp_location | |
503 | instead of pointer to struct breakpoint. Adapt all implementations. | |
504 | * breakpoint.c (insert_catchpoint): Delete function. | |
505 | (insert_bp_location): Call the watchpoint or catchpoint's | |
506 | breakpoint_ops.insert method. | |
507 | (remove_breakpoint_1): Call the watchpoint or catchpoint's | |
508 | breakpoint_ops.remove method. | |
509 | (insert_watchpoint, remove_watchpoint): New functions. | |
510 | (watchpoint_breakpoint_ops): New structure. | |
511 | (watch_command_1): Initialize the OPS field. | |
512 | * inf-child.c (inf_child_insert_fork_catchpoint) | |
513 | (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint) | |
514 | (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint) | |
515 | (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint): | |
516 | Delete functions. | |
517 | (inf_child_target): Remove initialization of to_insert_fork_catchpoint, | |
518 | to_remove_fork_catchpoint, to_insert_vfork_catchpoint, | |
519 | to_remove_vfork_catchpoint, to_insert_exec_catchpoint, | |
520 | to_remove_exec_catchpoint and to_set_syscall_catchpoint. | |
521 | * target.c (update_current_target): Change default implementation of | |
522 | to_insert_fork_catchpoint, to_remove_fork_catchpoint, | |
523 | to_insert_vfork_catchpoint, to_remove_vfork_catchpoint, | |
524 | to_insert_exec_catchpoint, to_remove_exec_catchpoint and | |
525 | to_set_syscall_catchpoint to return_one. | |
526 | (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint) | |
527 | (debug_to_insert_exec_catchpoint): Report return value. | |
528 | * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint) | |
529 | (to_insert_exec_catchpoint): Change declaration to return int instead | |
530 | of void. | |
531 | ||
9b20d036 MS |
532 | 2011-01-11 Michael Snyder <msnyder@vmware.com> |
533 | ||
534 | * arm-tdep.c: Internationalization. | |
535 | * c-lang.c: Ditto. | |
536 | * charset.c: Ditto. | |
537 | * fork-child.c: Ditto. | |
538 | * nto-procfs.c: Ditto. | |
539 | * ppc-sysv-tdep.c: Ditto. | |
540 | * procfs.c: Ditto. | |
541 | * remote-mips.c: Ditto. | |
542 | * remote.c: Ditto. | |
543 | * rs6000-nat.c: Ditto. | |
544 | * rs6000-tdep.c: Ditto. | |
545 | * target.c: Ditto. | |
546 | * valops.c: Ditto. | |
547 | * value.c: Ditto. | |
548 | * xml-support.c: Ditto. | |
549 | * mi/mi-cmd-break.c: Ditto. | |
550 | * mi/mi-cmd-var.c: Ditto. | |
551 | * mi/mi-interp.c: Ditto. | |
552 | * mi/mi-main.c: Ditto. | |
553 | ||
dae477fe AB |
554 | 2011-01-11 Andrew Burgess <aburgess@broadcom.com> |
555 | ||
556 | * remote-sim.c (gdbsim_store_register): Update API to | |
557 | sim_store_register to check more error conditions. | |
558 | ||
0df8b418 MS |
559 | 2011-01-10 Michael Snyder <msnyder@vmware.com> |
560 | ||
561 | * nto-procfs.c: Comment cleanup, mostly periods and spaces. | |
562 | * nto-tdep.c: Ditto. | |
563 | * nto-tdep.h: Ditto. | |
564 | * objc-exp.y: Ditto. | |
565 | * objc-lang.c: Ditto. | |
566 | * objfiles.c: Ditto. | |
567 | * objfiles.h: Ditto. | |
568 | * observer.c: Ditto. | |
569 | * opencl-lang.c: Ditto. | |
570 | * osabi.c: Ditto. | |
571 | * parse.c: Ditto. | |
572 | * parser-defs.h: Ditto. | |
573 | * p-exp.y: Ditto. | |
574 | * p-lang.c: Ditto. | |
575 | * posix-hdep.c: Ditto. | |
576 | * ppcbug-rom.c: Ditto. | |
577 | * ppc-linux-nat.c: Ditto. | |
578 | * ppc-linux-tdep.c: Ditto. | |
579 | * ppc-linux-tdep.h: Ditto. | |
580 | * ppcnbsd-tdep.c: Ditto. | |
581 | * ppcobsd-tdep.c: Ditto. | |
582 | * ppcobsd-tdep.h: Ditto. | |
583 | * ppc-sysv-tdep.c: Ditto. | |
584 | * ppc-tdep.h: Ditto. | |
585 | * printcmd.c: Ditto. | |
586 | * proc-abi.c: Ditto. | |
587 | * proc-flags.c: Ditto. | |
588 | * procfs.c: Ditto. | |
589 | * proc-utils.h: Ditto. | |
590 | * progspace.h: Ditto. | |
591 | * prologue-value.c: Ditto. | |
592 | * prologue-value.h: Ditto. | |
593 | * psympriv.h: Ditto. | |
594 | * psymtab.c: Ditto. | |
595 | * p-typeprint.c: Ditto. | |
596 | * p-valprint.c: Ditto. | |
597 | * ravenscar-sparc-thread.c: Ditto. | |
598 | * ravenscar-thread.c: Ditto. | |
599 | * ravenscar-thread.h: Ditto. | |
600 | * record.c: Ditto. | |
601 | * regcache.c: Ditto. | |
602 | * regcache.h: Ditto. | |
603 | * remote.c: Ditto. | |
604 | * remote-fileio.c: Ditto. | |
605 | * remote-fileio.h: Ditto. | |
606 | * remote.h: Ditto. | |
607 | * remote-m32r-sdi.c: Ditto. | |
608 | * remote-mips.c: Ditto. | |
609 | * remote-sim.c: Ditto. | |
610 | * rs6000-aix-tdep.c: Ditto. | |
611 | * rs6000-nat.c: Ditto. | |
612 | * rs6000-tdep.c: Ditto. | |
613 | ||
0d7a18f7 MS |
614 | 2011-01-10 Michael Snyder <msnyder@vmware.com> |
615 | ||
616 | * charset.c (validate): Internationalization. | |
617 | * coffread.c (read_one_sym): Ditto. | |
618 | * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto. | |
619 | * h8300-tdep.c (H8300_extract_return_value): Ditto. | |
620 | * inflow.c (new_tty): Ditto. | |
621 | * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto. | |
622 | * m32c-tdep.c (m32c_return_value): Ditto. | |
623 | * mep-tdep.c (mep_store_return_value): Ditto. | |
624 | * score-tdep.c (score7_fetch_insn): Ditto. | |
625 | * ser-mingw.c (pipe_windows_open): Ditto. | |
626 | * sh64-tdep.c (sh64_extract_return_value): Ditto. | |
627 | * spu-tdep.c (spu_register_type): Ditto. | |
628 | * tracepoint.c (trace_find_command): Ditto. | |
629 | * valarith.c (value_pos): Ditto. | |
630 | ||
9a153e0b JB |
631 | 2011-01-10 Joel Brobecker <brobecker@adacore.com> |
632 | ||
633 | * ada-valprint.c (printstr): Minor comment reformatting. | |
634 | ||
35ecd2d6 MS |
635 | 2011-01-08 Michael Snyder <msnyder@vmware.com> |
636 | ||
637 | * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _ | |
638 | markup. | |
639 | ||
1777feb0 MS |
640 | 2011-01-08 Michael Snyder <msnyder@vmware.com> |
641 | ||
642 | * h8300-tdep.c: Comment cleanup, mostly periods and spaces. | |
643 | * hppa-hpux-tdep.c: Ditto. | |
644 | * hppa-linux-nat.c: Ditto. | |
645 | * hppa-linux-tdep.c: Ditto. | |
646 | * hppanbsd-tdep.c: Ditto. | |
647 | * hppa-tdep.c: Ditto. | |
648 | * hppa-tdep.h: Ditto. | |
649 | * hpux-thread.c: Ditto. | |
650 | * i386-cygwin-tdep.c: Ditto. | |
651 | * i386-darwin-nat.c: Ditto. | |
652 | * i386gnu-nat.c: Ditto. | |
653 | * i386-linux-nat.c: Ditto. | |
654 | * i386-linux-tdep.c: Ditto. | |
655 | * i386-nat.c: Ditto. | |
656 | * i386-nat.h: Ditto. | |
657 | * i386nbsd-tdep.c: Ditto. | |
658 | * i386-sol2-nat.c: Ditto. | |
659 | * i386-stub.c: Ditto. | |
660 | * i386-tdep.c: Ditto. | |
661 | * i386-tdep.h: Ditto. | |
662 | * i387-tdep.c: Ditto. | |
663 | * ia64-linux-nat.c: Ditto. | |
664 | * ia64-linux-tdep.c: Ditto. | |
665 | * ia64-tdep.c: Ditto. | |
666 | * infcall.c: Ditto. | |
667 | * infcall.h: Ditto. | |
668 | * infcmd.c: Ditto. | |
669 | * inferior.c: Ditto. | |
670 | * inferior.h: Ditto. | |
671 | * infloop.c: Ditto. | |
672 | * inflow.c: Ditto. | |
673 | * infrun.c: Ditto. | |
674 | * interps.c: Ditto. | |
675 | * interps.h: Ditto. | |
676 | * iq2000-tdep.c: Ditto. | |
677 | * irix5-nat.c: Ditto. | |
678 | * jit.c: Ditto. | |
679 | * jit.h: Ditto. | |
680 | * jv-exp.y: Ditto. | |
681 | * jv-lang.c: Ditto. | |
682 | * jv-lang.h: Ditto. | |
683 | * jv-typeprint.c: Ditto. | |
684 | * jv-valprint.c: Ditto. | |
685 | * language.c: Ditto. | |
686 | * language.h: Ditto. | |
687 | * linespec.c: Ditto. | |
688 | * linux-fork.c: Ditto. | |
689 | * linux-nat.c: Ditto. | |
690 | * linux-thread-db.c: Ditto. | |
691 | * lm32-tdep.c: Ditto. | |
692 | ||
025bb325 MS |
693 | 2011-01-08 Michael Snyder <msnyder@vmware.com> |
694 | ||
695 | * m2-exp.y: Comment cleanup, mostly periods and spaces. | |
696 | * m2-lang.c: Ditto. | |
697 | * m2-typeprint.c: Ditto. | |
698 | * m2-valprint.c: Ditto. | |
699 | * m32c-tdep.c: Ditto. | |
700 | * m32r-linux-nat.c: Ditto. | |
701 | * m32r-rom.c: Ditto. | |
702 | * m32r-tdep.c: Ditto. | |
703 | * m32r-tdep.h: Ditto. | |
704 | * m68hc11-tdep.c: Ditto. | |
705 | * m58klinux-nat.c: Ditto. | |
706 | * m68k-tdep.c: Ditto. | |
707 | * m88k-tdep.c: Ditto. | |
708 | * m88k-tdep.h: Ditto. | |
709 | * machoread.c: Ditto. | |
710 | * macrocmd.c: Ditto. | |
711 | * macroexp.c: Ditto. | |
712 | * macrotab.c: Ditto. | |
713 | * main.c: Ditto. | |
714 | * maint.c: Ditto. | |
715 | * mdebugread.c: Ditto. | |
716 | * mdebugread.h: Ditto. | |
717 | * memattr.c: Ditto. | |
718 | * memattr.h: Ditto. | |
719 | * memory-map.h: Ditto. | |
720 | * mep-tdep.c: Ditto. | |
721 | * microblaze-rom.c: Ditto. | |
722 | * microblaze-tdep.c: Ditto. | |
723 | * minsyms.c: Ditto. | |
724 | * mips-irix-tdep.c: Ditto. | |
725 | * mips-linux-nat.c: Ditto. | |
726 | * mips-linux-tdep.c: Ditto. | |
727 | * mips-linux-tdep.h: Ditto. | |
728 | * mipsnbsd-nat.c: Ditto. | |
729 | * mipsnbsd-tdep.c: Ditto. | |
730 | * mipsread.c: Ditto. | |
731 | * mips-tdep.c: Ditto. | |
732 | * mips-tdep.h: Ditto. | |
733 | * mn10300-linux-tdep.c: Ditto. | |
734 | * mn10300-tdep.c: Ditto. | |
735 | * mn10300-tdep.h: Ditto. | |
736 | * monitor.c: Ditto. | |
737 | * monitor.h: Ditto. | |
738 | * moxie-tdep.c: Ditto. | |
739 | * moxie-tdep.h: Ditto. | |
740 | * mt-tdep.c: Ditto. | |
741 | ||
1642781b MF |
742 | 2011-01-08 Mike Frysinger <vapier@gentoo.org> |
743 | ||
744 | * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name. | |
745 | ||
394b0adb JB |
746 | 2011-01-08 Robert Millan <rmh@gnu.org> |
747 | ||
748 | * fbsd-nat.c (fbsd_find_memory_regions): Fix typo. | |
749 | ||
b670013c MS |
750 | 2011-01-07 Michael Snyder <msnyder@vmware.com> |
751 | ||
752 | * charset.c (_initialize_charset): Fix typo in string. | |
753 | ||
a743e542 MS |
754 | 2011-01-07 Michael Snyder <msnyder@vmware.com> |
755 | ||
756 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message | |
757 | for i18n. | |
758 | * tui/tui-layout.c (tui_set_layout_for_display_command): | |
759 | Split line so that operator goes to beginning of line. | |
760 | * tui/tui-winsource.c (tui_horizontal_source_scroll): Move | |
761 | assignment out of if statement. | |
762 | ||
0963b4bd MS |
763 | 2011-01-07 Michael Snyder <msnyder@vmware.com> |
764 | ||
765 | * ada-lang.c: Comment cleanup, mostly periods and spaces. | |
766 | * ada-lang.h: Ditto. | |
767 | * ada-tasks.c: Ditto. | |
768 | * ada-valprint.c: Ditto. | |
769 | * aix-threads.c: Ditto. | |
770 | * alpha-linux-nat.c: Ditto. | |
771 | * alpha-linux-tdep.c: Ditto. | |
772 | * alpha-mdebug-tdep.c: Ditto. | |
773 | * alpha-nat.c: Ditto. | |
774 | * alpha-osf1-tdep.c: Ditto. | |
775 | * alpha-tdep.c: Ditto. | |
776 | * alphabsd-nat.c: Ditto. | |
777 | * alphabsd-tdep.c: Ditto. | |
778 | * amd64-darwin-tdep.c: Ditto. | |
779 | * amd64-linux-nat.c: Ditto. | |
780 | * amd64-linux-tdep.c: Ditto. | |
781 | * amd64-sol2-tdep.c: Ditto. | |
782 | * amd64-tdep.c: Ditto. | |
783 | * amd64-fbsd-tdep.c: Ditto. | |
784 | * amd64-nbsd-tdep.c: Ditto. | |
785 | * amd64-obsd-tdep.c: Ditto. | |
786 | * amd64-linux-nat.c: Ditto. | |
787 | * amd64-linux-tdep.c: Ditto. | |
788 | * arm-tdep.c: Ditto. | |
789 | * arm-tdep.h: Ditto. | |
790 | * armnbsd-nat.c: Ditto. | |
791 | * avr-tdep.c: Ditto. | |
792 | * bfin-tdep.c: Ditto. | |
793 | * bsd-kvm.c: Ditto. | |
794 | * c-typeprintc: Ditto. | |
795 | * c-valprint.c: Ditto. | |
796 | * coff-pe-read.h: Ditto. | |
797 | * coffreead.c: Ditto. | |
798 | * cris-tdep.c: Ditto. | |
799 | * d-lang.c: Ditto. | |
800 | * darwin-nat-info.c: Ditto. | |
801 | * darwin-nat.c: Ditto. | |
802 | * dbug-rom.c: Ditto. | |
803 | * dbxread.c: Ditto. | |
804 | * dcache.c: Ditto. | |
805 | * dcache.h: Ditto. | |
806 | * dec-thread.c: Ditto. | |
807 | * defs.h: Ditto. | |
808 | * demangle.c: Ditto. | |
809 | * dicos-tdep.c: Ditto. | |
810 | * dictionary.c: Ditto. | |
811 | * dictionary.h: Ditto. | |
812 | * dink32-rom.c: Ditto. | |
813 | * disasm.c: Ditto. | |
814 | * doublest.c: Ditto. | |
815 | * dsrec.c: Ditto. | |
816 | * dummy-frame.c: Ditto. | |
817 | * dwarf2-frame.c: Ditto. | |
818 | * dwarf2expr.c: Ditto. | |
819 | * dwarf2loc.c: Ditto. | |
820 | * dwarf2read.c: Ditto. | |
821 | * elfread.c: Ditto. | |
822 | * environ.c: Ditto. | |
823 | * eval.c: Ditto. | |
824 | * event-top.h: Ditto. | |
825 | * exceptions.c: Ditto. | |
826 | * exceptions.h: Ditto. | |
827 | * exec.c: Ditto. | |
828 | * expprint.c: Ditto. | |
829 | * expression.h: Ditto. | |
830 | * f-exp.y: Ditto. | |
831 | * f-lang.c: Ditto. | |
832 | * f-lang.h: Ditto. | |
833 | * f-typeprint.c: Ditto. | |
834 | * f-valprint.c: Ditto. | |
835 | * fbsd-nat.c: Ditto. | |
836 | * findvar.c: Ditto. | |
837 | * fork-child.c: Ditto. | |
838 | * frame.c: Ditto. | |
839 | * frame.h: Ditto. | |
840 | * frv-linux-tdep.c: Ditto. | |
841 | * frv-tdep.c: Ditto. | |
842 | * gcore.c: Ditto. | |
843 | * gdb-stabs.h: Ditto. | |
844 | * gdb_assert.h: Ditto. | |
845 | * gdb_string.h: Ditto. | |
846 | * gdb_thread_db.h: Ditto. | |
847 | * gdb_wait.h: Ditto. | |
848 | * gdbarch.sh: Ditto. | |
849 | * gdbcore.h: Ditto. | |
850 | * gdbthread.h: Ditto. | |
851 | * gdbtypes.c: Ditto. | |
852 | * gdbtypes.h: Ditto. | |
853 | * gnu-nat.c: Ditto. | |
854 | * gnu-nat.h: Ditto. | |
855 | * gnu-v2-abi.c: Ditto. | |
856 | * gnu-v3-abi.c: Ditto. | |
857 | * go32-nat.c: Ditto. | |
858 | * gdbarch.c: Regenerate. | |
859 | * gdbarch.h: Regenerate. | |
860 | ||
ac74f770 MS |
861 | 2011-01-07 Michael Snyder <msnyder@vmware.com> |
862 | ||
863 | * ax-gdb.c: Adjust some long output strings. | |
864 | * breakpoint.c: Ditto. | |
865 | * charset.c: Ditto. | |
866 | * cp-abi.c: Ditto. | |
867 | * infcall.c: Ditto. | |
868 | * infrun.c: Ditto. | |
869 | * linux-nat.c: Ditto. | |
870 | * solib-pa64.c: Ditto. | |
871 | * solib-som.c: Ditto. | |
872 | ||
d8e22779 TT |
873 | 2011-01-06 Tom Tromey <tromey@redhat.com> |
874 | ||
875 | PR python/12367: | |
876 | * NEWS: Add item. | |
877 | * python/python.c (GdbMethods): Add "newest_frame" method. | |
878 | * python/python-internal.h (gdbpy_newest_frame): Declare. | |
879 | * python/py-frame.c (gdbpy_newest_frame): New function. | |
880 | ||
a255712f PP |
881 | 2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com> |
882 | ||
883 | * jit.h (struct jit_code_entry): use ULONGEST for symfile_size. | |
884 | * jit.c (jit_debug): New variable. | |
885 | (show_jit_debug): New function. | |
886 | (struct target_buffer): Use ULONGEST. | |
887 | (bfd_open_from_target_memory): Likewise. | |
888 | (jit_register_code, jit_inferior_init): Add debug output. | |
889 | (_initialize_jit): Register "debug jit" command. | |
890 | ||
ccfc3d6e TT |
891 | 2011-01-06 Tom Tromey <tromey@redhat.com> |
892 | ||
893 | * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment. | |
894 | * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME | |
895 | and ARCH_FRAME. | |
896 | ||
57126e4a TT |
897 | 2011-01-06 Tom Tromey <tromey@redhat.com> |
898 | ||
899 | * python/py-frame.c (frapy_block): Use get_frame_block. | |
900 | ||
16dfc9ce JB |
901 | 2011-01-06 Joel Brobecker <brobecker@adacore.com> |
902 | ||
903 | Do not stop on SIGPRIO signals by default | |
904 | * infrun.c (_initialize_infrun): Unset signal_stop and | |
905 | signal_print for TARGET_SIGNAL_PRIO. | |
906 | ||
b1ce2347 JB |
907 | 2011-01-06 Joel Brobecker <brobecker@adacore.com> |
908 | ||
909 | * ada-tasks.c: Fix style violation in comment. | |
910 | ||
8f7e195f JB |
911 | 2011-01-06 Joel Brobecker <brobecker@adacore.com> |
912 | ||
913 | * linespec.c (decode_compound, find_method): Remove trailing \n | |
914 | at end of error string. | |
915 | * solib-irix.c (irix_current_sos): Likewise. | |
916 | * varobj.c (uninstall_variable): Likewise. | |
917 | ||
e9bdf92c JB |
918 | 2011-01-06 Joel Brobecker <brobecker@adacore.com> |
919 | ||
920 | * copyright.py: New script. | |
921 | * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc. | |
922 | Launch emacs without exec'ing. Call copyright.py afterwards. | |
923 | ||
3e43a32a MS |
924 | 2011-01-05 Michael Snyder <msnyder@vmware.com> |
925 | ||
926 | * addrmap.c: Shorten lines of >= 80 columns. | |
927 | * arch-utils.c: Ditto. | |
928 | * arch-utils.h: Ditto. | |
929 | * ax-gdb.c: Ditto. | |
930 | * ax-general.c: Ditto. | |
931 | * bcache.c: Ditto. | |
932 | * blockframe.c: Ditto. | |
933 | * breakpoint.c: Ditto. | |
934 | * buildsym.c: Ditto. | |
935 | * c-lang.c: Ditto. | |
936 | * c-typeprint.c: Ditto. | |
937 | * charset.c: Ditto. | |
938 | * coffread.c: Ditto. | |
939 | * command.h: Ditto. | |
940 | * corelow.c: Ditto. | |
941 | * cp-abi.c: Ditto. | |
942 | * cp-namespace.c: Ditto. | |
943 | * cp-support.c: Ditto. | |
944 | * dbug-rom.c: Ditto. | |
945 | * dbxread.c: Ditto. | |
946 | * defs.h: Ditto. | |
947 | * dfp.c: Ditto. | |
948 | * dfp.h: Ditto. | |
949 | * dictionary.c: Ditto. | |
950 | * disasm.c: Ditto. | |
951 | * doublest.c: Ditto. | |
952 | * dwarf2-frame.c: Ditto. | |
953 | * dwarf2expr.c: Ditto. | |
954 | * dwarf2loc.c: Ditto. | |
955 | * dwarf2read.c: Ditto. | |
956 | * elfread.c: Ditto. | |
957 | * eval.c: Ditto. | |
958 | * event-loop.c: Ditto. | |
959 | * event-loop.h: Ditto. | |
960 | * exceptions.h: Ditto. | |
961 | * exec.c: Ditto. | |
962 | * expprint.c: Ditto. | |
963 | * expression.h: Ditto. | |
964 | * f-lang.c: Ditto. | |
965 | * f-valprint.c: Ditto. | |
966 | * findcmd.c: Ditto. | |
967 | * frame-base.c: Ditto. | |
968 | * frame-unwind.c: Ditto. | |
969 | * frame-unwind.h: Ditto. | |
970 | * frame.c: Ditto. | |
971 | * frame.h: Ditto. | |
972 | * gcore.c: Ditto. | |
973 | * gdb-stabs.h: Ditto. | |
974 | * gdb_assert.h: Ditto. | |
975 | * gdb_dirent.h: Ditto. | |
976 | * gdb_obstack.h: Ditto. | |
977 | * gdbcore.h: Ditto. | |
978 | * gdbtypes.c: Ditto. | |
979 | * gdbtypes.h: Ditto. | |
980 | * inf-ttrace.c: Ditto. | |
981 | * infcall.c: Ditto. | |
982 | * infcmd.c: Ditto. | |
983 | * inflow.c: Ditto. | |
984 | * infrun.c: Ditto. | |
985 | * inline-frame.h: Ditto. | |
986 | * language.c: Ditto. | |
987 | * language.h: Ditto. | |
988 | * libunwind-frame.c: Ditto. | |
989 | * libunwind-frame.h: Ditto. | |
990 | * linespec.c: Ditto. | |
991 | * linux-nat.c: Ditto. | |
992 | * linux-nat.h: Ditto. | |
993 | * linux-thread-db.c: Ditto. | |
994 | * machoread.c: Ditto. | |
995 | * macroexp.c: Ditto. | |
996 | * macrotab.c: Ditto. | |
997 | * main.c: Ditto. | |
998 | * maint.c: Ditto. | |
999 | * mdebugread.c: Ditto. | |
1000 | * memattr.c: Ditto. | |
1001 | * minsyms.c: Ditto. | |
1002 | * monitor.c: Ditto. | |
1003 | * monitor.h: Ditto. | |
1004 | * objfiles.c: Ditto. | |
1005 | * objfiles.h: Ditto. | |
1006 | * osabi.c: Ditto. | |
1007 | * p-typeprint.c: Ditto. | |
1008 | * p-valprint.c: Ditto. | |
1009 | * parse.c: Ditto. | |
1010 | * printcmd.c: Ditto. | |
1011 | * proc-events.c: Ditto. | |
1012 | * procfs.c: Ditto. | |
1013 | * progspace.c: Ditto. | |
1014 | * progspace.h: Ditto. | |
1015 | * psympriv.h: Ditto. | |
1016 | * psymtab.c: Ditto. | |
1017 | * record.c: Ditto. | |
1018 | * regcache.c: Ditto. | |
1019 | * regcache.h: Ditto. | |
1020 | * remote-fileio.c: Ditto. | |
1021 | * remote.c: Ditto. | |
1022 | * ser-mingw.c: Ditto. | |
1023 | * ser-tcp.c: Ditto. | |
1024 | * ser-unix.c: Ditto. | |
1025 | * serial.c: Ditto. | |
1026 | * serial.h: Ditto. | |
1027 | * solib-frv.c: Ditto. | |
1028 | * solib-irix.c: Ditto. | |
1029 | * solib-osf.c: Ditto. | |
1030 | * solib-pa64.c: Ditto. | |
1031 | * solib-som.c: Ditto. | |
1032 | * solib-sunos.c: Ditto. | |
1033 | * solib-svr4.c: Ditto. | |
1034 | * solib-target.c: Ditto. | |
1035 | * solib.c: Ditto. | |
1036 | * somread.c: Ditto. | |
1037 | * source.c: Ditto. | |
1038 | * stabsread.c: Ditto. | |
1039 | * stabsread.c: Ditto. | |
1040 | * stack.c: Ditto. | |
1041 | * stack.h: Ditto. | |
1042 | * symfile-mem.c: Ditto. | |
1043 | * symfile.c: Ditto. | |
1044 | * symfile.h: Ditto. | |
1045 | * symmisc.c: Ditto. | |
1046 | * symtab.c: Ditto. | |
1047 | * symtab.h: Ditto. | |
1048 | * target-descriptions.c: Ditto. | |
1049 | * target-memory.c: Ditto. | |
1050 | * target.c: Ditto. | |
1051 | * target.h: Ditto. | |
1052 | * terminal.h: Ditto. | |
1053 | * thread.c: Ditto. | |
1054 | * top.c: Ditto. | |
1055 | * tracepoint.c: Ditto. | |
1056 | * tracepoint.h: Ditto. | |
1057 | * ui-file.c: Ditto. | |
1058 | * ui-file.h: Ditto. | |
1059 | * ui-out.h: Ditto. | |
1060 | * user-regs.c: Ditto. | |
1061 | * user-regs.h: Ditto. | |
1062 | * utils.c: Ditto. | |
1063 | * valarith.c: Ditto. | |
1064 | * valops.c: Ditto. | |
1065 | * valprint.c: Ditto. | |
1066 | * valprint.h: Ditto. | |
1067 | * value.c: Ditto. | |
1068 | * varobj.c: Ditto. | |
1069 | * varobj.h: Ditto. | |
1070 | * vec.h: Ditto. | |
1071 | * xcoffread.c: Ditto. | |
1072 | * xcoffsolib.c: Ditto. | |
1073 | * xcoffsolib.h: Ditto. | |
1074 | * xml-syscall.c: Ditto. | |
1075 | * xml-tdesc.c: Ditto. | |
1076 | ||
9a2b4c1b MS |
1077 | 2011-01-05 Michael Snyder <msnyder@vmware.com> |
1078 | ||
1079 | * cli/cli-cmds.c: Shorten lines of >= 80 columns. | |
1080 | * cli/cli-decode.c: Ditto. | |
1081 | * cli/cli-dump.c: Ditto. | |
1082 | * cli/cli-logging.c: Ditto. | |
1083 | * cli/cli-script.c: Ditto. | |
1084 | * cli/cli-setshow.c: Ditto. | |
1085 | * common/signals.c: Ditto. | |
1086 | * mi/mi-cmd-break.c: Ditto. | |
1087 | * mi/mi-cmd-disas.c: Ditto. | |
1088 | * mi/mi-cmd-stack.c: Ditto. | |
1089 | * mi/mi-cmd-var.c: Ditto. | |
1090 | * mi/mi-cmds.c: Ditto. | |
1091 | * mi/mi-common.h: Ditto. | |
1092 | * mi/mi-console.c: Ditto. | |
1093 | * mi/mi-interp.c: Ditto. | |
1094 | * mi/mi-main.c: Ditto. | |
1095 | * osf-share/cma_attr.c: Ditto. | |
1096 | * osf-share/cma_deb_core.h: Ditto. | |
1097 | * osf-share/cma_debug_client.h: Ditto. | |
1098 | * osf-share/cma_handle.h: Ditto. | |
1099 | * osf-share/cma_mutex.h: Ditto. | |
1100 | * osf-share/cma_stack_int.h: Ditto. | |
1101 | * osf-share/cma_tcb_defs.h: Ditto. | |
1102 | * python/py-auto-load.c: Ditto. | |
1103 | * python/py-breakpoint.c: Ditto. | |
1104 | * python/py-cmd.c: Ditto. | |
1105 | * python/py-frame.c: Ditto. | |
1106 | * python/py-objfile.c: Ditto. | |
1107 | * python/py-param.c: Ditto. | |
1108 | * python/py-progspace.c: Ditto. | |
1109 | * python/py-symbol.c: Ditto. | |
1110 | * python/py-value.c: Ditto. | |
1111 | * python/python-internal.h: Ditto. | |
1112 | * python/python.c: Ditto. | |
1113 | * tui/tui-data.c: Ditto. | |
1114 | * tui/tui-disasm.c: Ditto. | |
1115 | * tui/tui-hooks.c: Ditto. | |
1116 | * tui/tui-io.c: Ditto. | |
1117 | * tui/tui-layout.c: Ditto. | |
1118 | * tui/tui-regs.c: Ditto. | |
1119 | * tui/tui-source.c: Ditto. | |
1120 | * tui/tui-stack.c: Ditto. | |
1121 | * tui/tui-win.c: Ditto. | |
1122 | * tui/tui-windata.c: Ditto. | |
1123 | * tui/tui-winsource.c: Ditto. | |
1124 | ||
44944448 JB |
1125 | 2011-01-05 Joel Brobecker <brobecker@adacore.com> |
1126 | ||
1127 | * configure.ac, gdb.1: Copyright year update. | |
1128 | ||
ebedcab5 JK |
1129 | 2011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com> |
1130 | ||
1131 | * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables | |
1132 | this_pc_in_block, morestack_msym and morestack_name. Check for | |
1133 | "__morestack" minimal symbol there. | |
1134 | ||
e5cc9f32 JB |
1135 | 2011-01-03 Joel Brobecker <brobecker@adacore.com> |
1136 | ||
1137 | * symfile.c (find_sym_fns): Add call to dont_repeat. | |
1138 | ||
7b6bb8da JB |
1139 | 2011-01-01 Joel Brobecker <brobecker@adacore.com> |
1140 | ||
1141 | Copyright year update in most files (performed by copyright.sh). | |
1142 | ||
71ce852c JB |
1143 | 2011-01-01 Joel Brobecker <brobecker@adacore.com> |
1144 | ||
1145 | * top.c (print_gdb_version): Update copyright year in version output. | |
0e2de366 | 1146 | |
c3c1ebe8 | 1147 | For older changes see ChangeLog-2010. |
c906108c SS |
1148 | \f |
1149 | Local Variables: | |
1150 | mode: change-log | |
1151 | left-margin: 8 | |
1152 | fill-column: 74 | |
1153 | version-control: never | |
57da7796 | 1154 | coding: utf-8 |
c906108c | 1155 | End: |