btrace: increase buffer size
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
d0fa7535
MM
12014-01-16 Markus Metzger <markus.t.metzger@intel.com>
2
3 * common/linux-btrace.c (linux_enable_btrace): Enlarge buffer.
4
5de9129b
MM
52014-01-16 Markus Metzger <markus.t.metzger@intel.com>
6
7 * btrace.c (ftrace_new_function): Start counting at one.
8 * record-btrace.c (record_btrace_info): Adjust number of calls
9 and insns.
10 * NEWS: Announce it.
11
7acbe133
MM
122014-01-16 Markus Metzger <markus.t.metzger@intel.com>
13
14 * record-btrace.c (btrace_call_history_insn_range): Print
15 insn range as [begin, end].
16
23a7fe75
MM
172014-01-16 Markus Metzger <markus.t.metzger@intel.com>
18
19 * btrace.h (struct btrace_func_link): New.
20 (enum btrace_function_flag): New.
21 (struct btrace_inst): Rename to ...
22 (struct btrace_insn): ...this. Update all users.
23 (struct btrace_func) <ibegin, iend>: Remove.
24 (struct btrace_func_link): New.
25 (struct btrace_func): Rename to ...
26 (struct btrace_function): ...this. Update all users.
27 (struct btrace_function) <segment, flow, up, insn, insn_offset)
28 (number, level, flags>: New.
29 (struct btrace_insn_iterator): Rename to ...
30 (struct btrace_insn_history): ...this.
31 Update all users.
32 (struct btrace_insn_iterator, btrace_call_iterator): New.
33 (struct btrace_target_info) <btrace, itrace, ftrace>: Remove.
34 (struct btrace_target_info) <begin, end, level>
35 <insn_history, call_history>: New.
36 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
37 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
38 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
39 (btrace_call_number, btrace_call_begin, btrace_call_end)
40 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
41 (btrace_find_function_by_number, btrace_set_insn_history)
42 (btrace_set_call_history): New.
43 * btrace.c (btrace_init_insn_iterator)
44 (btrace_init_func_iterator, compute_itrace): Remove.
45 (ftrace_print_function_name, ftrace_print_filename)
46 (ftrace_skip_file): Change
47 parameter to const.
48 (ftrace_init_func): Remove.
49 (ftrace_debug): Use new btrace_function fields.
50 (ftrace_function_switched): Also consider gaining and
51 losing symbol information).
52 (ftrace_print_insn_addr, ftrace_new_call, ftrace_new_return)
53 (ftrace_new_switch, ftrace_find_caller, ftrace_new_function)
54 (ftrace_update_caller, ftrace_fixup_caller, ftrace_new_tailcall):
55 New.
56 (ftrace_new_function): Move. Remove debug print.
57 (ftrace_update_lines, ftrace_update_insns): New.
58 (ftrace_update_function): Check for call, ret, and jump.
59 (compute_ftrace): Renamed to ...
60 (btrace_compute_ftrace): ...this. Rewritten to compute call
61 stack.
62 (btrace_fetch, btrace_clear): Updated.
63 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
64 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
65 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
66 (btrace_call_number, btrace_call_begin, btrace_call_end)
67 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
68 (btrace_find_function_by_number, btrace_set_insn_history)
69 (btrace_set_call_history): New.
70 * record-btrace.c (require_btrace): Use new btrace thread
71 info fields.
72 (record_btrace_info, btrace_insn_history)
73 (record_btrace_insn_history, record_btrace_insn_history_range):
74 Use new btrace thread info fields and new iterator.
75 (btrace_func_history_src_line): Rename to ...
76 (btrace_call_history_src_line): ...this. Use new btrace
77 thread info fields.
78 (btrace_func_history): Rename to ...
79 (btrace_call_history): ...this. Use new btrace thread info
80 fields and new iterator.
81 (record_btrace_call_history, record_btrace_call_history_range):
82 Use new btrace thread info fields and new iterator.
83
8372a7cb
MM
842014-01-16 Markus Metzger <markus.t.metzger@intel.com>
85
86 * frame.h (frame_id_build_unavailable_stack_special): New.
87 * frame.c (frame_id_build_unavailable_stack_special): New.
88
c2170eef
MM
892014-01-16 Markus Metzger <markus.t.metzger@intel.com>
90
91 * amd64-tdep.c (amd64_classify_insn_at, amd64_insn_is_call)
92 (amd64_insn_is_ret, amd64_insn_is_jump, amd64_jmp_p): New.
93 (amd64_init_abi): Add insn_is_call, insn_is_ret, and insn_is_jump
94 to gdbarch.
95 * i386-tdep.c (i386_insn_is_call, i386_insn_is_ret)
96 (i386_insn_is_jump, i386_jmp_p): New.
97 (i386_gdbarch_init): Add insn_is_call, insn_is_ret, and
98 insn_is_jump to gdbarch.
99 * gdbarch.sh (insn_is_call, insn_is_ret, insn_is_jump): New.
100 * gdbarch.h: Regenerated.
101 * gdbarch.c: Regenerated.
102 * arch-utils.h (default_insn_is_call, default_insn_is_ret)
103 (default_insn_is_jump): New.
104 * arch-utils.c (default_insn_is_call, default_insn_is_ret)
105 (default_insn_is_jump): New.
106
864089d2
MM
1072014-01-16 Markus Metzger <markus.t.metzger@intel.com>
108
109 * common/btrace-common.h (btrace_read_type) <btrace_read_all>:
110 Change to ...
111 (btrace_read_type) <BTRACE_READ_ALL>: ... this. Update users.
112 (btrace_read_type) <btrace_read_new>: Change to ...
113 (btrace_read_type) <BTRACE_READ_NEW>: ... this. Update users.
114
ed9edfb5
MM
1152014-01-16 Markus Metzger <markus.t.metzger@intel.com>
116
117 * common/linux-btrace.c (linux_read_btrace): Free trace from
118 previous iteration.
119
fbcbc3fd
DE
1202014-01-15 Doug Evans <dje@google.com>
121
122 * dwarf2read.c (open_and_init_dwp_file): Use pulongest to print
123 uint32_t.
124
3d548a53
TT
1252014-01-15 Tom Tromey <tromey@redhat.com>
126
127 * dbxread.c (process_one_symbol): Use set_objfile_main_name.
128 * dwarf2read.c (read_partial_die): Use set_objfile_main_name.
129 * objfiles.c (get_objfile_bfd_data): Initialize language_of_main.
130 (set_objfile_main_name): New function.
131 * objfiles.h (struct objfile_per_bfd_storage) <name_of_main,
132 language_of_main>: New fields.
133 (set_objfile_main_name): Declare.
134 * symtab.c (find_main_name): Loop over objfiles to find the main
135 name and language.
136 (set_main_name): Now static.
137 (get_main_info): Add comment.
138 * symtab.h (set_main_name): Don't declare.
139
32ac0d11
TT
1402014-01-15 Tom Tromey <tromey@redhat.com>
141
142 * symtab.c (main_progspace_key): New global.
143 (struct main_info): New.
144 (name_of_main, language_of_main): Remove.
145 (get_main_info, main_info_cleanup): New function.
146 (set_main_name, main_name, main_language): Use get_main_info.
147 (_initialize_symtab): Initialize main_progspace_key.
148
9e6c82ad
TT
1492014-01-15 Tom Tromey <tromey@redhat.com>
150
151 * dbxread.c (process_one_symbol): Update.
152 * dwarf2read.c (read_partial_die): Update.
153 * symfile.c (set_initial_language): Call main_language.
154 * symtab.c (language_of_main): Now static.
155 (set_main_name): Add 'lang' parameter.
156 (find_main_name): Update.
157 (main_language): New function.
158 (symtab_observer_executable_changed): Update.
159 * symtab.h (set_main_name): Update.
160 (language_of_main): Remove.
161 (main_language): Declare.
162
6ef55de7
TT
1632014-01-15 Tom Tromey <tromey@redhat.com>
164
165 * symfile.c (init_entry_point_info): Use new "initialized" field.
166 Update.
167 * objfiles.h (struct entry_point) <initialized>: New field.
168 (struct objfile_per_bfd_storage) <ei>: New field, moved from...
169 (struct objfile) <ei>: ...here. Remove.
170 * objfiles.c (entry_point_address_query): Update.
171
53eddfa6
TT
1722014-01-15 Tom Tromey <tromey@redhat.com>
173
174 * objfiles.c (entry_point_address_query): Relocate entry point
175 address.
176 (objfile_relocate1): Do not relocate entry point address.
177 * objfiles.h (struct entry_info) <entry_point>: Update comment.
178 <the_bfd_section_index>: New field.
179 * symfile.c (init_entry_point_info): Find the entry point's
180 section.
181
d56e56aa
TT
1822014-01-15 Tom Tromey <tromey@redhat.com>
183
184 * solib-frv.c (enable_break): Use entry_point_address_query.
185
33a97bbe
OJ
1862014-01-15 Omair Javaid <omair.javaid@linaro.org>
187
188 * NEWS: Add note on improved process record-replay on
189 arm*-linux* targets.
190
c6ec2b30
OJ
1912014-01-15 Omair Javaid <omair.javaid@linaro.org>
192
193 * arm-tdep.c (enum arm_record_result): New enum.
194 (arm_record_unsupported_insn): New function.
195 (arm_record_coproc_data_proc): Removed.
196 (thumb2_record_ld_st_multiple): New function.
197 (thumb2_record_ld_st_dual_ex_tbb): New function.
198 (thumb2_record_data_proc_sreg_mimm): New function.
199 (thumb2_record_ps_dest_generic): New function.
200 (thumb2_record_branch_misc_cntrl): New function.
201 (thumb2_record_str_single_data): New function.
202 (thumb2_record_ld_mem_hints): New function.
203 (thumb2_record_ld_word): New function.
204 (thumb2_record_lmul_lmla_div): New function.
205 (thumb2_record_decode_insn_handler): New function.
206 (decode_insn): Add thumb32 instruction handlers.
207
97dfe206
OJ
2082014-01-15 Omair Javaid <omair.javaid@linaro.org>
209
210 * arm-linux-tdep.c: Include "record-full.h" and "linux-record.h".
211 (struct arm_linux_record_tdep): Declare.
212 (arm_canonicalize_syscall): New function.
213 (arm_all_but_pc_registers_record): New function.
214 (arm_linux_syscall_record): New function.
215 (arm_linux_init_abi): Add syscall recording constructs.
216 * arm-tdep.c (thumb_record_ldm_stm_swi): Update thumb syscall
217 decoding. (arm_record_coproc_data_proc): Update arm syscall
218 decoding.
219 * arm-tdep.h (struct gdbarch_tdep) <arm_swi_record>: Remove.
220 <arm_syscall_record>: New field.
221 * configure.tgt (arm*-*-linux*): Add linux-record.o to
222 gdb_target_obs.
223
9904a494
OJ
2242014-01-15 Omair Javaid <omair.javaid@linaro.org>
225
226 * arm-tdep.c (thumb_record_misc): Update to use sp as base
227 register for push instruction recording.
228
f969241e
OJ
2292014-01-15 Omair Javaid <omair.javaid@linaro.org>
230
231 * arm-tdep.c (thumb_record_misc): Update to correct logical
232 error while recording ldm, ldmia and pop instructions.
233
bfbbec00
OJ
2342014-01-15 Omair Javaid <omair.javaid@linaro.org>
235
236 * arm-tdep.c (struct arm_mem_r) <addr>: Change type to uint32_t.
237
e40adcc9
PA
2382014-01-15 Pedro Alves <palves@redhat.com>
239
240 * go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
241 (go32_resume, go32_fetch_registers, store_register)
242 (go32_store_registers, go32_prepare_to_store)
243 (go32_xfer_memory, go32_files_info, go32_kill_inferior)
244 (go32_create_inferior, go32_can_run, go32_terminal_init)
245 (go32_terminal_inferior, go32_terminal_ours): Delete forward
246 declarations.
247
b0a16e66
TT
2482014-01-15 Tom Tromey <tromey@redhat.com>
249
250 * target.h (async_callback_ftype): New typedef.
251 (struct target_ops) <to_async>: Use it.
252
bf7105a4
JB
2532014-01-15 Joel Brobecker <brobecker@adacore.com>
254
255 * python/py-value.c (get_field_type): Remove unnecessary curly
256 braces for single-statement if block.
257
a8f35c2e
JB
2582014-01-15 Joel Brobecker <brobecker@adacore.com>
259
260 * python/py-type.c (convert_field): Add missing empty line
261 after declarations.
262
bb4142cf
DE
2632014-01-14 Doug Evans <dje@google.com>
264
265 * symfile.h (expand_symtabs_matching): Renamed from
266 expand_partial_symbol_names. Update prototype.
267 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
268 * symfile.c (expand_symtabs_matching): Renamed from
269 expand_partial_symbol_names. New args file_matcher, kind.
270 Rename arg fun to symbol_matcher.
271 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
272 * ada-lang.c (ada_complete_symbol_matcher): Renamed from
273 ada_expand_partial_symbol_name.
274 (ada_make_symbol_completion_list): Update to call
275 expand_symtabs_matching.
276 (ada_add_global_exceptions): Call expand_symtabs_matching.
277 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update to
278 call map_symbol_filenames.
279 * symtab.c (sources_info): Update to call map_symbol_filenames.
280 (search_symbols): Call expand_symtabs_matching.
281 (symbol_completion_matcher): Renamed from expand_partial_symbol_name.
282 (default_make_symbol_completion_list_break_on): Update to call
283 expand_symtabs_matching.
284 (make_source_files_completion_list): Update to call
285 map_symbol_filenames.
286
206f2a57
DE
2872014-01-14 Doug Evans <dje@google.com>
288
289 * symfile.h (expand_symtabs_file_matcher_ftype): New typedef.
290 (expand_symtabs_symbol_matcher_ftype): New typedef.
291 (quick_symbol_functions.expand_symtabs_matching): Update to use.
292 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
293 * symfile.c (expand_partial_symbol_names): Update to use
294 expand_symtabs_symbol_matcher_ftype.
295 * dwarf2read.c (dw2_expand_symtabs_matching): Update to use
296 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
297 Arg name_matcher renamed to symbol_matcher.
298 * psymtab.c (recursively_search_psymtabs): Update to use
299 expand_symtabs_symbol_matcher_ftype. Arg name_matcher renamed to
300 sym_matcher.
301 (expand_symtabs_matching_via_partial): Update to use
302 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
303 Arg name_matcher renamed to symbol_matcher.
304
540c2971
DE
3052014-01-14 Doug Evans <dje@google.com>
306
307 * psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
308 (map_partial_symbol_filenames): Ditto.
309 * psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
310 (map_partial_symbol_filenames): Ditto.
311 * symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
312 (map_partial_symbol_filenames): Ditto.
313 * symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
314 (map_partial_symbol_filenames): Ditto.
315 * symtab.c: Delete #include "psymtab.h".
316
8213266a
PA
3172014-01-14 Pedro Alves <palves@redhat.com>
318 Tom Tromey <tromey@redhat.com>
319
320 * infrun.c (use_displaced_stepping): Use find_record_target
321 instead of RECORD_IS_USED.
322 (adjust_pc_after_break): Use record_full_is_used instead of
323 RECORD_IS_USED.
324 * record-btrace.c (record_btrace_open): Call record_preopen
325 instead of checking RECORD_IS_USED.
326 * record-full.c (record_full_shortname)
327 (record_full_core_shortname): New globals.
328 (record_full_is_used): New function.
329 (find_full_open): Call record_preopen instead of checking
330 RECORD_IS_USED.
331 (init_record_full_ops): Set the target's shortname to
332 record_full_shortname.
333 (init_record_full_core_ops): Set the target's shortname to
334 record_full_core_shortname.
335 * record-full.h (record_full_is_used): Declare.
336 * record.c (find_record_target): Make extern.
337 (record_preopen): New function.
338 * record.h (RECORD_IS_USED): Delete macro.
339 (find_record_target, record_preopen): Declare functions.
340
7ec1862d
YQ
3412014-01-14 Yao Qi <yao@codesourcery.com>
342
343 * gdbarch.sh (core_xfer_shared_libraries): Change its argument
344 'len''s type to ULONGEST.
345 (core_xfer_shared_libraries_aix): Likewise.
346 * gdbarch.c, gdbarch.h: Regenerated.
347 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries):
348 Change type of 'len' to ULONGEST.
349 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
350 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
351
dea80a27
YQ
3522014-01-14 Yao Qi <yao@codesourcery.com>
353
354 * common/linux-osdata.c (linux_xfer_osdata_processes): Change
355 type of 'len' to ULONGEST.
356 (linux_xfer_osdata_processgroups): Likewise.
357 (linux_xfer_osdata_threads): Likewise.
358 (linux_xfer_osdata_fds): Likewise.
359 (linux_xfer_osdata_isockets): Likewise.
360 (linux_xfer_osdata_shm): Likewise.
361 (linux_xfer_osdata_sem): Likewise.
362 (linux_xfer_osdata_msg): Likewise.
363 (linux_common_xfer_osdata): Likewise.
364 (struct osdata_type) <getter>: Likewise.
365 * common/linux-osdata.h (linux_common_xfer_osdata): Update
366 the declaration.
367
b55e14c7
YQ
3682014-01-14 Yao Qi <yao@codesourcery.com>
369
370 * target.h (target_xfer_partial_ftype): Update.
371 (struct target_ops) <to_xfer_partial>: Change 'len' type to
372 ULONGEST.
373 * aix-thread.c (aix_thread_xfer_partial): Change type of
374 argument 'len' to ULONGEST.
375 * auxv.c (procfs_xfer_auxv): Likewise.
376 (ld_so_xfer_auxv): Likewise.
377 (memory_xfer_auxv): Likewise.
378 * bfd-target.c (target_bfd_xfer_partial): Likewise.
379 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
380 * bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
381 * corelow.c (core_xfer_partial): Likewise.
382 * ctf.c (ctf_xfer_partial): Likewise.
383 * darwin-nat.c (darwin_read_write_inferior): Likewise. Use
384 '%u'.
385 (darwin_read_dyld_info): Likewise.
386 (darwin_xfer_partial): Likewise.
387 * exec.c (section_table_xfer_memory_partial): Likewise.
388 (exec_xfer_partial): Likewise.
389 * exec.h (section_table_xfer_memory_partial): Update
390 declaration.
391 * gnu-nat.c (gnu_xfer_memory): Likewise. Call pulongest
392 instead of plongest.
393 (gnu_xfer_partial): Likewise.
394 * ia64-hpux-nat.c (ia64_hpux_xfer_memory): Likewise.
395 (ia64_hpux_xfer_solib_got): Likewise.
396 (ia64_hpux_xfer_partial): Likewise.
397 * ia64-linux-nat.c (ia64_linux_xfer_partial):
398 * inf-ptrace.c (inf_ptrace_xfer_partial):
399 * inf-ttrace.c (inf_ttrace_xfer_partial):
400 * linux-nat.c (linux_xfer_siginfo): Likewise.
401 (linux_nat_xfer_partial): Likewise.
402 (spu_enumerate_spu_ids, linux_proc_xfer_spu): Likewise.
403 (linux_nat_xfer_osdata, linux_xfer_partial): Likewise.
404 * monitor.c (monitor_xfer_memory): Likewise.
405 (monitor_xfer_partial): Likewise.
406 * procfs.c (procfs_xfer_partial): Likewise.
407 * record-full.c (record_full_xfer_partial): Likewise.
408 (record_full_core_xfer_partial): Likewise.
409 * remote-sim.c (gdbsim_xfer_memory): Likewise. Call pulongest
410 instead of plongest.
411 (gdbsim_xfer_partial): Likewise.
412 * remote.c (remote_xfer_partial): Likewise.
413 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
414 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
415 declaration.
416 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
417 (rs6000_xfer_shared_libraries): Likewise.
418 * sol-thread.c (sol_thread_xfer_partial): Likewise.
419 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
420 (sparc_xfer_partial): Likewise.
421 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
422 (spu_xfer_partial): Likewise.
423 * spu-multiarch.c (spu_xfer_partial): Likewise.
424 * target.c (target_read_live_memory): Likewise.
425 (memory_xfer_live_readonly_partial): Likewise.
426 (memory_xfer_partial, memory_xfer_partial_1): Likewise.
427 (target_xfer_partial, default_xfer_partial): Likewise.
428 (current_xfer_partial): Likewise.
429 * tracepoint.c (tfile_xfer_partial): Likewise.
430 * windows-nat.c (windows_xfer_memory): Likewise. Call
431 pulongest instead of plongest.
432 (windows_xfer_partial): Likewise.
433 (windows_xfer_shared_libraries): Likewise.
434
05804640
YQ
4352014-01-14 Yao Qi <yao@codesourcery.com>
436
437 * rs6000-nat.c (rs6000_xfer_shared_libraries): Use
438 target_xfer_partial_ftype.
439
b5b08fb4
SC
4402014-01-13 Siva Chandra Reddy <sivachandra@google.com>
441
442 PR python/15464
443 PR python/16113
444 * valops.c (value_struct_elt_bitpos): New function
445 * py-type.c (convert_field): Set 'name' attribute of a gdb.Field
446 object to 'None' if the field name is an empty string ("").
447 * python/py-value.c (valpy_getitem): Use 'bitpos' and 'type'
448 attribute to look for a field when 'name' is 'None'.
449 (get_field_type): New function
450
13aaf454
DE
4512014-01-13 Doug Evans <dje@google.com>
452
453 PR symtab/16426
454 * dwarf2read.c (dwarf2_get_dwz_file): Call gdb_bfd_record_inclusion.
455 (try_open_dwop_file): Ditto.
456 * gdb_bfd.c: #include "vec.h".
457 (bfdp): New typedef.
458 (struct gdb_bfd_data): New member included_bfds.
459 (gdb_bfd_unref): Unref all included bfds.
460 (gdb_bfd_record_inclusion): New function.
461 * gdb_bfd.h (gdb_bfd_record_inclusion): Declare.
462
c2cec97c
TT
4632014-01-13 Tom Tromey <tromey@redhat.com>
464
465 * gdbcore.h (deprecated_core_resize_section_table): Remove.
466
78e5999d
TT
4672014-01-13 Tom Tromey <tromey@redhat.com>
468
469 * defs.h (use_windows): Remove.
470 * gdb.c (main): Update.
471 * main.c (captured_main, gdb_main): Update.
472 * main.h (struct captured_main_args) <use_windows>: Remove.
473 * top.c (use_windows): Remove.
474
f2052bbe
TT
4752014-01-13 Tom Tromey <tromey@redhat.com>
476
477 * defs.h (deprecated_flush_hook): Remove.
478
fde4f8ed
JK
4792014-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
480
481 PR threads/16216
482 * linux-thread-db.c (try_thread_db_load): Add parameter
483 check_auto_load_safe. Move here the file_is_auto_load_safe call.
484 (try_thread_db_load_from_pdir_1): Move it there from here.
485 (try_thread_db_load_from_sdir): Update caller.
486 (try_thread_db_load_from_dir): Move it there from here.
487
bdf61915
PP
4882014-01-13 Patrick Palka <patrick@parcs.ath.cx>
489
490 * regformats/regdat.sh: Always rewrite the register file.
491
f71e1a8d
PA
4922014-01-13 Pedro Alves <palves@redhat.com>
493
494 * Makefile.in (CHECK_HEADERS): New variable.
495 (check-headers:): New rule.
496
42c85435
TT
4972014-01-13 Tom Tromey <tromey@redhat.com>
498
499 * cli/cli-setshow.c (do_set_command): Update.
500 * defs.h (deprecated_set_hook): Remove.
501 * top.c (deprecated_set_hook): Remove.
502
f8de5129
PA
5032014-01-13 Pedro Alves <palves@redhat.com>
504
505 * tracepoint.c (tfile_fetch_registers): Don't infer the PC from
506 the tracepoint if the PC is a pseudo-register.
507
fc270c35
TT
5082014-01-13 Tom Tromey <tromey@redhat.com>
509
510 * defs.h (XCALLOC): Remove.
511 * bcache.c (bcache_xmalloc): Use XCNEW, not XCALLOC.
512 (print_bcache_statistics): Use XCNEWVEC, not XCALLOC.
513 * dwarf2loc.c (allocate_piece_closure): Likewise.
514 * elfread.c (elf_symfile_segments): Likewise.
515 (elf_symfile_segments): Likewise.
516 * gdbtypes.c (copy_type_recursive): Likewise.
517 * i386-tdep.c (i386_gdbarch_init): Use XCNEW, not XCALLOC.
518 * jit.c (jit_frame_sniffer): Use XCNEWVEC, not XCALLOC.
519 * minsyms.c (prim_record_minimal_symbol_full): Use XCNEW, not
520 XCALLOC.
521 * mt-tdep.c (mt_gdbarch_init): Likewise.
522 * opencl-lang.c (allocate_lval_closure): Use XCNEWVEC, not
523 XCALLOC.
524 * psymtab.c (psymbol_compare): Use XCNEW, not XCALLOC.
525 * regcache.c (regcache_xmalloc_1): Use XCNEWVEC, not XCALLOC.
526 * registry.c (registry_alloc_data): Likewise.
527 * rs6000-tdep.c (rs6000_gdbarch_init): Use XCNEW, not XCALLOC.
528 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
529 * serial.c (serial_fdopen_ops): Likewise.
530 * solib-aix.c (solib_aix_get_section_offsets): Use XCNEWVEC, not
531 XCALLOC.
532 * spu-tdep.c (spu_gdbarch_init): Use XCNEW, not XCALLOC.
533 * symfile.c (default_symfile_segments): Use XCNEW and XCNEWVEC,
534 not XCALLOC.
535
70ba0933
TT
5362014-01-13 Tom Tromey <tromey@redhat.com>
537
538 * defs.h (XMALLOC): Remove.
539 * avr-tdep.c (avr_gdbarch_init): Use XNEW, not XMALLOC.
540 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
541 * cli-out.c (struct ui_out *): Likewise.
542 * cli/cli-dump.c (add_dump_command): Likewise.
543 (add_dump_command): Likewise.
544 * complaints.c (get_complaints): Likewise.
545 (find_complaint): Likewise.
546 * dwarf2-frame.c (execute_cfa_program): Likewise.
547 * dwarf2read.c (abbrev_table_read_table): Likewise.
548 * gdbarch.sh: Likewise.
549 * gdbarch.c: Rebuild.
550 * inf-ttrace.c (inf_ttrace_add_page): Likewise.
551 * interps.c (interp_new): Likewise.
552 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
553 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
554 * mi/mi-console.c (mi_console_file_new): Likewise.
555 * mi/mi-interp.c (mi_interpreter_init): Likewise.
556 * mi/mi-out.c (mi_out_new): Likewise.
557 * mi/mi-parse.c (mi_parse): Likewise.
558 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
559 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
560 * observer.c (xalloc_observer_list_node): Likewise.
561 * regcache.c (regcache_xmalloc_1): Likewise.
562 * reggroups.c (reggroup_new): Likewise.
563 (_initialize_reggroup): Likewise.
564 * registry.c (register_data_with_cleanup): Likewise.
565 * remote.c (remote_notif_stop_alloc_reply): Likewise.
566 * ser-base.c (serial_ttystate): Likewise.
567 * ser-mingw.c (make_pipe_state): Likewise.
568 * ser-pipe.c (pipe_open): Likewise.
569 * serial.c (serial_open): Likewise.
570 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
571 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
572 (tui_alloc_win_info): Likewise.
573 (tui_add_content_elements): Likewise.
574 * tui/tui-file.c (tui_file_new): Likewise.
575 * tui/tui-out.c (tui_out_new): Likewise.
576 * ui-file.c (mem_file_new): Likewise.
577 * ui-out.c (push_level): Likewise.
578 (make_cleanup_ui_out_end): Likewise.
579 (append_header_to_list): Likewise.
580 (ui_out_new): Likewise.
581 * user-regs.c (user_reg_add_builtin): Likewise.
582
41bf6aca
TT
5832014-01-13 Tom Tromey <tromey@redhat.com>
584
585 * defs.h (XZALLOC): Remove.
586 * ada-lang.c (get_ada_inferior_data): Use XCNEW, not XZALLOC.
587 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
588 (get_ada_tasks_inferior_data): Likewise.
589 * auto-load.c (get_auto_load_pspace_data): Likewise.
590 * auxv.c (get_auxv_inferior_data): Likewise.
591 * bfd-target.c (target_bfd_reopen): Likewise.
592 * breakpoint.c (get_catch_syscall_inferior_data): Likewise.
593 (deprecated_insert_raw_breakpoint): Likewise.
594 * bsd-uthread.c (bsd_uthread_pid_to_str): Likewise.
595 * corelow.c (core_open): Likewise.
596 * darwin-nat.c (darwin_check_new_threads): Likewise.
597 (darwin_attach_pid): Likewise.
598 * dummy-frame.c (dummy_frame_push): Likewise.
599 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
600 * dwarf2loc.c (allocate_piece_closure): Likewise.
601 * elfread.c (elf_symfile_segments): Likewise.
602 * eval.c (ptrmath_type_p): Likewise.
603 * exceptions.c (EXCEPTIONS_SIGJMP_BUF): Likewise.
604 * gdbtypes.c (alloc_type_arch): Likewise.
605 (alloc_type_instance): Likewise.
606 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
607 * inf-child.c (inf_child_can_use_agent): Likewise.
608 * inflow.c (get_inflow_inferior_data): Likewise.
609 * infrun.c (save_infcall_suspend_state): Likewise.
610 * jit.c (jit_reader_load): Likewise.
611 (get_jit_objfile_data): Likewise.
612 (get_jit_program_space_data): Likewise.
613 (jit_object_open_impl): Likewise.
614 (jit_symtab_open_impl): Likewise.
615 (jit_block_open_impl): Likewise.
616 (jit_frame_sniffer): Likewise.
617 * linux-fork.c (add_fork): Likewise.
618 * maint.c (make_command_stats_cleanup): Likewise.
619 * objfiles.c (get_objfile_pspace_data): Likewise.
620 * opencl-lang.c (struct lval_closure): Likewise.
621 * osdata.c (osdata_start_osdata): Likewise.
622 * progspace.c (new_address_space): Likewise.
623 (add_program_space): Likewise.
624 * remote-sim.c (get_sim_inferior_data): Likewise.
625 * sh-tdep.c (sh_gdbarch_init): Likewise.
626 * skip.c (Ignore): Likewise.
627 (skip_delete_command): Likewise.
628 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
629 (library_list_start_library): Likewise.
630 (solib_aix_current_sos): Likewise.
631 * solib-darwin.c (get_darwin_info): Likewise.
632 (darwin_current_sos): Likewise.
633 * solib-dsbt.c (get_dsbt_info): Likewise.
634 * solib-ia64-hpux.c (new_so_list): Likewise.
635 (ia64_hpux_get_solib_linkage_addr): Likewise.
636 * solib-spu.c (append_ocl_sos): Likewise.
637 (spu_current_sos): Likewise.
638 * solib-svr4.c (get_svr4_info): Likewise.
639 (svr4_keep_data_in_core): Likewise.
640 (library_list_start_library): Likewise.
641 (svr4_default_sos): Likewise.
642 (svr4_read_so_list): Likewise.
643 * solib-target.c (library_list_start_library): Likewise.
644 (solib_target_current_sos): Likewise.
645 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
646 * symfile-debug.c (install_symfile_debug_logging): Likewise.
647 * symfile.c (default_symfile_segments): Likewise.
648 * target-descriptions.c (tdesc_data_init): Likewise.
649 (tdesc_create_reg): Likewise.
650 (struct tdesc_type *): Likewise.
651 (tdesc_create_vector): Likewise.
652 (tdesc_set_struct_size): Likewise.
653 (struct tdesc_type *): Likewise.
654 (tdesc_free_feature): Likewise.
655 (tdesc_create_feature): Likewise.
656 * windows-nat.c (windows_add_thread): Likewise.
657 (windows_make_so): Likewise.
658 * xml-support.c (gdb_xml_body_text): Likewise.
659 (gdb_xml_create_parser_and_cleanup): Likewise.
660 (xml_process_xincludes): Likewise.
661 * xml-syscall.c (allocate_syscalls_info): Likewise.
662 (syscall_create_syscall_desc): Likewise.
663
5acfdbae
SDJ
6642014-01-12 Sergio Durigan Junior <sergiodj@redhat.com>
665
666 * i386-tdep.c (i386_stap_parse_special_token_triplet): New
667 function, with code from i386_stap_parse_special_token.
668 (i386_stap_parse_special_token_three_arg_disp): Likewise.
669 (i386_stap_parse_special_token): Move code to the two functions
670 above; simplify it.
671
0000e5cc
PA
6722014-01-09 Pedro Alves <palves@redhat.com>
673 Hui Zhu <hui@codesourcery.com>
674
675 PR gdb/16101
676 * breakpoint.c (insert_bp_location): Rename hw_bp_err_string to
677 bp_err_string. Don't mark the location shlib_disabled if the
678 error thrown wasn't a generic or memory error. Catch errors
679 thrown while inserting breakpoints in overlayed code. Output
680 error message of software breakpoints.
681 * remote.c (remote_insert_breakpoint): If this breakpoint has
682 target-side commands but this stub doesn't support Z0 packets,
683 throw NOT_SUPPORTED_ERROR error.
684 * exceptions.h (enum errors) <NOT_SUPPORTED_ERROR>: New error.
685 * target.h (target_insert_breakpoint): Extend comment.
686 (target_insert_hw_breakpoint): Add comment.
687
b7ea362b
PA
6882014-01-08 Pedro Alves <palves@redhat.com>
689
690 * remote.c (remote_add_thread): Add threads silently if starting
691 up.
692 (remote_notice_new_inferior): If in all-stop, and starting up,
693 don't call notice_new_inferior.
694 (get_current_thread): New function, factored out from ...
695 (add_current_inferior_and_thread): ... this. Adjust.
696 (remote_start_remote) <all-stop>: Fetch the thread list. If we
697 found any thread, then select the remote's current thread as GDB's
698 current thread too.
699
b7bba001
JB
7002014-01-08 Joel Brobecker <brobecker@adacore.com>
701
702 * NEWS: Create a new section for the next release branch.
703 Rename the section of the current branch, now that it has
704 been cut.
705
16dfbded
JB
7062014-01-08 Joel Brobecker <brobecker@adacore.com>
707
708 GDB 7.7 branch created (79301218fa0f074c5656db0ec8972a5ddcf91fb5):
709 * version.in: Bump version to 7.7.50.DATE-cvs.
710
22c90ac1
YQ
7112014-01-08 Yao Qi <yao@codesourcery.com>
712
713 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Change
714 type of 'id' to gdb_byte. Cast 'id' to 'const char *'.
715 (spu_xfer_partial): Cast 'buf' to 'const char *'.
716
d64ad97c
YQ
7172014-01-08 Yao Qi <yao@codesourcery.com>
718
719 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Pass
720 return value of bfd_get_filename to symbol_file_add_from_bfd.
721
f93ba80c
PM
7222014-01-08 Pierre Muller <muller@sourceware.org>
723
724 Fix PR16201.
725 * coff-pe-read.c (struct read_pe_section_data): Add index field.
726 (add_pe_exported_sym): Use SECTION_DATA->INDEX for call
727 to prim_record_mininal_symbol_and_info.
728 (add_pe_forwarded_sym): Use known section number of forwarded symbol
729 in call to prim_record_minimal_symbol_and_info.
730 (read_pe_exported_syms): Set index field of section_data.
731
a4d9ba85
AP
7322014-01-07 Andrew Pinski <apinski@cavium.com>
733
734 * features/aarch64-core.xml (cpsr): Change to be 64bit.
735 * features/aarch64.c: Regenerate.
736
1b67eb02
AS
7372014-01-07 Andreas Schwab <schwab@linux-m68k.org>
738
739 * target.c (return_null): Define.
740 (update_current_target): Use it instead of return_zero for
741 functions that return a pointer.
742
5e3f4fab
EBM
7432014-01-07 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
744
745 * source.c (add_path): Fix check for duplicated paths in the previously
746 included paths.
747
e2616788
HK
7482014-01-07 Honggyu Kim <hong.gyu.kim@lge.com>
749
750 * ada-lang.c: Remove duplicated include statements.
751 * alphabsd-nat.c: Ditto.
752 * amd64-darwin-tdep.c: Ditto.
753 * amd64fbsd-nat.c: Ditto.
754 * auto-load.c: Ditto.
755 * ax-gdb.c: Ditto.
756 * breakpoint.c: Ditto.
757 * dbxread.c: Ditto.
758 * fork-child.c: Ditto.
759 * gdb_usleep.c: Ditto.
760 * i386-darwin-tdep.c: Ditto.
761 * i386fbsd-nat.c: Ditto.
762 * infcmd.c: Ditto.
763 * inferior.c: Ditto.
764 * jv-lang.c: Ditto.
765 * linux-nat.c: Ditto.
766 * linux-tdep.c: Ditto.
767 * m68kbsd-nat.c: Ditto.
768 * m68klinux-nat.c: Ditto.
769 * microblaze-tdep.c: Ditto.
770 * mips-linux-tdep.c: Ditto.
771 * mn10300-tdep.c: Ditto.
772 * nto-tdep.c: Ditto.
773 * opencl-lang.c: Ditto.
774 * osdata.c: Ditto.
775 * printcmd.c: Ditto.
776 * regcache.c: Ditto.
777 * remote-m32r-sdi.c: Ditto.
778 * remote.c: Ditto.
779 * symfile.c: Ditto.
780 * symtab.c: Ditto.
781 * tilegx-linux-nat.c: Ditto.
782 * tilegx-tdep.c: Ditto.
783 * tracepoint.c: Ditto.
784 * valops.c: Ditto.
785 * vaxbsd-nat.c: Ditto.
786 * windows-nat.c: Ditto.
787 * xtensa-tdep.c: Ditto.
788
bd1f7788
YQ
7892014-01-07 Yao Qi <yao@codesourcery.com>
790
791 * spu-linux-nat.c (_initialize_spu_nat): Declare.
792
79301218
JB
7932014-01-07 Yao Qi <yao@codesourcery.com>
794 Joel Brobecker <brobecker@adacore.com>
795
796 * aix-thread.c (pdc_read_regs): Cast parameter to uintptr_t.
797 (pdc_write_regs): Likewise.
798 (fetch_regs_kernel_thread): Likewise.
799 (store_regs_kernel_thread): Likewise.
800
8012014-01-07 Joel Brobecker <brobecker@adacore.com>
802
803 * ada-varobj.c (ada_varobj_adjust_for_child_access): Convert
804 tagged type objects to their actual type.
805
8e355c5d
JB
8062014-01-07 Joel Brobecker <brobecker@adacore.com>
807
808 * ada-valprint.c (print_field_values): Add "language" parameter.
809 Update calls to print_field_values and print_variant_part.
810 Pass new parameter "language" in call to val_print instead
811 of "current_language". Replace call to ada_val_print by call
812 to val_print.
813 (print_variant_part): Add "language" parameter.
814 (ada_val_print_struct_union): Update call to print_field_values.
815
4fbf5aa5
JB
8162014-01-07 Joel Brobecker <brobecker@adacore.com>
817
818 * ada-valprint.c (ui_memcpy): Delete.
819 (ada_print_floating): Update documentation. Add empty line
820 between between function documentation and implementation.
821 Delete variable "buffer". Use ui_file_xstrdup in place of
822 ui_file_put. Minor adjustments following this change.
823
71855601
JB
8242014-01-07 Joel Brobecker <brobecker@adacore.com>
825
826 * ada-valprint.c (ada_val_print_string): New function,
827 extracted from ada_val_print_array.
828 (ada_val_print_array): Replace extracted code by call
829 to ada_val_print_string followed by a return. Move
830 "else" branch to the function's top block.
831
4eb27a30
JB
8322014-01-07 Joel Brobecker <brobecker@adacore.com>
833
834 * ada-valprint.c (ada_val_print_array): Move implementation
835 down. Rename parameter "offset" and "val" into "offset_aligned"
836 and "original_value" respectively. Add parameter "offset".
837
34b27950
JB
8382014-01-07 Joel Brobecker <brobecker@adacore.com>
839
840 * ada-valprint.c (ada_val_print_ref): Rewrite by mostly
841 re-organizing the code. Change the "???" message printed
842 when target type is a TYPE_CODE_UNDEF into
843 "<ref to undefined type>".
844
079e4591
JB
8452014-01-07 Joel Brobecker <brobecker@adacore.com>
846
847 * ada-valprint.c (print_record): Delete, implementation inlined...
848 (ada_val_print_struct_union): ... here. Remove call to
849 ada_check_typedef in inlined implementation.
850
8004dfd1
JB
8512014-01-07 Joel Brobecker <brobecker@adacore.com>
852
853 * ada-valprint.c (ada_val_print_gnat_array): New function,
854 extracted from ada_val_print_1;
855 (ada_val_print_ptr, ada_val_print_num, ada_val_print_enum)
856 (ada_val_print_flt, ada_val_print_struct_union)
857 (ada_val_print_ref): Likewise.
858 (ada_val_print_1): Delete variables i and elttype.
859 Replace extracted-out code by call to corresponding
860 new functions.
861
760a2db0
JB
8622014-01-07 Joel Brobecker <brobecker@adacore.com>
863
864 * ada-valprint.c (ada_val_print_1): Remove call to gdb_flush.
865
3a92c861
JB
8662014-01-07 Joel Brobecker <brobecker@adacore.com>
867
868 * ada-valprint.c (ada_val_print_1): Replace calls to
869 ada_val_print_1 by calls to val_print.
870
cd1630f9
JB
8712014-01-07 Joel Brobecker <brobecker@adacore.com>
872
873 * ada-valprint.c (ada_val_print_1): Add parameter "language".
874 Update calls to self accordingly. Replace calls to c_val_print
875 by calls to val_print.
876
bdf779a0
JB
8772014-01-07 Joel Brobecker <brobecker@adacore.com>
878
879 * ada-valprint.c (print_record): Delete declaration.
880 (adjust_type_signedness, ada_val_print_1): Likewise.
881 (ada_val_print): Move function implementation down.
882 (print_variant_part, print_field_values, print_record):
883 Move function implementation up.
884
c0d48811
JB
8852014-01-07 Joel Brobecker <brobecker@adacore.com>
886
887 * python/py-type.c (typy_get_name): New function.
888 (type_object_getset): Add entry for attribute "name".
889 * NEWS: Add entry mentioning this new attribute.
890
c26e9cbb
YQ
8912014-01-07 Yao Qi <yao@codesourcery.com>
892
893 * gnu-nat.c (set_exceptions_cmd): Remove an empty body 'if'
894 statement.
895
0cc6f43d
YQ
8962014-01-07 Yao Qi <yao@codesourcery.com>
897
898 * gnu-nat.c (info_port_rights): Add qualifier const to
899 argument args.
900
eec03155
YQ
9012014-01-07 Yao Qi <yao@codesourcery.com>
902
903 * gnu-nat.c (trace_me): Use 'void' for empty argument list.
904
f04a82ef
YQ
9052014-01-07 Yao Qi <yao@codesourcery.com>
906
907 * gnu-nat.c (make_inf) Update declaration.
908 (make_inf): Make it static.
909 (inf_set_traced): Likewise.
910 (inf_port_to_thread, inf_task_died_status): Likewise.
911
d57dda0a
YQ
9122014-01-07 Yao Qi <yao@codesourcery.com>
913
914 * gnu-nat.c (inf_tid_to_proc): Remove declaration.
915
3aa8c969
YQ
9162014-01-07 Yao Qi <yao@codesourcery.com>
917
918 * gnu-nat.c (_initialize_gnu_nat): Declare.
919
94123b4f
YQ
9202014-01-07 Yao Qi <yao@codesourcery.com>
921
922 * gdbarch.sh (byte_order, byte_order_for_code): Change type to
923 'enum bfd_endian'.
924 (struct gdbarch_info) <byte_order>: Change type to
925 'enum bfd_endian'.
926 <byte_order_for_code>: Likewise.
927 * gdbarch.c, gdbarch.h: Regenerated.
928
dc81d70a
TT
9292014-01-06 Sasha Smundak <asmundak@google.com>
930
931 * jit.c: (jit_reader_load_command): Fix JIT reader path creation.
932
cc2f3c35
TT
9332014-01-06 Tom Tromey <tromey@redhat.com>
934
935 * doublest.c (convert_doublest_to_floatformat): Use const, not
936 CONST.
937 * somread.c (som_symtab_read): Likewise.
938
adcf2eed
HZ
9392014-01-07 Hui Zhu <hui@codesourcery.com>
940
941 * gdb_bfd.c (gdb_bfd_stash_filename): Removed.
942 (gdb_bfd_open): Removed gdb_bfd_stash_filename.
943 (gdb_bfd_fopen): Ditto.
944 (gdb_bfd_openr): Ditto.
945 (gdb_bfd_openw): Ditto.
946 (gdb_bfd_openr_iovec): Ditto.
947 (gdb_bfd_fdopenr): Ditto.
948 * gdb_bfd.h (gdb_bfd_stash_filename): Removed.
949 * solib-aix.c (solib_aix_bfd_open): Alloc object_bfd->filename
950 with xstrdup.
951 * solib-darwin.c (darwin_bfd_open): Alloc res->filename
952 with xstrdup.
953 * symfile-mem.c (symbol_file_add_from_memory): Removed
954 gdb_bfd_stash_filename.
955
50722198
DE
9562014-01-03 Doug Evans <dje@google.com>
957
958 * nat/linux-waitpid.c (linux_debug): Remove extraneous \n from
959 output.
960
2fa4b862
JB
9612014-01-01 Joel Brobecker <brobecker@adacore.com>
962
963 Update year range in copyright notice of all files.
964
28498c42
JB
9652014-01-01 Joel Brobecker <brobecker@adacore.com>
966
967 * top.c (print_gdb_version): Set copyright year to 2014.
968
7b6e1046
JB
9692014-01-01 Joel Brobecker <brobecker@adacore.com>
970
971 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2013.
972
df96af55 973For older changes see ChangeLog-2013.
c906108c
SS
974\f
975Local Variables:
976mode: change-log
977left-margin: 8
978fill-column: 74
979version-control: never
57da7796 980coding: utf-8
c906108c 981End:
This page took 1.574905 seconds and 4 git commands to generate.