]>
Commit | Line | Data |
---|---|---|
6b0c4c1f JB |
1 | 2011-01-31 Joel Brobecker <[email protected]> |
2 | ||
3 | * inflow.c (gdb_has_a_terminal): Fix typo in interactive_mode | |
4 | value test. | |
5 | ||
672c9795 YQ |
6 | 2011-01-31 Yao Qi <[email protected]> |
7 | ||
8 | * arm-linux-nat.c: Update calls to regcache_register_status | |
9 | instead of regcache_valid_p. | |
10 | * aix-thread.c: Likewise. | |
11 | * i386gnu-nat.c: Likewise. | |
12 | ||
80b23b6a JK |
13 | 2011-01-29 Jan Kratochvil <[email protected]> |
14 | ||
15 | Fix crash. | |
16 | * valops.c (compare_parameters): Verify TYPE_NFIELDS before | |
17 | touching TYPE_FIELD_ARTIFICIAL. | |
18 | ||
4cd712bd RE |
19 | 2011-01-28 Richard Earnshaw <[email protected]> |
20 | ||
21 | * MAINTAINERS: Move myself from Responsible Maintainers to Authorized | |
22 | Committers. | |
23 | ||
ffd5ec24 PA |
24 | 2011-01-28 Pedro Alves <[email protected]> |
25 | ||
26 | * tracepoint.c (tfile_xfer_partial): If there's no traceframe | |
27 | selected, don't try iterating over the traceframe's blocks. | |
28 | (tfile_has_stack): If there's no traceframe selected, then there's | |
29 | no stack. | |
30 | (tfile_has_registers): If there's no traceframe selected, then | |
31 | there's no registers. | |
32 | ||
e8c9e0a1 PA |
33 | 2011-01-28 Pedro Alves <[email protected]> |
34 | ||
35 | * target.c (memory_xfer_partial): No need to restore shadows if we | |
36 | haven't read anything. | |
37 | ||
de15c4ab PA |
38 | 2011-01-28 Pedro Alves <[email protected]> |
39 | ||
40 | * mips-tdep.c (mips_print_register): Use get_frame_register_value | |
41 | and val_print_scalar_formatted. | |
42 | ||
9f41c731 PA |
43 | 2011-01-27 Pedro Alves <[email protected]> |
44 | ||
45 | * tracepoint.c (tfile_read): New. | |
46 | (tfile_open): Use it. | |
47 | (tfile_get_traceframe_address): Use it. | |
48 | (tfile_trace_find): Use it. | |
49 | (walk_blocks_callback_func): New typedef. | |
50 | (match_blocktype): New function. | |
51 | (traceframe_walk_blocks): New function. | |
52 | (traceframe_find_block_type): New function. | |
53 | (tfile_fetch_registers, tfile_xfer_partial) | |
54 | (tfile_get_trace_state_variable_value): Use | |
55 | traceframe_find_block_type and tfile_read. | |
56 | ||
cdefc55d KB |
57 | 2011-01-26 Kevin Buettner <[email protected]> |
58 | ||
59 | * remote-mips.c: Add internationalization mark ups. Remove | |
60 | trailing \n from already marked up strings. | |
61 | ||
a81766d8 TT |
62 | 2011-01-26 Tom Tromey <[email protected]> |
63 | ||
64 | * python/py-prettyprint.c (print_string_repr): Clear | |
65 | 'addressprint' option when calling val_print_string. | |
66 | (print_children): Handle Val_pretty_default. Clear 'addressprint' | |
67 | option when calling val_print_string. | |
68 | ||
74aedc46 TT |
69 | 2011-01-26 Tom Tromey <[email protected]> |
70 | ||
71 | * python/python.c (gdbpy_solib_name): Use gdb_py_longest and | |
72 | GDB_PY_LL_ARG. | |
73 | * python/python-internal.h (GDB_PY_LL_ARG, GDB_PY_LLU_ARG): New | |
74 | macros. | |
75 | (gdb_py_longest, gdb_py_ulongest): New typedefs. | |
76 | (gdb_py_long_from_longest, gdb_py_long_from_ulongest) | |
77 | (gdb_py_long_as_ulongest): New defines. | |
78 | (gdb_py_object_from_longest, gdb_py_object_from_ulongest) | |
79 | (gdb_py_int_as_long): Declare. | |
80 | * python/py-value.c (valpy_lazy_string): Use gdb_py_longest, | |
81 | GDB_PY_LL_ARG, gdb_py_object_from_longest. | |
82 | (valpy_long): Add comment. | |
83 | * python/py-utils.c (get_addr_from_python): Use | |
84 | gdb_py_long_as_ulongest. Handle overflow properly. | |
85 | (gdb_py_object_from_longest): New function. | |
86 | (gdb_py_object_from_ulongest): Likewise. | |
87 | (gdb_py_int_as_long): Likewise. | |
88 | * python/py-type.c (typy_array): Use gdb_py_int_as_long. | |
89 | * python/py-symtab.c (salpy_get_pc): Use | |
90 | gdb_py_long_from_ulongest. | |
91 | (salpy_get_line): Use PyInt_FromLong. | |
92 | * python/py-param.c (set_parameter_value): Use | |
93 | gdb_py_int_as_long. | |
94 | * python/py-lazy-string.c (stpy_get_address): Use | |
95 | gdb_py_long_from_ulongest. | |
96 | * python/py-frame.c (frapy_pc): Use gdb_py_long_from_ulongest. | |
97 | * python/py-cmd.c (cmdpy_completer): Use gdb_py_int_as_long. | |
98 | * python/py-breakpoint.c (bppy_set_thread): Use | |
99 | gdb_py_int_as_long. | |
100 | (bppy_set_task): Likewise. | |
101 | (bppy_set_ignore_count): Likewise. | |
102 | (bppy_set_hit_count): Likewise. | |
103 | * python/py-block.c (blpy_get_start): Use | |
104 | gdb_py_object_from_ulongest. | |
105 | (blpy_get_end): Likewise. | |
106 | (gdbpy_block_for_pc): Use gdb_py_ulongest and GDB_PY_LLU_ARG. | |
107 | ||
e4f6d2ec TJB |
108 | 2011-01-25 Mathieu Lacage <[email protected]> |
109 | ||
110 | PR/symtab 11766: | |
111 | * gdb/objfiles.h (struct objfile) <addr_low>: New field. | |
112 | * gdb/solib.c (solib_read_symbols): Check for addr_low in | |
113 | equality test for objfile, initialize addr_low if needed. | |
114 | ||
b30aa278 PA |
115 | 2011-01-25 Pedro Alves <[email protected]> |
116 | ||
117 | * tui/tui-regs.c (tui_register_format): Remove dead code. | |
118 | ||
ab2188aa PA |
119 | 2011-01-25 Pedro Alves <[email protected]> |
120 | ||
121 | * printcmd.c (print_formatted): Use val_print_scalar_formatted | |
122 | instead of print_scalar_formatted. | |
123 | (print_scalar_formatted): Don't handle 's' format strings here, | |
124 | and add an assertion that we never see such format here. | |
125 | * valprint.h (val_print_scalar_formatted): Declare. | |
126 | * valprint.c (val_print_scalar_formatted): New. | |
127 | * c-valprint.c (c_val_print): Use val_print_scalar_formatted | |
128 | instead of print_scalar_formatted. | |
129 | * jv-valprint.c (java_val_print): Ditto. | |
130 | * p-valprint.c (pascal_val_print): Ditto. | |
131 | * ada-valprint.c (ada_val_print_1): Ditto. | |
132 | * f-valprint.c (f_val_print): Ditto. | |
133 | * infcmd.c (registers_info): Ditto. | |
134 | * m2-valprint.c (m2_val_print): Ditto. | |
135 | ||
66d61a4c PA |
136 | 2011-01-25 Pedro Alves <[email protected]> |
137 | ||
138 | * m2-valprint.c (print_unbounded_array): Pass | |
139 | value_contents_for_printing rather than value_contents, to | |
140 | m2_print_array_contents. Also pass in the value. | |
141 | ||
831adc1f JK |
142 | 2011-01-25 Jan Kratochvil <[email protected]> |
143 | ||
144 | * dwarf2read.c (dwarf2_read_index, write_psymtabs_to_index) | |
145 | (save_gdb_index_command): Switch to .gdb_index version 4. | |
146 | ||
20622269 PA |
147 | 2011-01-25 Pedro Alves <[email protected]> |
148 | ||
149 | * mi/mi-main.c (get_register): Use get_frame_register_value rather | |
150 | than frame_register, and always pass a valid value to val_print. | |
151 | ||
585fdaa1 PA |
152 | 2011-01-25 Pedro Alves <[email protected]> |
153 | ||
154 | Centralize printing "<optimized out>". | |
155 | ||
156 | * valprint.h (val_print_optimized_out): Declare. | |
157 | * cp-valprint.c (cp_print_value_fields): Use | |
158 | val_print_optimized_out. | |
159 | * jv-valprint.c (java_print_value_fields): Ditto. | |
160 | * p-valprint.c (pascal_object_print_value_fields): Ditto. | |
161 | * printcmd.c (print_formatted): Ditto. | |
162 | * valprint.c (valprint_check_validity): Ditto. | |
163 | (value_check_printable): Ditto. | |
164 | (val_print_optimized_out): New. | |
165 | ||
29ec5263 PA |
166 | 2011-01-25 Pedro Alves <[email protected]> |
167 | ||
168 | * infcmd.c (default_print_registers_info): Allocate values so to | |
169 | never pass a NULL value to val_print. | |
170 | ||
de4127a3 PA |
171 | 2011-01-25 Pedro Alves <[email protected]> |
172 | ||
173 | * cp-valprint.c (cp_print_value): Treat the 'skip' local as | |
174 | boolean. Make sure to always pass a value that matches the | |
175 | contents buffer to callees. Preserve `address' for following | |
176 | iterations. | |
177 | * value.c (value_contents_for_printing_const): New. | |
178 | (value_address): Constify value argument. | |
179 | * value.h (value_contents_for_printing_const): Declare. | |
180 | (value_address): Constify value argument. | |
181 | ||
ee99023e PA |
182 | 2011-01-25 Pedro Alves <[email protected]> |
183 | ||
184 | * regcache.c (struct regcache_descr): Rename | |
185 | sizeof_raw_register_valid_p field to sizeof_raw_register_status, | |
186 | and sizeof_cooked_register_valid_p to | |
187 | sizeof_cooked_register_status. | |
188 | (init_regcache_descr): Adjust. | |
189 | (struct regcache): Rename register_valid_p field to | |
190 | register_status. | |
191 | (regcache_xmalloc_1, regcache_xfree, regcache_save) | |
192 | (do_cooked_read): Adjust. | |
193 | (regcache_valid_p): Rename to ... | |
194 | (regcache_register_status): ... this. Adjust. | |
195 | (regcache_invalidate): Adjust. | |
196 | (regcache_raw_read, regcache_cooked_read, regcache_raw_write): | |
197 | Adjust. | |
198 | (regcache_raw_supply): Adjust. If buf i NULL, mark the register | |
199 | as unavailable, not valid. | |
200 | (regcache_dump): Adjust. | |
201 | * regcache.h (enum register_status): New. | |
202 | (regcache_register_status): Declare. | |
203 | (regcache_invalidate): Delete declaration. | |
204 | * corelow.c (get_core_registers): Adjust. | |
205 | * tracepoint.c (tfile_fetch_registers): Adjust. | |
206 | * trad-frame.c (REG_VALUE): Rename to ... | |
207 | (TF_REG_VALUE): ... this. | |
208 | (REG_UNKNOWN): Rename to ... | |
209 | (TF_REG_UNKNOWN): ... this. | |
210 | (trad_frame_set_value, trad_frame_set_unknown): Adjust. | |
211 | * mi/mi-main.c (register_changed_p): Adjust. | |
212 | ||
99e42fd8 PA |
213 | 2011-01-25 Pedro Alves <[email protected]> |
214 | ||
215 | * regcache.c (struct regcache_descr): Remove outdated comment. | |
216 | (init_regcache_descr): Remove sizeof_raw_register_valid_p | |
217 | overallocate hack. | |
218 | (regcache_xmalloc): Rename to ... | |
219 | (regcache_xmalloc_1): ... this. Add `readonly_p' parameter. | |
220 | Allocate the regcache type accordingly. | |
221 | (regcache_xmalloc): New as wrapper around regcache_xmalloc_1. | |
222 | (regcache_xfree): Asser the source is also readonly. Copy sizeof | |
223 | cooked registers, not raw. | |
224 | (regcache_dup_no_passthrough): Delete. | |
225 | (get_thread_arch_regcache): Use regcache_xmalloc_1. | |
226 | * h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not | |
227 | mention obsolete write_register_bytes. | |
228 | * regcache.h (regcache_dup_no_passthrough): Delete declaration. | |
229 | ||
f7605bc2 PA |
230 | 2011-01-25 Pedro Alves <[email protected]> |
231 | ||
232 | Stop remote_read_bytes from handling partial reads itself. | |
233 | ||
234 | * remote-fileio.c: Include target.h. | |
235 | (remote_fileio_write_bytes): Delete. | |
236 | (remote_fileio_func_open, remote_fileio_func_write) | |
237 | (remote_fileio_func_rename, remote_fileio_func_unlink): Use | |
238 | target_read_memory. | |
239 | (remote_fileio_func_stat): Use target_read_memory and | |
240 | target_write_memory. | |
241 | (remote_fileio_func_gettimeofday): Use target_write_memory. | |
242 | (remote_fileio_func_system): Use target_read_memory. | |
243 | * remote.c (remote_write_bytes): Make it static. | |
244 | (remote_read_bytes): Don't handle partial reads here. | |
245 | * remote.h (remote_read_bytes): Delete declaration. | |
246 | ||
efc0eabd PA |
247 | 2011-01-25 Pedro Alves <[email protected]> |
248 | ||
249 | Simplify XML parsing a bit. | |
250 | ||
251 | * xml-support.h (gdb_xml_parse_quick): Declare. | |
252 | * xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed | |
253 | from gdb_xml_create_parser_and_cleanup, and added `old_chain' | |
254 | parameter. | |
255 | (gdb_xml_create_parser_and_cleanup): Reimplement on top of | |
256 | gdb_xml_create_parser_and_cleanup_1. | |
257 | (gdb_xml_parse_quick): New. | |
258 | * memory-map.c (parse_memory_map): Use gdb_xml_parse_quick. | |
259 | * osdata.c (osdata_parse): Ditto. | |
260 | * remote.c (remote_threads_info): Ditto. | |
261 | * solib-target.c (solib_target_parse_libraries): Ditto. | |
262 | * xml-syscall.c (syscall_parse_xml): Ditto. | |
263 | * xml-tdesc.c (tdesc_parse_xml): Ditto. | |
264 | ||
314d366a KB |
265 | 2011-01-24 Kevin Buettner <[email protected]> |
266 | ||
267 | * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but | |
268 | with remote-mips.o added to gdb_target_obs. | |
269 | * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o. | |
270 | ||
a491d753 PA |
271 | 2011-01-24 Pedro Alves <[email protected]> |
272 | ||
273 | * ada-valprint.c (val_print_packed_array_elements): Pass the | |
274 | correct struct value to val_print. | |
275 | (ada_val_print_1): Ditto. | |
276 | ||
490f124f PA |
277 | 2011-01-24 Pedro Alves <[email protected]> |
278 | ||
279 | Don't lose embedded_offset in printing routines throughout. | |
280 | ||
281 | * valprint.h (val_print_array_elements): Change prototype. | |
282 | * valprint.c (val_print_array_elements): Add `embedded_offset' | |
283 | parameter, and adjust to pass it down to val_print, while passing | |
284 | `valaddr' or `address' unmodified. Take embedded_offset into | |
285 | account when checking repetitions. | |
286 | * c-valprint.c (c_val_print): Pass embedded_offset to | |
287 | val_print_array_elements instead of adjusting `valaddr' and | |
288 | `address'. | |
289 | * m2-valprint.c (m2_print_array_contents, m2_val_print): Pass | |
290 | embedded_offset to val_print_array_elements instead of adjusting | |
291 | `valaddr'. | |
292 | * p-lang.h (pascal_object_print_value_fields): Adjust prototype. | |
293 | * p-valprint.c (pascal_val_print): Pass embedded_offset to | |
294 | val_print_array_elements and pascal_object_print_value_fields | |
295 | instead of adjusting `valaddr'. | |
296 | (pascal_object_print_value_fields): Add `offset' parameter, and | |
297 | adjust to use it. | |
298 | (pascal_object_print_value): Add `offset' parameter, and adjust to | |
299 | use it. | |
300 | (pascal_object_print_static_field): Use | |
301 | value_contents_for_printing/value_embedded_offset, rather than | |
302 | value_contents. | |
303 | * ada-valprint.c (val_print_packed_array_elements): Add `offset' | |
304 | parameter, and adjust to use it. Use | |
305 | value_contents_for_printing/value_embedded_offset, rather than | |
306 | value_contents. | |
307 | (ada_val_print): Rename `valaddr0' parameter to `valaddr'. | |
308 | (ada_val_print_array): Add `offset' parameter, and adjust to use | |
309 | it. | |
310 | (ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and | |
311 | `embedded_offset' to `offset'. Don't re-adjust `valaddr'. | |
312 | Instead work with offsets. Use | |
313 | value_contents_for_printing/value_embedded_offset, rather than | |
314 | value_contents. Change `defer_val_int' local type to CORE_ADDR, | |
315 | and use value_from_pointer to extract a target pointer, rather | |
316 | than value_from_longest. | |
317 | (print_variant_part): Add `offset' parameter. Replace | |
318 | `outer_valaddr' parameter by a new `outer_offset' parameter. | |
319 | Don't re-adjust `valaddr'. Instead pass down adjusted offsets. | |
320 | (ada_value_print): Use | |
321 | value_contents_for_printing/value_embedded_offset, rather than | |
322 | value_contents. | |
323 | (print_record): Add `offset' parameter, and adjust to pass it | |
324 | down. | |
325 | (print_field_values): Add `offset' parameter. Replace | |
326 | `outer_valaddr' parameter by a new `outer_offset' parameter. | |
327 | Don't re-adjust `valaddr'. Instead pass down adjusted offsets. | |
328 | Use value_contents_for_printing/value_embedded_offset, rather than | |
329 | value_contents. | |
330 | * d-valprint.c (dynamic_array_type): Use | |
331 | value_contents_for_printing/value_embedded_offset, rather than | |
332 | value_contents. | |
333 | * jv-valprint.c (java_print_value_fields): Add `offset' parameter. | |
334 | Don't re-adjust `valaddr'. Instead pass down adjusted offsets. | |
335 | (java_print_value_fields): Take `offset' into account. Don't | |
336 | re-adjust `valaddr'. Instead pass down adjusted offsets. | |
337 | (java_val_print): Take `embedded_offset' into account. Pass it to | |
338 | java_print_value_fields. | |
339 | * f-valprint.c (f77_print_array_1): Add `embedded_offset' | |
340 | parameter. Don't re-adjust `valaddr' or `address'. Instead pass | |
341 | down adjusted offsets. | |
342 | (f77_print_array): Add `embedded_offset' parameter. Pass it down. | |
343 | (f_val_print): Take `embedded_offset' into account. | |
344 | ||
7bfc9434 JB |
345 | 2011-01-21 Joel Brobecker <[email protected]> |
346 | ||
347 | * inflow.c: Include "gdbcmd.h". | |
348 | (interactive_mode): New static global, moved here from top.c. | |
349 | (show_interactive_mode): New function, moved here from top.c. | |
350 | use gdb_has_a_terminal instead of input_from_terminal_p to | |
351 | determine the current mode. | |
352 | (gdb_has_a_terminal): Add handling of the "iteractive-mode" | |
353 | setting. | |
354 | (_initialize_inflow): Add the "set/show interactive-mode" | |
355 | commands. Moved here from top.c, after having adjusted slightly | |
356 | the help text. | |
357 | * top.c (interactive_mode, show_interactive_mode): Delete, moved | |
358 | to inflow.c. | |
359 | (input_from_terminal_p): Remove handling of "interactive-mode" | |
360 | setting, moved to infow.c. | |
361 | (init_main): Remove creation of the "set/show interactive-mode" | |
362 | commands, moved to inflow.c. | |
363 | ||
44603653 JB |
364 | 2011-01-19 Joel Brobecker <[email protected]> |
365 | ||
366 | * NEWS: Add entry for native ia64-hpux support. | |
367 | ||
4694da01 TT |
368 | 2011-01-19 Tom Tromey <[email protected]> |
369 | ||
370 | PR mi/8618: | |
371 | * thread.c (free_thread): Free 'name'. | |
372 | (print_thread_info): Emit thread name. Change CLI output. | |
373 | (thread_name_command): New function. | |
374 | (do_captured_thread_select): Emit newline. | |
375 | (_initialize_thread): Register 'thread name' command. | |
376 | * target.h (struct target_ops) <to_thread_name>: New field. | |
377 | (target_thread_name): New macro. | |
378 | * target.c (update_current_target): Handle to_thread_name. | |
379 | * python/py-infthread.c (thpy_get_name): New function. | |
380 | (thpy_set_name): Likewise. | |
381 | (thread_object_getset): Add "name". | |
382 | * linux-nat.c (linux_nat_thread_name): New function. | |
383 | (linux_nat_add_target): Set to_thread_name. | |
384 | * gdbthread.h (struct thread_info) <name>: New field. | |
385 | ||
10d44370 JB |
386 | 2011-01-18 Joel Brobecker <[email protected]> |
387 | ||
388 | * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast. | |
389 | (ada_val_print_1): Likewise. | |
390 | ||
e3acb115 JB |
391 | 2011-01-18 Joel Brobecker <[email protected]> |
392 | ||
393 | * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue | |
394 | upper limit address is not greater than the function end address | |
395 | when the upper limit could not be computed using the debugging | |
396 | info. | |
397 | ||
dc92e161 TT |
398 | 2011-01-17 Tom Tromey <[email protected]> |
399 | ||
400 | * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use | |
401 | get_regcomp_error. | |
402 | * utils.c: Include gdb_regex.h. | |
403 | (do_regfree_cleanup): New function. | |
404 | (make_regfree_cleanup): Likewise. | |
405 | (get_regcomp_error): Likewise. | |
406 | * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare. | |
407 | ||
f55af66d TT |
408 | 2011-01-17 Tom Tromey <[email protected]> |
409 | ||
410 | * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call | |
411 | re_compile_fastmap. | |
412 | ||
a5a44b53 PM |
413 | 2011-01-17 Pierre Muller <[email protected]> |
414 | ||
415 | * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE | |
416 | for internal variables. | |
417 | (last_was_structop): New static variable. | |
418 | (COMPLETE): New token. | |
419 | (field_exp): New rule to group all '.' suffix handling. | |
420 | Add mark_struct_expression calls when approriate to be able | |
421 | to correctly find fields for completion. | |
422 | (yylex): Adapt to handle field completion and set INTVAR when | |
423 | required. | |
424 | ||
2c291032 YQ |
425 | 2011-01-14 Yao Qi <[email protected]> |
426 | ||
427 | * arm-tdep.c (arm_register_reggroup_p): FPS register is in | |
428 | save_reggroup, restore_reggroup and all_reggroup. | |
429 | ||
447b483c JB |
430 | 2011-01-14 Joel Brobecker <[email protected]> |
431 | ||
432 | * ada-valprint. (ada_printchar): Use the correct type length | |
433 | in call to ada_emit_char. | |
434 | * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR. | |
435 | ||
7b64a93b PM |
436 | 2011-01-14 Pierre Muller <[email protected]> |
437 | ||
438 | * solib-som.h (hpux_major_release): Declare variable here. | |
439 | * solib-som.c: Remove <sys/utsname.h> header. | |
440 | (DEFAULT_HPUX_MAJOR_RELEASE): New macro. | |
441 | (hpux_major_release): Make global, change default value to | |
442 | DEFAULT_HPUX_MAJOR_RELEASE. | |
443 | (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE. | |
444 | * hppa-hpux-nat.c: Add <sys/utsname.h> include. | |
445 | Add "solib-som.h" header. | |
446 | (set_hpux_major_release): New function. | |
447 | (_initialize_hppa_hpux_nat): Call set_hpux_major_release. | |
448 | ||
4e18c053 MF |
449 | 2011-01-14 Mike Frysinger <[email protected]> |
450 | ||
451 | * configure.tgt (*-*-uclinux*): Match more Linux os targets | |
452 | ||
a9df6b22 JB |
453 | 2011-01-14 Joel Brobecker <[email protected]> |
454 | ||
455 | * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing | |
456 | new-line at end of warning message. | |
457 | (ia64_hpux_store_register): Remove trailing new-line at end of | |
458 | error message. | |
459 | * ia64-hpux-tdep.c: Rephrase comment. | |
460 | * solib-ia64-hpux.c (struct dld_info): Change type of field | |
461 | dld_flags from "long long" to ULONGEST. | |
462 | ||
ecb956dd PA |
463 | 2011-01-14 Pedro Alves <[email protected]> |
464 | ||
465 | * target.h (deprecated_child_ops): Delete declaration. | |
466 | * target.c (deprecated_child_ops): Delete definition. | |
467 | ||
76adfcae PA |
468 | 2011-01-14 Pedro Alves <[email protected]> |
469 | ||
470 | * Makefile.in (hpux-thread.o): Delete rule. | |
471 | * configure.ac: Don't check for HPUX DCE threads support. | |
472 | * configure, config.in: Regenerate. | |
473 | * hppa-hpux-nat.c (child_suppress_run): Delete. | |
474 | (hppa_hpux_child_can_run): Delete. | |
475 | (_initialize_hppa_hpux_nat): Don't override to_can_run. | |
476 | * hpux-thread.c: Delete. | |
477 | ||
042e866e JB |
478 | 2011-01-13 Joel Brobecker <[email protected]> |
479 | ||
480 | * hpux-thread.c (hpux_pid_to_str): Delete. | |
481 | ||
4ffa5a33 JB |
482 | 2011-01-13 Joel Brobecker <[email protected]> |
483 | ||
484 | * ada-valprint.c (ada_emit_char): Remove strange code. | |
485 | Check that c is <= UCHAR_MAX before passing it to isascii. | |
486 | (char_at): Do not assume that TYPE_LEN is either 1 or 2. | |
487 | ||
de8fa76c JB |
488 | 2011-01-13 Joel Brobecker <[email protected]> |
489 | ||
490 | * top.c (input_from_terminal_p): Restrict the use of interactive_mode | |
491 | to the case where instream is stdin. | |
492 | ||
c4de7027 JB |
493 | 2011-01-13 Joel Brobecker <[email protected]> |
494 | ||
495 | * ia64-tdep.h (struct regcache): Forward declare. | |
496 | (struct ia64_infcall_ops): New struct type. | |
497 | (struct gdbarch_tdep): New fields "find_global_pointer_from_solib" | |
498 | and "infcall_ops". | |
499 | * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section): | |
500 | Renames ia64_find_global_pointer. | |
501 | (ia64_find_global_pointer, ia64_allocate_new_rse_frame) | |
502 | (ia64_store_argument_in_slot, ia64_set_function_addr: New function. | |
503 | (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops | |
504 | methods. | |
505 | (ia64_infcall_ops): New static global constant. | |
506 | (ia64_gdbarch_init): Set tdep->infcall_ops. | |
507 | * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function. | |
508 | (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing. | |
509 | * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h". | |
510 | (ia64_hpux_dummy_code): New static global constant. | |
511 | (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame) | |
512 | (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr) | |
513 | (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib): | |
514 | New function. | |
515 | (ia64_hpux_infcall_ops): New static global constant. | |
516 | (ia64_hpux_init_abi): Install gdbarch and tdep methods needed | |
517 | for inferior function calls to work properly on ia64-hpux. | |
518 | ||
77ca787b JB |
519 | 2011-01-13 Joel Brobecker <[email protected]> |
520 | ||
521 | * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS. | |
522 | * ia64-tdep.h (struct frame_info): forward declaration. | |
523 | (struct gdbarch_tdep): Add field size_of_register_frame. | |
524 | * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame | |
525 | to determine the size of the register frame. | |
526 | (ia64_size_of_register_frame): New function. | |
527 | (ia64_gdbarch_init): Set tdep->size_of_register_frame. | |
528 | * ia64-hpux-tdep.c: Include "target.h" and "frame.h". | |
529 | (IA64_HPUX_UREG_REASON): New macro. | |
530 | (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame): | |
531 | New functions. | |
532 | (ia64_hpux_init_abi): Set tdep->size_of_register_frame. | |
533 | * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function. | |
534 | (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS | |
535 | objects. | |
536 | ||
92c9a463 JB |
537 | 2011-01-13 Joel Brobecker <[email protected]> |
538 | ||
539 | Add support for ia64-hpux. | |
540 | * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c, | |
541 | ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files. | |
542 | ||
543 | * configure.host: Add handling for ia64-hpux hosts. Add associated | |
544 | floatformats. | |
545 | * configure.tgt: Add handling for ia64-hpux targets. | |
546 | * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o. | |
547 | (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h. | |
548 | (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c. | |
549 | ||
f688d93f JB |
550 | 2011-01-13 Joel Brobecker <[email protected]> |
551 | ||
552 | [ttrace] Compute thread list immediately after attach. | |
553 | * inf_ttrace_attach (inf_ttrace_create_threads_after_attach): | |
554 | New subprogram. | |
555 | (inf_ttrace_attach): Use it. | |
556 | ||
1b89e62f JB |
557 | 2011-01-13 Joel Brobecker <[email protected]> |
558 | ||
559 | * libunwind-frame.c (libunwind_frame_cache): Do not return NULL | |
560 | if we could not determine the frame's function address. Instead, | |
561 | use the frame's PC, and then continue. | |
562 | ||
3e5e6e2a JB |
563 | 2011-01-13 Joel Brobecker <[email protected]> |
564 | ||
565 | * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if | |
566 | not already defined. | |
567 | ||
825d6d8a JB |
568 | 2011-01-13 Joel Brobecker <[email protected]> |
569 | ||
570 | * ia64-tdep.c (ia64_struct_type_p): New function. | |
571 | (ia64_extract_return_value): Handle integral values that are | |
572 | less than 8 bytes long. | |
573 | (ia64_push_dummy_call): Likewise. | |
574 | ||
7458e667 JB |
575 | 2011-01-13 Joel Brobecker <[email protected]> |
576 | ||
577 | * ia64-tdep.c (floatformat_ia64_ext_little): Renames | |
578 | floatformat_ia64_ext. | |
579 | (floatformat_ia64_ext_big): New static const. | |
580 | (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big. | |
581 | ||
1b05df00 TT |
582 | 2011-01-12 Tom Tromey <[email protected]> |
583 | ||
584 | * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error | |
585 | messages. | |
586 | * mi/mi-main.c (mi_cmd_thread_select): Fix error messages. | |
587 | (mi_cmd_thread_list_ids): Likewise. | |
588 | (mi_cmd_data_list_changed_registers): Likewise. | |
589 | (mi_cmd_data_list_register_values): Likewise. | |
590 | (mi_cmd_data_write_register_values): Likewise. | |
591 | (mi_cmd_data_evaluate_expression): Likewise. | |
592 | (mi_cmd_data_read_memory): Likewise. | |
593 | (mi_cmd_data_read_memory_bytes): Likewise. | |
594 | (mi_cmd_data_write_memory): Likewise. | |
595 | (mi_cmd_enable_timings): Likewise. | |
596 | * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages. | |
597 | * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages. | |
598 | (mi_cmd_var_delete): Likewise. | |
599 | (mi_cmd_var_set_format): Likewise. | |
600 | (mi_cmd_var_show_format): Likewise. | |
601 | (mi_cmd_var_info_num_children): Likewise. | |
602 | (mi_cmd_var_list_children): Likewise. | |
603 | (mi_cmd_var_info_type): Likewise. | |
604 | (mi_cmd_var_info_expression): Likewise. | |
605 | (mi_cmd_var_show_attributes): Likewise. | |
606 | (mi_cmd_var_assign): Likewise. | |
607 | (mi_cmd_var_update): Likewise. | |
608 | (mi_cmd_enable_pretty_printing): Likewise. | |
609 | (mi_cmd_var_set_update_range): Likewise. | |
610 | * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error | |
611 | messages. | |
612 | (mi_cmd_target_file_put): Likewise. | |
613 | (mi_cmd_target_file_delete): Likewise. | |
614 | * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error | |
615 | messages. | |
616 | (mi_cmd_stack_info_depth): Likewise. | |
617 | (mi_cmd_stack_list_locals): Likewise. | |
618 | (mi_cmd_stack_list_args): Likewise. | |
619 | (mi_cmd_stack_select_frame): Likewise. | |
620 | (mi_cmd_stack_select_frame): Likewise. | |
621 | (mi_cmd_stack_info_frame): Likewise. | |
622 | * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error | |
623 | messages. | |
624 | (mi_cmd_file_list_exec_source_files): Likewise. | |
625 | * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages. | |
626 | (mi_cmd_env_cd): Likewise. | |
627 | (mi_cmd_env_path): Likewise. | |
628 | (mi_cmd_env_dir): Likewise. | |
629 | (mi_cmd_inferior_tty_show): Likewise. | |
630 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages. | |
631 | * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages. | |
632 | (mi_cmd_break_watch): Likewise. | |
633 | ||
ad422571 TJB |
634 | 2011-01-12 Thiago Jung Bauermann <[email protected]> |
635 | ||
636 | * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace. | |
637 | (ppc_linux_insert_hw_breakpoint): Likewise. | |
638 | (ppc_linux_remove_hw_breakpoint): Likewise. | |
639 | (ppc_linux_insert_watchpoint): Likewise. | |
640 | ||
c2ff108b JK |
641 | 2011-01-12 Andrew Burgess <[email protected]> |
642 | Jan Kratochvil <[email protected]> | |
643 | ||
644 | PR fortran/11104 and DWARF unbound arrays detection. | |
645 | * dwarf2read.c (read_subrange_type): Set zero length on unspecified | |
646 | upper bound. Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on | |
647 | unspecified upper bound. | |
648 | * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove | |
649 | variables array_size_array, tmp_type and offset_item. New variable | |
650 | array. Remove call to f77_get_upperbound. New variables array_type | |
651 | and index. Call value_subscripted_rvalue for each dimenasion. Remove | |
652 | the final call to deprecated_set_value_type. | |
653 | ||
41e8491f JK |
654 | 2011-01-12 Jan Kratochvil <[email protected]> |
655 | ||
656 | Make value allocations more lazy. | |
657 | * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy | |
658 | instead of allocate_value and set_value_lazy when possible. | |
659 | * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy | |
660 | instead of allocate_value and set_value_lazy. | |
661 | * findvar.c (value_of_register_lazy): Likewise. | |
662 | (read_var_value): Remove V preallocation, call just check_typedef in | |
663 | advance. Move allocate_value to LOC_CONST, LOC_LABEL, | |
664 | LOC_CONST_BYTES. Use allocate_value_lazy in LOC_STATIC, LOC_ARG, | |
665 | LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK. Set ADDR instead of | |
666 | set_value_address and break in LOC_BLOCK. Use allocate_value_lazy and | |
667 | remove lval_memory set in LOC_REGPARM_ADDR. Use allocate_value_lazy | |
668 | in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT. Add setting lval_memory at | |
669 | the end, remove set_value_lazy there. | |
670 | * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy | |
671 | instead of allocate_value and set_value_lazy when possible. | |
672 | * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL. | |
673 | * value.c (allocate_computed_value): Use allocate_value_lazy instead | |
674 | of allocate_value and set_value_lazy. | |
675 | (value_from_contents_and_address): Use allocate_value_lazy instead of | |
676 | allocate_value and set_value_lazy when possible. | |
677 | ||
b716877b AB |
678 | 2011-01-12 Andrew Burgess <[email protected]> |
679 | ||
680 | * disasm.c (dump_insns): Support dumping opcodes for MI. | |
681 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control | |
682 | dumping of instruction opcodes. | |
683 | ||
d5ae309f JB |
684 | 2011-01-09 Robert Millan <[email protected]> (tiny patch) |
685 | ||
686 | * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi' | |
687 | appropiately. | |
688 | ||
98871305 TT |
689 | 2011-01-11 Tom Tromey <[email protected]> |
690 | ||
691 | * thread.c (do_captured_thread_select): Emit newline before | |
692 | printing frame. | |
693 | ||
c378eb4e MS |
694 | 2011-01-11 Michael Snyder <[email protected]> |
695 | ||
696 | * s390-tdep.c: Comment cleanup, mostly periods and spaces. | |
697 | * score-tdep.c: Ditto. | |
698 | * score-tdep.h: Ditto. | |
699 | * ser-base.c: Ditto. | |
700 | * ser-go32.c: Ditto. | |
701 | * serial.c: Ditto. | |
702 | * serial.h: Ditto. | |
703 | * ser-mingw.c: Ditto. | |
704 | * ser-pipe.c: Ditto. | |
705 | * ser-tcp.c: Ditto. | |
706 | * ser-unix.c: Ditto. | |
707 | * sh64-tdep.c: Ditto. | |
708 | * shnbsd-nat.c: Ditto. | |
709 | * sh-tdep.c: Ditto. | |
710 | * sh-tdep.h: Ditto. | |
711 | * solib.c: Ditto. | |
712 | * solib-darwin.c: Ditto. | |
713 | * solib-frv.c: Ditto. | |
714 | * solib.h: Ditto. | |
715 | * solib-irix.c: Ditto. | |
716 | * solib-osf.c: Ditto. | |
717 | * solib-pa64.c: Ditto. | |
718 | * solib-som.c: Ditto. | |
719 | * solib-spu.c: Ditto. | |
720 | * solib-sunos.c: Ditto. | |
721 | * solib-svr4.c: Ditto. | |
722 | * solist.h: Ditto. | |
723 | * sol-thread.c: Ditto. | |
724 | * somread.c: Ditto. | |
725 | * source.c: Ditto. | |
726 | * source.h: Ditto. | |
727 | * sparc64-linux-tdep.c: Ditto. | |
728 | * sparc64-tdep.c: Ditto. | |
729 | * sparc-linux-nat.c: Ditto. | |
730 | * sparc-linux-tdep.c: Ditto. | |
731 | * sparc-sol2-nat.c: Ditto. | |
732 | * sparc-sol2-tdep.c: Ditto. | |
733 | * sparc-tdep.c: Ditto. | |
734 | * sparc-tdep.h: Ditto. | |
735 | * spu-tdep.c: Ditto. | |
736 | * stabsread.c: Ditto. | |
737 | * stabsread.h: Ditto. | |
738 | * stack.c: Ditto. | |
739 | * symfile.c: Ditto. | |
740 | * symfile.h: Ditto. | |
741 | * symmisc.c: Ditto. | |
742 | * symtab.c: Ditto. | |
743 | * symtab.h: Ditto. | |
744 | * target.c: Ditto. | |
745 | * target-descriptions.c: Ditto. | |
746 | * target-descriptions.h: Ditto. | |
747 | * target.h: Ditto. | |
748 | * target-memory.c: Ditto. | |
749 | * terminal.h: Ditto. | |
750 | * thread.c: Ditto. | |
751 | * top.c: Ditto. | |
752 | * tracepoint.c: Ditto. | |
753 | * tracepoint.h: Ditto. | |
754 | * trad-frame.h: Ditto. | |
755 | * typeprint.c: Ditto. | |
756 | ||
581e13c1 MS |
757 | 2011-01-11 Michael Snyder <[email protected]> |
758 | ||
759 | * ui-file.c: Comment cleanup, mostly periods and spaces. | |
760 | * ui-file.h: Ditto. | |
761 | * ui-out.c: Ditto. | |
762 | * ui-out.h: Ditto. | |
763 | * utils.c: Ditto. | |
764 | * v850-tdep.c: Ditto. | |
765 | * valarith.c: Ditto. | |
766 | * valops.c: Ditto. | |
767 | * valprint.c: Ditto. | |
768 | * valprint.h: Ditto. | |
769 | * value.c: Ditto. | |
770 | * value.h: Ditto. | |
771 | * varobj.c: Ditto. | |
772 | * varobj.h: Ditto. | |
773 | * vax-tdep.c: Ditto. | |
774 | * vec.c: Ditto. | |
775 | * vec.h: Ditto. | |
776 | * version.h: Ditto. | |
777 | * windows-nat.c: Ditto. | |
778 | * windows-tdep.c: Ditto. | |
779 | * xcoffread.c: Ditto. | |
780 | * xcoffsolib.c: Ditto. | |
781 | * xml-support.c: Ditto. | |
782 | * xstormy16-tdep.c: Ditto. | |
783 | * xtensa-tdep.c: Ditto. | |
784 | * xtensa-tdep.h: Ditto. | |
785 | ||
90e4670f TJB |
786 | 2011-01-11 Thiago Jung Bauermann <[email protected]> |
787 | ||
788 | * breakpoint.c (resources_needed_watchpoint): Fix indentation. | |
789 | * gdbtypes.c (is_scalar_type_recursive): Fix formatting. | |
790 | ||
e09342b5 TJB |
791 | 2011-01-11 Sergio Durigan Junior <[email protected]> |
792 | Thiago Jung Bauermann <[email protected]> | |
793 | ||
794 | Implement support for PowerPC BookE ranged watchpoints. | |
795 | * breakpoint.h | |
796 | (struct breakpoint_ops) <resources_needed>: New method. | |
797 | Initialize to NULL in all existing breakpoint_ops instances. | |
798 | (struct breakpoint) <exact>: New field. | |
799 | (target_exact_watchpoints): Declare external global. | |
800 | * breakpoint.c (target_exact_watchpoints): New global flag. | |
801 | (update_watchpoint): Set b->type to bp_hardware_watchpoint and | |
802 | b->enable_state to bp_enabled before calling | |
803 | hw_watchpoint_used_count. | |
804 | (hw_watchpoint_used_count): Iterate over all bp_locations in a | |
805 | watchpoint. Call breakpoint's breakpoint_ops.resources_needed | |
806 | if available. | |
807 | (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte | |
808 | if the watchpoint is exact. | |
809 | (resources_needed_watchpoint): New function. | |
810 | (watchpoint_breakpoint_ops): Add resources_needed_watchpoint. | |
811 | (watch_command_1): Set b->exact if the user asked for an exact | |
812 | watchpoint and one can be set. | |
813 | (can_use_hardware_watchpoint): Add exact_watchpoints argument. | |
814 | Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if | |
815 | the user asks for an exact watchpoint and one can be set. Return | |
816 | number of needed debug registers to watch the expression. | |
817 | * gdbtypes.c (is_scalar_type): New function, based on | |
818 | valprint.c:scalar_type_p. | |
819 | (is_scalar_type_recursive): New function. | |
820 | * gdbtypes.h (is_scalar_type_recursive): Declare. | |
821 | * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always | |
822 | handle regions when ranged watchpoints are available. | |
823 | (create_watchpoint_request): New function. | |
824 | (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use | |
825 | create_watchpoint_request. | |
826 | * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function. | |
827 | (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the | |
828 | `set powerpc' and `show powerpc' commands. | |
829 | * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>: | |
830 | Mention documentation comment in the target macro. | |
831 | (target_region_ok_for_hw_watchpoint): Document return value. | |
832 | ||
9fa40276 TJB |
833 | 2011-01-11 Thiago Jung Bauermann <[email protected]> |
834 | ||
835 | * breakpoint.c (update_watchpoint): Decide on using a software or | |
836 | hardware watchpoint after the bp_locations are created. | |
837 | ||
77b06cd7 TJB |
838 | 2010-01-11 Thiago Jung Bauermann <[email protected]> |
839 | ||
840 | Convert hardware watchpoints to use breakpoint_ops. | |
841 | * breakpoint.h (breakpoint_ops) <insert>: Rename to... | |
842 | <insert_location>: ... this. Return int instead of void. | |
843 | Accept pointer to struct bp_location instead of pointer to | |
844 | struct breakpoint. Adapt all implementations. | |
845 | (breakpoint_ops) <remove>: Rename to... | |
846 | <remove_location>: ... this. Accept pointer to struct bp_location | |
847 | instead of pointer to struct breakpoint. Adapt all implementations. | |
848 | * breakpoint.c (insert_catchpoint): Delete function. | |
849 | (insert_bp_location): Call the watchpoint or catchpoint's | |
850 | breakpoint_ops.insert method. | |
851 | (remove_breakpoint_1): Call the watchpoint or catchpoint's | |
852 | breakpoint_ops.remove method. | |
853 | (insert_watchpoint, remove_watchpoint): New functions. | |
854 | (watchpoint_breakpoint_ops): New structure. | |
855 | (watch_command_1): Initialize the OPS field. | |
856 | * inf-child.c (inf_child_insert_fork_catchpoint) | |
857 | (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint) | |
858 | (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint) | |
859 | (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint): | |
860 | Delete functions. | |
861 | (inf_child_target): Remove initialization of to_insert_fork_catchpoint, | |
862 | to_remove_fork_catchpoint, to_insert_vfork_catchpoint, | |
863 | to_remove_vfork_catchpoint, to_insert_exec_catchpoint, | |
864 | to_remove_exec_catchpoint and to_set_syscall_catchpoint. | |
865 | * target.c (update_current_target): Change default implementation of | |
866 | to_insert_fork_catchpoint, to_remove_fork_catchpoint, | |
867 | to_insert_vfork_catchpoint, to_remove_vfork_catchpoint, | |
868 | to_insert_exec_catchpoint, to_remove_exec_catchpoint and | |
869 | to_set_syscall_catchpoint to return_one. | |
870 | (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint) | |
871 | (debug_to_insert_exec_catchpoint): Report return value. | |
872 | * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint) | |
873 | (to_insert_exec_catchpoint): Change declaration to return int instead | |
874 | of void. | |
875 | ||
9b20d036 MS |
876 | 2011-01-11 Michael Snyder <[email protected]> |
877 | ||
878 | * arm-tdep.c: Internationalization. | |
879 | * c-lang.c: Ditto. | |
880 | * charset.c: Ditto. | |
881 | * fork-child.c: Ditto. | |
882 | * nto-procfs.c: Ditto. | |
883 | * ppc-sysv-tdep.c: Ditto. | |
884 | * procfs.c: Ditto. | |
885 | * remote-mips.c: Ditto. | |
886 | * remote.c: Ditto. | |
887 | * rs6000-nat.c: Ditto. | |
888 | * rs6000-tdep.c: Ditto. | |
889 | * target.c: Ditto. | |
890 | * valops.c: Ditto. | |
891 | * value.c: Ditto. | |
892 | * xml-support.c: Ditto. | |
893 | * mi/mi-cmd-break.c: Ditto. | |
894 | * mi/mi-cmd-var.c: Ditto. | |
895 | * mi/mi-interp.c: Ditto. | |
896 | * mi/mi-main.c: Ditto. | |
897 | ||
dae477fe AB |
898 | 2011-01-11 Andrew Burgess <[email protected]> |
899 | ||
900 | * remote-sim.c (gdbsim_store_register): Update API to | |
901 | sim_store_register to check more error conditions. | |
902 | ||
0df8b418 MS |
903 | 2011-01-10 Michael Snyder <[email protected]> |
904 | ||
905 | * nto-procfs.c: Comment cleanup, mostly periods and spaces. | |
906 | * nto-tdep.c: Ditto. | |
907 | * nto-tdep.h: Ditto. | |
908 | * objc-exp.y: Ditto. | |
909 | * objc-lang.c: Ditto. | |
910 | * objfiles.c: Ditto. | |
911 | * objfiles.h: Ditto. | |
912 | * observer.c: Ditto. | |
913 | * opencl-lang.c: Ditto. | |
914 | * osabi.c: Ditto. | |
915 | * parse.c: Ditto. | |
916 | * parser-defs.h: Ditto. | |
917 | * p-exp.y: Ditto. | |
918 | * p-lang.c: Ditto. | |
919 | * posix-hdep.c: Ditto. | |
920 | * ppcbug-rom.c: Ditto. | |
921 | * ppc-linux-nat.c: Ditto. | |
922 | * ppc-linux-tdep.c: Ditto. | |
923 | * ppc-linux-tdep.h: Ditto. | |
924 | * ppcnbsd-tdep.c: Ditto. | |
925 | * ppcobsd-tdep.c: Ditto. | |
926 | * ppcobsd-tdep.h: Ditto. | |
927 | * ppc-sysv-tdep.c: Ditto. | |
928 | * ppc-tdep.h: Ditto. | |
929 | * printcmd.c: Ditto. | |
930 | * proc-abi.c: Ditto. | |
931 | * proc-flags.c: Ditto. | |
932 | * procfs.c: Ditto. | |
933 | * proc-utils.h: Ditto. | |
934 | * progspace.h: Ditto. | |
935 | * prologue-value.c: Ditto. | |
936 | * prologue-value.h: Ditto. | |
937 | * psympriv.h: Ditto. | |
938 | * psymtab.c: Ditto. | |
939 | * p-typeprint.c: Ditto. | |
940 | * p-valprint.c: Ditto. | |
941 | * ravenscar-sparc-thread.c: Ditto. | |
942 | * ravenscar-thread.c: Ditto. | |
943 | * ravenscar-thread.h: Ditto. | |
944 | * record.c: Ditto. | |
945 | * regcache.c: Ditto. | |
946 | * regcache.h: Ditto. | |
947 | * remote.c: Ditto. | |
948 | * remote-fileio.c: Ditto. | |
949 | * remote-fileio.h: Ditto. | |
950 | * remote.h: Ditto. | |
951 | * remote-m32r-sdi.c: Ditto. | |
952 | * remote-mips.c: Ditto. | |
953 | * remote-sim.c: Ditto. | |
954 | * rs6000-aix-tdep.c: Ditto. | |
955 | * rs6000-nat.c: Ditto. | |
956 | * rs6000-tdep.c: Ditto. | |
957 | ||
0d7a18f7 MS |
958 | 2011-01-10 Michael Snyder <[email protected]> |
959 | ||
960 | * charset.c (validate): Internationalization. | |
961 | * coffread.c (read_one_sym): Ditto. | |
962 | * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto. | |
963 | * h8300-tdep.c (H8300_extract_return_value): Ditto. | |
964 | * inflow.c (new_tty): Ditto. | |
965 | * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto. | |
966 | * m32c-tdep.c (m32c_return_value): Ditto. | |
967 | * mep-tdep.c (mep_store_return_value): Ditto. | |
968 | * score-tdep.c (score7_fetch_insn): Ditto. | |
969 | * ser-mingw.c (pipe_windows_open): Ditto. | |
970 | * sh64-tdep.c (sh64_extract_return_value): Ditto. | |
971 | * spu-tdep.c (spu_register_type): Ditto. | |
972 | * tracepoint.c (trace_find_command): Ditto. | |
973 | * valarith.c (value_pos): Ditto. | |
974 | ||
9a153e0b JB |
975 | 2011-01-10 Joel Brobecker <[email protected]> |
976 | ||
977 | * ada-valprint.c (printstr): Minor comment reformatting. | |
978 | ||
35ecd2d6 MS |
979 | 2011-01-08 Michael Snyder <[email protected]> |
980 | ||
981 | * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _ | |
982 | markup. | |
983 | ||
1777feb0 MS |
984 | 2011-01-08 Michael Snyder <[email protected]> |
985 | ||
986 | * h8300-tdep.c: Comment cleanup, mostly periods and spaces. | |
987 | * hppa-hpux-tdep.c: Ditto. | |
988 | * hppa-linux-nat.c: Ditto. | |
989 | * hppa-linux-tdep.c: Ditto. | |
990 | * hppanbsd-tdep.c: Ditto. | |
991 | * hppa-tdep.c: Ditto. | |
992 | * hppa-tdep.h: Ditto. | |
993 | * hpux-thread.c: Ditto. | |
994 | * i386-cygwin-tdep.c: Ditto. | |
995 | * i386-darwin-nat.c: Ditto. | |
996 | * i386gnu-nat.c: Ditto. | |
997 | * i386-linux-nat.c: Ditto. | |
998 | * i386-linux-tdep.c: Ditto. | |
999 | * i386-nat.c: Ditto. | |
1000 | * i386-nat.h: Ditto. | |
1001 | * i386nbsd-tdep.c: Ditto. | |
1002 | * i386-sol2-nat.c: Ditto. | |
1003 | * i386-stub.c: Ditto. | |
1004 | * i386-tdep.c: Ditto. | |
1005 | * i386-tdep.h: Ditto. | |
1006 | * i387-tdep.c: Ditto. | |
1007 | * ia64-linux-nat.c: Ditto. | |
1008 | * ia64-linux-tdep.c: Ditto. | |
1009 | * ia64-tdep.c: Ditto. | |
1010 | * infcall.c: Ditto. | |
1011 | * infcall.h: Ditto. | |
1012 | * infcmd.c: Ditto. | |
1013 | * inferior.c: Ditto. | |
1014 | * inferior.h: Ditto. | |
1015 | * infloop.c: Ditto. | |
1016 | * inflow.c: Ditto. | |
1017 | * infrun.c: Ditto. | |
1018 | * interps.c: Ditto. | |
1019 | * interps.h: Ditto. | |
1020 | * iq2000-tdep.c: Ditto. | |
1021 | * irix5-nat.c: Ditto. | |
1022 | * jit.c: Ditto. | |
1023 | * jit.h: Ditto. | |
1024 | * jv-exp.y: Ditto. | |
1025 | * jv-lang.c: Ditto. | |
1026 | * jv-lang.h: Ditto. | |
1027 | * jv-typeprint.c: Ditto. | |
1028 | * jv-valprint.c: Ditto. | |
1029 | * language.c: Ditto. | |
1030 | * language.h: Ditto. | |
1031 | * linespec.c: Ditto. | |
1032 | * linux-fork.c: Ditto. | |
1033 | * linux-nat.c: Ditto. | |
1034 | * linux-thread-db.c: Ditto. | |
1035 | * lm32-tdep.c: Ditto. | |
1036 | ||
025bb325 MS |
1037 | 2011-01-08 Michael Snyder <[email protected]> |
1038 | ||
1039 | * m2-exp.y: Comment cleanup, mostly periods and spaces. | |
1040 | * m2-lang.c: Ditto. | |
1041 | * m2-typeprint.c: Ditto. | |
1042 | * m2-valprint.c: Ditto. | |
1043 | * m32c-tdep.c: Ditto. | |
1044 | * m32r-linux-nat.c: Ditto. | |
1045 | * m32r-rom.c: Ditto. | |
1046 | * m32r-tdep.c: Ditto. | |
1047 | * m32r-tdep.h: Ditto. | |
1048 | * m68hc11-tdep.c: Ditto. | |
1049 | * m58klinux-nat.c: Ditto. | |
1050 | * m68k-tdep.c: Ditto. | |
1051 | * m88k-tdep.c: Ditto. | |
1052 | * m88k-tdep.h: Ditto. | |
1053 | * machoread.c: Ditto. | |
1054 | * macrocmd.c: Ditto. | |
1055 | * macroexp.c: Ditto. | |
1056 | * macrotab.c: Ditto. | |
1057 | * main.c: Ditto. | |
1058 | * maint.c: Ditto. | |
1059 | * mdebugread.c: Ditto. | |
1060 | * mdebugread.h: Ditto. | |
1061 | * memattr.c: Ditto. | |
1062 | * memattr.h: Ditto. | |
1063 | * memory-map.h: Ditto. | |
1064 | * mep-tdep.c: Ditto. | |
1065 | * microblaze-rom.c: Ditto. | |
1066 | * microblaze-tdep.c: Ditto. | |
1067 | * minsyms.c: Ditto. | |
1068 | * mips-irix-tdep.c: Ditto. | |
1069 | * mips-linux-nat.c: Ditto. | |
1070 | * mips-linux-tdep.c: Ditto. | |
1071 | * mips-linux-tdep.h: Ditto. | |
1072 | * mipsnbsd-nat.c: Ditto. | |
1073 | * mipsnbsd-tdep.c: Ditto. | |
1074 | * mipsread.c: Ditto. | |
1075 | * mips-tdep.c: Ditto. | |
1076 | * mips-tdep.h: Ditto. | |
1077 | * mn10300-linux-tdep.c: Ditto. | |
1078 | * mn10300-tdep.c: Ditto. | |
1079 | * mn10300-tdep.h: Ditto. | |
1080 | * monitor.c: Ditto. | |
1081 | * monitor.h: Ditto. | |
1082 | * moxie-tdep.c: Ditto. | |
1083 | * moxie-tdep.h: Ditto. | |
1084 | * mt-tdep.c: Ditto. | |
1085 | ||
1642781b MF |
1086 | 2011-01-08 Mike Frysinger <[email protected]> |
1087 | ||
1088 | * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name. | |
1089 | ||
394b0adb JB |
1090 | 2011-01-08 Robert Millan <[email protected]> |
1091 | ||
1092 | * fbsd-nat.c (fbsd_find_memory_regions): Fix typo. | |
1093 | ||
b670013c MS |
1094 | 2011-01-07 Michael Snyder <[email protected]> |
1095 | ||
1096 | * charset.c (_initialize_charset): Fix typo in string. | |
1097 | ||
a743e542 MS |
1098 | 2011-01-07 Michael Snyder <[email protected]> |
1099 | ||
1100 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message | |
1101 | for i18n. | |
1102 | * tui/tui-layout.c (tui_set_layout_for_display_command): | |
1103 | Split line so that operator goes to beginning of line. | |
1104 | * tui/tui-winsource.c (tui_horizontal_source_scroll): Move | |
1105 | assignment out of if statement. | |
1106 | ||
0963b4bd MS |
1107 | 2011-01-07 Michael Snyder <[email protected]> |
1108 | ||
1109 | * ada-lang.c: Comment cleanup, mostly periods and spaces. | |
1110 | * ada-lang.h: Ditto. | |
1111 | * ada-tasks.c: Ditto. | |
1112 | * ada-valprint.c: Ditto. | |
1113 | * aix-threads.c: Ditto. | |
1114 | * alpha-linux-nat.c: Ditto. | |
1115 | * alpha-linux-tdep.c: Ditto. | |
1116 | * alpha-mdebug-tdep.c: Ditto. | |
1117 | * alpha-nat.c: Ditto. | |
1118 | * alpha-osf1-tdep.c: Ditto. | |
1119 | * alpha-tdep.c: Ditto. | |
1120 | * alphabsd-nat.c: Ditto. | |
1121 | * alphabsd-tdep.c: Ditto. | |
1122 | * amd64-darwin-tdep.c: Ditto. | |
1123 | * amd64-linux-nat.c: Ditto. | |
1124 | * amd64-linux-tdep.c: Ditto. | |
1125 | * amd64-sol2-tdep.c: Ditto. | |
1126 | * amd64-tdep.c: Ditto. | |
1127 | * amd64-fbsd-tdep.c: Ditto. | |
1128 | * amd64-nbsd-tdep.c: Ditto. | |
1129 | * amd64-obsd-tdep.c: Ditto. | |
1130 | * amd64-linux-nat.c: Ditto. | |
1131 | * amd64-linux-tdep.c: Ditto. | |
1132 | * arm-tdep.c: Ditto. | |
1133 | * arm-tdep.h: Ditto. | |
1134 | * armnbsd-nat.c: Ditto. | |
1135 | * avr-tdep.c: Ditto. | |
1136 | * bfin-tdep.c: Ditto. | |
1137 | * bsd-kvm.c: Ditto. | |
1138 | * c-typeprintc: Ditto. | |
1139 | * c-valprint.c: Ditto. | |
1140 | * coff-pe-read.h: Ditto. | |
1141 | * coffreead.c: Ditto. | |
1142 | * cris-tdep.c: Ditto. | |
1143 | * d-lang.c: Ditto. | |
1144 | * darwin-nat-info.c: Ditto. | |
1145 | * darwin-nat.c: Ditto. | |
1146 | * dbug-rom.c: Ditto. | |
1147 | * dbxread.c: Ditto. | |
1148 | * dcache.c: Ditto. | |
1149 | * dcache.h: Ditto. | |
1150 | * dec-thread.c: Ditto. | |
1151 | * defs.h: Ditto. | |
1152 | * demangle.c: Ditto. | |
1153 | * dicos-tdep.c: Ditto. | |
1154 | * dictionary.c: Ditto. | |
1155 | * dictionary.h: Ditto. | |
1156 | * dink32-rom.c: Ditto. | |
1157 | * disasm.c: Ditto. | |
1158 | * doublest.c: Ditto. | |
1159 | * dsrec.c: Ditto. | |
1160 | * dummy-frame.c: Ditto. | |
1161 | * dwarf2-frame.c: Ditto. | |
1162 | * dwarf2expr.c: Ditto. | |
1163 | * dwarf2loc.c: Ditto. | |
1164 | * dwarf2read.c: Ditto. | |
1165 | * elfread.c: Ditto. | |
1166 | * environ.c: Ditto. | |
1167 | * eval.c: Ditto. | |
1168 | * event-top.h: Ditto. | |
1169 | * exceptions.c: Ditto. | |
1170 | * exceptions.h: Ditto. | |
1171 | * exec.c: Ditto. | |
1172 | * expprint.c: Ditto. | |
1173 | * expression.h: Ditto. | |
1174 | * f-exp.y: Ditto. | |
1175 | * f-lang.c: Ditto. | |
1176 | * f-lang.h: Ditto. | |
1177 | * f-typeprint.c: Ditto. | |
1178 | * f-valprint.c: Ditto. | |
1179 | * fbsd-nat.c: Ditto. | |
1180 | * findvar.c: Ditto. | |
1181 | * fork-child.c: Ditto. | |
1182 | * frame.c: Ditto. | |
1183 | * frame.h: Ditto. | |
1184 | * frv-linux-tdep.c: Ditto. | |
1185 | * frv-tdep.c: Ditto. | |
1186 | * gcore.c: Ditto. | |
1187 | * gdb-stabs.h: Ditto. | |
1188 | * gdb_assert.h: Ditto. | |
1189 | * gdb_string.h: Ditto. | |
1190 | * gdb_thread_db.h: Ditto. | |
1191 | * gdb_wait.h: Ditto. | |
1192 | * gdbarch.sh: Ditto. | |
1193 | * gdbcore.h: Ditto. | |
1194 | * gdbthread.h: Ditto. | |
1195 | * gdbtypes.c: Ditto. | |
1196 | * gdbtypes.h: Ditto. | |
1197 | * gnu-nat.c: Ditto. | |
1198 | * gnu-nat.h: Ditto. | |
1199 | * gnu-v2-abi.c: Ditto. | |
1200 | * gnu-v3-abi.c: Ditto. | |
1201 | * go32-nat.c: Ditto. | |
1202 | * gdbarch.c: Regenerate. | |
1203 | * gdbarch.h: Regenerate. | |
1204 | ||
ac74f770 MS |
1205 | 2011-01-07 Michael Snyder <[email protected]> |
1206 | ||
1207 | * ax-gdb.c: Adjust some long output strings. | |
1208 | * breakpoint.c: Ditto. | |
1209 | * charset.c: Ditto. | |
1210 | * cp-abi.c: Ditto. | |
1211 | * infcall.c: Ditto. | |
1212 | * infrun.c: Ditto. | |
1213 | * linux-nat.c: Ditto. | |
1214 | * solib-pa64.c: Ditto. | |
1215 | * solib-som.c: Ditto. | |
1216 | ||
d8e22779 TT |
1217 | 2011-01-06 Tom Tromey <[email protected]> |
1218 | ||
1219 | PR python/12367: | |
1220 | * NEWS: Add item. | |
1221 | * python/python.c (GdbMethods): Add "newest_frame" method. | |
1222 | * python/python-internal.h (gdbpy_newest_frame): Declare. | |
1223 | * python/py-frame.c (gdbpy_newest_frame): New function. | |
1224 | ||
a255712f PP |
1225 | 2010-01-06 Paul Pluzhnikov <[email protected]> |
1226 | ||
1227 | * jit.h (struct jit_code_entry): use ULONGEST for symfile_size. | |
1228 | * jit.c (jit_debug): New variable. | |
1229 | (show_jit_debug): New function. | |
1230 | (struct target_buffer): Use ULONGEST. | |
1231 | (bfd_open_from_target_memory): Likewise. | |
1232 | (jit_register_code, jit_inferior_init): Add debug output. | |
1233 | (_initialize_jit): Register "debug jit" command. | |
1234 | ||
ccfc3d6e TT |
1235 | 2011-01-06 Tom Tromey <[email protected]> |
1236 | ||
1237 | * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment. | |
1238 | * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME | |
1239 | and ARCH_FRAME. | |
1240 | ||
57126e4a TT |
1241 | 2011-01-06 Tom Tromey <[email protected]> |
1242 | ||
1243 | * python/py-frame.c (frapy_block): Use get_frame_block. | |
1244 | ||
16dfc9ce JB |
1245 | 2011-01-06 Joel Brobecker <[email protected]> |
1246 | ||
1247 | Do not stop on SIGPRIO signals by default | |
1248 | * infrun.c (_initialize_infrun): Unset signal_stop and | |
1249 | signal_print for TARGET_SIGNAL_PRIO. | |
1250 | ||
b1ce2347 JB |
1251 | 2011-01-06 Joel Brobecker <[email protected]> |
1252 | ||
1253 | * ada-tasks.c: Fix style violation in comment. | |
1254 | ||
8f7e195f JB |
1255 | 2011-01-06 Joel Brobecker <[email protected]> |
1256 | ||
1257 | * linespec.c (decode_compound, find_method): Remove trailing \n | |
1258 | at end of error string. | |
1259 | * solib-irix.c (irix_current_sos): Likewise. | |
1260 | * varobj.c (uninstall_variable): Likewise. | |
1261 | ||
e9bdf92c JB |
1262 | 2011-01-06 Joel Brobecker <[email protected]> |
1263 | ||
1264 | * copyright.py: New script. | |
1265 | * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc. | |
1266 | Launch emacs without exec'ing. Call copyright.py afterwards. | |
1267 | ||
3e43a32a MS |
1268 | 2011-01-05 Michael Snyder <[email protected]> |
1269 | ||
1270 | * addrmap.c: Shorten lines of >= 80 columns. | |
1271 | * arch-utils.c: Ditto. | |
1272 | * arch-utils.h: Ditto. | |
1273 | * ax-gdb.c: Ditto. | |
1274 | * ax-general.c: Ditto. | |
1275 | * bcache.c: Ditto. | |
1276 | * blockframe.c: Ditto. | |
1277 | * breakpoint.c: Ditto. | |
1278 | * buildsym.c: Ditto. | |
1279 | * c-lang.c: Ditto. | |
1280 | * c-typeprint.c: Ditto. | |
1281 | * charset.c: Ditto. | |
1282 | * coffread.c: Ditto. | |
1283 | * command.h: Ditto. | |
1284 | * corelow.c: Ditto. | |
1285 | * cp-abi.c: Ditto. | |
1286 | * cp-namespace.c: Ditto. | |
1287 | * cp-support.c: Ditto. | |
1288 | * dbug-rom.c: Ditto. | |
1289 | * dbxread.c: Ditto. | |
1290 | * defs.h: Ditto. | |
1291 | * dfp.c: Ditto. | |
1292 | * dfp.h: Ditto. | |
1293 | * dictionary.c: Ditto. | |
1294 | * disasm.c: Ditto. | |
1295 | * doublest.c: Ditto. | |
1296 | * dwarf2-frame.c: Ditto. | |
1297 | * dwarf2expr.c: Ditto. | |
1298 | * dwarf2loc.c: Ditto. | |
1299 | * dwarf2read.c: Ditto. | |
1300 | * elfread.c: Ditto. | |
1301 | * eval.c: Ditto. | |
1302 | * event-loop.c: Ditto. | |
1303 | * event-loop.h: Ditto. | |
1304 | * exceptions.h: Ditto. | |
1305 | * exec.c: Ditto. | |
1306 | * expprint.c: Ditto. | |
1307 | * expression.h: Ditto. | |
1308 | * f-lang.c: Ditto. | |
1309 | * f-valprint.c: Ditto. | |
1310 | * findcmd.c: Ditto. | |
1311 | * frame-base.c: Ditto. | |
1312 | * frame-unwind.c: Ditto. | |
1313 | * frame-unwind.h: Ditto. | |
1314 | * frame.c: Ditto. | |
1315 | * frame.h: Ditto. | |
1316 | * gcore.c: Ditto. | |
1317 | * gdb-stabs.h: Ditto. | |
1318 | * gdb_assert.h: Ditto. | |
1319 | * gdb_dirent.h: Ditto. | |
1320 | * gdb_obstack.h: Ditto. | |
1321 | * gdbcore.h: Ditto. | |
1322 | * gdbtypes.c: Ditto. | |
1323 | * gdbtypes.h: Ditto. | |
1324 | * inf-ttrace.c: Ditto. | |
1325 | * infcall.c: Ditto. | |
1326 | * infcmd.c: Ditto. | |
1327 | * inflow.c: Ditto. | |
1328 | * infrun.c: Ditto. | |
1329 | * inline-frame.h: Ditto. | |
1330 | * language.c: Ditto. | |
1331 | * language.h: Ditto. | |
1332 | * libunwind-frame.c: Ditto. | |
1333 | * libunwind-frame.h: Ditto. | |
1334 | * linespec.c: Ditto. | |
1335 | * linux-nat.c: Ditto. | |
1336 | * linux-nat.h: Ditto. | |
1337 | * linux-thread-db.c: Ditto. | |
1338 | * machoread.c: Ditto. | |
1339 | * macroexp.c: Ditto. | |
1340 | * macrotab.c: Ditto. | |
1341 | * main.c: Ditto. | |
1342 | * maint.c: Ditto. | |
1343 | * mdebugread.c: Ditto. | |
1344 | * memattr.c: Ditto. | |
1345 | * minsyms.c: Ditto. | |
1346 | * monitor.c: Ditto. | |
1347 | * monitor.h: Ditto. | |
1348 | * objfiles.c: Ditto. | |
1349 | * objfiles.h: Ditto. | |
1350 | * osabi.c: Ditto. | |
1351 | * p-typeprint.c: Ditto. | |
1352 | * p-valprint.c: Ditto. | |
1353 | * parse.c: Ditto. | |
1354 | * printcmd.c: Ditto. | |
1355 | * proc-events.c: Ditto. | |
1356 | * procfs.c: Ditto. | |
1357 | * progspace.c: Ditto. | |
1358 | * progspace.h: Ditto. | |
1359 | * psympriv.h: Ditto. | |
1360 | * psymtab.c: Ditto. | |
1361 | * record.c: Ditto. | |
1362 | * regcache.c: Ditto. | |
1363 | * regcache.h: Ditto. | |
1364 | * remote-fileio.c: Ditto. | |
1365 | * remote.c: Ditto. | |
1366 | * ser-mingw.c: Ditto. | |
1367 | * ser-tcp.c: Ditto. | |
1368 | * ser-unix.c: Ditto. | |
1369 | * serial.c: Ditto. | |
1370 | * serial.h: Ditto. | |
1371 | * solib-frv.c: Ditto. | |
1372 | * solib-irix.c: Ditto. | |
1373 | * solib-osf.c: Ditto. | |
1374 | * solib-pa64.c: Ditto. | |
1375 | * solib-som.c: Ditto. | |
1376 | * solib-sunos.c: Ditto. | |
1377 | * solib-svr4.c: Ditto. | |
1378 | * solib-target.c: Ditto. | |
1379 | * solib.c: Ditto. | |
1380 | * somread.c: Ditto. | |
1381 | * source.c: Ditto. | |
1382 | * stabsread.c: Ditto. | |
1383 | * stabsread.c: Ditto. | |
1384 | * stack.c: Ditto. | |
1385 | * stack.h: Ditto. | |
1386 | * symfile-mem.c: Ditto. | |
1387 | * symfile.c: Ditto. | |
1388 | * symfile.h: Ditto. | |
1389 | * symmisc.c: Ditto. | |
1390 | * symtab.c: Ditto. | |
1391 | * symtab.h: Ditto. | |
1392 | * target-descriptions.c: Ditto. | |
1393 | * target-memory.c: Ditto. | |
1394 | * target.c: Ditto. | |
1395 | * target.h: Ditto. | |
1396 | * terminal.h: Ditto. | |
1397 | * thread.c: Ditto. | |
1398 | * top.c: Ditto. | |
1399 | * tracepoint.c: Ditto. | |
1400 | * tracepoint.h: Ditto. | |
1401 | * ui-file.c: Ditto. | |
1402 | * ui-file.h: Ditto. | |
1403 | * ui-out.h: Ditto. | |
1404 | * user-regs.c: Ditto. | |
1405 | * user-regs.h: Ditto. | |
1406 | * utils.c: Ditto. | |
1407 | * valarith.c: Ditto. | |
1408 | * valops.c: Ditto. | |
1409 | * valprint.c: Ditto. | |
1410 | * valprint.h: Ditto. | |
1411 | * value.c: Ditto. | |
1412 | * varobj.c: Ditto. | |
1413 | * varobj.h: Ditto. | |
1414 | * vec.h: Ditto. | |
1415 | * xcoffread.c: Ditto. | |
1416 | * xcoffsolib.c: Ditto. | |
1417 | * xcoffsolib.h: Ditto. | |
1418 | * xml-syscall.c: Ditto. | |
1419 | * xml-tdesc.c: Ditto. | |
1420 | ||
9a2b4c1b MS |
1421 | 2011-01-05 Michael Snyder <[email protected]> |
1422 | ||
1423 | * cli/cli-cmds.c: Shorten lines of >= 80 columns. | |
1424 | * cli/cli-decode.c: Ditto. | |
1425 | * cli/cli-dump.c: Ditto. | |
1426 | * cli/cli-logging.c: Ditto. | |
1427 | * cli/cli-script.c: Ditto. | |
1428 | * cli/cli-setshow.c: Ditto. | |
1429 | * common/signals.c: Ditto. | |
1430 | * mi/mi-cmd-break.c: Ditto. | |
1431 | * mi/mi-cmd-disas.c: Ditto. | |
1432 | * mi/mi-cmd-stack.c: Ditto. | |
1433 | * mi/mi-cmd-var.c: Ditto. | |
1434 | * mi/mi-cmds.c: Ditto. | |
1435 | * mi/mi-common.h: Ditto. | |
1436 | * mi/mi-console.c: Ditto. | |
1437 | * mi/mi-interp.c: Ditto. | |
1438 | * mi/mi-main.c: Ditto. | |
1439 | * osf-share/cma_attr.c: Ditto. | |
1440 | * osf-share/cma_deb_core.h: Ditto. | |
1441 | * osf-share/cma_debug_client.h: Ditto. | |
1442 | * osf-share/cma_handle.h: Ditto. | |
1443 | * osf-share/cma_mutex.h: Ditto. | |
1444 | * osf-share/cma_stack_int.h: Ditto. | |
1445 | * osf-share/cma_tcb_defs.h: Ditto. | |
1446 | * python/py-auto-load.c: Ditto. | |
1447 | * python/py-breakpoint.c: Ditto. | |
1448 | * python/py-cmd.c: Ditto. | |
1449 | * python/py-frame.c: Ditto. | |
1450 | * python/py-objfile.c: Ditto. | |
1451 | * python/py-param.c: Ditto. | |
1452 | * python/py-progspace.c: Ditto. | |
1453 | * python/py-symbol.c: Ditto. | |
1454 | * python/py-value.c: Ditto. | |
1455 | * python/python-internal.h: Ditto. | |
1456 | * python/python.c: Ditto. | |
1457 | * tui/tui-data.c: Ditto. | |
1458 | * tui/tui-disasm.c: Ditto. | |
1459 | * tui/tui-hooks.c: Ditto. | |
1460 | * tui/tui-io.c: Ditto. | |
1461 | * tui/tui-layout.c: Ditto. | |
1462 | * tui/tui-regs.c: Ditto. | |
1463 | * tui/tui-source.c: Ditto. | |
1464 | * tui/tui-stack.c: Ditto. | |
1465 | * tui/tui-win.c: Ditto. | |
1466 | * tui/tui-windata.c: Ditto. | |
1467 | * tui/tui-winsource.c: Ditto. | |
1468 | ||
44944448 JB |
1469 | 2011-01-05 Joel Brobecker <[email protected]> |
1470 | ||
1471 | * configure.ac, gdb.1: Copyright year update. | |
1472 | ||
ebedcab5 JK |
1473 | 2011-01-03 Jan Kratochvil <[email protected]> |
1474 | ||
1475 | * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables | |
1476 | this_pc_in_block, morestack_msym and morestack_name. Check for | |
1477 | "__morestack" minimal symbol there. | |
1478 | ||
e5cc9f32 JB |
1479 | 2011-01-03 Joel Brobecker <[email protected]> |
1480 | ||
1481 | * symfile.c (find_sym_fns): Add call to dont_repeat. | |
1482 | ||
7b6bb8da JB |
1483 | 2011-01-01 Joel Brobecker <[email protected]> |
1484 | ||
1485 | Copyright year update in most files (performed by copyright.sh). | |
1486 | ||
71ce852c JB |
1487 | 2011-01-01 Joel Brobecker <[email protected]> |
1488 | ||
1489 | * top.c (print_gdb_version): Update copyright year in version output. | |
0e2de366 | 1490 | |
c3c1ebe8 | 1491 | For older changes see ChangeLog-2010. |
c906108c SS |
1492 | \f |
1493 | Local Variables: | |
1494 | mode: change-log | |
1495 | left-margin: 8 | |
1496 | fill-column: 74 | |
1497 | version-control: never | |
57da7796 | 1498 | coding: utf-8 |
c906108c | 1499 | End: |