Allow 'thread' to be used as a variable name in expressions.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
82d049ab
PH
12013-03-12 Paul Hilfinger <hilfingr@adacore.com>
2
3 * ada-lex.l (rules): Only recognize 'thread' as a
4 delimiter when followed by numerals, as for c-exp.y.
5 Use new rewind_to_char function to rewind the input for
6 expression-delimiting tokens.
7 (rewind_to_char): New function.
8
8c1fb155
JK
92013-03-11 Pedro Alves <palves@redhat.com>
10 Jan Kratochvil <jan.kratochvil@redhat.com>
11
12 * configure: Regenerate.
13 * configure.ac (check dynamic export flag): Link python test with
14 $PYTHON_LIBS.
15
cc81e1c6
DE
162013-03-11 Doug Evans <dje@google.com>
17 Keith Seitz <keiths@redhat.com>
18
19 * linespec.c (find_linespec_symbols): Call find_function_symbols
20 first, and then call lookup_prefix_sym/find_method.
21
39086a0e
PA
222013-03-11 Pedro Alves <palves@redhat.com>
23
24 * charset.c (convert_between_encodings): Don't cast between
25 different pointer to pointer types. Instead, make the 'inp' local
26 be of the type iconv expects.
27 (wchar_iterate): Don't cast between different pointer to pointer
28 types. Instead, use new pointer local of the type iconv expects.
29 * target.c (target_read_stralloc, target_fileio_read_stralloc):
30 Add new local of type char pointer, and use it to get a
31 char/string view of the byte buffer, instead of casting between
32 pointer to pointer types.
33
90585175
HAQ
342013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
35
36 * remote.c (remote_set_trace_buffer_size): Move != operator
37 to the start of next line to fix an ARI warning.
38
59ea5688
MM
392013-03-11 Markus Metzger <markus.t.metzger@intel.com>
40
41 * NEWS: Add record changes.
42
946287b7
MM
432013-03-11 Markus Metzger <markus.t.metzger@intel.com>
44
45 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
46 the instruction history disassembly.
47 * disasm.c (dump_insns): Omit the pc prefix, if requested.
48 * disasm.h (DISASSEMBLY_OMIT_PC): New.
49
afedecd3
MM
502013-03-11 Markus Metzger <markus.t.metzger@intel.com>
51
52 * Makefile.in (SFILES): Add record-btrace.c
53 (COMMON_OBS): Add record-btrace.o
54 * record-btrace.c: New.
55 * objfiles.c: Include btrace.h.
56 (free_objfile): call btrace_free_objfile.
57
15984c13
MM
582013-03-11 Markus Metzger <markus.t.metzger@intel.com>
59
60 * target.c (target_call_history, target_call_history_from,
61 target_call_history_range): New.
62 * target.h (target_ops) <to_call_history, to_call_history_from,
63 to_call_history_range>: New fields.
64 (target_call_history, target_call_history_from,
65 target_call_history_range): New declaration.
66 * record.c (get_call_history_modifiers, cmd_record_call_history,
67 record_call_history_size): New.
68 (_initialize_record): Add the "record function-call-history" command.
69 Add "set/show record function-call-history-size" commands.
70 * record.h (record_print_flag): New.
71
67c86d06
MM
722013-03-11 Markus Metzger <markus.t.metzger@intel.com>
73
74 * target.h (target_ops) <to_insn_history, to_insn_history_from,
75 to_insn_history_range>: New fields.
76 (target_insn_history): New.
77 (target_insn_history_from): New.
78 (target_insn_history_range): New.
79 * target.c (target_insn_history): New.
80 (target_insn_history_from): New.
81 (target_insn_history_range): New.
82 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
83 (record_insn_history_size): New.
84 (get_insn_number): New.
85 (get_context_size): New.
86 (no_chunk): New.
87 (get_insn_history_modifiers): New.
88 (cmd_record_insn_history): New.
89 (_initialize_record): Add "set/show record instruction-history-size"
90 command. Add "record instruction-history" command.
91
7c1687a9
MM
922013-03-11 Markus Metzger <markus.t.metzger@intel.com>
93
94 * record.h (record_disconnect): New.
95 (record_detach): New.
96 (record_mourn_inferior): New.
97 (record_kill): New.
98 * record-full.c (record_disconnect, record_detach,
99 record_mourn_inferior, record_kill): Move to...
100 * record.c: ...here.
101 (DEBUG): New.
102 (record_stop): New.
103 (record_unpush): New.
104 (cmd_record_stop): Call record_stop. Replace unpush_target
105 call with record_unpush call.
106 (record_disconnect, record_detach): Assert that the target
107 is of record stratum. Call record_unpush, record_stop, and
108 DEBUG.
109 (record_mourn_inferior, record_kill): Assert that the target
110 is of record stratum. Call record_unpush and DEBUG.
111
25ea693b
MM
1122013-03-11 Markus Metzger <markus.t.metzger@intel.com>
113
114 * record-full.h, record-full.c (record_memory_query): Rename
115 to ...
116 (record_full_memory_query): ...this. Update all users.
117 (record_arch_list_add_reg): Rename to ...
118 (record_full_arch_list_add_reg): ...this. Update all users.
119 (record_arch_list_add_mem): Rename to ...
120 (record_full_arch_list_add_mem): ...this. Update all users.
121 (record_arch_list_add_end): Rename to ...
122 (record_full_arch_list_add_end): ...this. Update all users.
123 (record_gdb_operation_disable_set): Rename to ...
124 (record_full_gdb_operation_disable_set): ...this.
125 Update all users.
126
88d1aa9d
MM
1272013-03-11 Markus Metzger <markus.t.metzger@intel.com>
128
129 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
130 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
131 (RECORD_IS_REPLAY): Renamed to ...
132 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
133 (RECORD_FILE_MAGIC): Renamed to ...
134 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
135 (record_mem_entry): Renamed to ...
136 (record_full_mem_entry): ... this. Updated all users.
137 (record_reg_entry): Renamed to ...
138 (record_full_reg_entry): ... this. Updated all users.
139 (record_end_entry): Renamed to ...
140 (record_full_end_entry): ... this. Updated all users.
141 (record_type) <record_end, record_reg, record_mem>: Renamed
142 to ...
143 (record_full_type) <record_full_end, record_full_reg,
144 record_full_mem>: ... this. Updated all users.
145 (record_entry): Renamed to ...
146 (record_full_entry): ... this. Updated all users.
147 (record_core_buf_entry): Renamed to ...
148 (record_full_core_buf_entry): ... this. Updated all users.
149 (record_core_regbuf): Renamed to ...
150 (record_full_core_regbuf): ... this. Updated all users.
151 (record_core_start): Renamed to ...
152 (record_full_core_start): ... this. Updated all users.
153 (record_core_end): Renamed to ...
154 (record_full_core_end): ... this. Updated all users.
155 (record_core_buf_list): Renamed to ...
156 (record_full_core_buf_list): ... this. Updated all users.
157 (record_first): Renamed to ...
158 (record_full_first): ... this. Updated all users.
159 (record_list): Renamed to ...
160 (record_full_list): ... this. Updated all users.
161 (record_arch_list_head): Renamed to ...
162 (record_full_arch_list_head): ... this. Updated all users.
163 (record_arch_list_tail): Renamed to ...
164 (record_full_arch_list_tail): ... this. Updated all users.
165 (record_stop_at_limit): Renamed to ...
166 (record_full_stop_at_limit): ... this. Updated all users.
167 (record_insn_max_num): Renamed to ...
168 (record_full_insn_max_num): ... this. Updated all users.
169 (record_insn_num): Renamed to ...
170 (record_full_insn_num): ... this. Updated all users.
171 (record_insn_count): Renamed to ...
172 (record_full_insn_count): ... this. Updated all users.
173 (record_ops): Renamed to ...
174 (record_full_ops): ... this. Updated all users.
175 (record_core_ops): Renamed to ...
176 (record_full_core_ops): ... this. Updated all users.
177 (set_record_cmdlist): Renamed to ...
178 (set_record_full_cmdlist): ... this. Updated all users.
179 (show_record_cmdlist): Renamed to ...
180 (show_record_full_cmdlist): ... this. Updated all users.
181 (record_cmdlist): Renamed to ...
182 (record_full_cmdlist): ... this. Updated all users.
183 (record_beneath_to_resume_ops): Renamed to ...
184 (record_full_beneath_to_resume_ops): ... this. Updated all users.
185 (record_beneath_to_resume): Renamed to ...
186 (record_full_beneath_to_resume): ... this. Updated all users.
187 (record_beneath_to_wait_ops): Renamed to ...
188 (record_full_beneath_to_wait_ops): ... this. Updated all users.
189 (record_beneath_to_wait): Renamed to ...
190 (record_full_beneath_to_wait): ... this. Updated all users.
191 (record_beneath_to_store_registers_ops): Renamed to ...
192 (record_full_beneath_to_store_registers_ops): ... this.
193 Updated all users.
194 (record_beneath_to_store_registers): Renamed to ...
195 (record_full_beneath_to_store_registers): ... this.
196 Updated all users.
197 (record_beneath_to_xfer_partial_ops): Renamed to ...
198 (record_full_beneath_to_xfer_partial_ops): ... this.
199 Updated all users.
200 (record_beneath_to_xfer_partial): Renamed to ...
201 (record_full_beneath_to_xfer_partial): ... this.
202 Updated all users.
203 (record_beneath_to_insert_breakpoint): Renamed to ...
204 (record_full_beneath_to_insert_breakpoint): ... this.
205 Updated all users.
206 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
207 (record_full_beneath_to_stopped_by_watchpoint): ... this.
208 Updated all users.
209 (record_beneath_to_stopped_data_address): Renamed to ...
210 (record_full_beneath_to_stopped_data_address): ... this.
211 Updated all users.
212 (record_beneath_to_async): Renamed to ...
213 (record_full_beneath_to_async): ... this. Updated all users.
214 (record_goto_insn): Renamed to ...
215 (record_full_goto_insn): ... this. Updated all users.
216 (record_save): Renamed to ...
217 (record_full_save): ... this. Updated all users.
218 (record_reg_alloc): Renamed to ...
219 (record_full_reg_alloc): ... this. Updated all users.
220 (record_reg_release): Renamed to ...
221 (record_full_reg_release): ... this. Updated all users.
222 (record_mem_alloc): Renamed to ...
223 (record_full_mem_alloc): ... this. Updated all users.
224 (record_mem_release): Renamed to ...
225 (record_full_mem_release): ... this. Updated all users.
226 (record_end_alloc): Renamed to ...
227 (record_full_end_alloc): ... this. Updated all users.
228 (record_end_release): Renamed to ...
229 (record_full_end_release): ... this. Updated all users.
230 (record_entry_release): Renamed to ...
231 (record_full_entry_release): ... this. Updated all users.
232 (record_list_release): Renamed to ...
233 (record_full_list_release): ... this. Updated all users.
234 (record_list_release_following): Renamed to ...
235 (record_full_list_release_following): ... this.
236 Updated all users.
237 (record_list_release_first): Renamed to ...
238 (record_full_list_release_first): ... this. Updated all users.
239 (record_arch_list_add): Renamed to ...
240 (record_full_arch_list_add): ... this. Updated all users.
241 (record_get_loc): Renamed to ...
242 (record_full_get_loc): ... this. Updated all users.
243 (record_check_insn_num): Renamed to ...
244 (record_full_check_insn_num): ... this. Updated all users.
245 (record_arch_list_cleanups): Renamed to ...
246 (record_full_arch_list_cleanups): ... this. Updated all users.
247 (record_message): Renamed to ...
248 (record_full_message): ... this. Updated all users.
249 (record_message_wrapper): Renamed to ...
250 (record_full_message_wrapper): ... this. Updated all users.
251 (record_message_wrapper_safe): Renamed to ...
252 (record_full_message_wrapper_safe): ... this. Updated all users.
253 (record_gdb_operation_disable): Renamed to ...
254 (record_full_gdb_operation_disable): ... this. Updated all users.
255 (record_hw_watchpoint): Renamed to ...
256 (record_full_hw_watchpoint): ... this. Updated all users.
257 (record_exec_insn): Renamed to ...
258 (record_full_exec_insn): ... this. Updated all users.
259 (record_restore): Renamed to ...
260 (record_full_restore): ... this. Updated all users.
261 (record_async_inferior_event_token): Renamed to ...
262 (record_full_async_inferior_event_token): ... this.
263 Updated all users.
264 (record_async_inferior_event_handler): Renamed to ...
265 (record_full_async_inferior_event_handler): ... this.
266 Updated all users.
267 (record_core_open_1): Renamed to ...
268 (record_full_core_open_1): ... this. Updated all users.
269 (record_open_1): Renamed to ...
270 (record_full_open_1): ... this. Updated all users.
271 (record_open): Renamed to ...
272 (record_full_open): ... this. Updated all users.
273 (record_close): Renamed to ...
274 (record_full_close): ... this. Updated all users.
275 (record_resume_step): Renamed to ...
276 (record_full_resume_step): ... this. Updated all users.
277 (record_resumed): Renamed to ...
278 (record_full_resumed): ... this. Updated all users.
279 (record_execution_dir): Renamed to ...
280 (record_full_execution_dir): ... this. Updated all users.
281 (record_resume): Renamed to ...
282 (record_full_resume): ... this. Updated all users.
283 (record_get_sig): Renamed to ...
284 (record_full_get_sig): ... this. Updated all users.
285 (record_sig_handler): Renamed to ...
286 (record_full_sig_handler): ... this. Updated all users.
287 (record_wait_cleanups): Renamed to ...
288 (record_full_wait_cleanups): ... this. Updated all users.
289 (record_wait_1): Renamed to ...
290 (record_full_wait_1): ... this. Updated all users.
291 (record_wait): Renamed to ...
292 (record_full_wait): ... this. Updated all users.
293 (record_stopped_by_watchpoint): Renamed to ...
294 (record_full_stopped_by_watchpoint): ... this. Updated all users.
295 (record_disconnect): Renamed to ...
296 (record_full_disconnect): ... this. Updated all users.
297 (record_detach): Renamed to ...
298 (record_full_detach): ... this. Updated all users.
299 (record_mourn_inferior): Renamed to ...
300 (record_full_mourn_inferior): ... this. Updated all users.
301 (record_kill): Renamed to ...
302 (record_full_kill): ... this. Updated all users.
303 (record_stopped_data_address): Renamed to ...
304 (record_full_stopped_data_address): ... this. Updated all users.
305 (record_registers_change): Renamed to ...
306 (record_full_registers_change): ... this. Updated all users.
307 (record_store_registers): Renamed to ...
308 (record_full_store_registers): ... this. Updated all users.
309 (record_xfer_partial): Renamed to ...
310 (record_full_xfer_partial): ... this. Updated all users.
311 (record_breakpoint): Renamed to ...
312 (record_full_breakpoint): ... this. Updated all users.
313 (record_breakpoint_p): Renamed to ...
314 (record_full_breakpoint_p): ... this. Updated all users.
315 (record_breakpoints): Renamed to ...
316 (record_full_breakpoints): ... this. Updated all users.
317 (record_sync_record_breakpoints): Renamed to ...
318 (record_full_sync_record_breakpoints): ... this.
319 Updated all users.
320 (record_init_record_breakpoints): Renamed to ...
321 (record_full_init_record_breakpoints): ... this.
322 Updated all users.
323 (record_insert_breakpoint): Renamed to ...
324 (record_full_insert_breakpoint): ... this. Updated all users.
325 (record_remove_breakpoint): Renamed to ...
326 (record_full_remove_breakpoint): ... this. Updated all users.
327 (record_can_execute_reverse): Renamed to ...
328 (record_full_can_execute_reverse): ... this. Updated all users.
329 (record_get_bookmark): Renamed to ...
330 (record_full_get_bookmark): ... this. Updated all users.
331 (record_goto_bookmark): Renamed to ...
332 (record_full_goto_bookmark): ... this. Updated all users.
333 (record_async): Renamed to ...
334 (record_full_async): ... this. Updated all users.
335 (record_can_async_p): Renamed to ...
336 (record_full_can_async_p): ... this. Updated all users.
337 (record_is_async_p): Renamed to ...
338 (record_full_is_async_p): ... this. Updated all users.
339 (record_execution_direction): Renamed to ...
340 (record_full_execution_direction): ... this. Updated all users.
341 (record_info): Renamed to ...
342 (record_full_info): ... this. Updated all users.
343 (record_delete): Renamed to ...
344 (record_full_delete): ... this. Updated all users.
345 (record_is_replaying): Renamed to ...
346 (record_full_is_replaying): ... this. Updated all users.
347 (record_goto_entry): Renamed to ...
348 (record_full_goto_entry): ... this. Updated all users.
349 (record_goto_begin): Renamed to ...
350 (record_full_goto_begin): ... this. Updated all users.
351 (record_goto_end): Renamed to ...
352 (record_full_goto_end): ... this. Updated all users.
353 (record_goto): Renamed to ...
354 (record_full_goto): ... this. Updated all users.
355 (init_record_ops): Renamed to ...
356 (init_record_full_ops): ... this. Updated all users.
357 (record_core_resume): Renamed to ...
358 (record_full_core_resume): ... this. Updated all users.
359 (record_core_kill): Renamed to ...
360 (record_full_core_kill): ... this. Updated all users.
361 (record_core_fetch_registers): Renamed to ...
362 (record_full_core_fetch_registers): ... this. Updated all users.
363 (record_core_prepare_to_store): Renamed to ...
364 (record_full_core_prepare_to_store): ... this. Updated all users.
365 (record_core_store_registers): Renamed to ...
366 (record_full_core_store_registers): ... this. Updated all users.
367 (record_core_xfer_partial): Renamed to ...
368 (record_full_core_xfer_partial): ... this. Updated all users.
369 (record_core_insert_breakpoint): Renamed to ...
370 (record_full_core_insert_breakpoint): ... this. Updated all users.
371 (record_core_remove_breakpoint): Renamed to ...
372 (record_full_core_remove_breakpoint): ... this. Updated all users.
373 (record_core_has_execution): Renamed to ...
374 (record_full_core_has_execution): ... this. Updated all users.
375 (init_record_core_ops): Renamed to ...
376 (init_record_full_core_ops): ... this. Updated all users.
377 (cmd_record_restore): Renamed to ...
378 (cmd_record_full_restore): ... this. Updated all users.
379 (record_save_cleanups): Renamed to ...
380 (record_full_save_cleanups): ... this. Updated all users.
381 (cmd_record_start): Renamed to ...
382 (cmd_record_full_start): ... this. Updated all users.
383 (set_record_insn_max_num): Renamed to ...
384 (set_record_full_insn_max_num): ... this. Updated all users.
385 (set_record_command): Renamed to ...
386 (set_record_full_command): ... this. Updated all users.
387 (show_record_command): Renamed to ...
388 (show_record_full_command): ... this. Updated all users.
389 (_initialize_record): Renamed to ...
390 (_initialize_record_full): ... this. Updated all users.
391
d02ed0bb
MM
3922013-03-11 Markus Metzger <markus.t.metzger@intel.com>
393
394 * record.h: Split into this and ...
395 * record-full.h: ... this.
396 * record.c: Split into this and ...
397 * record-full.c: ... this.
398 * target.h (target_ops): Add new fields to_info_record,
399 to_save_record, to_delete_record, to_record_is_replaying,
400 to_goto_record_begin, to_goto_record_end, to_goto_record.
401 (target_info_record): New.
402 (target_save_record): New.
403 (target_supports_delete_record): New.
404 (target_delete_record): New.
405 (target_record_is_replaying): New.
406 (target_goto_record_begin): New.
407 (target_goto_record_end): New.
408 (target_goto_record): New.
409 * target.c (target_info_record): New.
410 (target_save_record): New.
411 (target_supports_delete_record): New.
412 (target_delete_record): New.
413 (target_record_is_replaying): New.
414 (target_goto_record_begin): New.
415 (target_goto_record_end): New.
416 (target_goto_record): New.
417 * record.h: Declare struct cmd_list_element.
418 (record_cmdlist): New declaration.
419 (set_record_cmdlist): New declaration.
420 (show_record_cmdlist): New declaration.
421 (info_record_cmdlist): New declaration.
422 (cmd_record_goto): New declaration.
423 * record.c: Remove unnecessary includes.
424 Include inferior.h.
425 (cmd_record_goto): Remove declaration.
426 (record_cmdlist): Now extern. Initialize.
427 (set_record_cmdlist): Now extern. Initialize.
428 (show_record_cmdlist): Now extern. Initialize.
429 (info_record_cmdlist): Now extern. Initialize.
430 (find_record_target): New.
431 (require_record_target): New.
432 (cmd_record_start): Update.
433 (cmd_record_delete): Remove target-specific code.
434 Call target_delete_record.
435 (cmd_record_stop): Unpush any record target.
436 (set_record_insn_max_num): Move to record-full.c
437 (set_record_command): Add comment.
438 (show_record_command): Add comment.
439 (info_record_command): Update comment.
440 Remove target-specific code.
441 Call the record target's to_info_record.
442 (cmd_record_start): New.
443 (cmd_record_goto): Now extern.
444 Remove target-specific code.
445 Call target_goto_begin, target_goto_end, or target_goto.
446 (_initialize_record): Move record target ops initialization to
447 record-full.c.
448 Change "record" command help text.
449 Move "record restore", "record set", and "record show" commands to
450 record-full.c.
451 * Makefile.in (SFILES): Add record-full.c.
452 (HFILES_NO_SRCDIR): Add record-full.h.
453 (COMMON_OBS): Add record-full.o.
454 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
455 * arm-tdep.c: Include record-full.h.
456 * i386-linux-tdep.c: Include record-full.h instead of record.h.
457 * i386-tdep.c: Include record-full.h.
458 * infrun.c: Include record-full.h.
459 * linux-record.c: Include record-full.h.
460 * moxie-tdep.c: Include record-full.h.
461 * record-full.c: Include record-full.h.
462 Change module comment.
463 (set_record_full_cmdlist): New.
464 (show_record_full_cmdlist): New.
465 (record_full_cmdlist): New.
466 (record_goto_insn): New declaration.
467 (record_save): New declaration.
468 (record_check_insn_num): Change query string.
469 (record_info): New.
470 (record_delete): New.
471 (record_is_replaying): New.
472 (record_goto_entry): New.
473 (record_goto_begin): New.
474 (record_goto_end): New.
475 (record_goto): New.
476 (init_record_ops): Update.
477 (init_record_core_ops): Update.
478 (cmd_record_save): Rename to record_save. Remove target and arg checks.
479 (cmd_record_start): New.
480 (set_record_insn_max_num): Moved from record.c
481 (set_record_full_command): New.
482 (show_record_full_command): New.
483 (_initialize_record_full): New.
484
b48d48eb
MM
4852013-03-11 Markus Metzger <markus.t.metzger@intel.com>
486
487 * target.h (add_deprecated_target_alias): New.
488 * target.c (add_deprecated_target_alias): New.
489
a950d57c
MM
4902013-03-11 Markus Metzger <markus.t.metzger@intel.com>
491
492 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
493 and signal.h.
494 (linux_supports_btrace): Add kernel and
495 cpuid check.
496 (kernel_supports_btrace): New function.
497 (cpu_supports_btrace): New function.
498 (intel_supports_btrace): New function.
499
9accd112
MM
5002013-03-11 Markus Metzger <markus.t.metzger@intel.com>
501
502 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
503 * remote.c: Include btrace.h.
504 (struct btrace_target_info): New struct.
505 (remote_supports_btrace): New function.
506 (send_Qbtrace): New function.
507 (remote_enable_btrace): New function.
508 (remote_disable_btrace): New function.
509 (remote_teardown_btrace): New function.
510 (remote_read_btrace): New function.
511 (init_remote_ops): Add btrace ops.
512 (enum <unnamed>): Add btrace packets.
513 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
514 (_initialize_remote): Add packet configuration for branch tracing.
515
c12a2917
MM
5162013-03-11 Markus Metzger <markus.t.metzger@intel.com>
517
518 * features/btrace.dtd: New file.
519 * Makefile.in (XMLFILES): Add btrace.dtd.
520 * btrace.h (parse_xml_btrace): New declaration.
521 * btrace.c: Include xml-support.h.
522 (parse_xml_btrace): New function.
523 (parse_xml_btrace_block): New function.
524 (block_attributes): New struct.
525 (btrace_attributes): New struct.
526 (btrace_children): New struct.
527 (btrace_elements): New struct.
528
3e3aea48
MM
5292013-03-11 Markus Metzger <markus.t.metzger@intel.com>
530
531 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
532 (amd64_linux_enable_btrace): New.
533 (amd64_linux_disable_btrace): New.
534 (amd64_linux_teardown_btrace): New.
535 (_initialize_amd64_linux_nat): Initialize btrace ops.
536 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
537 (i386_linux_enable_btrace): New.
538 (i386_linux_disable_btrace): New.
539 (i386_linux_teardown_btrace): New.
540 (_initialize_i386_linux_nat): Initialize btrace ops.
541 * config/i386/linux.mh: Add linux-btrace.o.
542 * config/i386/linux64.mh: Add linux-btrace.o.
543
7c97f91e
MM
5442013-03-11 Markus Metzger <markus.t.metzger@intel.com>
545
546 * common/linux_btrace.h: New file.
547 * common/linux_btrace.c: New file.
548 * Makefile.in (SFILES): Add btrace.c.
549 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
550 (COMMON_OBS): Add btrace.o.
551 (linux-btrace.o): New rule.
552
1999790b 5532013-03-11 Markus Metzger <markus.t.metzger@intel.com>
02d27625
MM
554
555 * target.h: Include btrace.h.
556 (struct target_ops) <to_supports_btrace, to_enable_btrace,
557 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
558 * target.c (target_supports_btrace): New function.
559 (target_enable_btrace): New function.
560 (target_disable_btrace): New function.
561 (target_teardown_btrace): New function.
562 (target_read_btrace): New function.
563 * btrace.h: New file.
564 * btrace.c: New file.
565 * Makefile.in: Add btrace.c.
566 * gdbthread.h: Include btrace.h.
567 (struct thread_info): Add btrace field.
568 * thread.c: Include btrace.h.
569 (clear_thread_inferior_resources): Call target_teardown_btrace.
570 * common/btrace-common.h: New file.
571
61a31a67
JK
5722013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
573
574 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
575 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
576 kill_status to outer block.
577
05c56a9d
JK
5782013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
579
580 Fix entry-values if the callee called a noreturn function.
581 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
582 get_frame_address_in_block. Add new comment.
583
9112db09
JK
5842013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
585
586 Fix entry-values in C++ across CUs.
587 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
588 lookup_minimal_symbol. Add a comment.
589 * dwarf2read.c
590 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
591 DW_AT_linkage_name.
592
9b67fcec
YQ
5932013-03-08 Yao Qi <yao@codesourcery.com>
594
595 * tracepoint.c (_initialize_tracepoint): Indent the code.
596
6221be90
PA
5972013-03-08 Pedro Alves <palves@redhat.com>
598
599 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
600 (parse_find_args, find_command): Change type of pattern buffer
601 locals to 'gdb_byte *'.
602
be9a119c 6032013-03-08 Stan Shebs <stan@codesourcery.com>
f6f899bf
HAQ
604 Hafiz Abid Qadeer <abidh@codesourcery.com>
605
606 * NEWS: Mention set and show trace-buffer-size commands.
607 Mention new packet.
608 * target.h (struct target_ops): New method
609 to_set_trace_buffer_size.
610 (target_set_trace_buffer_size): New macro.
611 * target.c (update_current_target): Set up new method.
612 * tracepoint.c (trace_buffer_size): New global.
613 (start_tracing): Send it to the target.
614 (set_trace_buffer_size): New function.
615 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
616 * remote.c (remote_set_trace_buffer_size): New function.
617 (_initialize_remote): Use it.
618 (QTBuffer:size) New remote command.
619 (PACKET_QTBuffer_size): New enum.
620 (remote_protocol_features): Add an entry for
621 PACKET_QTBuffer_size.
622
7da3ab79
TT
6232013-03-08 Tom Tromey <tromey@redhat.com>
624
625 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
626 variable.
627
0c1f71e7
PA
6282013-03-07 Pedro Alves <palves@redhat.com>
629
630 * target.c (target_read_stralloc, target_fileio_read_alloc):
631 *Cast pointer to 'gdb_byte *' in target call.
632
c8af03a2
PA
6332013-03-07 Pedro Alves <palves@redhat.com>
634
635 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
636 call.
637
529480d0
KS
6382013-03-07 Keith Seitz <keiths@redhat.com>
639
640 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
641 (trace_pass_command): Likewise.
642 * cli/cli-cmds.c: Include cli/cli-utils.h.
643 (source_command): Use skip-spaces.
644 (disassemble_command): Likewise.
645 * findcmd.c: Include cli/cli-utils.h.
646 (parse_find_args): Use skip_spaces.
647 * go32-nat.c: Include cli/cli-utils.h.
648 (go32_sldt): Use skip_spaces.
649 (go32_sgdt): Likewise.
650 (go32_sidt): Likewise.
651 (go32_pde): Likewise.
652 (go32_pte): Likewise.
653 (go32_pte_for_address): Likewise.
654 * infcmd.c: Include cli/cli-utils.h.
655 (registers_info): Use skip_spaces.
656 * linux-tdep.c (read_mapping): Use skip_spaces_const.
657 (linux_info_proc): Likewise.
658 * linux-thread-db.c: Include cli/cli-utils.h.
659 (info_auto_load_libthread_db): Use skip_spaces_const.
660 * m32r-rom.c: Include cli/cli-utils.h.
661 (m32r_upload_command): Use skip_spaces.
662 * maint.c: Include cli/cli-utils.h.
663 (maintenance_translate_address): Use skip_spaces.
664 * mi/mi-parse.c: Include cli/cli-utils.h.
665 (mi_parse_argv): Use skip_spaces.
666 (mi_parse): Likewise.
667 * minsyms.c: Include cli/cli-utils.h.
668 (msymbol_hash_iw): Use skip_spaces_const.
669 * objc-lang.c: Include cli/cli-utils.h.
670 (parse_selector): Use skip_spaces.
671 (parse_method): Likewise.
672 * python/python.c: Include cli/cli-utils.h.
673 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
674 (python_command)[HAVE_PYTHON]: Likewise.
675 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
676 * remote-m32r-sdi.c: Include cli/cli-utils.h.
677 (m32r_load): Use skip_spaces.
678 * serial.c: Include cli/cli-utils.h.
679 (serial_open): Use skip_spaces_const.
680 * stack.c: Include cli/cli-utils.h.
681 (parse_frame_specification_1): Use skip_spaces_const.
682 * symfile.c: Include cli/cli-utils.h.
683 (set_ext_lang_command): Use skip_spaces.
684 * symtab.c: Include cli/cli-utils.h.
685 (rbreak_command): Use skip_spaces.
686 * thread.c (thread_name_command): Use skip_spaces.
687 * tracepoint.c (validate_actionline): Use skip_spaces.
688 (encode_actions_1): Likewise.
689 (trace_find_range_command): Likewise.
690 (trace_find_outside_command): Likewise.
691 (trace_dump_actions): Likewise.
692
ac91cd70
PA
6932013-03-07 Pedro Alves <palves@redhat.com>
694
695 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
696 * expprint.c (print_subexp_standard): Likewise.
697 * utils.c (host_char_to_target): Likewise.
698 * valprint.c (generic_emit_char, generic_printstr): Likewise.
699 * varobj.c (value_get_print_value): Change type of local to char*.
700 Cast it gdb_byte * in call to language printer.
701
2898e560
PA
7022013-03-07 Pedro Alves <palves@redhat.com>
703
704 * charset.c (struct wchar_iterator) <input>: Change type to 'const
705 gdb_byte *'.
706 (make_wchar_iterator): Remove cast to char*.
707 (wchar_iterate): Change type of local.
708
a09b4448
PA
7092013-03-07 Pedro Alves <palves@redhat.com>
710
711 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
712 for 'regcache->register_status'.
713
20ced3e4
PA
7142013-03-07 Pedro Alves <palves@redhat.com>
715
c2d6a675 716 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
20ced3e4
PA
717 int.
718
fe106009
PA
7192013-03-07 Pedro Alves <palves@redhat.com>
720
721 * stap-probe.c (handle_stap_probe): Add cast to char*.
722
8ac2c12b
PA
7232013-03-07 Pedro Alves <palves@redhat.com>
724
725 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
726 RECORD_MSGRCV>: Pass a signed variable to
727 regcache_raw_read_signed, instead of an unsigned one.
728
99f0a309
PA
7292013-03-07 Pedro Alves <palves@redhat.com>
730
731 * remote-notif.c (notif_debug): Change type to int.
732 * remote-notif.h (notif_debug): Likewise.
733
964b8317
PA
7342013-03-07 Pedro Alves <palves@redhat.com>
735
736 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
737
f0cc8ad4
PA
7382013-03-07 Pedro Alves <palves@redhat.com>
739
740 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
741 * remote.h (hex2bin, bin2hex): ... here.
742 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
743
77dec115
EZ
7442013-03-07 Eli Zaretskii <eliz@gnu.org>
745
746 * utils.c (initialize_utils): Improve doc strings of "set/show
747 width", "set/show height", and "set/show pagination".
748
741d92cf
KS
7492013-03-06 Keith Seitz <keiths@redhat.com>
750
751 * ax-gdb.c (gen_printf): Make FORMAT const.
752 * ax-gdb.h (gen_printf): Likewise.
753 * ax-general.c (ax_string): Make STR const.
754 * ax.h (ax_string): Likewise.
755
7b6c814e
DE
7562013-03-06 Doug Evans <dje@google.com>
757
758 * elfread.c (elf_symfile_read): Move debugging printf to more
759 logical location.
760
634334ab
PA
7612013-03-06 Pedro Alves <palves@redhat.com>
762
763 * python/py-utils.c (target_string_to_unicode): Delete function.
764 * python/python-internal.h (target_string_to_unicode): Delete
765 declaration.
766
e482a1a7
PM
7672013-03-06 Pierre Muller <muller@sourceware.org>
768
769 * linespec.c (get_current_search_block): ARI fix, use (void)
770 for empty parameter list.
771
4eeaa230
DE
7722013-03-05 Doug Evans <dje@google.com>
773
774 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
775 of old ada_lookup_symbol_list. In !full_search case, don't
776 search superblocks.
777 (ada_lookup_symbol_list): Delete arg full_search, all callers
778 updated. Call ada_lookup_symbol_list_worker.
779 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
780 * ada-lang.h (ada_lookup_symbol_list): Update.
781 * language.h (language_defn): Update comment for
782 la_iterate_over_symbols.
783 * linespec.c (iterate_over_file_blocks): New function.
784 (iterate_over_all_matching_symtabs): Call it.
785 (lookup_prefix_sym): Ditto.
786 (get_current_search_block): New function.
787 (get_search_block): Delete.
788 (find_label_symbols): Call get_current_search_block.
789 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
790 * symtab.c (iterate_over_symbols): Don't search superblocks.
791
b69b1fb1
YQ
7922013-03-05 Yao Qi <yao@codesourcery.com>
793
794 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
795 parameter VAR's type from "unsigned int" to "int".
796 * command.h (var_zuinteger_unlimited): Update its comments.
797 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
798
3c095f49
CV
7992013-03-05 Corinna Vinschen <vinschen@redhat.de>
800
801 * NEWS: Mention new target x86_64-*-cygwin*.
802
b5b0b0af
CV
8032013-03-05 Corinna Vinschen <vinschen@redhat.de>
804
805 * configure.host: Add x86_64-*-cygwin* as host.
806 * configure.tgt: Add x86_64-*-cygwin* as target.
807 * config/i386/cygwin64.mh: New file.
808
f6f99966
JK
8092013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
810
811 * linespec.c (decode_line_2): Fix duplicate request off by two message.
812
33f448b1
JK
8132013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
814
815 * linespec.c (struct linespec_canonical_name): New.
816 (struct linespec_state): Change canonical_names type to it.
817 (add_sal_to_sals): Change variable canonical_name to canonical. Change
818 xrealloc element size. Initialize the different CANONICAL fields.
819 (canonical_to_fullform): New.
820 (filter_results): Use it. Add variables canonical, fullform and
821 cleanup.
822 (struct decode_line_2_item, decode_line_2_compare_items): New.
823 (decode_line_2): Remove variables iter and item_names, add variables
824 items and items_count. Modify the code for these new variables.
825
feb14725
CV
8262013-03-04 Corinna Vinschen <vinschen@redhat.com>
827
828 * coff-pe-read.c (read_pe_exported_syms): Don't return without
829 calling do_cleanup.
830
e83b17ba
HZ
8312013-03-04 Luis Machado <lgustavo@codesourcery.com>
832
833 * tracepoint.c (build_traceframe_info): Add code for byte order.
834
a2d13a0d
KB
8352013-03-02 Kevin Buettner <kevinb@redhat.com>
836
8dddcae8
KB
837 * v850-tdep.c: (v850e2_register_name): Revise system register
838 names to match current V850E2M architecture specifications.
839 Update register number enum comments too.
a2d13a0d 840
d79e58d8
JW
8412013-03-01 Jiong Wang <jiwang@tilera.com>
842 Pedro Alves <palves@redhat.com>
843
844 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
845 to END_ADDR.
846 (tilegx_skip_prologue): Limit prologue analysis to section end.
847
c4be5165
JK
8482013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
849
850 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
851 use it.
852
e362b510
PA
8532013-03-01 Pedro Alves <palves@redhat.com>
854
855 Use gdb_byte for bytes from the program being debugged.
856
857 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
858 Change type of local 'buf' to gdb_byte.
859 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
860 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
861 * cris-tdep.c (cris_sigcontext_addr)
862 (cris_sigtramp_frame_unwind_cache): Likewise.
863 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
864 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
865 Likewise.
866 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
867 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
868 (hppa32_hpux_search_dummy_call_sequence)
869 (hppa_hpux_supply_save_state): Likewise.
870 * hppa-linux-tdep.c (insns_match_pattern)
871 (hppa_linux_find_global_pointer): Likewise.
872 * hppa-tdep.c (hppa_in_function_epilogue_p)
873 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
874 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
875 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
876 (i386fbsd_collect_uthread): Likewise.
877 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
878 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
879 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
880 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
881 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
882 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
883 (ia64_libunwind_frame_prev_register)
884 (ia64_libunwind_sigtramp_frame_this_id)
885 (ia64_find_global_pointer_from_dynamic_section)
886 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
887 (ia64_unwind_pc): Likewise.
888 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
889 * m68hc11-tdep.c (m68hc11_push_dummy_call)
890 (m68hc11_extract_return_value): Likewise.
891 * m68klinux-nat.c (fetch_register, store_register): Likewise.
892 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
893 (mep_get_insn, mep_push_dummy_call): Likewise.
894 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
895 (mips_linux_in_dynsym_stub): Likewise.
896 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
897 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
898 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
899 to gdb_byte.
900 * remote-mips.c (mips_set_register): Likewise.
901 * remote-sim.c (gdbsim_fetch_register): Likewise.
902 * score-tdep.c (score7_fetch_inst): Change type of parameter
903 'memblock' and local 'buf' to gdb_byte.
904 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
905 Change type of local 'buf' to gdb_byte. Adjust.
906 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
907 to gdb_byte**.
908 (score7_analyze_prologue): Change type of 'memblock' and
909 'memblock_ptr' locals to gdb_byte*.
910 * sh64-tdep.c (sh64_extract_return_value)
911 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
912 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
913 * solib-pa64.c (pa64_solib_create_inferior_hook)
914 (pa64_open_symbol_file_object): Remove local 'buf'.
915 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
916 (som_open_symbol_file_object): Likewise.
917 * solib-spu.c (spu_current_sos): Likewise.
918 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
919 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
920 (spu_store_registers): Likewise.
921 * target.c (debug_print_register): Likewise.
922 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
923 * xstormy16-tdep.c (xstormy16_store_return_value)
924 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
925 (xstormy16_find_jmp_table_entry): Likewise.
926
75cc61ca 9272013-03-01 Jiong Wang <jiwang@tilera.com>
61d8bd0e
JW
928
929 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
930 (tilegx_gdbarch_init): Install it.
931
ddb08e9c
TT
9322013-02-28 Tom Tromey <tromey@redhat.com>
933
934 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
935 PyLong_Check.
936
62d7fb51
DE
9372013-02-28 Doug Evans <dje@google.com>
938
939 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
940 * python/python.c (gdbpy_find_pc_line): Ditto.
941
c4a9e8b4
TT
9422013-02-28 Tom Tromey <tromey@redhat.com>
943
944 * contrib/excheck.py: New file.
945 * contrib/exsummary.py: New file.
946 * contrib/gcc-with-excheck: New file.
947
7f6a5dde
TT
9482013-02-28 Tom Tromey <tromey@redhat.com>
949
950 * python/python.c (gdbpy_print_stack): Call begin_line and
951 fprintf_filtered inside TRY_CATCH.
952
9e974e55
TT
9532013-02-28 Tom Tromey <tromey@redhat.com>
954
955 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
956 inside TRY_CATCH.
957
dd5fa3e7
TT
9582013-02-28 Tom Tromey <tromey@redhat.com>
959
960 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
961 frame_object_to_frame_info inside TRY_CATCH.
962
86a3263f
TT
9632013-02-28 Tom Tromey <tromey@redhat.com>
964
965 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
966 TRY_CATCH.
967
81b52a3a
TT
9682013-02-28 Tom Tromey <tromey@redhat.com>
969
970 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
971
d50a0ce2
CV
9722013-02-27 Corinna Vinschen <vinschen@redhat.com>
973
974 * windows-nat.c: Throughout, fix format strings and casts of
975 printf-like functions to avoid type related warnings on all
976 platforms.
977 (handle_output_debug_string): Fetch context information address
978 from debug string using string_to_core_addr.
979
e1f58301
JW
9802013-02-27 Jiong Wang <jiwang@tilera.com>
981
982 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
983 * regformats/reg-tilegx32.dat: New.
984
4fcd89fc
JW
9852013-02-27 Jiong Wang <jiwang@tilera.com>
986
987 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
988
748d24e6
JW
9892013-02-27 Jiong Wang <jiwang@tilera.com>
990
991 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
992
6c8e944d
YQ
9932013-02-27 Yao Qi <yao@codesourcery.com>
994 Pedro Alves <palves@redhat.com>
995
996 * tracepoint.c (tfile_trace_find): For tfind
997 pc/tp/range/outside, look for the next trace frame instead of
998 always starting from frame 0.
999
acd7db30
AG
10002013-02-26 Anthony Green <green@moxielogic.com>
1001
1002 * configure.tgt: Add support for moxie-*-rtems* target.
1003
025e6dce
PA
10042013-02-25 Pedro Alves <palves@redhat.com>
1005
1006 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
1007 warning text.
1008
ca9c94ef
MR
10092013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
1010
1011 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
1012 if $fp is used as the virtual frame pointer.
1013
24c274a1
AM
10142013-02-23 Alan Modra <amodra@gmail.com>
1015
1016 * elfread.c (elf_symtab_read): Do not use udata.p here to find
1017 symbol size.
1018 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
1019 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
1020 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
1021 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
1022
bfada189
JK
10232013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1024
1025 Code cleanup.
1026 * elfread.c (build_id_bfd_get): Make the return type const.
1027 (build_id_verify): Make the check parameter const.
1028 (build_id_to_debug_filename): Make the build_id parameter and variable
1029 data const.
1030 (find_separate_debug_file_by_buildid): Make the variable build_id const.
1031
c0355132
AM
10322013-02-21 Alan Modra <amodra@gmail.com>
1033
1034 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
1035
9f44fbc0
SCR
10362013-02-20 Siva Chandra Reddy <sivachandra@google.com>
1037
1038 Add a new method 'disassemble' to gdb.Architecture class.
1039 * python/py-arch.c (archpy_disassmble): Implementation of the
1040 new method gdb.Architecture.disassemble.
1041 (arch_object_methods): Add entry for the new method.
1042
b74ea3eb
JW
10432013-02-20 Jiong Wang <jiwang@tilera.com>
1044
1045 * MAINTAINERS (Write After Approval): Add myself to the list.
1046
61a672f1
PA
10472013-02-19 Pedro Alves <palves@redhat.com>
1048
1049 Garbage collect 'struct monitor_ops'::load_routine.
1050
1051 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
1052 * monitor.c (monitor_load): No longer call
1053 current_monitor->load_routine.
1054 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
1055 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
1056 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
1057
40e397df
PA
10582013-02-19 Pedro Alves <palves@redhat.com>
1059
1060 PR gdb/15161
1061
1062 Harmonize with generic_load.
1063
1064 * monitor.c: Include "readline/readline.h".
1065 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
1066 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
1067 long/strtol for the 'load_offset' local. Error out if no argument
1068 is given or if too many arguments are given. Tilde expand the
1069 passed in file name.
1070
f698ca8e
KT
10712013-02-19 Kai Tietz <ktietz@redhat.com>
1072
1073 PR gdb/15161
1074 * symfile.c (load_section_data): Change type of load_offset
1075 to CORE_ADDR.
1076 (generic_load): User strtoulst instead of strtoul for conversion
1077 of load_offset.
1078
3361b059
WL
10792013-02-19 Jiong Wang <jiwang@tilera.com>
1080
1081 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
1082 for return address, "lr" register, saved on stack.
1083 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
1084 after we invoke tilegx_analyze_prologue.
1085
3e9d5130
WL
10862013-02-19 Jiong Wang <jiwang@tilera.com>
1087
bb1bcd86
WL
1088 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
1089
3361b059 10902013-02-19 Jiong Wang <jiwang@tilera.com>
bb1bcd86 1091
b74ea3eb 1092 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
3e9d5130 1093
4aaf2503
WL
10942013-02-19 Jiong Wang <jiwang@tilera.com>
1095
b74ea3eb 1096 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
4aaf2503
WL
1097 (tilegx_write_pc): New function.
1098 (tilegx_cannot_reference_register): Return zero if REGNO
1099 is TILEGX_FAULTNUM_REGNUM.
1100 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
1101 (tilegx_register_name): Add handling of "faultnum" register.
1102 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
1103 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
1104 handling of TILEGX_FAULTNUM_REGNUM.
1105 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
1106
bc23a956
WL
11072013-02-19 Jiong Wang <jiwang@tilera.com>
1108
1109 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
b74ea3eb 1110 should be aligned to 64bit.
bc23a956 1111
42f45f1a
KT
11122013-02-19 Kai Tietz <ktietz@redhat.com>
1113
1114 * windows-nat.c (windows_xfer_memory): Fix debug-output
1115 for LLP64.
1116
6ce4c112
LL
11172013-02-19 Lei Liu <lei.liu2@windriver.com>
1118
1119 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
1120 Don't check DSP register number if HAVE_DSP is not set.
1121
30e8ee25
AM
11222013-02-19 Alan Modra <amodra@gmail.com>
1123
1124 * elfread.c (struct build_id): Delete. Use struct elf_build_id
1125 throughout file instead.
1126 (build_id_bfd_get): Update to use new elf_tdata build_id field.
1127 Don't xmalloc return value.
1128 (build_id_verify): Similarly. Don't xfree.
1129 (build_id_to_debug_filename): Update.
1130 (find_separate_debug_file_by_buildid): Update, don't xfree.
1131
4c9ad8c2
TT
11322013-02-18 Tom Tromey <tromey@redhat.com>
1133
1134 PR gdb/15102:
1135 * dwarf2read.c (read_subrange_type): Use result of
1136 'check_typedef'.
1137
983dc440
YQ
11382013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
1139
1140 * frame.c: Remove one extra white space after #include
1141 directive.
1142
7fb2b84a
JK
11432013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1144
1145 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
1146
edceb2a9
JK
11472013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1148
1149 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
1150 and dir commands into an if block.
1151
e81b7af8
TT
11522013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
1153
1154 * python/py-breakpoint (struct pybp_code): Use int instead of
1155 enum type_code.
1156
f5911ea1
HAQ
11572013-02-15 Pedro Alves <pedro@codesourcery.com>
1158 Hafiz Abid Qadeer <abidh@codesourcery.com>
1159
1160 * NEWS: Mention new field "trace-file".
1161 * tracepoint.c (trace_status_mi): Output "trace-file" field.
1162 (tfile_open): Record the trace file's filename in the trace
1163 status.
1164 (tfile_files_info): Mention the name of the trace file.
1165 Check the "filename" field explicitely.
1166 (trace_status_command): Explicitely check "filename" field.
1167 (trace_find_command): Ditto.
1168 (trace_find_pc_command): Ditto.
1169 (trace_find_tracepoint_command): Ditto.
1170 (trace_find_line_command): Ditto.
1171 (trace_find_range_command): Ditto.
1172 (trace_find_outside_command): Ditto.
1173 * tracepoint.h (struct trace_status) <from_file>: Rename it
1174 to "filename" and make it hold the trace file's filename
1175 instead of a boolean.
1176 * remote.c (remote_get_trace_status): Initialize "filename"
1177 field with NULL instead of 0.
1178
796cb314
YQ
11792013-02-15 Yao Qi <yao@codesourcery.com>
1180
1181 * remote.c: Fix a typo.
1182
42e79b1d
PM
11832013-02-14 Pierre Muller <muller@sourceware.org>
1184
1185 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
1186
baea0dae
PA
11872013-02-14 Pedro Alves <palves@redhat.com>
1188
1189 * utils.c (savestring): Don't #undef it. Move function to
1190 common/common-utils.c.
1191 * common/common-utils.c: Include gdb_string.h.
1192 (savestring): Move here from utils.c.
1193 * common/common-utils.h (savestring): Declare.
1194
57c3b6ed
PA
11952013-02-14 Pedro Alves <palves@redhat.com>
1196
1197 * utils.c (savestring): Rename parameter 'size' to 'len'.
1198
d6c44983
YZ
11992013-02-14 Pedro Alves <palves@redhat.com>
1200 Yufeng Zhang <yufeng.zhang@arm.com>
1201
1202 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
1203 (aarch64_inferior_data, struct aarch64_inferior_data):
1204 Delete.
1205 (struct aarch64_process_info): New.
1206 (aarch64_process_list): New global.
1207 (aarch64_find_process_pid, aarch64_add_process)
1208 (aarch64_process_info_get): New functions.
1209 (aarch64_inferior_data_get): Delete.
1210 (aarch64_process_info_get): New function.
1211 (aarch64_forget_process): New function.
1212 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
1213 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
1214 aarch64_get_debug_reg_state.
1215 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
1216 instead of linux_nat_iterate_watchpoint_lwps.
1217 (aarch64_linux_new_fork): New function.
1218 (aarch64_linux_child_post_startup_inferior): Use
1219 aarch64_forget_process instead of aarch64_init_debug_reg_state.
1220 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
1221 (aarch64_linux_remove_hw_breakpoint)
1222 (aarch64_handle_aligned_watchpoint)
1223 (aarch64_handle_unaligned_watchpoint)
1224 (aarch64_linux_insert_watchpoint)
1225 (aarch64_linux_remove_watchpoint)
1226 (aarch64_linux_stopped_data_address): Adjust to pass the current
1227 process id to aarch64_debug_reg_state.
1228 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
1229 linux_nat_new_fork hook, and aarch64_forget_process as
1230 linux_nat_forget_process hook; remove the call to
1231 register_inferior_data_with_cleanup.
1232
4819b3f8
PA
12332013-02-14 Pedro Alves <palves@redhat.com>
1234
1235 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
1236 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
1237 lval_memory.
1238
1773c82c
HAQ
12392013-02-14 Pedro Alves <pedro@codesourcery.com>
1240 Hafiz Abid Qadeer <abidh@codesourcery.com>
1241
1242 * tracepoint.h (validate_trace_state_variable_name): Declare.
1243 * tracepoint.c (validate_trace_state_variable_name): New.
1244 (trace_variable_command): Parse the trace state variable's name
1245 without using parse_expression. Do several validations.
1246 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
1247 trace state variable's name with parse_expression. Validate it.
1248
53778a97
YQ
12492013-02-14 Yao Qi <yao@codesourcery.com>
1250
1251 * infcmd.c (breakpoint_proceeded): Remove it.
1252
7b3ae3a6
YQ
12532013-02-14 Yao Qi <yao@codesourcery.com>
1254
1255 * tracepoint.c (end_actions_pseudocommand): Make it static.
1256 (while_stepping_pseudocommand): Likewise.
1257 * tracepoint.h (end_actions_pseudocommand): Remove the
1258 declaration.
1259 (while_stepping_pseudocommand): Likewise.
1260
64580925
YQ
12612013-02-14 Yao Qi <yao@codesourcery.com>
1262
1263 * cli/cli-decode.c (help_cmd): Remove the declaration of
1264 "cmdlist".
1265 (help_all): Likewise.
1266
26cb8b7c
PA
12672013-02-13 Pedro Alves <palves@redhat.com>
1268
1269 * amd64-linux-nat.c (update_debug_registers_callback):
1270 Update comment.
1271 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
1272 iterate_over_lwps.
1273 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
1274 i386_debug_reg_state.
1275 (amd64_linux_new_fork): New function.
1276 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
1277 linux_nat_new_fork hook, and i386_forget_process as
1278 linux_nat_forget_process hook.
1279 * i386-linux-nat.c (update_debug_registers_callback):
1280 Update comment.
a8256ea1 1281 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
26cb8b7c
PA
1282 iterate_over_lwps.
1283 (i386_linux_prepare_to_resume): Pass the lwp's pid to
1284 i386_debug_reg_state.
1285 (i386_linux_new_fork): New function.
1286 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
1287 linux_nat_new_fork hook, and i386_forget_process as
1288 linux_nat_forget_process hook.
1289 * i386-nat.c (i386_init_dregs): Delete.
1290 (i386_inferior_data, struct i386_inferior_data):
1291 Delete.
1292 (struct i386_process_info): New.
1293 (i386_process_list): New global.
1294 (i386_find_process_pid, i386_add_process, i386_process_info_get):
1295 New functions.
1296 (i386_inferior_data_get): Delete.
1297 (i386_process_info_get): New function.
1298 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
1299 (i386_forget_process): New function.
1300 (i386_cleanup_dregs): Rewrite.
1301 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
1302 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
1303 (i386_stopped_data_address, i386_insert_hw_breakpoint)
1304 (i386_remove_hw_breakpoint): Adjust to pass the current process id
1305 to i386_debug_reg_state.
1306 (i386_use_watchpoints): Don't register inferior data.
1307 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
1308 adjust comment.
1309 (i386_forget_process): Declare.
1310 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
1311 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
1312 New static globals.
1313 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
1314 (add_initial_lwp): New, factored out from ...
1315 (add_lwp): ... this. Don't check the number of lwps before
1316 calling linux_nat_new_thread.
1317 (linux_nat_iterate_watchpoint_lwps): Delete.
1318 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
1319 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
1320 forks and vforks.
1321 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
1322 initial lwp.
1323 (linux_nat_kill, linux_nat_mourn_inferior): Call
1324 linux_nat_forget_process.
1325 (linux_nat_set_new_fork, linux_nat_set_forget_process)
1326 (linux_nat_forget_process): New functions.
1327 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
1328 type.
1329 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
1330 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
1331 types.
1332 (linux_nat_set_new_fork, linux_nat_set_forget_process)
1333 (linux_nat_forget_process): New declarations.
1334
1335 * amd64fbsd-nat.c (super_mourn_inferior): New global.
1336 (amd64fbsd_mourn_inferior): New function.
1337 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
1338 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
1339
5befea72
MS
13402013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
1341
55015247
YQ
1342 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
1343 Adding _().
5befea72 1344
1d3ffd6b
MS
13452013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
1346
1347 * aarch64-linux-nat.c (debug_reg_change_callback)
1348 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
1349 %s and phex().
1350
6eb04473
MS
13512013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
1352
1353 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
1354 with LONGEST.
1355
a016fc87
HAQ
13562013-02-13 Pedro Alves <palves@redhat.com>
1357 Hafiz Abid Qadeer <abidh@codesourcery.com>
1358
1359 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
1360
e234dfaf
TT
13612013-02-12 Tom Tromey <tromey@redhat.com>
1362
1363 PR symtab/11464:
1364 * c-exp.y (lex_one_token): Initialize other fields of yylval on
1365 NAME return.
1366 (classify_inner_name): Remove 'first_name' argument, add
1367 'context'. Remove unused variable.
1368 (yylex): Explicitly maintain the context type. Exit loop earlier
1369 if NAME result is seen.
1370
0b1afbb3
PA
13712013-02-12 Pedro Alves <palves@redhat.com>
1372
1373 * amd64-darwin-tdep.c: Add (C) after Copyright.
1374 * cli/cli-cmds.h: Ditto.
1375 * cli/cli-decode.c: Ditto.
1376 * cli/cli-decode.h: Ditto.
1377 * cli/cli-dump.c: Ditto.
1378 * cli/cli-dump.h: Ditto.
1379 * cli/cli-interp.c: Ditto.
1380 * cli/cli-logging.c: Ditto.
1381 * cli/cli-script.c: Ditto.
1382 * cli/cli-script.h: Ditto.
1383 * cli/cli-setshow.c: Ditto.
1384 * cli/cli-setshow.h: Ditto.
1385 * cli/cli-utils.c: Ditto.
1386 * cli/cli-utils.h: Ditto.
1387 * config/alpha/nm-osf3.h: Ditto.
1388 * config/djgpp/djconfig.sh: Ditto.
1389 * config/i386/nm-fbsd.h: Ditto.
1390 * config/i386/nm-i386gnu.h: Ditto.
1391 * config/nm-linux.h: Ditto.
1392 * config/nm-nto.h: Ditto.
1393 * config/rs6000/nm-rs6000.h: Ditto.
1394 * config/sparc/nm-sol2.h: Ditto.
1395 * darwin-nat-info.c: Ditto.
1396 * dfp.c: Ditto.
1397 * dfp.h: Ditto.
1398 * gdb-demangle.h: Ditto.
1399 * i386-darwin-nat.c: Ditto.
1400 * i386-darwin-tdep.c: Ditto.
1401 * linux-fork.h: Ditto.
1402 * m32c-tdep.c: Ditto.
1403 * microblaze-linux-tdep.c: Ditto.
1404 * microblaze-rom.c: Ditto.
1405 * microblaze-tdep.c: Ditto.
1406 * microblaze-tdep.h: Ditto.
1407 * mips-linux-tdep.h: Ditto.
1408 * ppc-ravenscar-thread.c: Ditto.
1409 * ppc-ravenscar-thread.h: Ditto.
1410 * prologue-value.c: Ditto.
1411 * prologue-value.h: Ditto.
1412 * ravenscar-thread.c: Ditto.
1413 * ravenscar-thread.h: Ditto.
1414 * sparc-ravenscar-thread.c: Ditto.
1415 * sparc-ravenscar-thread.h: Ditto.
1416 * tilegx-linux-tdep.c: Ditto.
1417 * unwind_stop_reasons.def: Ditto.
1418 * windows-nat.h: Ditto.
1419 * xtensa-linux-tdep.c: Ditto.
1420 * xtensa-xtregs.c: Ditto.
1421 * regformats/regdat.sh: Ditto.
1422 * regformats/regdef.h: Ditto.
1423
6c01dd94
PA
14242013-02-12 Pedro Alves <palves@redhat.com>
1425
1426 * break-catch-sig.c: Update copyright years.
1427
b65a2bd9
SCR
14282013-02-11 Siva Chandra Reddy <sivachandra@google.com>
1429
1430 Add support for a destructor for ui_out data and use it to
1431 provide a ui_out destructor.
1432 * ui-out.h: Declare the new ui_out destructor.
1433 (ui_out_impl): Add a field for data destructor in ui_out_impl.
1434 * ui-out.c (default_data_destroy): Add a default data destructor
1435 which does nothing.
1436 (default_ui_out_impl): Set the new data_destroy field to
1437 default_data_destroy
1438 (uo_data_destroy): Local function which invokes the data
1439 destructor if present.
1440 (clear_table): Local function which clears the table data of a
1441 ui_out object.
1442 (ui_out_destroy): Public function which frees a ui_out object.
1443 (ui_out_table_end): Use the new clear_table function.
1444 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
1445 NULL.
1446 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
1447 to NULL.
1448
c2792f5a
DE
14492013-02-11 Doug Evans <dje@google.com>
1450
1451 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
1452 (printf_decfloat): New function. Broken out from ui_printf.
1453 Remove unnecessary code to shift the entire format string down.
1454 (printf_pointer): New function.
1455 (ui_printf): Code to print C strings, wide C strings, decfloats,
1456 and pointers moved to separate functions.
1457
d9e98382
SDJ
14582013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
1459
1460 * valops.c (value_assign): Handling bitfield offset in
1461 `lval_internalvar_component' case.
1462
4ff3ce77
DE
14632013-02-08 Doug Evans <dje@google.com>
1464
1465 * common/format.c (parse_format_string): Fix whitespace.
1466
901900c4
MGD
14672013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
1468
1469 * stack.c (return_command): Work around uninitialized variable
1470 warning.
1471
b5dbc8d4
YZ
14722013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
1473
1474 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
1475 number of the registers from 36 to 34.
1476
51d66578
MS
14772013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
1478
1479 * NEWS: Mention new AArch64 native and target support.
1480
176b1c95
MS
14812013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
1482
1483 * MAINTAINERS (Write After Approval): Add myself.
1484
9d19df75
MS
14852013-02-08 Jim MacArthur <jim.macarthur@arm.com>
1486 Marcus Shawcroft <marcus.shawcroft@arm.com>
1487 Nigel Stephens <nigel.stephens@arm.com>
1488 Yufeng Zhang <yufeng.zhang@arm.com>
1489
1490 * aarch64-linux-nat.c: New file.
1491 * config/aarch64/linux.mh: New file.
1492 * configure.host: Add AArch64.
1493 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
1494
7e1e0340
DE
14952013-02-07 Doug Evans <dje@google.com>
1496
1497 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
1498 disassemble command.
1499
45e25a36
MS
15002013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
1501
1502 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
1503 set_gdbarch_fetch_tls_load_module_address.
1504
bbfdfe1c
DM
15052013-02-06 David S. Miller <davem@davemloft.net>
1506
1507 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
1508 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
1509 * value.c (struct_return_convention): New function.
1510 (using_struct_return): Implement in terms of struct_return_convention.
1511 * value.h (struct_return_convention): Declare.
1512 * stack.c (return_command): Allow successful overriding of the return
1513 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
1514
bc9abe4a
TT
15152013-02-06 Tom Tromey <tromey@redhat.com>
1516
1517 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
1518 outside of TRY_CATCH.
1519
134a2066
YQ
15202013-02-06 Yao Qi <yao@codesourcery.com>
1521
1522 * mi/mi-interp.c: Include "tracepoint.h".
1523 (mi_tsv_modified): Declare.
1524 (mi_tsv_created, mi_tsv_deleted): Update declaration.
1525 (mi_interpreter_init): Call observer_attach_tsv_modified.
1526 (mi_tsv_modified): New.
1527 (mi_tsv_created, mi_tsv_deleted): Update.
1528 * tracepoint.c (trace_variable_command): Call
1529 observer_notify_tsv_modified if the initial value of tsv is
1530 changed.
1531 (delete_trace_state_variable): Call
1532 observer_notify_tsv_deleted earlier.
1533 (trace_variable_command): Caller update.
1534 (create_tsv_from_upload): Likewise.
1535 * observer.sh: Declare "struct trace_state_variable".
1536
1537 * NEWS: Mention the new MI notification "=tsv-modified".
1538
59be2b6a
DE
15392013-02-05 Doug Evans <dje@google.com>
1540
1541 * completer.c (location_completer): Fix typo in comment.
1542
d30113d4
JK
15432013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1544
1545 * breakpoint.c (add_location_to_breakpoint): Insert the location with
1546 ADDRESS sorted.
1547
14ac654f
MS
15482013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
1549
1550 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
1551 Refactor if statement to avoid trailing || operator.
1552
543bf33d
AT
15532013-02-05 Andreas Tobler <andreast@fgznet.ch>
1554
1555 * NEWS: Add PowerPC FreeBSD as a new native configuration.
1556
dc18f110
AT
15572013-02-04 Andreas Tobler <andreast@fgznet.ch>
1558
1559 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
1560 * configure.host: Add powerpc*-*-freebsd* target.
1561 * configure.tgt: Add target info for powerpc*-*-freebsd*.
1562 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
1563 * config/powerpc/fbsd.mh: New file.
1564
b3ac9c77
SDJ
15652013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
1566 Denys Vlasenko <dvlasenk@redhat.com>
1567 Pedro Alves <palves@redhat.com>
1568
1569 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
1570 (struct elf_internal_linux_prpsinfo): Forward declare.
1571 * gdbarch.h, gdbarch.c: Regenerate.
1572 * linux-tdep.c: Include `cli/cli-utils.h'.
1573 (linux_fill_prpsinfo): New function.
1574 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
1575 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
1576 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
1577 depending on gdbarch pointer bitness.
1578 * ppc-linux-tdep.c: Include elf-bfd.h.
1579 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
1580 on 32-bit.
1581
176eb98c
MS
15822013-02-04 Jim MacArthur <jim.macarthur@arm.com>
1583 Marcus Shawcroft <marcus.shawcroft@arm.com>
1584 Nigel Stephens <nigel.stephens@arm.com>
1585 Yufeng Zhang <yufeng.zhang@arm.com>
1586
1587 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
1588
cf0dbd6f
MS
15892013-02-04 Jim MacArthur <jim.macarthur@arm.com>
1590 Marcus Shawcroft <marcus.shawcroft@arm.com>
1591 Nigel Stephens <nigel.stephens@arm.com>
1592 Yufeng Zhang <yufeng.zhang@arm.com>
1593
1594 * aarch64-newlib-tdep.c: New file.
1595 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
1596 aarch64*-*-elf.
1597 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
1598 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
1599 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
1600 * osabi.c (gdb_osabi_names): Add "Newlib".
1601
1ae3db19
MS
16022013-02-04 Jim MacArthur <jim.macarthur@arm.com>
1603 Marcus Shawcroft <marcus.shawcroft@arm.com>
1604 Nigel Stephens <nigel.stephens@arm.com>
1605 Yufeng Zhang <yufeng.zhang@arm.com>
1606
1607 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
1608 (ALLDEPFILES): Add aarch64-linux-tdep.c.
1609 * aarch64-linux-tdep.c: New file.
1610 * aarch64-linux-tdep.h: New file.
1611 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
1612 * configure.tgt: Add aarch64-none-linux-gnu.
1613
07b287a0
MS
16142013-02-04 Jim MacArthur <jim.macarthur@arm.com>
1615 Marcus Shawcroft <marcus.shawcroft@arm.com>
1616 Nigel Stephens <nigel.stephens@arm.com>
1617 Yufeng Zhang <yufeng.zhang@arm.com>
1618
1619 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
1620 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
1621 (ALLDEPFILES): Add aarch64-tdep.c.
1622 * aarch64-tdep.c: New file.
1623 * aarch64-tdep.h: New file.
1624 * configure.tgt: Add AArch64.
1625 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
1626 (aarch64-expedite): New definition.
1627 * features/aarch64-core.xml: New file.
1628 * features/aarch64-fpu.xml: New file.
1629 * features/aarch64-without-fpu.c: New file (generated).
1630 * features/aarch64-without-fpu.xml: New file.
1631 * features/aarch64.c: New file (generated).
1632 * features/aarch64.xml: New file.
1633 * regformats/aarch64-without-fpu.dat: New file (generated).
1634 * regformats/aarch64.dat: New file (generated).
1635
0f1b18ab
JK
16362013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1637
1638 * contrib/expect-read1.c: New file.
1639 * contrib/expect-read1.sh: New file.
1640
233d95b5
JK
16412013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1642
1643 * dwarf2read.c (file_file_name): New function with code from
1644 file_full_name.
1645 (file_full_name): Move most of the code to file_file_name.
1646 (macro_start_file): Rename variable full_name to file_name and use
1647 file_file_name for it. Add comp_dir parameter to new_macro_table.
1648 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
1649 macro_source_file->filename access by macro_source_fullname call.
1650 * macroscope.c (_initialize_macroscope): Update the new_macro_table
1651 caller.
1652 * macrotab.c (struct macro_table): New field comp_dir.
1653 (macro_include): New variables link_fullname and source_fullname.
1654 Replace any macro_source_file->filename access by macro_source_fullname
1655 call.
1656 (macro_lookup_inclusion): Remove the partial filenames checking code.
1657 (check_for_redefinition): New variables source_fullname and
1658 found_key_fullname. Replace any macro_source_file->filename access by
1659 macro_source_fullname call.
1660 (macro_undef): New variables source_fullname and key_fullname. Replace
1661 any macro_source_file->filename access by macro_source_fullname call.
1662 (macro_lookup_definition): New variables retval and source_fullname.
1663 Replace any macro_source_file->filename access by macro_source_fullname
1664 call.
1665 (foreach_macro): New variable key_fullname. Replace any
1666 macro_source_file->filename access by macro_source_fullname call.
1667 (foreach_macro_in_scope): New variable datum_fullname. Replace any
1668 macro_source_file->filename access by macro_source_fullname call.
1669 (new_macro_table): Add parameter comp_dir. Initialize T with it.
1670 (macro_source_fullname): New function.
1671 * macrotab.h (struct macro_source_file): Extent the filename field
1672 comment.
1673 (new_macro_table): New parameter comp_dir, add a comment for it.
1674 (macro_source_fullname): new declaration.
1675
da235a7c
JK
16762013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1677
1678 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
1679 this_real_name to outer block. Use it also for
1680 compare_filenames_for_search.
1681 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
1682 with dw2_get_real_path for file_matcher, considering also
1683 BASENAMES_MAY_DIFFER.
1684 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
1685
fbd9ab74
JK
16862013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1687
1688 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
1689 to the file_matcher parameter. Pass 0 to it.
1690 (dwarf2_create_include_psymtab): Copy also DIRNAME.
1691 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
1692 NULL psymtab_to_fullname result.
1693 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
1694 an expected filename instead.
1695 (expand_symtabs_matching_via_partial): Add basenames parameter to the
1696 file_matcher parameter. Call also psymtab_to_fullname, after newly
1697 considering BASENAMES_MAY_DIFFER.
1698 * source.c (rewrite_source_path): Remove static.
1699 * source.h (rewrite_source_path): New declaration.
1700 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
1701 the expand_symtabs_matching field. Comment it.
1702 * symtab.c (file_matches): New function comment. Add parameter
1703 basenames, implement it.
1704 (search_symbols_file_matches): Add basenames parameter. Update the
1705 file_matches caller.
1706 (search_symbols): Match FILES also against symtab_to_fullname.
1707 Optimize it for BASENAMES_MAY_DIFFER.
1708
56d397a3
JK
17092013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1710
1711 * source.c (print_source_lines_base): Print for TUI also "fullname".
1712 * tui/tui-data.c (init_content_element): Change tui_locator_element
1713 field to full_name.
1714 * tui/tui-data.h (struct tui_locator_element): Likewise.
1715 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
1716 tui_update_locator_filename calls to tui_update_locator_fullname.
1717 Replace symtab->filename refererence by symtab_to_fullname call.
1718 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
1719 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
1720 field to full_name. Replace symtab->filename refererence by
1721 symtab_to_fullname call.
1722 (tui_show_symtab_source): Rename parameter to fullname. Change
1723 tui_locator_element field to full_name.
1724 * tui/tui-stack.c: Include source.h.
1725 (tui_set_locator_filename): Rename the declaration to ...
1726 (tui_set_locator_fullname): ... here. Rename its parameter to
1727 fullname, updates its comment.
1728 (tui_set_locator_info): Rename its parameter to fullname.
1729 (tui_set_locator_filename): Rename the definition to ...
1730 (tui_set_locator_fullname): ... here. Rename its parameter to
1731 fullname, updates its comment. Change tui_locator_element field to
1732 full_name.
1733 (tui_set_locator_info): Rename its parameter to fullname.
1734 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
1735 (tui_update_locator_filename): Rename to ...
1736 (tui_update_locator_fullname): ... here. Rename callee to
1737 tui_set_locator_fullname.
1738 (tui_show_frame_info): Replace symtab->filename refererence by
1739 symtab_to_fullname call.
1740 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
1741 (tui_update_locator_fullname): ... here.
1742 * tui/tui-winsource.c (tui_display_main): Rename the callee to
1743 tui_update_locator_fullname. Replace symtab->filename refererence by
1744 symtab_to_fullname call.
1745 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
1746 Rename the callee to tui_update_locator_fullname.
1747 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
1748
05cba821
JK
17492013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1750
1751 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
1752 by symtab_to_filename_for_display calls.
1753 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
1754 (clear_command): New variable sal_fullname, initialize it. Replace
1755 compare_filenames_for_search by filename_cmp with sal_fullname.
1756 (say_where, update_static_tracepoint): Replace symtab->filename
1757 refererences by symtab_to_filename_for_display calls.
1758 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
1759 Likewise.
1760 * dwarf2read.c: Include source.h.
1761 (fixup_go_packaging): Replace symtab->filename refererences by
1762 symtab_to_filename_for_display calls.
1763 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
1764 Replace symtab->filename refererences by symtab_to_filename_for_display
1765 calls.
1766 (create_sals_line_offset, convert_linespec_to_sals): New variable
1767 fullname, initialize it, replace symtab->filename reference by the
1768 variable.
1769 * linux-fork.c: Include source.h.
1770 (info_checkpoints_command): Replace symtab->filename refererences by
1771 symtab_to_filename_for_display calls.
1772 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
1773 by symtab_to_filename_for_display calls.
1774 * mdebugread.c: Include source.h.
1775 (psymtab_to_symtab_1): Replace symtab->filename refererences by
1776 symtab_to_filename_for_display calls.
1777 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
1778 (mi_cmd_file_list_exec_source_files): Likewise.
1779 * printcmd.c: Include source.h.
1780 (build_address_symbolic): Replace symtab->filename refererences by
1781 symtab_to_filename_for_display calls.
1782 * psymtab.c (partial_map_symtabs_matching_filename)
1783 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
1784 with psymtab_to_fullname.
1785 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
1786 by symtab_to_filename_for_display calls.
1787 (stpy_get_filename): New variable filename, initialize it, use instead
1788 of symtab->filename refererences.
1789 (salpy_str): Make variable filename const char *. Replace
1790 symtab->filename refererences by symtab_to_filename_for_display calls.
1791 * skip.c: Include source.h and filenames.h.
1792 (skip_file_command): Remove const from the symtab variable. Replace
1793 symtab->filename refererences by symtab_to_fullname call.
1794 (function_name_is_marked_for_skip): New variables searched_for_fullname
1795 and fullname. Use them to search also with symtab's fullname.
1796 * source.c (find_source_lines): Replace symtab->filename refererences
1797 by symtab_to_filename_for_display calls.
1798 (print_source_lines_base): New variable filename, use it instead of
1799 symtab->filename. Replace symtab->filename refererences by
1800 symtab_to_filename_for_display calls.
1801 (line_info, forward_search_command): Replace symtab->filename
1802 refererences by symtab_to_filename_for_display calls.
1803 (reverse_search_command): Replace symtab->filename refererences by
1804 symtab_to_filename_for_display calls. New variable filename for it.
1805 * stack.c (frame_info): Likewise.
1806 * symmisc.c: Include source.h.
1807 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
1808 (maintenance_info_symtabs): Replace symtab->filename refererences by
1809 symtab_to_filename_for_display calls.
1810 * symtab.c (iterate_over_some_symtabs): Call
1811 compare_filenames_for_search also with symtab_to_fullname.
1812 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
1813 symtab->filename refererences by symtab_to_filename_for_display calls.
1814 (find_line_symtab): Replace symtab->filename refererences by
1815 symtab_to_filename_for_display calls.
1816 (file_matches): Replace filename_cmp by compare_filenames_for_search.
1817 (print_symbol_info): Make the last parameter const char *. New
1818 variable s_filename. Use it in the function.
1819 (symtab_symbol_info): Make the last_filename variable const char *.
1820 Replace symtab->filename refererences by symtab_to_filename_for_display
1821 calls.
1822 (rbreak_command): New variable fullname. Use it. Replace
1823 symtab->filename refererence by symtab_to_filename_for_display call.
1824 * tracepoint.c (set_traceframe_context, trace_find_line_command)
1825 (print_one_static_tracepoint_marker): Replace symtab->filename
1826 refererences by symtab_to_filename_for_display calls.
1827 * tui/tui-source.c (tui_set_source_content): New variables filename and
1828 s_filename. Replace symtab->filename refererences by this variable.
1829 Replace other symtab->filename refererences by
1830 symtab_to_filename_for_display calls.
1831
1b56eb55
JK
18322013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
1833 Jan Kratochvil <jan.kratochvil@redhat.com>
1834
1835 Add a new variable that controls a way in which filenames are
1836 displayed.
1837 * NEWS (set filename-display): New entry.
1838 * source.c (filename_display_basename, filename_display_relative)
1839 (filename_display_absolute, filename_display_kind_names)
1840 (filename_display_string, show_filename_display_string)
1841 (symtab_to_filename_for_display): New.
1842 (_initialize_source): Added initialization of 'filename-display'
1843 variable.
1844 * source.h (symtab_to_filename_for_display): Added declaration.
1845 * stack.c (print_frame): Added new variable and calling of a new
1846 function and condition with this variable. Changed third argument of
1847 calling of a function.
1848
aa079c93
JK
18492013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1850
1851 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
1852 Rename field reference filename to fullname.
1853 * tui/tui-data.h (struct tui_source_info): Rename field filename to
1854 fullname. New comment for it.
1855 * tui/tui-source.c (tui_set_source_content): Rename field reference
1856 filename to fullname. Initialize field by symtab_to_fullname now.
1857 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
1858 reference filename to fullname. Use symtab_to_fullname during
1859 comparison.
1860
652a8996
JK
18612013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1862
1863 Code cleanup.
1864 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
1865 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
1866 filename to fullname. Rename variable this_name to this_fullname.
1867 Lowercase FILENAME_CMP call.
1868 (dw2_find_symbol_file): New comment for the returned string.
1869 (dwarf2_gdb_index_functions): Rename the function to
1870 dw2_expand_symtabs_with_fullname.
1871 * psymtab.c (read_psymtabs_with_filename): Rename to ...
1872 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
1873 fullname.
1874 (psym_functions): Rename the function to read_psymtabs_with_fullname.
1875 * symfile.h (struct quick_symbol_functions): Rename field
1876 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
1877 parameter filename to fullname. Document returned string meaning for
1878 find_symbol_file.
1879 * symtab.c (find_line_symtab): Rename the called function to
1880 expand_symtabs_with_fullname.
1881
af529f8f
JK
18822013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1883
1884 Code cleanup.
1885 * breakpoint.c (clear_command): Remove variable is_abs, unify the
1886 call of filename_cmp with compare_filenames_for_search.
1887 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
1888 is_abs, unify the call of FILENAME_CMP with
1889 compare_filenames_for_search. New gdb_asserts for real_path and name.
1890 Unify the call of compare_filenames_for_search with FILENAME_CMP.
1891 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
1892 * symfile.h (struct quick_symbol_functions): Extend the comment for
1893 map_symtabs_matching_filename.
1894 * symtab.c (compare_filenames_for_search): Remove the function comment
1895 relative path requirement. Handle absolute filenames, with a comment.
1896 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
1897 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
1898 real_path and name. Unify the call of compare_filenames_for_search
1899 with FILENAME_CMP.
1900 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
1901
2f202fde
JK
19022013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1903
1904 Code cleanup.
1905 * breakpoint.c (print_breakpoint_location): Replace bp_location field
1906 source_file references by symtab field references. Remove variables
1907 sal and fullname.
1908 (momentary_breakpoint_from_master, add_location_to_breakpoint):
1909 (clear_command, say_where): Replace bp_location field source_file
1910 references by symtab field references.
1911 (bp_location_dtor): Remove the source_file reference.
1912 (update_static_tracepoint): Replace bp_location field source_file
1913 references by symtab field references.
1914 (breakpoint_free_objfile): New function.
1915 * breakpoint.h (struct bp_location): Extend the comment for line_number.
1916 Replace the field source_file by field symtab, extend its comment.
1917 (breakpoint_free_objfile): New declaration.
1918 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
1919 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
1920 field source_file references by symtab field references.
1921
f5b95b50
JK
19222013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1923
1924 Replace xfullpath calls by gdb_realpath calls.
1925 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
1926 function comment.
1927 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
1928 Remove it from the iterate_over_some_symtabs call.
1929 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
1930 Remove it from the dw2_map_expand_apply calls, remove a block handling
1931 it.
1932 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
1933 Remove it from the iterate_over_some_symtabs call.
1934 (partial_map_symtabs_matching_filename): Remove parameter full_path.
1935 Remove it from the partial_map_expand_apply calls, remove a block
1936 handling it. Drop gdb_realpath call and cleanups from the real_path
1937 handling.
1938 * source.c (openp): Drop the comment part about xfullpath. Replace
1939 xfullpath calls by gdb_realpath calls.
1940 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
1941 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
1942 from method map_symtabs_matching_filename and its comment.
1943 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
1944 gdb_realpath call.
1945 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
1946 remove it also from the function comment, remove a block handling it.
1947 Drop gdb_realpath call and cleanups from the real_path handling.
1948 (iterate_over_symtabs): Drop variable full_path and its use.
1949 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
1950 * utils.c (xfullpath): Remove.
1951 * utils.h (xfullpath): Remove.
1952
d78489bf
AT
19532013-02-01 Andreas Tobler <andreast@fgznet.ch>
1954
1955 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
1956 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
1957 (ALLDEPFILES): Add ppc64-tdep.c.
1958 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
1959 ppc64-tdep.o to gdb_target_obs.
1960 * ppc64-tdep.h: New file.
1961 * ppc64-tdep.c: New file.
1962 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
1963 ppc-linux-tdep.c to here.
1964 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
1965 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
1966 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
1967 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
1968 from ppc-linux-tdep.c to here.
1969 (ppc64_convert_from_func_ptr_addr): Rename from
1970 ppc64_linux_convert_from_func_ptr_addr to
1971 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
1972 here.
1973 * rs6000-tdep.c:
1974 (read_insn): Move from ppc-linux-tdep.c to here.
1975 (insns_match_pattern, insn_d_field, insn_ds_field): Move
1976 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
1977 * ppc-linux-tdep.c: Include ppc64-tdep.h.
1978 Removed above functions.
1979 (ppc_linux_init_abi): Adjust.
1980
8db60374
AR
19812013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
1982
1983 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
1984
f2e5f4ce
AR
19852013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
1986
1987 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
1988
c1f7d745
PA
19892013-02-01 Pedro Alves <palves@redhat.com>
1990
1991 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
1992 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
1993
8a92335b
JK
19942013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1995
1996 * elfread.c (elf_symfile_read): Limit separate debug info additions to
1997 files with no separate debug info.
1998 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
1999 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
2000 only for files with no separate debug info.
2001
8eacb197
TT
20022013-01-31 Tom Tromey <tromey@redhat.com>
2003
2004 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
2005 change type.
2006 (struct jit_program_space_data): Rename from jit_inferior_data.
2007 Update comments.
2008 (get_jit_program_space_data): Rename from get_jit_inferior_data.
2009 Change return type. Attach data to program space.
2010 (jit_program_space_data_cleanup): Rename from
2011 jit_inferior_data_cleanup; change argument type.
2012 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
2013 change type.
2014 (jit_register_code): Update.
2015 (jit_update_inferior_cache): Remove.
2016 (jit_breakpoint_deleted): Get jit data from the location's program
2017 space.
2018 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
2019 'ps_data', change type.
2020 (jit_inferior_init, jit_breakpoint_re_set_internal)
2021 (jit_event_handler): Update.
2022 (free_objfile_data): Get data from objfile's program space.
2023 (_initialize_jit): Update.
2024
f25c0135
TT
20252013-01-31 Tom Tromey <tromey@redhat.com>
2026
2027 PR gdb/13987:
2028 * jit.c (struct jit_inferior_data) <cached_code_address,
2029 jit_breakpoint>: New fields.
2030 (jit_breakpoint_re_set_internal): Fix logging. Only create
2031 breakpoint if cached address has changed.
2032 (jit_update_inferior_cache, jit_breakpoint_deleted): New
2033 functions.
2034 (_initialize_jit): Register breakpoint deleted observer.
2035
974a734b
AR
20362013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2037
2038 * infrun.c (handle_syscall_event): Remove unused gdbarch.
2039 (save_infcall_suspend_state): Ifdef out unused inf.
2040 (restore_infcall_suspend_state): Ifdef out unused inf.
2041 * jit.c (jit_register_code): Remove unused i, b, inf_data.
2042 (jit_frame_sniffer): Remove unused inf_data.
2043
df54f8eb
AR
20442013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2045
2046 * c-exp.y (classify_inner_name): Remove unused type.
2047 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
2048 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
2049 need_escape.
2050 (c_get_string): Remove unused kind.
2051 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
2052
5799c0b9
AR
20532013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2054
2055 * charset.c (intermediate_encoding): Remove unused i.
2056 * completer.c (signal_completer): Remove unused i.
2057 * continuations.c (discard_my_continuations_1): Remove unused
2058 continuation_ptr.
2059 * corelow.c (core_close): Remove unuseD name.
2060 (get_core_siginfo): Remove unused pid.
2061 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
2062 i, cps.
2063 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
2064 (loclist_describe_location): Remove unused first.
2065 * event-top.c (command_line_handler): Remove unused got_eof.
2066 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
2067 (resize_section_table): Remove unused old_value.
2068 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
2069 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
2070 * i386-tdep.c (i386_process_record): Remove unused rex.
2071 * infcmd.c (get_return_value): Remove unused uiout.
2072 * jv-lang.c (type_from_class): Remove unused is_array.
2073 * jv-valprint.c (java_val_print): Remove unused i.
2074 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
2075 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
2076 * m2-typeprint.c (m2_print_type): Remove unused code.
2077 * macroexp.c (get_character_constant): Remove unused body_start.
2078 (macro_stringify): Remove unused result.
2079 * objc-lang.c (find_methods): Remove unused gdbarch.
2080 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
2081 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
2082 * stack.c (print_frame_args): Remove unused summary.
2083 * thread.c (thread_apply_command): Remove unused p.
2084 * valarith.c (value_x_unop): Remove unused mangle_ptr.
2085 * valops.c (search_struct_method): Remove unused skip.
2086 * valprint.c (generic_val_print): Remove unused byte_order.
2087 * varobj.c (varobj_update): Remove unused changed.
2088 * cli/cli-cmds.c (complete_command): Remove unused next_item.
2089 (alias_command): Remove unused c.
2090 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
2091 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
2092 format.
2093 (mi_cmd_data_write_memory): Remove unused word_format.
2094 (mi_cmd_data_write_memory_bytes): Remove unused r.
2095 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
2096 p_start, p_end.
2097 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
2098 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
2099 line_width.
2100
c656bca5
AR
21012013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2102
2103 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
2104 * symtab.c (iterate_over_symtabs): Remove unused s.
2105 (find_pc_sect_symtab): Remove unused pspAce.
2106 (find_pc_sect_line): Remove unused alt_symtab.
2107 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
2108 (completion_list_add_name): Remove unused newsize.
2109
7078baeb
TT
21102013-01-31 Tom Tromey <tromey@redhat.com>
2111
2112 PR c++/14998:
2113 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
2114 TYPE_CODE_FUNC.
2115
c2e8b827
AR
21162013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2117
2118 * target.c (target_read_string): Remove unused origlen.
2119
0e43993a
AR
21202013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2121
2122 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
2123 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
2124 * ax-general.c (ax_print): Remove unused is_float.
2125 * blockframe.c (block_innermost_frame): Remove unused start, end.
2126 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
2127
765a97ab
AR
21282013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2129
2130 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
2131 (svr4_read_so_list): Remove unused lmo.
2132 * solib-target.c (solib_target_relocate_section_addresses): Remove
2133 unused flags.
2134
a99dad3d
TT
21352013-01-30 Tom Tromey <tromey@redhat.com>
2136
2137 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
2138
3bff1ecd
TT
21392013-01-30 Tom Tromey <tromey@redhat.com>
2140
2141 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
2142 * utils.c (gnu_debuglink_crc32): Remove.
2143 * utils.h (gnu_debuglink_crc32): Don't declare.
2144
7d455152
TT
21452013-01-30 Tom Tromey <tromey@redhat.com>
2146
2147 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
2148 (read_structure_type, read_enumeration_type): Remove cast.
2149
abee88f2
TT
21502013-01-30 Tom Tromey <tromey@redhat.com>
2151
2152 * dwarf2read.c (read_namespace_type): Remove cast.
2153 (read_typedef): Likewise.
2154
8d9878a4
TT
21552013-01-29 Tom Tromey <tromey@redhat.com>
2156
2157 * dwarf2read.c (free_dwo_file): Remove assert.
2158
a543d2a9
TT
21592013-01-29 Tom Tromey <tromey@redhat.com>
2160
2161 * value.c (deprecated_set_value_modifiable): Remove.
2162 * value.h (deprecated_set_value_modifiable): Remove.
2163
bed911e5
DE
21642013-01-28 Doug Evans <dje@google.com>
2165
2166 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
2167 to addresses from dwo files.
2168
28c64fc2
SCR
21692013-01-25 Siva Chandra Reddy <sivachandra@google.com>
2170
2171 * valops.c (find_overload_match): Remove unused argument 'lax'.
2172 * value.h: Remove unused argument 'lax' from the declaration of
2173 find_overload_match.
2174 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
2175 to find_overload_match.
2176 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
2177 argument to find_overload_match.
2178
4d4ec4e5
TT
21792013-01-25 Tom Tromey <tromey@redhat.com>
2180
2181 * dwarf2read.c (processing_has_namespace_info): Remove.
2182 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
2183 (process_die, read_func_scope, dwarf2_start_symtab)
2184 (new_symbol_full): Update.
2185
195a3f6c
TT
21862013-01-25 Tom Tromey <tromey@redhat.com>
2187
2188 * cp-namespace.c (cp_set_block_scope): Remove.
2189 * cp-support.h (cp_set_block_scope): Remove.
2190 * dbxread.c: Include block.h.
2191 (cp_set_block_scope): New function.
2192 (process_one_symbol): Update.
2193 * dwarf2read.c (read_func_scope): Use block_set_scope.
2194
8ba0730a
PA
21952013-01-25 Pedro Alves <palves@redhat.com>
2196
2197 * remote.c (add_current_inferior_and_thread): Tweak comment.
2198
12aaed36
TT
21992013-01-25 Tom Tromey <tromey@redhat.com>
2200
2201 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
2202 (cp_add_using_directive): Add 'copy_names' argument.
2203 * cp-support.h (cp_add_using_directive): Update.
2204 (struct using_direct) <import_src, import_dest, alias,
2205 declaration>: Now const.
2206 * dwarf2read.c (read_import_statement): Use obconcat.
2207 Don't copy names passed to cp_add_using_directive.
2208
7fc75ca7
TT
22092013-01-25 Tom Tromey <tromey@redhat.com>
2210
2211 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
2212
3405876a
PA
22132013-01-25 Pedro Alves <palves@redhat.com>
2214
2215 * remote.c (stop_reply_extract_thread): New.
2216 (add_current_inferior_and_thread): New parameter 'wait_status'.
2217 Handle it.
2218 (remote_start_remote): Pass wait status to
2219 add_current_inferior_and_thread.
2220 (extended_remote_run): Update comment.
2221 (extended_remote_create_inferior_1): Pass wait status to
2222 add_current_inferior_and_thread.
2223
8954db33
AB
22242013-01-25 Andrew Burgess <aburgess@broadcom.com>
2225 Ulrich Weigand <uweigand@de.ibm.com>
2226
2227 * valarith.c (value_vector_widen): New function for replicating a
2228 scalar into a vector.
2229 (value_binop): Use value_vector_widen to widen scalar to vector
2230 rather than casting, this better matches gcc C behaviour.
2231 * valops.c (value_casst): Update logic for casting between vector
2232 types, and for casting from scalar to vector, try to match gcc C
2233 behaviour.
2234 * value.h (value_vector_widen): Declare.
2235 * opencl-lang.c (opencl_value_cast): New opencl specific casting
2236 function, handle special case for casting scalar to vector.
2237 (opencl_relop): Use opencl_value_cast.
2238 (evaluate_subexp_opencl): Use opencl_value_cast instead of
2239 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
2240 in order to use opencl_value_cast.
2241
843b20dc
YQ
22422013-01-25 Yao Qi <yao@codesourcery.com>
2243
2244 * event-loop.c: Include "queue.h".
2245 (gdb_event_p): New typedef.
2246 (DECLARE_QUEUE_P): Use.
2247 (DEFINE_QUEUE_P): Use.
2248 (async_queue_event): Remove.
2249 (gdb_event_xfree): New.
2250 (initialize_event_loop): New.
2251 (process_event): Use QUEUE macros.
2252 (event_queue): Remove.
2253 (gdb_wait_for_event): Caller update.
2254 (check_async_event_handlers): Likewise.
2255 (poll_timers): Likewise.
2256 * event-loop.h (initialize_event_loop): Declare.
2257 * event-loop.c (gdb_event_xfree): New.
2258 * top.c (gdb_init): Call initialize_event_loop.
2259
20ad8856
YQ
22602013-01-25 Yao Qi <yao@codesourcery.com>
2261
2262 * event-loop.c (async_queue_event): Remove one parameter
2263 'position'. Remove code handling 'position' == TAIL.
2264 (gdb_wait_for_event): Caller update.
2265 (check_async_event_handlers): Caller update.
2266 (poll_timers): Caller update.
2267 * event-loop.h (enum queue_position): Remove.
2268
3bbbe775
MK
22692013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
2270
2271 * MAINTAINERS: Update my email.
2272
a87d9ac4
YQ
22732013-01-25 Yao Qi <yao@codesourcery.com>
2274
2275 * main.c (print_gdb_help): Remove "--epoch" from the help
2276 message.
2277
2077afdd
TD
22782013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
2279
2280 * symtab.c (skip_prologue_using_sal): Consider a file
2281 change the same as an increased line number
2282
63da4037
TD
22832013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
2284
30e8ee25 2285 * MAINTAINERS (Write After Approval): Add myself to the list.
63da4037 2286
45e6c716
TT
22872013-01-24 Tom Tromey <tromey@redhat.com>
2288
2289 * ada-lang.h (ada_decode_symbol): Make return type const.
2290 * ada-lang.c (ada_decode_symbol): Likewise.
2291
b1ae631a
DE
22922013-01-23 Doug Evans <dje@google.com>
2293
2294 * linespec.c (find_linespec_symbols): Make static.
2295
55a78401
SDJ
22962013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
2297
2298 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
2299 type on float conversion for complex type.
2300
bea883fd
SCR
23012013-01-23 Siva Chandra Reddy <sivachandra@google.com>
2302
2303 Add a new class gdb.Architecture which exposes GDB's
2304 internal representation of architecture via GDB Python API.
2305 * Makefile.in: Add entries corresponding to the new file
2306 python/py-arch.c.
2307 * NEWS (Python Scripting): Add entries for the new class
2308 gdb.Architecture and the new method gdb.Frame.architecture.
2309 * python/py-arch.c: Implement gdb.Architecture class.
2310 * python/py-frame.c (frapy_arch): Implement the method
2311 gdb.Frame.architecture().
2312 (frame_object_methods): Add 'architecture' to the method table.
2313 * python/python-internal.h: Add declarations of new utility
2314 functions.
2315 * python/python.c (_initialize_python): Initialize
2316 gdb.Architecture class.
2317
796a7ff8
DE
23182013-01-23 Doug Evans <dje@google.com>
2319
2320 Work around binutils/15021.
2321 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
2322 type_unit_group out of union s. All uses updated.
2323 (read_index_from_section): Watch for index version 8.
2324 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
2325 an imported symtab.
2326 (write_psymtabs_to_index): Increment version number to 8.
2327
0928e93d
PA
23282013-01-22 Pedro Alves <palves@redhat.com>
2329
2330 * annotate.c (breakpoint_changed): Skip if breakpoint is not
2331 user-visible.
2332
9c97429f
PA
23332013-01-22 Pedro Alves <palves@redhat.com>
2334
2335 * annotate.c (annotate_breakpoints_changed): Rename to ...
2336 (annotate_breakpoints_invalid): ... this. Make static.
2337 (breakpoint_changed): Adjust.
2338 (_initialize_annotate): Always install the observers. Install a
2339 "breakpoint_created" observer.
2340 * annotate.h (annotate_breakpoints_changed): Delete declaration.
2341 * breakpoint.c (set_breakpoint_condition)
2342 (breakpoint_set_commands, do_map_commands_command)
2343 (init_raw_breakpoint, clear_command, set_ignore_count)
2344 (enable_breakpoint_disp): No longer call
2345 annotate_breakpoints_changed.
2346
bd00c694
PA
23472013-01-22 Pedro Alves <palves@redhat.com>
2348
2349 * annotate.c: Include "inferior.h".
2350 (frames_invalid_emitted)
2351 (breakpoints_invalid_emitted): New globals.
2352 (async_background_execution_p): New function.
2353 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
2354 emitting the annotation if it has already been emitted.
2355 (annotate_display_prompt): New function.
2356 * annotate.h (annotate_display_prompt): New declaration.
2357 * event-top.c: Include annotate.h.
2358 (display_gdb_prompt): Call annotate_display_prompt.
2359
187d10dd
PA
23602013-01-22 Pedro Alves <palves@redhat.com>
2361
2362 * annotate.c (ignore_count_changed): Delete.
2363 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
2364 (annotate_ignore_count_change): Delete.
2365 (annotate_stopped): Don't emit a delayed breakpoints-changed
2366 annotation.
2367 * annotate.h (annotate_ignore_count_change): Delete.
2368 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
2369 annotate_ignore_count_change.
2370
d84cf7eb
TT
23712013-01-22 Tom Tromey <tromey@redhat.com>
2372
2373 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
2374 require_rvalue for a register location.
2375
8f1d5693
MK
23762013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
2377
2378 * breakpoint.c (print_one_breakpoint_location): Add MI
2379 field 'thread-groups' when printing a breakpoint.
2380 (output_thread_groups): New function.
2381
aa6199c6
SCR
23822013-01-21 Siva Chandra Reddy <sivachandra@google.com>
2383
2384 * python/lib/gdb/commands/explore.py
2385 (CompoundExplorer.explore_expr): Correct the name of a method
2386 being invoked.
2387 (ExploreTypeCommand.invoke): Add a missing 'return'.
2388
d2afef13
TT
23892013-01-21 Tom Tromey <tromey@redhat.com>
2390
2391 * gdb_obstack.h (obconcat): Move declaration here, from...
2392 * symfile.h (obconcat): ... here.
2393 * gdb_obstack.c: New file.
2394 (obconcat): Move from...
2395 * symfile.c (obconcat): ... here.
2396 * Makefile.in (SFILES): Add gdb_obstack.c.
2397 (COMMON_OBS): Add gdb_obstack.o.
2398
10f0c4bb
TT
23992013-01-21 Tom Tromey <tromey@redhat.com>
2400
2401 * symfile.h (obsavestring): Don't declare.
2402 * symfile.c (obsavestring): Remove.
2403 * ada-exp.y: Use obstack_copy0, not obsavestring.
2404 * ada-lang.c: Use obstack_copy0, not obsavestring.
2405 * coffread.c: Use obstack_copy0, not obsavestring.
2406 * cp-namespace.c: Use obstack_copy0, not obsavestring.
2407 * dbxread.c: Use obstack_copy0, not obsavestring.
2408 * dwarf2read.c: Use obstack_copy0, not obsavestring.
2409 * jit.c: Use obstack_copy0, not obsavestring.
2410 * mdebugread.c: Use obstack_copy0, not obsavestring.
2411 * psymtab.c: Use obstack_copy0, not obsavestring.
2412 * stabsread.c: Use obstack_copy0, not obsavestring.
2413 * xcoffread.c: Use obstack_copy0, not obsavestring.
2414
86f62fd7
TT
24152013-01-21 Tom Tromey <tromey@redhat.com>
2416
2417 * dwarf2read.c (fixup_go_packaging): Save package name
2418 on objfile obstack.
2419 * gdbtypes.c (init_type): Don't copy name.
2420
15d034d0
TT
24212013-01-21 Tom Tromey <tromey@redhat.com>
2422
2423 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
2424 const.
2425 (struct attribute) <u.str>: Now const.
2426 (struct fnfieldlist) <name>: Now const.
2427 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
2428 (partial_die_parent_scope): Make return type const.
2429 (partial_die_full_name, add_partial_symbol): Update.
2430 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
2431 'name' const.
2432 (find_file_and_directory): Make 'name' and 'comp_dir' const.
2433 (read_file_scope, read_func_scope, dwarf2_add_field)
2434 (dwarf2_add_member_fn, read_structure_type)
2435 (process_enumeration_scope, read_array_type, read_module_type)
2436 (read_base_type, read_subrange_type): Update.
2437 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
2438 (new_symbol_full, guess_full_die_structure_name): Update.
2439 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
2440 (dwarf2_name): Return const type.
2441 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
2442 const.
2443
748e18ae
TT
24442013-01-21 Tom Tromey <tromey@redhat.com>
2445
2446 * gdbtypes.c (init_type): Make 'name' const.
2447 * gdbtypes.h (init_type): Update.
2448
46212e0b
TT
24492013-01-21 Tom Tromey <tromey@redhat.com>
2450
2451 * buildsym.c (patch_subfile_names): Use set_last_source_file.
2452 (start_symtab): Make 'name' and 'dirname' const. Use
2453 set_last_source_file.
2454 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
2455 (last_source_file): Define. Now static.
2456 (set_last_source_file, get_last_source_file): New functions.
2457 * buildsym.h (last_source_file): Don't declare.
2458 (start_symtab): Update.
2459 (set_last_source_file, get_last_source_file): Declare.
2460 * coffread.c (complete_symtab): Use set_last_source_file.
2461 (coff_end_symtab): Likewise.
2462 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
2463 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
2464 set_last_source_file.
2465 (process_one_symbol): Use get_last_source_file.
2466 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
2467 (psymtab_to_symtab_1): Use get_last_source_file.
2468 * xcoffread.c (process_linenos): Use get_last_source_file.
2469 (complete_symtab): Use set_last_source_file.
2470 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
2471 (scan_xcoff_symtab): Use set_last_source_file.
2472
9d2ceabe
TT
24732013-01-21 Tom Tromey <tromey@redhat.com>
2474
2475 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
2476 (symbol_set_names): Remove casts. Handle field const-ness.
2477
cfc594ee
TT
24782013-01-21 Tom Tromey <tromey@redhat.com>
2479
2480 * dwarf2read.c (new_symbol_full): Remove cast.
2481 * symtab.c (symbol_set_demangled_name): Make 'name' const.
2482 * symtab.h (symbol_set_demangled_name): Update.
2483
5484b13a
TT
24842013-01-21 Tom Tromey <tromey@redhat.com>
2485
2486 * main.c (captured_main): Call bfd_init.
2487
1605ef26
TT
24882013-01-21 Tom Tromey <tromey@redhat.com>
2489
2490 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
2491 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
2492 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
2493 * NEWS: Update.
2494
3b74cdc3
JK
24952013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2496
2497 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
2498
5a352474
JK
24992013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2500
2501 Fix gdb.fortran/common-block.exp crash in PIE mode.
2502 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
2503 LOC_COMMON_BLOCK.
2504 * f-valprint.c (info_common_command_for_block): Expect
2505 LOC_COMMON_BLOCK in gdb_assert.
2506 * symtab.h (struct general_symbol_info): Update comment for the
2507 common_block member.
2508 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
2509 (enum address_class): New member LOC_COMMON_BLOCK.
2510
c60797fd
DB
25112013-01-18 David Blaikie <dblaikie@gmail.com>
2512
2513 * MAINTAINERS (Write After Approval): Add "David Blaikie".
0cae7dfb 2514
46f35228
TT
25152013-01-18 Tom Tromey <tromey@redhat.com>
2516
2517 PR c++/14999:
2518 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
2519 Call require_rvalue.
2520
257e7a09
YQ
25212013-01-18 Yao Qi <yao@codesourcery.com>
2522
2523 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
2524 (dbx_read_symtab): New declaration.
2525 (dbx_psymtab_to_symtab): Delete.
2526 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
2527 Rename parameter PST to SELF. Exchanged two parameters.
2528 (start_psymtab): Caller update.
2529 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
2530 (dwarf2_read_symtab): New declaration.
2531 (dwarf2_psymtab_to_symtab): Delete.
2532 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
2533 Rename parameter PST to SELF. Exchanged two parameters.
2534 (create_partial_symtab): Caller update.
2535 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
2536 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
2537 Rename parameter PST to SELF. Exchanged two parameters.
2538 (parse_partial_symbols, new_psymtab): Caller update.
2539 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
2540 two parameters.
2541 * psymtab.c (psymtab_to_symtab): Caller update.
2542 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
2543 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
2544 Rename parameter PST to SELF. Exchanged two parameters.
2545 (xcoff_start_psymtab): Caller update.
2546
0de5618e
YQ
25472013-01-18 Yao Qi <yao@codesourcery.com>
2548
2549 * infrun.c (proceed): Rename local variable 'oneproc' to
2550 'force_step'.
2551
5c04624b
DE
25522013-01-17 Doug Evans <dje@google.com>
2553
848e3e78
DE
2554 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
2555 (dw2_build_type_unit_groups): Delete. All uses updated.
2556
5c04624b
DE
2557 * symtab.h (struct symbol_search): Add comment.
2558
d84fca2c
JK
25592013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2560
2561 * symtab.c (compare_filenames_for_search): New comment for
2562 HAS_DRIVE_SPEC.
2563
6108433d
TT
25642013-01-17 Tom Tromey <tromey@redhat.com>
2565
2566 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
2567
c89ffd86
JK
25682013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2569
2570 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
2571 initialize it by existing make_cleanup. Call new do_cleanups.
2572
db2b2972
TT
25732013-01-17 Tom Tromey <tromey@redhat.com>
2574
2575 * cp-abi.c (cp_abi_completer): New function.
2576 (_initialize_cp_abi): Set completer for "set cp-abi".
2577
be7d37a2
TT
25782013-01-17 Tom Tromey <tromey@redhat.com>
2579
2580 * mem-break.c: Remove obsolete comment.
2581 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
2582
c9fb1240
SD
25832012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
2584
2585 * jit.c (jit_reader_load_command): Interpret the jit reader name
2586 as an absolute path if it begins with a forward slash.
2587
db334a01
SD
25882012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
2589
2590 PR gdb/14550
2591
2592 * jit.c (finalize_symtab): Ensure that only the global block has a
2593 NULL superblock.
2594
7d928dac
PA
25952013-01-17 Pedro Alves <palves@redhat.com>
2596
2597 * acinclude.m4: Include ../config/plugins.m4,
2598 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
2599 * Makefile.in (aclocal_m4_deps): Update.
2600 * aclocal.m4: Renegerate.
2601
fb8cf7c5
DE
26022013-01-16 Doug Evans <dje@google.com>
2603
2604 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
2605
ab04a2af
TT
26062013-01-16 Pedro Alves <palves@redhat.com>
2607 Tom Tromey <tromey@redhat.com>
2608
2609 PR cli/7221:
2610 * NEWS: Add "catch signal".
2611 * breakpoint.c (base_breakpoint_ops): No longer static.
2612 (bpstat_explains_signal): New function.
2613 (init_catchpoint): No longer static.
2614 (base_breakpoint_explains_signal): New function.
2615 (base_breakpoint_ops): Initialize new field.
2616 * breakpoint.h (enum bpstat_signal_value): New.
2617 (struct breakpoint_ops) <explains_signal>: New field.
2618 (bpstat_explains_signal): Remove macro, declare as function.
2619 (base_breakpoint_ops, init_catchpoint): Declare.
2620 * break-catch-sig.c: New file.
2621 * inferior.h (signal_catch_update): Declare.
2622 * infrun.c (signal_catch): New global.
2623 (handle_syscall_event): Update for change to
2624 bpstat_explains_signal.
2625 (handle_inferior_event): Likewise. Always handle random signals
2626 via bpstats.
2627 (signal_cache_update): Check signal_catch.
2628 (signal_catch_update): New function.
2629 (_initialize_infrun): Initialize signal_catch.
2630 * Makefile.in (SFILES): Add break-catch-sig.c.
2631 (COMMON_OBS): Add break-catch-sig.o.
2632
8ac3646f
TT
26332013-01-16 Tom Tromey <tromey@redhat.com>
2634
2635 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
2636 (print_one_catch_solib, print_one_catch_syscall)
2637 (print_one_catch_exec, print_one_exception_catchpoint): Emit
2638 "catch-type".
2639
5a18e302
YQ
26402013-01-16 Yao Qi <yao@codesourcery.com>
2641
2642 * printcmd.c (current_display_number): Make it static.
2643
3f01d0d0
YQ
26442013-01-16 Yao Qi <yao@codesourcery.com>
2645
2646 * infcmd.c (step_once): Don't check '!single_inst' as it was
2647 checked before.
2648
1ed59174
JK
26492013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2650
2651 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
2652
44478ab3
TT
26532013-01-14 Tom Tromey <tromey@redhat.com>
2654
2655 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
2656 set command.
2657 * command.h (add_setshow_string_noescape_cmd): Update.
2658 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
2659 (complete_set_gnutarget): New function.
2660 (_initialize_core): Set the "set gnutarget" completer.
2661
06d66ee9
TT
26622013-01-14 Tom Tromey <tromey@redhat.com>
2663
2664 PR symtab/14442:
2665 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
2666 (c_type_print_modifier): Likewise.
2667 * dwarf2read.c (read_tag_restrict_type): New function.
2668 (read_type_die_1): Handle DW_TAG_restrict_type.
2669 * gdbtypes.c (make_restrict_type): New function.
2670 (recursive_dump_type): Handle TYPE_RESTRICT.
2671 * gdbtypes.h (enum type_flag_values): Renumber.
2672 (enum type_instance_flag_value): Add
2673 TYPE_INSTANCE_FLAG_RESTRICT.
2674 (TYPE_RESTRICT): New macro.
2675 (make_restrict_type): Declare.
2676
c9bf0622
TT
26772013-01-14 Tom Tromey <tromey@redhat.com>
2678
2679 PR symtab/14931:
2680 * psymtab.c (struct psymtab_state): New.
2681 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
2682 functions.
2683 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
2684 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
2685
44d594fd
PA
26862013-01-14 Richard Sharman <richard_sharman@mitel.com>
2687 Pedro Alves <palves@redhat.com>
2688
2689 PR remote/14786
2690
2691 * remote.c (remote_threads_info): Make a copy of the reply from
2692 qfThreadInfo and use that instead of rs->buf.
2693
442e4d9c
YQ
26942013-01-14 Yao Qi <yao@codesourcery.com>
2695
2696 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
2697 (dbx_psymtab_to_symtab): Likewise.
2698 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
2699 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
2700 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
2701
5b12a61c
JK
27022013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2703
2704 * parse.c (parse_exp_in_context): New variable inner_chain. Call
2705 make_cleanup_restore_current_language. Call set_language. Move
2706 OLD_CHAIN and INNER_CHAIN cleanups.
2707 * utils.c (do_restore_current_language)
2708 (make_cleanup_restore_current_language): New functions.
2709 * utils.h (make_cleanup_restore_current_language): New declaration.
2710
f0a4b570
JK
27112013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2712
2713 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
2714 non-existing files.
2715
57b3c00c
JK
2716 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
2717 non-existing files if FILENAME is already absolute.
2718
daefa854
JK
27192013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2720
2721 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
2722 fputs_filtered. Append trailing newline.
2723
ca9c6ee2
YQ
27242013-01-11 Yao Qi <yao@codesourcery.com>
2725 Stan Shebs <stan@codesourcery.com>
2726
2727 * psymtab.c (init_psymbol_list): Clarify the comment.
2728
f28045c2
YQ
27292013-01-11 Yao Qi <yao@codesourcery.com>
2730
2731 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
2732 (update_dprintf_command_list): Assert that 'printf_line' is
2733 non-null. Remove condition check.
2734
da5132d3
JK
27352013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
2736
2737 Code cleanup.
2738 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
2739 type const char *.
2740 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
2741 const char *.
2742 * tui/tui-source.h (tui_source_is_displayed): Likewise.
2743
843e694d
AG
27442013-01-09 Anthony Green <green@moxielogic.com>
2745
2746 * cp-abi.c (cplus_print_vtable): Don't return value from void
2747 function.
2748 * ada-lang.c (re_set_catch_assert): Ditto.
2749
da51c347
DE
27502013-01-09 Doug Evans <dje@google.com>
2751
2752 * symfile.h (quick_symbol_functions): Delete member
2753 pre_expand_symtabs_matching. All uses removed.
2754 * dwarf2read.c (dw2_lookup_symbol): Implement.
2755 (dw2_do_expand_symtabs_matching): Delete.
2756 (dw2_pre_expand_symtabs_matching): Delete.
2757 (struct dw2_symtab_iterator): New type.
2758 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
2759 (dw2_expand_symtabs_for_function): Rewrite.
2760 (dwarf2_gdb_index_functions): Update.
2761 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
2762 (psym_functions): Update.
2763
b2259038
TT
27642013-01-09 Tom Tromey <tromey@redhat.com>
2765
2766 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
2767 * configure: Rebuild.
2768 * configure.ac: Add somread.o to the build if BFD has SOM
2769 support.
2770 * somread.c: Include som/aout.h, not syms.h.
2771 (som_symtab_read): Use som_external_symbol_dictionary_record.
2772 Unpack records manually.
2773 (_initialize_somread): Declare.
2774
bdad4180
MF
27752012-01-08 Mike Frysinger <vapier@gentoo.org>
2776
2777 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
2778 Cast return_address to 64bits.
2779
03cdf680
HZ
27802013-01-08 Hui Zhu <hui_zhu@mentor.com>
2781
2782 * printcmd.c: Remove define of function output_command.
2783 * tracepoint.c: Remove extern of function output_command.
2784 * valprint.h: (output_command): New extern.
2785
8a808554
TT
27862013-01-07 Tom Tromey <tromey@redhat.com>
2787
2788 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
2789 Remove.
2790 (objc_language_defn): Use c_printchar, c_printstr,
2791 c_emit_char.
2792
e93a8774
TT
27932013-01-07 Tom Tromey <tromey@redhat.com>
2794
2795 PR cli/7719:
2796 * NEWS: Update.
2797 * ada-valprint.c (printstr, print_field_values): Remove
2798 "inspect_it" code.
2799 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
2800 code.
2801 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
2802 code.
2803 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
2804 * main.c (captured_main): Remove "epoch" argument.
2805 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
2806 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
2807 * p-valprint.c (pascal_object_print_value_fields): Remove
2808 "inspect_it" code.
2809 * printcmd.c (print_command_1): Remove 'inspect' argument.
2810 (print_command, call_command): Update.
2811 (inspect_command): Remove.
2812 (_initialize_printcmd): Make "inspect" an alias for "print".
2813 * top.c (epoch_interface): Remove.
2814 * top.h (epoch_interface): Remove.
2815 * valprint.c (user_print_options): Update.
2816 (print_converted_chars_to_obstack): Remove "inspect_it" code.
2817 * valprint.h (struct value_print_options) <inspect_it>: Remove
2818 field.
2819
28202013-01-04 Tom Tromey <tromey@redhat.com>
2821
2822 * valprint.h (read_string): Add 'extern'.
2823
b967eb24
JB
28242013-01-07 Joel Brobecker <brobecker@adacore.com>
2825
2826 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
2827 used to decide whether to define darwin_read_dyld_info or not.
2828
78a8b30e
PM
28292013-01-03 Pierre Muller <muller@sourceware.org>
2830
2831 * main.c (relocate_gdb_directory): Avoid calling stat function
2832 if DIR is empty.
2833
50da2f25
YQ
28342013-01-03 Yao Qi <yao@codesourcery.com>
2835
2836 * psymtab.c (fixup_psymbol_section): Update declaration.
2837 (fixup_psymbol_section): Remove code returning value.
2838
e7e8980f
YQ
28392013-01-03 Yao Qi <yao@codesourcery.com>
2840
2841 * symtab.h: Remove some out of date comments.
2842 (enum exception_event_kind): Move it ...
2843 * breakpoint.c: ... here.
2844
569283d4
MF
28452013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
2846
9f9d9a96 2847 PR gdb/14405
569283d4
MF
2848 * darwin-nat.c (darwin_read_dyld_info): Only build if
2849 TASK_DYLD_INFO_COUNT is defined.
2850 (darwin_xfer_partial): Call darwin_read_dyld_info only if
2851 TASK_DYLD_INFO_COUNT is defined.
2852
2e36fbea
TT
28532013-01-02 Tom Tromey <tromey@redhat.com>
2854
2855 * symfile.h (struct ecoff_debug_hack): Remove.
2856 * objfiles.c: Don't include mdebugread.h.
2857
4f05add4
TT
28582013-01-02 Tom Tromey <tromey@redhat.com>
2859
2860 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
2861 * configure.ac: Check for Mach-O support in BFD. Update
2862 CONFIG_OBS.
2863 * configure: Rebuild.
2864
def63ff0
TT
28652013-01-02 Tom Tromey <tromey@redhat.com>
2866
2867 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
2868 * configure.ac: Use GDB_AC_CHECK_BFD.
2869 * configure: Rebuild.
2870
60c5dd93
MK
28712013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
2872
2873 * MAINTAINERS: Update my email.
2874
6e58437e
JB
28752013-01-01 Joel Brobecker <brobecker@adacore.com>
2876
2877 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
2878
627fe805
JB
28792013-01-01 Joel Brobecker <brobecker@adacore.com>
2880
2881 * rs6000-nat.c (bss_data_overlap): New function.
2882 (vmap_symtab): Use it to adjust the .bss section's offset.
2883
28e7fd62
JB
28842013-01-01 Joel Brobecker <brobecker@adacore.com>
2885
2886 Update year range in copyright notice of all files.
2887
e93a8774 28882013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
b9786c74
JB
2889
2890 * top.c (print_gdb_version): Update copyright year.
2891
72b20e9c 2892For older changes see ChangeLog-2012.
c906108c
SS
2893\f
2894Local Variables:
2895mode: change-log
2896left-margin: 8
2897fill-column: 74
2898version-control: never
57da7796 2899coding: utf-8
c906108c 2900End:
This page took 1.672376 seconds and 4 git commands to generate.