2011-01-11 Michael Snyder <msnyder@vmware.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
c378eb4e
MS
12011-01-11 Michael Snyder <msnyder@vmware.com>
2
3 * s390-tdep.c: Comment cleanup, mostly periods and spaces.
4 * score-tdep.c: Ditto.
5 * score-tdep.h: Ditto.
6 * ser-base.c: Ditto.
7 * ser-go32.c: Ditto.
8 * serial.c: Ditto.
9 * serial.h: Ditto.
10 * ser-mingw.c: Ditto.
11 * ser-pipe.c: Ditto.
12 * ser-tcp.c: Ditto.
13 * ser-unix.c: Ditto.
14 * sh64-tdep.c: Ditto.
15 * shnbsd-nat.c: Ditto.
16 * sh-tdep.c: Ditto.
17 * sh-tdep.h: Ditto.
18 * solib.c: Ditto.
19 * solib-darwin.c: Ditto.
20 * solib-frv.c: Ditto.
21 * solib.h: Ditto.
22 * solib-irix.c: Ditto.
23 * solib-osf.c: Ditto.
24 * solib-pa64.c: Ditto.
25 * solib-som.c: Ditto.
26 * solib-spu.c: Ditto.
27 * solib-sunos.c: Ditto.
28 * solib-svr4.c: Ditto.
29 * solist.h: Ditto.
30 * sol-thread.c: Ditto.
31 * somread.c: Ditto.
32 * source.c: Ditto.
33 * source.h: Ditto.
34 * sparc64-linux-tdep.c: Ditto.
35 * sparc64-tdep.c: Ditto.
36 * sparc-linux-nat.c: Ditto.
37 * sparc-linux-tdep.c: Ditto.
38 * sparc-sol2-nat.c: Ditto.
39 * sparc-sol2-tdep.c: Ditto.
40 * sparc-tdep.c: Ditto.
41 * sparc-tdep.h: Ditto.
42 * spu-tdep.c: Ditto.
43 * stabsread.c: Ditto.
44 * stabsread.h: Ditto.
45 * stack.c: Ditto.
46 * symfile.c: Ditto.
47 * symfile.h: Ditto.
48 * symmisc.c: Ditto.
49 * symtab.c: Ditto.
50 * symtab.h: Ditto.
51 * target.c: Ditto.
52 * target-descriptions.c: Ditto.
53 * target-descriptions.h: Ditto.
54 * target.h: Ditto.
55 * target-memory.c: Ditto.
56 * terminal.h: Ditto.
57 * thread.c: Ditto.
58 * top.c: Ditto.
59 * tracepoint.c: Ditto.
60 * tracepoint.h: Ditto.
61 * trad-frame.h: Ditto.
62 * typeprint.c: Ditto.
63
581e13c1
MS
642011-01-11 Michael Snyder <msnyder@vmware.com>
65
66 * ui-file.c: Comment cleanup, mostly periods and spaces.
67 * ui-file.h: Ditto.
68 * ui-out.c: Ditto.
69 * ui-out.h: Ditto.
70 * utils.c: Ditto.
71 * v850-tdep.c: Ditto.
72 * valarith.c: Ditto.
73 * valops.c: Ditto.
74 * valprint.c: Ditto.
75 * valprint.h: Ditto.
76 * value.c: Ditto.
77 * value.h: Ditto.
78 * varobj.c: Ditto.
79 * varobj.h: Ditto.
80 * vax-tdep.c: Ditto.
81 * vec.c: Ditto.
82 * vec.h: Ditto.
83 * version.h: Ditto.
84 * windows-nat.c: Ditto.
85 * windows-tdep.c: Ditto.
86 * xcoffread.c: Ditto.
87 * xcoffsolib.c: Ditto.
88 * xml-support.c: Ditto.
89 * xstormy16-tdep.c: Ditto.
90 * xtensa-tdep.c: Ditto.
91 * xtensa-tdep.h: Ditto.
92
90e4670f
TJB
932011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
94
95 * breakpoint.c (resources_needed_watchpoint): Fix indentation.
96 * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
97
e09342b5
TJB
982011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
99 Thiago Jung Bauermann <bauerman@br.ibm.com>
100
101 Implement support for PowerPC BookE ranged watchpoints.
102 * breakpoint.h
103 (struct breakpoint_ops) <resources_needed>: New method.
104 Initialize to NULL in all existing breakpoint_ops instances.
105 (struct breakpoint) <exact>: New field.
106 (target_exact_watchpoints): Declare external global.
107 * breakpoint.c (target_exact_watchpoints): New global flag.
108 (update_watchpoint): Set b->type to bp_hardware_watchpoint and
109 b->enable_state to bp_enabled before calling
110 hw_watchpoint_used_count.
111 (hw_watchpoint_used_count): Iterate over all bp_locations in a
112 watchpoint. Call breakpoint's breakpoint_ops.resources_needed
113 if available.
114 (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte
115 if the watchpoint is exact.
116 (resources_needed_watchpoint): New function.
117 (watchpoint_breakpoint_ops): Add resources_needed_watchpoint.
118 (watch_command_1): Set b->exact if the user asked for an exact
119 watchpoint and one can be set.
120 (can_use_hardware_watchpoint): Add exact_watchpoints argument.
121 Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if
122 the user asks for an exact watchpoint and one can be set. Return
123 number of needed debug registers to watch the expression.
124 * gdbtypes.c (is_scalar_type): New function, based on
125 valprint.c:scalar_type_p.
126 (is_scalar_type_recursive): New function.
127 * gdbtypes.h (is_scalar_type_recursive): Declare.
128 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always
129 handle regions when ranged watchpoints are available.
130 (create_watchpoint_request): New function.
131 (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
132 create_watchpoint_request.
133 * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function.
134 (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the
135 `set powerpc' and `show powerpc' commands.
136 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
137 Mention documentation comment in the target macro.
138 (target_region_ok_for_hw_watchpoint): Document return value.
139
9fa40276
TJB
1402011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
141
142 * breakpoint.c (update_watchpoint): Decide on using a software or
143 hardware watchpoint after the bp_locations are created.
144
77b06cd7
TJB
1452010-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
146
147 Convert hardware watchpoints to use breakpoint_ops.
148 * breakpoint.h (breakpoint_ops) <insert>: Rename to...
149 <insert_location>: ... this. Return int instead of void.
150 Accept pointer to struct bp_location instead of pointer to
151 struct breakpoint. Adapt all implementations.
152 (breakpoint_ops) <remove>: Rename to...
153 <remove_location>: ... this. Accept pointer to struct bp_location
154 instead of pointer to struct breakpoint. Adapt all implementations.
155 * breakpoint.c (insert_catchpoint): Delete function.
156 (insert_bp_location): Call the watchpoint or catchpoint's
157 breakpoint_ops.insert method.
158 (remove_breakpoint_1): Call the watchpoint or catchpoint's
159 breakpoint_ops.remove method.
160 (insert_watchpoint, remove_watchpoint): New functions.
161 (watchpoint_breakpoint_ops): New structure.
162 (watch_command_1): Initialize the OPS field.
163 * inf-child.c (inf_child_insert_fork_catchpoint)
164 (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint)
165 (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint)
166 (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint):
167 Delete functions.
168 (inf_child_target): Remove initialization of to_insert_fork_catchpoint,
169 to_remove_fork_catchpoint, to_insert_vfork_catchpoint,
170 to_remove_vfork_catchpoint, to_insert_exec_catchpoint,
171 to_remove_exec_catchpoint and to_set_syscall_catchpoint.
172 * target.c (update_current_target): Change default implementation of
173 to_insert_fork_catchpoint, to_remove_fork_catchpoint,
174 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
175 to_insert_exec_catchpoint, to_remove_exec_catchpoint and
176 to_set_syscall_catchpoint to return_one.
177 (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint)
178 (debug_to_insert_exec_catchpoint): Report return value.
179 * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint)
180 (to_insert_exec_catchpoint): Change declaration to return int instead
181 of void.
182
9b20d036
MS
1832011-01-11 Michael Snyder <msnyder@vmware.com>
184
185 * arm-tdep.c: Internationalization.
186 * c-lang.c: Ditto.
187 * charset.c: Ditto.
188 * fork-child.c: Ditto.
189 * nto-procfs.c: Ditto.
190 * ppc-sysv-tdep.c: Ditto.
191 * procfs.c: Ditto.
192 * remote-mips.c: Ditto.
193 * remote.c: Ditto.
194 * rs6000-nat.c: Ditto.
195 * rs6000-tdep.c: Ditto.
196 * target.c: Ditto.
197 * valops.c: Ditto.
198 * value.c: Ditto.
199 * xml-support.c: Ditto.
200 * mi/mi-cmd-break.c: Ditto.
201 * mi/mi-cmd-var.c: Ditto.
202 * mi/mi-interp.c: Ditto.
203 * mi/mi-main.c: Ditto.
204
dae477fe
AB
2052011-01-11 Andrew Burgess <aburgess@broadcom.com>
206
207 * remote-sim.c (gdbsim_store_register): Update API to
208 sim_store_register to check more error conditions.
209
0df8b418
MS
2102011-01-10 Michael Snyder <msnyder@vmware.com>
211
212 * nto-procfs.c: Comment cleanup, mostly periods and spaces.
213 * nto-tdep.c: Ditto.
214 * nto-tdep.h: Ditto.
215 * objc-exp.y: Ditto.
216 * objc-lang.c: Ditto.
217 * objfiles.c: Ditto.
218 * objfiles.h: Ditto.
219 * observer.c: Ditto.
220 * opencl-lang.c: Ditto.
221 * osabi.c: Ditto.
222 * parse.c: Ditto.
223 * parser-defs.h: Ditto.
224 * p-exp.y: Ditto.
225 * p-lang.c: Ditto.
226 * posix-hdep.c: Ditto.
227 * ppcbug-rom.c: Ditto.
228 * ppc-linux-nat.c: Ditto.
229 * ppc-linux-tdep.c: Ditto.
230 * ppc-linux-tdep.h: Ditto.
231 * ppcnbsd-tdep.c: Ditto.
232 * ppcobsd-tdep.c: Ditto.
233 * ppcobsd-tdep.h: Ditto.
234 * ppc-sysv-tdep.c: Ditto.
235 * ppc-tdep.h: Ditto.
236 * printcmd.c: Ditto.
237 * proc-abi.c: Ditto.
238 * proc-flags.c: Ditto.
239 * procfs.c: Ditto.
240 * proc-utils.h: Ditto.
241 * progspace.h: Ditto.
242 * prologue-value.c: Ditto.
243 * prologue-value.h: Ditto.
244 * psympriv.h: Ditto.
245 * psymtab.c: Ditto.
246 * p-typeprint.c: Ditto.
247 * p-valprint.c: Ditto.
248 * ravenscar-sparc-thread.c: Ditto.
249 * ravenscar-thread.c: Ditto.
250 * ravenscar-thread.h: Ditto.
251 * record.c: Ditto.
252 * regcache.c: Ditto.
253 * regcache.h: Ditto.
254 * remote.c: Ditto.
255 * remote-fileio.c: Ditto.
256 * remote-fileio.h: Ditto.
257 * remote.h: Ditto.
258 * remote-m32r-sdi.c: Ditto.
259 * remote-mips.c: Ditto.
260 * remote-sim.c: Ditto.
261 * rs6000-aix-tdep.c: Ditto.
262 * rs6000-nat.c: Ditto.
263 * rs6000-tdep.c: Ditto.
264
0d7a18f7
MS
2652011-01-10 Michael Snyder <msnyder@vmware.com>
266
267 * charset.c (validate): Internationalization.
268 * coffread.c (read_one_sym): Ditto.
269 * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
270 * h8300-tdep.c (H8300_extract_return_value): Ditto.
271 * inflow.c (new_tty): Ditto.
272 * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
273 * m32c-tdep.c (m32c_return_value): Ditto.
274 * mep-tdep.c (mep_store_return_value): Ditto.
275 * score-tdep.c (score7_fetch_insn): Ditto.
276 * ser-mingw.c (pipe_windows_open): Ditto.
277 * sh64-tdep.c (sh64_extract_return_value): Ditto.
278 * spu-tdep.c (spu_register_type): Ditto.
279 * tracepoint.c (trace_find_command): Ditto.
280 * valarith.c (value_pos): Ditto.
281
9a153e0b
JB
2822011-01-10 Joel Brobecker <brobecker@adacore.com>
283
284 * ada-valprint.c (printstr): Minor comment reformatting.
285
35ecd2d6
MS
2862011-01-08 Michael Snyder <msnyder@vmware.com>
287
288 * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _
289 markup.
290
1777feb0
MS
2912011-01-08 Michael Snyder <msnyder@vmware.com>
292
293 * h8300-tdep.c: Comment cleanup, mostly periods and spaces.
294 * hppa-hpux-tdep.c: Ditto.
295 * hppa-linux-nat.c: Ditto.
296 * hppa-linux-tdep.c: Ditto.
297 * hppanbsd-tdep.c: Ditto.
298 * hppa-tdep.c: Ditto.
299 * hppa-tdep.h: Ditto.
300 * hpux-thread.c: Ditto.
301 * i386-cygwin-tdep.c: Ditto.
302 * i386-darwin-nat.c: Ditto.
303 * i386gnu-nat.c: Ditto.
304 * i386-linux-nat.c: Ditto.
305 * i386-linux-tdep.c: Ditto.
306 * i386-nat.c: Ditto.
307 * i386-nat.h: Ditto.
308 * i386nbsd-tdep.c: Ditto.
309 * i386-sol2-nat.c: Ditto.
310 * i386-stub.c: Ditto.
311 * i386-tdep.c: Ditto.
312 * i386-tdep.h: Ditto.
313 * i387-tdep.c: Ditto.
314 * ia64-linux-nat.c: Ditto.
315 * ia64-linux-tdep.c: Ditto.
316 * ia64-tdep.c: Ditto.
317 * infcall.c: Ditto.
318 * infcall.h: Ditto.
319 * infcmd.c: Ditto.
320 * inferior.c: Ditto.
321 * inferior.h: Ditto.
322 * infloop.c: Ditto.
323 * inflow.c: Ditto.
324 * infrun.c: Ditto.
325 * interps.c: Ditto.
326 * interps.h: Ditto.
327 * iq2000-tdep.c: Ditto.
328 * irix5-nat.c: Ditto.
329 * jit.c: Ditto.
330 * jit.h: Ditto.
331 * jv-exp.y: Ditto.
332 * jv-lang.c: Ditto.
333 * jv-lang.h: Ditto.
334 * jv-typeprint.c: Ditto.
335 * jv-valprint.c: Ditto.
336 * language.c: Ditto.
337 * language.h: Ditto.
338 * linespec.c: Ditto.
339 * linux-fork.c: Ditto.
340 * linux-nat.c: Ditto.
341 * linux-thread-db.c: Ditto.
342 * lm32-tdep.c: Ditto.
343
025bb325
MS
3442011-01-08 Michael Snyder <msnyder@vmware.com>
345
346 * m2-exp.y: Comment cleanup, mostly periods and spaces.
347 * m2-lang.c: Ditto.
348 * m2-typeprint.c: Ditto.
349 * m2-valprint.c: Ditto.
350 * m32c-tdep.c: Ditto.
351 * m32r-linux-nat.c: Ditto.
352 * m32r-rom.c: Ditto.
353 * m32r-tdep.c: Ditto.
354 * m32r-tdep.h: Ditto.
355 * m68hc11-tdep.c: Ditto.
356 * m58klinux-nat.c: Ditto.
357 * m68k-tdep.c: Ditto.
358 * m88k-tdep.c: Ditto.
359 * m88k-tdep.h: Ditto.
360 * machoread.c: Ditto.
361 * macrocmd.c: Ditto.
362 * macroexp.c: Ditto.
363 * macrotab.c: Ditto.
364 * main.c: Ditto.
365 * maint.c: Ditto.
366 * mdebugread.c: Ditto.
367 * mdebugread.h: Ditto.
368 * memattr.c: Ditto.
369 * memattr.h: Ditto.
370 * memory-map.h: Ditto.
371 * mep-tdep.c: Ditto.
372 * microblaze-rom.c: Ditto.
373 * microblaze-tdep.c: Ditto.
374 * minsyms.c: Ditto.
375 * mips-irix-tdep.c: Ditto.
376 * mips-linux-nat.c: Ditto.
377 * mips-linux-tdep.c: Ditto.
378 * mips-linux-tdep.h: Ditto.
379 * mipsnbsd-nat.c: Ditto.
380 * mipsnbsd-tdep.c: Ditto.
381 * mipsread.c: Ditto.
382 * mips-tdep.c: Ditto.
383 * mips-tdep.h: Ditto.
384 * mn10300-linux-tdep.c: Ditto.
385 * mn10300-tdep.c: Ditto.
386 * mn10300-tdep.h: Ditto.
387 * monitor.c: Ditto.
388 * monitor.h: Ditto.
389 * moxie-tdep.c: Ditto.
390 * moxie-tdep.h: Ditto.
391 * mt-tdep.c: Ditto.
392
1642781b
MF
3932011-01-08 Mike Frysinger <vapier@gentoo.org>
394
395 * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name.
396
394b0adb
JB
3972011-01-08 Robert Millan <rmh@gnu.org>
398
399 * fbsd-nat.c (fbsd_find_memory_regions): Fix typo.
400
b670013c
MS
4012011-01-07 Michael Snyder <msnyder@vmware.com>
402
403 * charset.c (_initialize_charset): Fix typo in string.
404
a743e542
MS
4052011-01-07 Michael Snyder <msnyder@vmware.com>
406
407 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
408 for i18n.
409 * tui/tui-layout.c (tui_set_layout_for_display_command):
410 Split line so that operator goes to beginning of line.
411 * tui/tui-winsource.c (tui_horizontal_source_scroll): Move
412 assignment out of if statement.
413
0963b4bd
MS
4142011-01-07 Michael Snyder <msnyder@vmware.com>
415
416 * ada-lang.c: Comment cleanup, mostly periods and spaces.
417 * ada-lang.h: Ditto.
418 * ada-tasks.c: Ditto.
419 * ada-valprint.c: Ditto.
420 * aix-threads.c: Ditto.
421 * alpha-linux-nat.c: Ditto.
422 * alpha-linux-tdep.c: Ditto.
423 * alpha-mdebug-tdep.c: Ditto.
424 * alpha-nat.c: Ditto.
425 * alpha-osf1-tdep.c: Ditto.
426 * alpha-tdep.c: Ditto.
427 * alphabsd-nat.c: Ditto.
428 * alphabsd-tdep.c: Ditto.
429 * amd64-darwin-tdep.c: Ditto.
430 * amd64-linux-nat.c: Ditto.
431 * amd64-linux-tdep.c: Ditto.
432 * amd64-sol2-tdep.c: Ditto.
433 * amd64-tdep.c: Ditto.
434 * amd64-fbsd-tdep.c: Ditto.
435 * amd64-nbsd-tdep.c: Ditto.
436 * amd64-obsd-tdep.c: Ditto.
437 * amd64-linux-nat.c: Ditto.
438 * amd64-linux-tdep.c: Ditto.
439 * arm-tdep.c: Ditto.
440 * arm-tdep.h: Ditto.
441 * armnbsd-nat.c: Ditto.
442 * avr-tdep.c: Ditto.
443 * bfin-tdep.c: Ditto.
444 * bsd-kvm.c: Ditto.
445 * c-typeprintc: Ditto.
446 * c-valprint.c: Ditto.
447 * coff-pe-read.h: Ditto.
448 * coffreead.c: Ditto.
449 * cris-tdep.c: Ditto.
450 * d-lang.c: Ditto.
451 * darwin-nat-info.c: Ditto.
452 * darwin-nat.c: Ditto.
453 * dbug-rom.c: Ditto.
454 * dbxread.c: Ditto.
455 * dcache.c: Ditto.
456 * dcache.h: Ditto.
457 * dec-thread.c: Ditto.
458 * defs.h: Ditto.
459 * demangle.c: Ditto.
460 * dicos-tdep.c: Ditto.
461 * dictionary.c: Ditto.
462 * dictionary.h: Ditto.
463 * dink32-rom.c: Ditto.
464 * disasm.c: Ditto.
465 * doublest.c: Ditto.
466 * dsrec.c: Ditto.
467 * dummy-frame.c: Ditto.
468 * dwarf2-frame.c: Ditto.
469 * dwarf2expr.c: Ditto.
470 * dwarf2loc.c: Ditto.
471 * dwarf2read.c: Ditto.
472 * elfread.c: Ditto.
473 * environ.c: Ditto.
474 * eval.c: Ditto.
475 * event-top.h: Ditto.
476 * exceptions.c: Ditto.
477 * exceptions.h: Ditto.
478 * exec.c: Ditto.
479 * expprint.c: Ditto.
480 * expression.h: Ditto.
481 * f-exp.y: Ditto.
482 * f-lang.c: Ditto.
483 * f-lang.h: Ditto.
484 * f-typeprint.c: Ditto.
485 * f-valprint.c: Ditto.
486 * fbsd-nat.c: Ditto.
487 * findvar.c: Ditto.
488 * fork-child.c: Ditto.
489 * frame.c: Ditto.
490 * frame.h: Ditto.
491 * frv-linux-tdep.c: Ditto.
492 * frv-tdep.c: Ditto.
493 * gcore.c: Ditto.
494 * gdb-stabs.h: Ditto.
495 * gdb_assert.h: Ditto.
496 * gdb_string.h: Ditto.
497 * gdb_thread_db.h: Ditto.
498 * gdb_wait.h: Ditto.
499 * gdbarch.sh: Ditto.
500 * gdbcore.h: Ditto.
501 * gdbthread.h: Ditto.
502 * gdbtypes.c: Ditto.
503 * gdbtypes.h: Ditto.
504 * gnu-nat.c: Ditto.
505 * gnu-nat.h: Ditto.
506 * gnu-v2-abi.c: Ditto.
507 * gnu-v3-abi.c: Ditto.
508 * go32-nat.c: Ditto.
509 * gdbarch.c: Regenerate.
510 * gdbarch.h: Regenerate.
511
ac74f770
MS
5122011-01-07 Michael Snyder <msnyder@vmware.com>
513
514 * ax-gdb.c: Adjust some long output strings.
515 * breakpoint.c: Ditto.
516 * charset.c: Ditto.
517 * cp-abi.c: Ditto.
518 * infcall.c: Ditto.
519 * infrun.c: Ditto.
520 * linux-nat.c: Ditto.
521 * solib-pa64.c: Ditto.
522 * solib-som.c: Ditto.
523
d8e22779
TT
5242011-01-06 Tom Tromey <tromey@redhat.com>
525
526 PR python/12367:
527 * NEWS: Add item.
528 * python/python.c (GdbMethods): Add "newest_frame" method.
529 * python/python-internal.h (gdbpy_newest_frame): Declare.
530 * python/py-frame.c (gdbpy_newest_frame): New function.
531
a255712f
PP
5322010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
533
534 * jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
535 * jit.c (jit_debug): New variable.
536 (show_jit_debug): New function.
537 (struct target_buffer): Use ULONGEST.
538 (bfd_open_from_target_memory): Likewise.
539 (jit_register_code, jit_inferior_init): Add debug output.
540 (_initialize_jit): Register "debug jit" command.
541
ccfc3d6e
TT
5422011-01-06 Tom Tromey <tromey@redhat.com>
543
544 * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
545 * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
546 and ARCH_FRAME.
547
57126e4a
TT
5482011-01-06 Tom Tromey <tromey@redhat.com>
549
550 * python/py-frame.c (frapy_block): Use get_frame_block.
551
16dfc9ce
JB
5522011-01-06 Joel Brobecker <brobecker@adacore.com>
553
554 Do not stop on SIGPRIO signals by default
555 * infrun.c (_initialize_infrun): Unset signal_stop and
556 signal_print for TARGET_SIGNAL_PRIO.
557
b1ce2347
JB
5582011-01-06 Joel Brobecker <brobecker@adacore.com>
559
560 * ada-tasks.c: Fix style violation in comment.
561
8f7e195f
JB
5622011-01-06 Joel Brobecker <brobecker@adacore.com>
563
564 * linespec.c (decode_compound, find_method): Remove trailing \n
565 at end of error string.
566 * solib-irix.c (irix_current_sos): Likewise.
567 * varobj.c (uninstall_variable): Likewise.
568
e9bdf92c
JB
5692011-01-06 Joel Brobecker <brobecker@adacore.com>
570
571 * copyright.py: New script.
572 * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc.
573 Launch emacs without exec'ing. Call copyright.py afterwards.
574
3e43a32a
MS
5752011-01-05 Michael Snyder <msnyder@vmware.com>
576
577 * addrmap.c: Shorten lines of >= 80 columns.
578 * arch-utils.c: Ditto.
579 * arch-utils.h: Ditto.
580 * ax-gdb.c: Ditto.
581 * ax-general.c: Ditto.
582 * bcache.c: Ditto.
583 * blockframe.c: Ditto.
584 * breakpoint.c: Ditto.
585 * buildsym.c: Ditto.
586 * c-lang.c: Ditto.
587 * c-typeprint.c: Ditto.
588 * charset.c: Ditto.
589 * coffread.c: Ditto.
590 * command.h: Ditto.
591 * corelow.c: Ditto.
592 * cp-abi.c: Ditto.
593 * cp-namespace.c: Ditto.
594 * cp-support.c: Ditto.
595 * dbug-rom.c: Ditto.
596 * dbxread.c: Ditto.
597 * defs.h: Ditto.
598 * dfp.c: Ditto.
599 * dfp.h: Ditto.
600 * dictionary.c: Ditto.
601 * disasm.c: Ditto.
602 * doublest.c: Ditto.
603 * dwarf2-frame.c: Ditto.
604 * dwarf2expr.c: Ditto.
605 * dwarf2loc.c: Ditto.
606 * dwarf2read.c: Ditto.
607 * elfread.c: Ditto.
608 * eval.c: Ditto.
609 * event-loop.c: Ditto.
610 * event-loop.h: Ditto.
611 * exceptions.h: Ditto.
612 * exec.c: Ditto.
613 * expprint.c: Ditto.
614 * expression.h: Ditto.
615 * f-lang.c: Ditto.
616 * f-valprint.c: Ditto.
617 * findcmd.c: Ditto.
618 * frame-base.c: Ditto.
619 * frame-unwind.c: Ditto.
620 * frame-unwind.h: Ditto.
621 * frame.c: Ditto.
622 * frame.h: Ditto.
623 * gcore.c: Ditto.
624 * gdb-stabs.h: Ditto.
625 * gdb_assert.h: Ditto.
626 * gdb_dirent.h: Ditto.
627 * gdb_obstack.h: Ditto.
628 * gdbcore.h: Ditto.
629 * gdbtypes.c: Ditto.
630 * gdbtypes.h: Ditto.
631 * inf-ttrace.c: Ditto.
632 * infcall.c: Ditto.
633 * infcmd.c: Ditto.
634 * inflow.c: Ditto.
635 * infrun.c: Ditto.
636 * inline-frame.h: Ditto.
637 * language.c: Ditto.
638 * language.h: Ditto.
639 * libunwind-frame.c: Ditto.
640 * libunwind-frame.h: Ditto.
641 * linespec.c: Ditto.
642 * linux-nat.c: Ditto.
643 * linux-nat.h: Ditto.
644 * linux-thread-db.c: Ditto.
645 * machoread.c: Ditto.
646 * macroexp.c: Ditto.
647 * macrotab.c: Ditto.
648 * main.c: Ditto.
649 * maint.c: Ditto.
650 * mdebugread.c: Ditto.
651 * memattr.c: Ditto.
652 * minsyms.c: Ditto.
653 * monitor.c: Ditto.
654 * monitor.h: Ditto.
655 * objfiles.c: Ditto.
656 * objfiles.h: Ditto.
657 * osabi.c: Ditto.
658 * p-typeprint.c: Ditto.
659 * p-valprint.c: Ditto.
660 * parse.c: Ditto.
661 * printcmd.c: Ditto.
662 * proc-events.c: Ditto.
663 * procfs.c: Ditto.
664 * progspace.c: Ditto.
665 * progspace.h: Ditto.
666 * psympriv.h: Ditto.
667 * psymtab.c: Ditto.
668 * record.c: Ditto.
669 * regcache.c: Ditto.
670 * regcache.h: Ditto.
671 * remote-fileio.c: Ditto.
672 * remote.c: Ditto.
673 * ser-mingw.c: Ditto.
674 * ser-tcp.c: Ditto.
675 * ser-unix.c: Ditto.
676 * serial.c: Ditto.
677 * serial.h: Ditto.
678 * solib-frv.c: Ditto.
679 * solib-irix.c: Ditto.
680 * solib-osf.c: Ditto.
681 * solib-pa64.c: Ditto.
682 * solib-som.c: Ditto.
683 * solib-sunos.c: Ditto.
684 * solib-svr4.c: Ditto.
685 * solib-target.c: Ditto.
686 * solib.c: Ditto.
687 * somread.c: Ditto.
688 * source.c: Ditto.
689 * stabsread.c: Ditto.
690 * stabsread.c: Ditto.
691 * stack.c: Ditto.
692 * stack.h: Ditto.
693 * symfile-mem.c: Ditto.
694 * symfile.c: Ditto.
695 * symfile.h: Ditto.
696 * symmisc.c: Ditto.
697 * symtab.c: Ditto.
698 * symtab.h: Ditto.
699 * target-descriptions.c: Ditto.
700 * target-memory.c: Ditto.
701 * target.c: Ditto.
702 * target.h: Ditto.
703 * terminal.h: Ditto.
704 * thread.c: Ditto.
705 * top.c: Ditto.
706 * tracepoint.c: Ditto.
707 * tracepoint.h: Ditto.
708 * ui-file.c: Ditto.
709 * ui-file.h: Ditto.
710 * ui-out.h: Ditto.
711 * user-regs.c: Ditto.
712 * user-regs.h: Ditto.
713 * utils.c: Ditto.
714 * valarith.c: Ditto.
715 * valops.c: Ditto.
716 * valprint.c: Ditto.
717 * valprint.h: Ditto.
718 * value.c: Ditto.
719 * varobj.c: Ditto.
720 * varobj.h: Ditto.
721 * vec.h: Ditto.
722 * xcoffread.c: Ditto.
723 * xcoffsolib.c: Ditto.
724 * xcoffsolib.h: Ditto.
725 * xml-syscall.c: Ditto.
726 * xml-tdesc.c: Ditto.
727
9a2b4c1b
MS
7282011-01-05 Michael Snyder <msnyder@vmware.com>
729
730 * cli/cli-cmds.c: Shorten lines of >= 80 columns.
731 * cli/cli-decode.c: Ditto.
732 * cli/cli-dump.c: Ditto.
733 * cli/cli-logging.c: Ditto.
734 * cli/cli-script.c: Ditto.
735 * cli/cli-setshow.c: Ditto.
736 * common/signals.c: Ditto.
737 * mi/mi-cmd-break.c: Ditto.
738 * mi/mi-cmd-disas.c: Ditto.
739 * mi/mi-cmd-stack.c: Ditto.
740 * mi/mi-cmd-var.c: Ditto.
741 * mi/mi-cmds.c: Ditto.
742 * mi/mi-common.h: Ditto.
743 * mi/mi-console.c: Ditto.
744 * mi/mi-interp.c: Ditto.
745 * mi/mi-main.c: Ditto.
746 * osf-share/cma_attr.c: Ditto.
747 * osf-share/cma_deb_core.h: Ditto.
748 * osf-share/cma_debug_client.h: Ditto.
749 * osf-share/cma_handle.h: Ditto.
750 * osf-share/cma_mutex.h: Ditto.
751 * osf-share/cma_stack_int.h: Ditto.
752 * osf-share/cma_tcb_defs.h: Ditto.
753 * python/py-auto-load.c: Ditto.
754 * python/py-breakpoint.c: Ditto.
755 * python/py-cmd.c: Ditto.
756 * python/py-frame.c: Ditto.
757 * python/py-objfile.c: Ditto.
758 * python/py-param.c: Ditto.
759 * python/py-progspace.c: Ditto.
760 * python/py-symbol.c: Ditto.
761 * python/py-value.c: Ditto.
762 * python/python-internal.h: Ditto.
763 * python/python.c: Ditto.
764 * tui/tui-data.c: Ditto.
765 * tui/tui-disasm.c: Ditto.
766 * tui/tui-hooks.c: Ditto.
767 * tui/tui-io.c: Ditto.
768 * tui/tui-layout.c: Ditto.
769 * tui/tui-regs.c: Ditto.
770 * tui/tui-source.c: Ditto.
771 * tui/tui-stack.c: Ditto.
772 * tui/tui-win.c: Ditto.
773 * tui/tui-windata.c: Ditto.
774 * tui/tui-winsource.c: Ditto.
775
44944448
JB
7762011-01-05 Joel Brobecker <brobecker@adacore.com>
777
778 * configure.ac, gdb.1: Copyright year update.
779
ebedcab5
JK
7802011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
781
782 * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables
783 this_pc_in_block, morestack_msym and morestack_name. Check for
784 "__morestack" minimal symbol there.
785
e5cc9f32
JB
7862011-01-03 Joel Brobecker <brobecker@adacore.com>
787
788 * symfile.c (find_sym_fns): Add call to dont_repeat.
789
7b6bb8da
JB
7902011-01-01 Joel Brobecker <brobecker@adacore.com>
791
792 Copyright year update in most files (performed by copyright.sh).
793
71ce852c
JB
7942011-01-01 Joel Brobecker <brobecker@adacore.com>
795
796 * top.c (print_gdb_version): Update copyright year in version output.
0e2de366 797
c3c1ebe8 798For older changes see ChangeLog-2010.
c906108c
SS
799\f
800Local Variables:
801mode: change-log
802left-margin: 8
803fill-column: 74
804version-control: never
57da7796 805coding: utf-8
c906108c 806End:
This page took 1.259401 seconds and 4 git commands to generate.