Commit | Line | Data |
---|---|---|
b56ccc20 KS |
1 | 2015-08-14 Keith Seitz <keiths@redhat.com> |
2 | ||
3 | * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename | |
4 | `typename' to `type_name' to avoid C++ reserved word. | |
5 | ||
ebdad8fc KS |
6 | 2015-08-14 Keith Seitz <keiths@redhat.com> |
7 | ||
8 | * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS) | |
9 | (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to | |
10 | silence ARI errors. | |
11 | ||
c0fe2ae7 IB |
12 | 2015-08-14 Iain Buclaw <ibuclaw@gdcproject.org> |
13 | ||
14 | * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use | |
15 | xstrprintf instead of malloc and sprintf. | |
16 | (PrimaryExpression : IdentifierExp): Avoid operator at end of line. | |
17 | (lex_one_token): Likewise. | |
18 | ||
a738da3a MF |
19 | 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com> |
20 | ||
21 | * solib-svr4.c (read_program_header): Add base_addr argument to | |
22 | report the runtime address of the segment. | |
23 | (find_program_interpreter): Update read_program_header call to pass | |
24 | a NULL pointer for the new argument. | |
25 | (scan_dyntag): Add ptr_addr argument to report the runtime address | |
26 | of the tag payload. | |
27 | (scan_dyntag_auxv): Likewise and use thew new base_addr argument of | |
28 | read_program_header to get the base address of the dynamic segment. | |
29 | (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and | |
30 | read_program_header. | |
31 | (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL. | |
32 | ||
f8edc4ff MF |
33 | 2015-08-14 Matthew Fortune <matthew.fortune@imgtec.com> |
34 | ||
35 | * MAINTAINERS (Write After Approval): Add Matthew Fortune. | |
36 | ||
444c1ed8 IB |
37 | 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org> |
38 | ||
39 | * d-exp.y (%union): Add voidval. | |
40 | (%token): Add UNKNOWN_NAME as a token to represent an unclassified | |
41 | name in the lexing stage. | |
42 | (PostfixExpression): Move symbol completion handling in grammar here | |
43 | from PrimaryExpression. | |
44 | (PrimaryExpression): Move routines to handle resolving identifier | |
45 | tokens in the grammar here from push_expression_name. | |
46 | (IdentifierExp): Remove the handling of alternating '.' and identifier | |
47 | tokens. | |
48 | (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar. | |
49 | (BasicType): Remove C-style typename rules. | |
50 | (d_type_from_name, d_module_from_name, push_variable) | |
51 | (push_fieldnames, push_type_name, push_module_name) | |
52 | (push_expression_name): Remove. | |
53 | (lex_one_token): Rename from yylex. Replace pstate with par_state. | |
54 | (token_and_value): New type. | |
55 | (token_fifo, popping, name_obstack): New globals. | |
56 | (classify_name): New function. | |
57 | (classify_inner_name): Likewise. | |
58 | (yylex): Likewise. | |
59 | (d_parse): Initialize token_fifo, popping and name_obstack. | |
60 | ||
bc7c9fab IB |
61 | 2015-08-13 Iain Buclaw <ibuclaw@gdcproject.org> |
62 | ||
63 | * Makefile.in (SFILES): Add d-namespace.c. | |
64 | (COMMON_OBS): Add d-namespace.o. | |
65 | * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the | |
66 | la_lookup_symbol_nonlocal callback function pointer. | |
67 | * d-lang.h (d_lookup_symbol_nonlocal): New declaration. | |
68 | (d_lookup_nested_symbol): New declaration. | |
69 | * d-namespace.c: New file. | |
70 | ||
3207396b PA |
71 | 2015-08-13 Pedro Alves <palves@redhat.com> |
72 | ||
73 | * python/py-unwind.c (pyuw_sniffer): Install the invalidate | |
74 | cleanup after the decref cleanup, not before. | |
75 | ||
5d8c3ed3 PMR |
76 | 2015-08-13 Pierre-Marie de Rodat <derodat@adacore.com> |
77 | ||
78 | * ada-lang.c: Include namespace.h | |
79 | (aux_add_nonlocal_symbols): Fix a function name in comment. | |
80 | (ada_add_block_renamings): New. | |
81 | (add_nonlocal_symbols): Add global renamings handling. | |
82 | (ada_lookup_symbol_list_worker): Move the symbol lookup part | |
83 | to... | |
84 | (ada_add_all_symbols): ... this new function. | |
85 | (ada_add_block_symbols): Try to match the input name against the | |
86 | "using directives list", perform a recursive symbol lookup on | |
87 | the matched declarations. | |
88 | * block.h (struct block): Move the_namespace to top-level as | |
89 | namespace_info. Remove the language_specific field. | |
90 | (BLOCK_NAMESPACE): Update access to the namespace_info field. | |
91 | * buildsym.h (using_directives): Rename into... | |
92 | (local_using_directives): ... this. | |
93 | (global_using_directives): New. | |
94 | (struct context_stack): Rename the using_directives field into | |
95 | local_using_directives. | |
96 | * buildsym.c (finish_block_internal): Deal with the proper | |
97 | using directives repository (local or global). | |
98 | (prepare_for_building): Reset local_using_directives. Assert | |
99 | that there is no pending global using directive. | |
100 | (reset_symtab_globals): Reset global_using_directives and | |
101 | local_using_directives. | |
102 | (end_symtab_get_static_block): Don't ignore symtabs that have | |
103 | only using directives. | |
104 | (push_context): Update references to local_using_directives. | |
105 | (buildsym_init): Do not reset using_directives. | |
106 | * cp-support.c: Include namespace.h. | |
107 | * cp-support.h (struct using_direct): Move to namespace.h. | |
108 | (cp_add_using_directives): Move to namespace.h. | |
109 | * cp-namespace.c: Include namespace.h | |
110 | (cp_add_using_directive): Move to namespace.c, rename it to | |
111 | add_using_directive, add a "using_directives" argument and use | |
112 | it as the pending using directives repository. All callers | |
113 | updated. | |
114 | * dwarf2read.c (using_directives): New. | |
115 | (read_import_statement): Call using_directives. | |
116 | (read_func_scope): Update references to local_using_directives. | |
117 | (read_lexical_block_scope): Likewise. | |
118 | (read_namespace): Update the heading comment, call | |
119 | using_directives. | |
120 | * namespace.h: New file. | |
121 | * namespace.c: New file. | |
122 | * Makefile.in (SFILES): Add namespace.c. | |
123 | (COMMON_OBS): Add namespace.o | |
124 | ||
4dafcdeb JB |
125 | 2015-08-12 Joel Brobecker <brobecker@adacore.com> |
126 | ||
127 | * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to | |
128 | compute RETADDR. | |
129 | ||
67994074 KS |
130 | 2015-08-12 Keith Seitz <keiths@redhat.com> |
131 | ||
132 | * break-catch-throw.c (re_set_exception_catchpoint) Rename | |
133 | reserved C++ keyword "explicit" to "explicit_loc". | |
134 | * breakpoint.c (create_overlay_event_breakpoint) | |
135 | (create_longjmp_master_breakpoint) | |
136 | (create_std_terminate_master_breakpoint) | |
137 | (create_exception_master_breakpoint, update_static_tracepoint): | |
138 | Rename reserved C++ keyword "explicit" to "explicit_loc". | |
139 | * completer.c (collect_explicit_location_matches) | |
140 | (explicit_location_completer): Rename reserved C++ keyword | |
141 | "explicit" to "explicit_loc". | |
142 | * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc". | |
143 | (canonicalize_linespec, create_sals_line_offset) | |
144 | (convert_linespec_to_sals, convert_explicit_location_to_sals) | |
145 | (event_location_to_sals, decode_objc): Rename reserved C++ keyword | |
146 | "explicit" to "explicit_loc". | |
147 | * location.c (struct event_location) <explicit>: Rename to | |
148 | "explicit_loc". | |
149 | (initialize_explicit_location, new_explicit_location) | |
150 | (explicit_location_to_string_internal, explicit_location_to_linespec): | |
151 | Rename reserved C++ keyword "explicit" to "explicit_loc". | |
152 | * location.h (explicit_location_to_string) | |
153 | (explicit_location_to_linespec, initialize_explicit_location) | |
154 | (new_explicit_location): Rename reserved C++ keyword "explicit" | |
155 | to "explicit_loc". | |
156 | * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++ | |
157 | keyword "explicit" to "explicit_loc". | |
158 | ||
59ecaff3 KS |
159 | 2015-08-12 Keith Seitz <keiths@redhat.com> |
160 | ||
161 | * python/python.c (gdbpy_decode_line): Initialize `location' to NULL | |
162 | and only call decode_line_1 when it is non-NULL. | |
163 | ||
244558af LM |
164 | 2015-08-12 Luis Machado <lgustavo@codesourcery.com> |
165 | ||
166 | * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint | |
167 | location address is not meaningful. | |
168 | (breakpoint_address_is_meaningful): Update comment. | |
169 | ||
629500fa KS |
170 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
171 | ||
172 | * NEWS: Mention explicit locations. | |
173 | * breakpoint.c [LOCATION_HELP_STRING]: New macro. | |
174 | [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING. | |
175 | (_initialize_breakpoint): Update documentation for | |
176 | "clear", "break", "trace", "strace", "ftrace", and "dprintf". | |
177 | ||
eb8c4e2e KS |
178 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
179 | ||
180 | * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for | |
181 | explicit locations, options "--source", "--function", | |
182 | "--label", and "--line". | |
183 | ||
87f0e720 KS |
184 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
185 | ||
186 | * completer.c: Include location.h. | |
187 | (enum match_type): New enum. | |
188 | (location_completer): Rename to ... | |
189 | (linespec_completer): ... this. | |
190 | (collect_explicit_location_matches, backup_text_ptr) | |
191 | (explicit_location_completer): New functions. | |
192 | (location_completer): "New" function; handle linespec | |
193 | and explicit location completions. | |
194 | (complete_line_internal): Remove all location completer-specific | |
195 | handling. | |
196 | * linespec.c (linespec_lexer_lex_keyword, is_ada_operator) | |
197 | (find_toplevel_char): Export. | |
198 | (linespec_parse_line_offset): Export. | |
199 | Issue error if STRING is not numerical. | |
200 | (gdb_get_linespec_parser_quote_characters): New function. | |
201 | * linespec.h (linespec_parse_line_offset): Declare. | |
202 | (get_gdb_linespec_parser_quote_characters): Declare. | |
203 | (is_ada_operator): Declare. | |
204 | (find_toplevel_char): Declare. | |
205 | (linespec_lexer_lex_keyword): Declare. | |
206 | * location.c (explicit_to_event_location): New function. | |
207 | (explicit_location_lex_one): New function. | |
208 | (string_to_explicit_location): New function. | |
209 | (string_to_event_location): Handle explicit locations. | |
210 | * location.h (explicit_to_event_location): Declare. | |
211 | (string_to_explicit_location): Declare. | |
212 | ||
00e52e53 KS |
213 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
214 | ||
215 | * break-catch-throw.c (re_set_exception_catchpoint): Convert | |
216 | linespec into explicit location. | |
217 | * breakpoint.c (create_overlay_breakpoint) | |
218 | (create_longjmp_master_breakpoint) | |
219 | (create_std_terminate_master_breakpoint) | |
220 | (create_exception_master_breakpoint): Convert linespec into explicit | |
221 | location. | |
222 | (update_static_tracepoint): Convert linespec into explicit location. | |
223 | * linespec.c (enum offset_relative_sign, struct line_offset): Move | |
224 | location.h. | |
225 | (struct linespec) <expression, expr_pc, source_filename> | |
226 | <function_name, label_name, line_offset>: Replace with ... | |
227 | <explicit>: ... this. | |
228 | <is_linespec>: New member. | |
229 | (PARSER_EXPLICIT): New accessor macro. | |
230 | (undefined_label_error): New function. | |
231 | (source_file_not_found_error): New function. | |
232 | (linespec_parse_basic): The parser result is now an explicit location. | |
233 | Use PARSER_EXPLICIT to access it. | |
234 | Use undefined_label_error. | |
235 | (canonicalize_linespec): Convert canonical linespec into explicit | |
236 | location. | |
237 | Move string representation of location to explicit_location_to_linespec | |
238 | and use it and explicit_location_to_string to save string | |
239 | representations of the canonical location. | |
240 | (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an | |
241 | explicit location. Update all references. | |
242 | (convert_explicit_location_to_sals): New function. | |
243 | (parse_linespec): Use PARSER_EXPLICIT to access the parser | |
244 | result's explicit location. | |
245 | (linespec_state_constructor): Initialize is_linespec. | |
246 | Use PARSER_EXPLICIT. | |
247 | (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's | |
248 | result. | |
249 | (event_location_to_sals): For linespec locations, set is_linespec. | |
250 | Handle explicit locations. | |
251 | (decode_objc): 'ls' contains an explicit location now. Update all | |
252 | references. | |
253 | (symtabs_from_filename): Use source_file_not_found_error. | |
254 | * location.c (struct event_location.u) <explicit>: New member. | |
255 | (initialize_explicit_location): New function. | |
256 | (initialize_event_location): Initialize explicit locations. | |
257 | (new_explicit_location, get_explicit_location) | |
258 | (get_explicit_location_const): New functions. | |
259 | (explicit_to_string_internal): New function; most of contents moved | |
260 | from canonicalize_linespec. | |
261 | (explicit_location_to_string): New function. | |
262 | (explicit_location_to_linespec): New function. | |
263 | (copy_event_location, delete_event_location) | |
264 | (event_location_to_string_const, event_location_empty_p): Handle | |
265 | explicit locations. | |
266 | * location.h (enum offset_relative_sign, struct line_offset): Move | |
267 | here from linespec.h. | |
268 | (enum event_location_type): Add EXPLICIT_LOCATION. | |
269 | (struct explicit_location): New structure. | |
270 | (explicit_location_to_string): Declare. | |
271 | (explicit_location_to_linespec): Declare. | |
272 | (new_explicit_location, get_explicit_locationp | |
273 | (get_explicit_location_const, initialize_explicit_location): Declare. | |
274 | ||
5b56227b KS |
275 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
276 | ||
277 | * break-catch-throw.c (re_set_exception_catchpoint): Convert | |
278 | linespec for stap probe to probe location. | |
279 | * breakpoint.c (create_longjmp_master_breakpoint) | |
280 | (create_exception_master_breakpoint): Likewise. | |
281 | (break_command_1): Remove local variable `arg_cp'. | |
282 | Check location type to set appropriate breakpoint ops methods. | |
283 | (trace_command): Likewise. | |
284 | * linespec.c (event_location_to_sals): Assert on probe locations. | |
285 | * location.c (EL_PROBE): Add macro definition. | |
286 | (new_probe_location, get_probe_location): New functions. | |
287 | (copy_event_location, delete_event_location, event_location_to_string) | |
288 | (string_to_event_location, event_location_empty_p): Handle probe | |
289 | locations. | |
290 | * location.h (enum event_location_type): Add PROBE_LOCATION. | |
291 | (new_probe_location, get_probe_location): Declare. | |
292 | * probe.c (parse_probes): Assert that LOCATION is a probe location. | |
293 | Convert linespec into probe location. | |
294 | ||
a06efdd6 KS |
295 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
296 | ||
297 | * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal): | |
298 | Convert linespec to address location. | |
299 | * linespec.c (canonicalize_linespec): Do not handle address | |
300 | locations here. | |
301 | (convert_address_location_to_sals): New function; contents moved | |
302 | from ... | |
303 | (convert_linespc_to_sals): ... here. | |
304 | (parse_linespec): Remove address locations from linespec grammar. | |
305 | Remove handling of address locations. | |
306 | (linespec_lex_to_end): Remove handling of address linespecs. | |
307 | (event_location_to_sals): Handle ADDRESS_LOCATION. | |
308 | (linespec_expression_to_pc): Export. | |
309 | * linespec.h (linespec_expression_to_pc): Add declaration. | |
310 | * location.c (struct event_location.u) <address>: New member. | |
311 | (new_address_location, get_address_location): New functions. | |
312 | (copy_event_location, delete_event_location, event_location_to_string) | |
313 | (string_to_event_location, event_location_empty_p): Handle address | |
314 | locations. | |
315 | * location.h (enum event_location_type): Add ADDRESS_LOCATION. | |
316 | (new_address_location, get_address_location): Declare. | |
317 | * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec | |
318 | to address location. | |
319 | * spu-tdep.c (spu_catch_start): Likewise. | |
320 | ||
f00aae0f KS |
321 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
322 | ||
323 | * ax-gdb.c: Include location.h. | |
324 | (agent_command_1) Use linespec location instead of address | |
325 | string. | |
326 | * break-catch-throw.c: Include location.h. | |
327 | (re_set_exception_catchpoint): Use linespec locations instead | |
328 | of address strings. | |
329 | * breakpoint.c: Include location.h. | |
330 | (create_overlay_event_breakpoint, create_longjmp_master_breakpoint) | |
331 | (create_std_terminate_master_breakpoint) | |
332 | (create_exception_master_breakpoint, update_breakpoints_after_exec): | |
333 | Use linespec location instead of address string. | |
334 | (print_breakpoint_location): Use locations and | |
335 | event_location_to_string. | |
336 | Print extra_string for pending locations for non-MI streams. | |
337 | (print_one_breakpoint_location): Use locations and | |
338 | event_location_to_string. | |
339 | (init_raw_breakpoint_without_location): Initialize b->location. | |
340 | (create_thread_event_breakpoint): Use linespec location instead of | |
341 | address string. | |
342 | (init_breakpoint_sal): Likewise. | |
343 | Only save extra_string if it is non-NULL and not the empty string. | |
344 | Use event_location_to_string instead of `addr_string'. | |
345 | Constify `p' and `endp'. | |
346 | Use skip_spaces_const/skip_space_const instead of non-const versions. | |
347 | Copy the location into the breakpoint. | |
348 | If LOCATION is NULL, save the breakpoint address as a linespec location | |
349 | instead of an address string. | |
350 | (create_breakpoint_sal): Change `addr_string' parameter to a struct | |
351 | event_location. All uses updated. | |
352 | (create_breakpoints_sal): Likewise for local variable `addr_string'. | |
353 | (parse_breakpoint_sals): Use locations instead of address strings. | |
354 | Remove check for empty linespec with conditional. | |
355 | Refactor. | |
356 | (decode_static_tracepoint_spec): Make argument const and update | |
357 | function. | |
358 | (create_breakpoint): Change `arg' to a struct event_location and | |
359 | rename. | |
360 | Remove `copy_arg' and `addr_start'. | |
361 | If EXTRA_STRING is empty, set it to NULL. | |
362 | Don't populate `canonical' for pending breakpoints. | |
363 | Pass `extra_string' to find_condition_and_thread. | |
364 | Clear `extra_string' if `rest' was NULL. | |
365 | Do not error with "garbage after location" if setting a dprintf | |
366 | breakpoint. | |
367 | Copy the location into the breakpoint instead of an address string. | |
368 | (break_command_1): Use string_to_event_location and pass this to | |
369 | create_breakpoint instead of an address string. | |
370 | Check against `arg_cp' for a probe linespec. | |
371 | (dprintf_command): Use string_to_event_location and pass this to | |
372 | create_breakpoint instead of an address string. | |
373 | Throw an exception if no format string was specified. | |
374 | (print_recreate_ranged_breakpoint): Use event_location_to_string | |
375 | instead of address strings. | |
376 | (break_range_command, until_break_command) | |
377 | (init_ada_exception_breakpoint): Use locations instead | |
378 | of address strings. | |
379 | (say_where): Print out extra_string for pending locations. | |
380 | (base_breakpoint_dtor): Delete `location' and `location_range_end' of | |
381 | the breakpoint. | |
382 | (base_breakpoint_create_sals_from_location): Use struct event_location | |
383 | instead of address string. | |
384 | Remove `addr_start' and `copy_arg' parameters. | |
385 | (base_breakpoint_decode_location): Use struct event_location instead of | |
386 | address string. | |
387 | (bkpt_re_set): Use locations instead of address strings. | |
388 | Use event_location_empty_p to check for unset location. | |
389 | (bkpt_print_recreate): Use event_location_to_string instead of | |
390 | an address string. | |
391 | Print out extra_string for pending locations. | |
392 | (bkpt_create_sals_from_location, bkpt_decode_location) | |
393 | (bkpt_probe_create_sals_from_location): Use struct event_location | |
394 | instead of address string. | |
395 | (bkpt_probe_decode_location): Use struct event_location instead of | |
396 | address string. | |
397 | (tracepoint_print_recreate): Use event_location_to_string to | |
398 | recreate the tracepoint. | |
399 | (tracepoint_create_sals_from_location, tracepoint_decode_location) | |
400 | (tracepoint_probe_create_sals_from_location) | |
401 | (tracepoint_probe_decode_location): Use struct event_location | |
402 | instead of address string. | |
403 | (dprintf_print_recreate): Use event_location_to_string to recreate | |
404 | the dprintf. | |
405 | (dprintf_re_set): Remove check for valid/missing format string. | |
406 | (strace_marker_create_sals_from_location) | |
407 | (strace_marker_create_breakpoints_sal, strace_marker_decode_location) | |
408 | (update_static_tracepoint): Use struct event_location instead of | |
409 | address string. | |
410 | (location_to_sals): Likewise. | |
411 | Pass `extra_string' to find_condition_and_thread. | |
412 | For newly resolved pending breakpoint locations, clear the location's | |
413 | string representation. | |
414 | Assert that the breakpoint's condition string is NULL when | |
415 | condition_not_parsed. | |
416 | (breakpoint_re_set_default, create_sals_from_location_default) | |
417 | (decode_location_default, trace_command, ftrace_command) | |
418 | (strace_command, create_tracepoint_from_upload): Use locations | |
419 | instead of address strings. | |
420 | * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>: | |
421 | Use struct event_location instead of address string. | |
422 | Update all uses. | |
423 | <decode_location>: Likewise. | |
424 | (struct breakpoint) <addr_string>: Change to struct event_location | |
425 | and rename `location'. | |
426 | <addr_string_range_end>: Change to struct event_location and rename | |
427 | `location_range_end'. | |
428 | (create_breakpoint): Use struct event_location instead of address | |
429 | string. | |
430 | * cli/cli-cmds.c: Include location.h. | |
431 | (edit_command, list_command): Use locations instead of address strings. | |
432 | * elfread.c: Include location.h. | |
433 | (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string. | |
434 | * guile/scm-breakpoint.c: Include location.h. | |
435 | (bpscm_print_breakpoint_smob): Use event_location_to_string. | |
436 | (gdbscm_register_breakpoint): Use locations instead of address | |
437 | strings. | |
438 | * linespec.c: Include location.h. | |
439 | (struct ls_parser) <stream>: Change to const char *. | |
440 | (PARSER_STREAM): Update. | |
441 | (lionespec_lexer_lex_keyword): According to find_condition_and_thread, | |
442 | keywords must be followed by whitespace. | |
443 | (canonicalize_linespec): Save a linespec location into `canonical'. | |
444 | Save a canonical linespec into `canonical'. | |
445 | (parse_linespec): Change `argptr' to const char * and rename `arg'. | |
446 | All uses updated. | |
447 | Update function description. | |
448 | (linespec_parser_new): Initialize `parser'. | |
449 | Update initialization of parsing stream. | |
450 | (event_location_to_sals): New function. | |
451 | (decode_line_full): Change `argptr' to a struct event_location and | |
452 | rename it `location'. | |
453 | Use locations instead of address strings. | |
454 | Call event_location_to_sals instead of parse_linespec. | |
455 | (decode_line_1): Likewise. | |
456 | (decode_line_with_current_source, decode_line_with_last_displayed) | |
457 | Use locations instead of address strings. | |
458 | (decode_objc): Likewise. | |
459 | Change `argptr' to const char * and rename `arg'. | |
460 | (destroy_linespec_result): Delete the linespec result's location | |
461 | instead of freeing the address string. | |
462 | * linespec.h (struct linespec_result) <addr_string>: Change to | |
463 | struct event_location and rename to ... | |
464 | <location>: ... this. | |
465 | (decode_line_1, decode_line_full): Change `argptr' to struct | |
466 | event_location. All callers updated. | |
467 | * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h. | |
468 | (mi_cmd_break_insert_1): Use locations instead of address strings. | |
469 | Throw an error if there was "garbage" at the end of the specified | |
470 | linespec. | |
471 | * probe.c: Include location.h. | |
472 | (parse_probes): Change `argptr' to struct event_location. | |
473 | Use event locations instead of address strings. | |
474 | * probe.h (parse_probes): Change `argptr' to struct event_location. | |
475 | * python/py-breakpoint.c: Include location.h. | |
476 | (bppy_get_location): Constify local variable `str'. | |
477 | Use event_location_to_string. | |
478 | (bppy_init): Use locations instead of address strings. | |
479 | * python/py-finishbreakpoint.c: Include location.h. | |
480 | (bpfinishpy_init): Remove local variable `addr_str'. | |
481 | Use locations instead of address strings. | |
482 | * python/python.c: Include location.h. | |
483 | (gdbpy_decode_line): Use locations instead of address strings. | |
484 | * remote.c: Include location.h. | |
485 | (remote_download_tracepoint): Use locations instead of address | |
486 | strings. | |
487 | * spu-tdep.c: Include location.h. | |
488 | (spu_catch_start): Remove local variable `buf'. | |
489 | Use locations instead of address strings. | |
490 | * tracepoint.c: Include location.h. | |
491 | (scope_info): Use locations instead of address strings. | |
492 | (encode_source_string): Constify parameter `src'. | |
493 | * tracepoint.h (encode_source_string): Likewise. | |
494 | ||
c7c1b3e9 KS |
495 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
496 | ||
497 | * Makefile.in (SFILES): Add location.c. | |
498 | (HFILES_NO_SRCDIR): Add location.h. | |
499 | (COMMON_OBS): Add location.o. | |
500 | * linespec.c (linespec_lex_to_end): New function. | |
501 | * linespec.h (linespec_lex_to_end): Declare. | |
502 | * location.c: New file. | |
503 | * location.h: New file. | |
504 | ||
5f700d83 KS |
505 | 2015-08-11 Keith Seitz <keiths@redhat.com> |
506 | ||
507 | * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>: | |
508 | Renamed to create_sals_from_location. | |
509 | <decode_linespec>: Renamed to decode_location. | |
510 | Update all callers. | |
511 | * breakpoint.c (create_sals_from_address_default): Renamed to ... | |
512 | (create_sals_from_location_default): ... this. | |
513 | (addr_string_to_sals): Renamed to ... | |
514 | (location_to_sals): ... this. | |
515 | (decode_linespec_default): Renamed to ... | |
516 | (decode_location_default): ... this. | |
517 | (base_breakpoint_create_sals_from_address): Renamed to ... | |
518 | (base_breakpoint_create_sals_from_location): ... this. | |
519 | (bkpt_create_sals_from_address): Renamed to ... | |
520 | (bkpt_create_sals_from_location): ... this. | |
521 | (bkpt_decode_linespec): Renamed to ... | |
522 | (bkpt_decode_location): ... this. | |
523 | (bkpt_probe_create_sals_from_address): Renamed to ... | |
524 | (bkpt_probe_create_sals_from_location): ... this. | |
525 | (tracepoint_create_sals_from_address): Renamed to ... | |
526 | (tracepoint_create_sals_from_location): ... this. | |
527 | (tracepoint_decode_linespec): Renamed to ... | |
528 | (tracepoint_decode_location): ... this. | |
529 | (tracepoint_probe_create_sals_from_address): Renamed to ... | |
530 | (tracepoint_probe_create_sals_from_location): ... this. | |
531 | (tracepoint_probe_decode_linespec): Renamed to ... | |
532 | (tracepoint_probe_decode_location): ... this. | |
533 | (strace_marker_create_sals_from_address): Renamed to ... | |
534 | (strace_marker_create_sals_from_location): ... this. | |
535 | (decode_linespec_default): Renamed to ... | |
536 | (decode_location_default): ... this. | |
537 | ||
e27852be DE |
538 | 2015-08-10 Doug Evans <dje@google.com> |
539 | Keith Seitz <keiths@redhat.com> | |
540 | ||
541 | PR gdb/17960 | |
542 | * symtab.c (make_file_symbol_completion_list_1): Renamed from | |
543 | make_file_symbol_completion_list and made static. | |
544 | (make_file_symbol_completion_list): New function. | |
80af41e0 | 545 | |
fd7dcb94 JB |
546 | 2015-08-10 Joel Brobecker <brobecker@adacore.com> |
547 | ||
548 | * infrun.c (follow_fork, displaced_step_prepare, resume): Remove | |
549 | trailing new-line at end of warning message. | |
550 | (proceed): Add i18n marker to error messages. | |
551 | ||
f12899e9 PA |
552 | 2015-08-07 Pedro Alves <palves@redhat.com> |
553 | ||
554 | * linux-nat.c (linux_nat_always_non_stop_p): Return 1. | |
555 | ||
5ac21343 PA |
556 | 2015-08-07 Pedro Alves <palves@redhat.com> |
557 | ||
558 | * s390-linux-tdep.c (is_non_branch_ril) | |
559 | (s390_displaced_step_copy_insn): New functions. | |
560 | (s390_displaced_step_fixup): Update comment. | |
561 | (s390_gdbarch_init): Install s390_displaced_step_copy_insn as | |
562 | gdbarch_displaced_step_copy_insn hook. | |
563 | ||
7f03bd92 PA |
564 | 2015-08-07 Pedro Alves <palves@redhat.com> |
565 | ||
566 | * infrun.c (displaced_step_prepare_throw): Return -1 if | |
567 | gdbarch_displaced_step_copy_insn returns NULL. Update intro | |
568 | comment. | |
569 | * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION) | |
570 | (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up | |
571 | in file. | |
572 | (ppc_displaced_step_copy_insn): New function. | |
573 | (ppc_displaced_step_fixup): Update comment. | |
574 | (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as | |
575 | gdbarch_displaced_step_copy_insn hook. | |
576 | * gdbarch.sh (displaced_step_copy_insn): Document what happens on | |
577 | NULL return. | |
578 | * gdbarch.h: Regenerate. | |
579 | ||
3fc8eb30 PA |
580 | 2015-08-07 Pedro Alves <palves@redhat.com> |
581 | ||
582 | * inferior.h (struct inferior) <displaced_stepping_failed>: New | |
583 | field. | |
584 | * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'. | |
585 | Return false if dispaced stepping failed before. | |
586 | (resume): Pass the current inferior to | |
587 | use_displaced_stepping_now_p. Wrap displaced_step_prepare in | |
588 | TRY/CATCH. If we get a MEMORY_ERROR, set the inferior's | |
589 | displaced_stepping_failed flag, and fall back to an in-line | |
590 | step-over. | |
591 | ||
bfedc46a PA |
592 | 2015-08-07 Pedro Alves <palves@redhat.com> |
593 | ||
594 | * darwin-nat.c (darwin_stop): Rename to ... | |
595 | (darwin_interrupt): ... this. | |
596 | (_initialize_darwin_inferior): Adjust. | |
597 | * gnu-nat.c (gnu_stop): Delete. | |
598 | (gnu_target): Don't install gnu_stop. | |
599 | * inf-ptrace.c (inf_ptrace_stop): Rename to ... | |
600 | (inf_ptrace_interrupt): ... this. | |
601 | (inf_ptrace_target): Adjust. | |
602 | * infcmd.c (interrupt_target_1): Use target_interrupt instead of | |
603 | target_stop. | |
604 | * linux-nat (linux_nat_stop): Rename to ... | |
605 | (linux_nat_interrupt): ... this. | |
606 | (linux_nat_stop): Reimplement. | |
607 | (linux_nat_add_target): Install linux_nat_interrupt. | |
608 | * nto-procfs.c (nto_interrupt_twice): Rename to ... | |
609 | (nto_handle_sigint_twice): ... this. | |
610 | (nto_interrupt): Rename to ... | |
611 | (nto_handle_sigint): ... this. Call target_interrupt instead of | |
612 | target_stop. | |
613 | (procfs_wait): Adjust. | |
614 | (procfs_stop): Rename to ... | |
615 | (procfs_interrupt): ... this. | |
616 | (init_procfs_targets): Adjust. | |
617 | * procfs.c (procfs_stop): Rename to ... | |
618 | (procfs_interrupt): ... this. | |
619 | (procfs_target): Adjust. | |
620 | * remote-m32r-sdi.c (m32r_stop): Rename to ... | |
621 | (m32r_interrupt): ... this. | |
622 | (init_m32r_ops): Adjust. | |
623 | * remote-sim.c (gdbsim_stop_inferior): Rename to ... | |
624 | (gdbsim_interrupt_inferior): ... this. | |
625 | (gdbsim_stop): Rename to ... | |
626 | (gdbsim_interrupt): ... this. | |
627 | (gdbsim_cntrl_c): Adjust. | |
628 | (init_gdbsim_ops): Adjust. | |
629 | * remote.c (sync_remote_interrupt): Adjust comments. | |
630 | (remote_stop_as): Rename to ... | |
631 | (remote_interrupt_as): ... this. | |
632 | (remote_stop): Adjust comment. | |
633 | (remote_interrupt): New function. | |
634 | (init_remote_ops): Install remote_interrupt. | |
635 | * target.c (target_interrupt): New function. | |
636 | * target.h (struct target_ops) <to_interrupt>: New field. | |
637 | (target_interrupt): New declaration. | |
638 | * windows-nat.c (windows_stop): Rename to ... | |
639 | (windows_interrupt): ... this. | |
640 | * target-delegates.c: Regenerate. | |
641 | ||
d55007b5 PA |
642 | 2015-08-07 Pedro Alves <palves@redhat.com> |
643 | ||
644 | * signal-while-stepping-over-bp-other-thread.exp: Expect "restart | |
645 | threads" as alternative to "switching back to stepped thread". | |
646 | ||
fbea99ea PA |
647 | 2015-08-07 Pedro Alves <palves@redhat.com> |
648 | ||
649 | * NEWS: Mention "maint set/show target-non-stop". | |
650 | * breakpoint.c (update_global_location_list): Check | |
651 | target_is_non_stop_p instead of non_stop. | |
652 | * infcmd.c (attach_command_post_wait, attach_command): Likewise. | |
653 | * infrun.c (show_can_use_displaced_stepping) | |
654 | (can_use_displaced_stepping_p, start_step_over_inferior): | |
655 | Likewise. | |
656 | (internal_resume_ptid): New function. | |
657 | (resume): Use it. | |
658 | (proceed): Check target_is_non_stop_p instead of non_stop. If in | |
659 | all-stop mode but the target is always in non-stop mode, start all | |
660 | the other threads that are implicitly resumed too. | |
661 | (for_each_just_stopped_thread, fetch_inferior_event) | |
662 | (adjust_pc_after_break, stop_all_threads): Check | |
663 | target_is_non_stop_p instead of non_stop. | |
664 | (handle_inferior_event): Likewise. Handle detach-fork in all-stop | |
665 | with the target always in non-stop mode. | |
666 | (handle_signal_stop) <random signal>: Check target_is_non_stop_p | |
667 | instead of non_stop. | |
668 | (switch_back_to_stepped_thread): Check target_is_non_stop_p | |
669 | instead of non_stop. | |
670 | (keep_going_stepped_thread): Use internal_resume_ptid. | |
671 | (stop_waiting): If in all-stop mode, and the target is in non-stop | |
672 | mode, stop all threads. | |
673 | (keep_going_pass): Likewise, when starting a new in-line step-over | |
674 | sequence. | |
675 | * linux-nat.c (get_pending_status, select_event_lwp) | |
676 | (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check | |
677 | target_is_non_stop_p instead of non_stop. | |
678 | (linux_nat_always_non_stop_p): New function. | |
679 | (linux_nat_stop): Check target_is_non_stop_p instead of non_stop. | |
680 | (linux_nat_add_target): Install linux_nat_always_non_stop_p. | |
681 | * target-delegates.c: Regenerate. | |
682 | * target.c (target_is_non_stop_p): New function. | |
683 | (target_non_stop_enabled, target_non_stop_enabled_1): New globals. | |
684 | (maint_set_target_non_stop_command) | |
685 | (maint_show_target_non_stop_command): New functions. | |
686 | (_initilize_target): Install "maint set/show target-non-stop" | |
687 | commands. | |
688 | * target.h (struct target_ops) <to_always_non_stop_p>: New field. | |
689 | (target_non_stop_enabled): New declaration. | |
690 | (target_is_non_stop_p): New declaration. | |
691 | ||
372316f1 PA |
692 | 2015-08-07 Pedro Alves <pedro@codesourcery.com> |
693 | ||
694 | * breakpoint.c (breakpoints_should_be_inserted_now): If any thread | |
695 | has a pending status, return true. | |
696 | * gdbthread.h: Include target/waitstatus.h. | |
697 | (struct thread_suspend_state) <stop_reason, waitstatus_pending_p, | |
698 | stop_pc>: New fields. | |
699 | (struct thread_info) <resumed>: New field. | |
700 | (set_resumed): Declare. | |
701 | * infrun.c: Include "event-loop.h". | |
702 | (infrun_async_inferior_event_token, infrun_is_async): New globals. | |
703 | (infrun_async): New function. | |
704 | (clear_step_over_info): Add debug output. | |
705 | (displaced_step_in_progress_any_inferior): New function. | |
706 | (displaced_step_fixup): New returns int. | |
707 | (start_step_over): Handle in-line step-overs too. Assert the | |
708 | thread is marked resumed. | |
709 | (resume_cleanups): Clear the thread's resumed flag. | |
710 | (resume): Set the thread's resumed flag. Return early if the | |
711 | thread has a pending status. Allow stepping a breakpoint with no | |
712 | signal. | |
713 | (proceed): Adjust to check 'resumed' instead of 'executing'. | |
714 | (clear_proceed_status_thread): If the thread has a pending status, | |
715 | and that status is a finished step, discard the pending status. | |
716 | (clear_proceed_status): Don't clear step_over_info here. | |
717 | (random_pending_event_thread, do_target_wait): New functions. | |
718 | (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use | |
719 | do_target_wait. | |
720 | (wait_one): New function. | |
721 | (THREAD_STOPPED_BY): New macro. | |
722 | (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint) | |
723 | (thread_stopped_by_hw_breakpoint): New functions. | |
724 | (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New | |
725 | functions. | |
726 | (handle_inferior_event): Also call set_resumed(false) on all | |
727 | threads implicitly stopped by the event. | |
728 | (restart_threads, resumed_thread_with_pending_status): New | |
729 | functions. | |
730 | (finish_step_over): If we were doing an in-line step-over before, | |
731 | and no longer are after trying to start a new step-over, restart | |
732 | all threads. If we have multiple threads with pending events, | |
733 | save the current event and go through the event loop again. | |
734 | (handle_signal_stop): Return early if finish_step_over returns | |
735 | false. | |
736 | <random signal>: If we get a signal while stepping over a | |
737 | breakpoint in-line in non-stop mode, restart all threads. Clear | |
738 | step_over_info before delivering the signal. | |
739 | (keep_going_stepped_thread): Use internal_error instead of | |
740 | gdb_assert. Mark the thread as resumed. | |
741 | (keep_going_pass_signal): Assert the thread isn't already resumed. | |
742 | If some other thread is doing an in-line step-over, defer the | |
743 | resume. If we just started a new in-line step-over, stop all | |
744 | threads. Don't clear step_over_info. | |
745 | (infrun_async_inferior_event_handler): New function. | |
746 | (_initialize_infrun): Create async event handler with | |
747 | infrun_async_inferior_event_handler as callback. | |
748 | (infrun_async): New declaration. | |
749 | * target.c (target_async): New function. | |
750 | * target.h (target_async): Declare macro and readd as function | |
751 | declaration. | |
752 | * target/waitstatus.h (enum target_stop_reason) | |
753 | <TARGET_STOPPED_BY_SINGLE_STEP>: New value. | |
754 | * thread.c (new_thread): Clear the new waitstatus field. | |
755 | (set_resumed): New function. | |
756 | ||
2ac7589c PA |
757 | 2015-08-07 Pedro Alves <palves@redhat.com> |
758 | ||
759 | * infrun.c (keep_going_stepped_thread): New function, factored out | |
760 | from ... | |
761 | (switch_back_to_stepped_thread): ... here. | |
762 | ||
8b061563 PA |
763 | 2015-08-07 Pedro Alves <palves@redhat.com> |
764 | ||
765 | * infrun.c (currently_stepping): Extend intro comment. | |
766 | * target.h (target_resume): Extend intro comment. | |
767 | ||
1afd5965 PA |
768 | 2015-08-07 Pedro Alves <palves@redhat.com> |
769 | ||
770 | * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead | |
771 | of inferior_ptid. If the stepped thread vanished, return 0 | |
772 | instead of resuming here. Use reset_ecs. Print the prev_pc and | |
773 | the current stop_pc in log message. Clear trap_expected if the | |
774 | thread advanced. Don't pass currently_stepping to | |
775 | do_target_resume. | |
776 | ||
4d9d9d04 PA |
777 | 2015-08-07 Pedro Alves <palves@redhat.com> |
778 | ||
779 | * gdbthread.h (struct thread_info) <prev_pc>: Extend comment. | |
780 | * infrun.c (struct execution_control_state): Move higher up in the | |
781 | file. | |
782 | (reset_ecs): New function. | |
783 | (start_step_over): Now returns int. Rewrite to use | |
784 | keep_going_pass_signal instead of manually starting a displaced step. | |
785 | (resume): Don't call set_running here. If displaced stepping | |
786 | can't start now, clear trap_expected. | |
787 | (find_thread_needs_step_over): Delete function. | |
788 | (proceed): Set up finish_thread_state_cleanup. Call set_running. | |
789 | If the current thread needs a step over, push it in the step-over | |
790 | chain. Don't set insert breakpoints nor call resume directly | |
791 | here. Instead rewrite to use start_step_over and | |
792 | keep_going_pass_signal. | |
793 | (finish_step_over): New function. | |
794 | (handle_signal_stop): Call finish_step_over instead of | |
795 | start_step_over. | |
796 | (switch_back_to_stepped_thread): If the event thread needs another | |
797 | step-over do that first. Use start_step_over. | |
798 | (keep_going_pass_signal): New function, factored out from ... | |
799 | (keep_going): ... here. | |
800 | (_initialize_infrun): Comment moved here. | |
801 | * thread.c (set_running_thread): New function. | |
802 | (set_running, finish_thread_state): Use set_running_thread. | |
803 | ||
c2829269 PA |
804 | 2015-08-07 Pedro Alves <palves@redhat.com> |
805 | ||
806 | * gdbthread.h (struct thread_info) <step_over_prev, | |
807 | step_over_next>: New fields. | |
808 | (thread_step_over_chain_enqueue, thread_step_over_chain_remove) | |
809 | (thread_step_over_chain_next, thread_is_in_step_over_chain): New | |
810 | declarations. | |
811 | * infrun.c (struct displaced_step_request): Delete. | |
812 | (struct displaced_step_inferior_state) <step_request_queue>: | |
813 | Delete field. | |
814 | (displaced_step_prepare): Assert that trap_expected is set. Use | |
815 | thread_step_over_chain_enqueue. Split starting a new displaced | |
816 | step to ... | |
817 | (start_step_over): ... this new function. | |
818 | (resume): Assert the thread isn't waiting for a step over already. | |
819 | (proceed): Assert the thread isn't waiting for a step over | |
820 | already. | |
821 | (infrun_thread_stop_requested): Adjust to remove threads from the | |
822 | embedded step-over chain. | |
823 | (handle_inferior_event) <fork/vfork>: Call start_step_over after | |
824 | displaced_step_fixup. | |
825 | (handle_signal_stop): Call start_step_over after | |
826 | displaced_step_fixup. | |
827 | * infrun.h (step_over_queue_head): New declaration. | |
828 | * thread.c (step_over_chain_enqueue, step_over_chain_remove) | |
829 | (thread_step_over_chain_next, thread_is_in_step_over_chain) | |
830 | (thread_step_over_chain_enqueue) | |
831 | (thread_step_over_chain_remove): New functions. | |
832 | (delete_thread_1): Remove thread from the step-over chain. | |
833 | ||
6c4cfb24 PA |
834 | 2015-08-07 Pedro Alves <palves@redhat.com> |
835 | ||
836 | * infrun.c (thread_still_needs_step_over): Rename to ... | |
837 | (thread_still_needs_step_over_bp): ... this. | |
838 | (enum step_over_what): New. | |
839 | (thread_still_needs_step_over): Reimplement. | |
840 | ||
567420d1 PA |
841 | 2015-08-07 Pedro Alves <palves@redhat.com> |
842 | ||
843 | * remote.c (remote_wait_as): If not waiting for a stop reply, | |
844 | return TARGET_WAITKIND_NO_RESUMED. If TARGET_WNOHANG is | |
845 | requested, don't block waiting forever. | |
846 | ||
d8dd4d5f PA |
847 | 2015-08-07 Pedro Alves <pedro@codesourcery.com> |
848 | ||
849 | * infrun.c (adjust_pc_after_break): Now takes thread_info and | |
850 | waitstatus pointers instead of an ecs. Adjust. | |
851 | (handle_inferior_event): Adjust caller. | |
852 | ||
e1316e60 PA |
853 | 2015-08-07 Pedro Alves <palves@redhat.com> |
854 | ||
855 | * infrun.c (handle_inferior_event): If we get | |
856 | TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop | |
857 | mode, mark all threads of the exiting process as not-executing. | |
858 | (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or | |
859 | TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the | |
860 | exiting process, if inferior_ptid still points at a process. | |
861 | * thread.c (struct current_thread_cleanup) <next>: New field. | |
862 | (current_thread_cleanup_chain): New global. | |
863 | (restore_current_thread_ptid_changed): New function. | |
864 | (restore_current_thread_cleanup_dtor): Remove the cleanup from the | |
865 | current_thread_cleanup_chain list. | |
866 | (make_cleanup_restore_current_thread): Add the cleanup data to the | |
867 | current_thread_cleanup_chain list. | |
868 | (_initialize_thread): Install restore_current_thread_ptid_changed | |
869 | as thread_ptid_changed observer. | |
870 | ||
47e9c225 JB |
871 | 2015-08-07 Joel Brobecker <brobecker@adacore.com> |
872 | ||
873 | * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF | |
874 | data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be | |
875 | smaller than expected. | |
876 | ||
06096720 AB |
877 | 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com> |
878 | ||
879 | * stack.c (get_frame_language): Moved ... | |
880 | * frame.c (get_frame_language): ... to here. | |
881 | * language.h (get_frame_language): Declaration moved to frame.h. | |
882 | * frame.h: Add language.h include, for language enum. | |
883 | (get_frame_language): Declaration moved from language.h. | |
884 | * language.c: Add frame.h include. | |
885 | * top.c: Add frame.h include. | |
886 | * symtab.h (struct obj_section): Declare. | |
887 | (struct cmd_list_element): Declare. | |
888 | ||
7ff38b1c AB |
889 | 2015-08-07 Andrew Burgess <andrew.burgess@embecosm.com> |
890 | ||
891 | * language.c (show_language_command): Find selected frame before | |
892 | asking for the language of that frame. | |
893 | (set_language_command): Likewise. | |
894 | * language.h (get_frame_language): Add frame parameter. | |
895 | * stack.c (get_frame_language): Add frame parameter, assert | |
896 | parameter is not NULL, update comment and reindent. | |
897 | * top.c (check_frame_language_change): Pass the selected frame | |
898 | into get_frame_language. | |
899 | ||
da8c46d2 MM |
900 | 2015-08-07 Markus Metzger <markus.t.metzger@intel.com> |
901 | ||
902 | * btrace.c (btrace_compute_ftrace_bts): Clear insn flags. | |
903 | (pt_btrace_insn_flags): New. | |
904 | (ftrace_add_pt): Call pt_btrace_insn_flags. | |
905 | * btrace.h (btrace_insn_flag): New. | |
906 | (btrace_insn) <flags>: New. | |
907 | * record-btrace.c (btrace_insn_history): Print insn prefix. | |
908 | * NEWS: Announce it. | |
909 | ||
5599c404 MM |
910 | 2015-08-07 Markus Metzger <markus.t.metzger@intel.com> |
911 | ||
912 | * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h | |
913 | * configure: Regenerate. | |
914 | ||
016a3251 DD |
915 | 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com> |
916 | ||
917 | * Makefile.in (LIBICONV): Define. | |
918 | (CLIBS): Add LIBICONV. | |
919 | * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV. | |
920 | * configure: Regenerate. | |
921 | ||
aead7601 SM |
922 | 2015-08-06 Simon Marchi <simon.marchi@ericsson.com> |
923 | Pedro Alves <palves@redhat.com> | |
924 | ||
925 | * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum. | |
926 | (arm_set_abi): Likewise. | |
927 | * ax-general.c (ax_print): Likewise. | |
928 | * c-exp.y (exp : string_exp): Likewise. | |
929 | * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise. | |
930 | (do_compile_dwarf_expr_to_c): Likewise. | |
931 | * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start): | |
932 | Likewise. | |
933 | * dwarf2expr.c (execute_stack_op): Likewise. | |
934 | * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise. | |
935 | (disassemble_dwarf_expression): Likewise. | |
936 | * dwarf2read.c (dwarf2_add_member_fn): Likewise. | |
937 | (read_array_order): Likewise. | |
938 | (abbrev_table_read_table): Likewise. | |
939 | (read_attribute_value): Likewise. | |
940 | (skip_unknown_opcode): Likewise. | |
941 | (dwarf_decode_macro_bytes): Likewise. | |
942 | (dwarf_decode_macros): Likewise. | |
943 | * eval.c (value_f90_subarray): Likewise. | |
944 | * guile/scm-param.c (gdbscm_make_parameter): Likewise. | |
945 | * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise. | |
946 | * infrun.c (handle_command): Likewise. | |
947 | * memory-map.c (memory_map_start_memory): Likewise. | |
948 | * osabi.c (set_osabi): Likewise. | |
949 | * parse.c (operator_length_standard): Likewise. | |
950 | * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use | |
951 | single return point. | |
952 | * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise. | |
953 | * python/py-symbol.c (gdbpy_lookup_symbol): Likewise. | |
954 | (gdbpy_lookup_global_symbol): Likewise. | |
955 | * record-full.c (record_full_restore): Likewise. | |
956 | * regcache.c (regcache_register_status): Likewise. | |
957 | (regcache_raw_read): Likewise. | |
958 | (regcache_cooked_read): Likewise. | |
959 | * rs6000-tdep.c (powerpc_set_vector_abi): Likewise. | |
960 | * symtab.c (initialize_ordinary_address_classes): Likewise. | |
961 | * target-debug.h (target_debug_print_signals): Likewise. | |
962 | * utils.c (do_restore_current_language): Likewise. | |
963 | ||
ca0a5f0b CD |
964 | 2015-08-06 Clem Dickey <clemd@acm.org> |
965 | ||
966 | PR python/17136 | |
967 | * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo. | |
968 | ||
05d999b0 SM |
969 | 2015-08-06 Simon Marchi <simon.marchi@ericsson.com> |
970 | ||
971 | * complaints.c (enum complaint_series): Add newlines and remove | |
972 | out of date comment. | |
973 | (struct complaints) <series>: Change type to enum | |
974 | complaint_series and remove out of date comment. | |
975 | (symfile_complaint_hook): Use equivalent enum value | |
976 | ISOLATED_MESSAGE instead of 0. | |
977 | ||
bf47e248 PA |
978 | 2015-08-06 Pedro Alves <palves@redhat.com> |
979 | ||
980 | * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid | |
981 | returned > 0. | |
982 | ||
b6b9ffcc PL |
983 | 2015-08-06 Pierre Langlois <pierre.langlois@arm.com> |
984 | ||
985 | * common/agent.c (symbol_list) <required>: Remove. | |
986 | ||
863d01bd PA |
987 | 2015-08-06 Pedro Alves <palves@redhat.com> |
988 | ||
989 | * target/waitstatus.h (enum target_stop_reason) | |
990 | <TARGET_STOPPED_BY_SINGLE_STEP>: New value. | |
991 | ||
0a39bb32 PA |
992 | 2015-08-05 Pedro Alves <palves@redhat.com> |
993 | Joel Brobecker <brobecker@adacore.com> | |
994 | ||
9d996aba | 995 | * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy> |
0a39bb32 PA |
996 | <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the |
997 | case where BS->STOP is not set. | |
998 | ||
260439cb UW |
999 | 2015-08-05 Ulrich Weigand <uweigand@de.ibm.com> |
1000 | ||
1001 | * nat/gdb_thread_db.h: Add copyright header. | |
1002 | Protect against multiple inclusion. | |
1003 | ||
d89fa914 YQ |
1004 | 2015-08-05 Yao Qi <yao.qi@linaro.org> |
1005 | ||
1006 | * aarch64-linux-nat.c (get_thread_id): Remove. | |
1007 | (debug_reg_change_callback): Call ptid_get_lwp instead of | |
1008 | get_thread_id. | |
1009 | (fetch_gregs_from_thread): Likewise. | |
1010 | (store_gregs_to_thread): Likewise. | |
1011 | (fetch_fpregs_from_thread): Likewise. | |
1012 | (store_fpregs_to_thread): Likewise. | |
1013 | (aarch64_linux_get_debug_reg_capacity): Likewise. | |
1014 | * arm-linux-nat.c (get_thread_id): Remove. | |
1015 | (GET_THREAD_ID): Update macro to use ptid_get_lwp. | |
1016 | * xtensa-linux-nat.c (get_thread_id): Remove. | |
1017 | (GET_THREAD_ID): Update macro to use ptid_get_lwp. | |
1018 | * arm-linux-nat.c (get_thread_id): Remove. | |
1019 | (GET_THREAD_ID): Remove. | |
1020 | (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID. | |
1021 | (store_fpregs, fetch_regs, store_regs): Likewise. | |
1022 | (fetch_wmmx_regs, store_wmmx_regs): Likewise. | |
1023 | (fetch_vfp_regs, store_vfp_regs): Likewise. | |
1024 | (arm_linux_read_description): Likewise. | |
1025 | (arm_linux_get_hwbp_cap): Likewise. | |
1026 | * xtensa-linux-nat.c (get_thread_id): Remove. | |
1027 | (GET_THREAD_ID): Remove. | |
1028 | (fetch_gregs, store_gregs): Call ptid_get_lwp instead of | |
1029 | GET_THREAD_ID. | |
1030 | ||
4efd80aa CS |
1031 | 2015-08-04 Ciro Santilli <ciro.santilli@gmail.com> (obvious patch) |
1032 | ||
1033 | * python/py-linetable.c: Fix case of Linetable to LineTable | |
1034 | in docstrings and code comments. | |
1035 | * python/py-symtab.c: Same. | |
1036 | ||
c6343a91 JK |
1037 | 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com> |
1038 | ||
1039 | * infcmd.c (signal_command): Call do_cleanups for args_chain. | |
1040 | ||
978b9495 JK |
1041 | 2015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com> |
1042 | ||
1043 | PR gdb/18767 | |
1044 | * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS | |
1045 | use. | |
1046 | ||
96e9210f PA |
1047 | 2015-08-04 Pedro Alves <palves@redhat.com> |
1048 | ||
1049 | * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype) | |
1050 | (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype) | |
1051 | (td_ta_event_addr_ftype, td_ta_set_event_ftype) | |
1052 | (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype) | |
1053 | (td_thr_validate_ftype, td_thr_get_info_ftype) | |
1054 | (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype) | |
1055 | (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype): | |
1056 | New typedefs. | |
1057 | * linux-thread-db.c (struct thread_db_info): Use new typedefs. | |
1058 | (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK | |
1059 | local macros and use them instead of verbose_dlsym and dlsym | |
1060 | calls. | |
1061 | ||
af60a1ef SL |
1062 | 2015-08-03 Sandra Loosemore <sandra@codesourcery.com> |
1063 | ||
1064 | * nios2-tdep.h: Include opcode/nios2.h here. | |
1065 | (NIOS2_CDX_OPCODE_SIZE): New. | |
1066 | (struct gdbarch_tdep): Add OP parameter to syscall_next_pc. | |
1067 | * nios2-tdep.c: Don't include opcode/nios2.h here. | |
1068 | (nios2_fetch_insn): For R2, try reading 2-byte instruction if | |
1069 | 4-byte read fails. | |
1070 | (nios2_match_add, nios2_match_sub): Add cases for R2 encodings. | |
1071 | (nios2_match_addi, nios2_match_orhi): Likewise. | |
1072 | (nios2_match_stw, nios2_match_ldw): Likewise. | |
1073 | (nios2_match_rdctl): Likewise. | |
1074 | (nios2_match_stwm, nios2_match_ldwm): New. | |
1075 | (nios2_match_branch): Add cases for R2 encodings. | |
1076 | (nios2_match_jmpi, nios2_match_calli): Likewise. | |
1077 | (nios2_match_jmpr, nios2_match_callr): Likewise. | |
1078 | (nios2_match_break, nios2_match_trap): Likewise. | |
1079 | (nios2_in_epilogue_p): Add R2 support. | |
1080 | (nios2_analyze_prologue): Update comments. Recognize R2 CDX | |
1081 | prologues. | |
1082 | (nios2_breakpoint_from_pc): Handle R2 instructions. | |
1083 | (nios2_get_next_pc): Likewise. Adjust call to | |
1084 | tdep->syscall_next_pc. | |
1085 | * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame): | |
1086 | Renamed from nios2_linux_rt_sigreturn_tramp_frame. Use | |
1087 | instruction field macros instead of literal hex values. | |
1088 | (nios2_r2_linux_rt_sigreturn_tramp_frame): New. | |
1089 | (nios2_linux_syscall_next_pc): Adjust signature to pass OP. | |
1090 | Use size field from OP instead of assuming all instructions | |
1091 | are the same size. | |
1092 | (nios2_linux_init_abi): Register appropriate unwinder for mach. | |
1093 | ||
1da03605 UW |
1094 | 2015-08-03 Ulrich Weigand <uweigand@de.ibm.com> |
1095 | ||
1096 | * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized | |
1097 | variable warning with some compilers. | |
1098 | ||
8156fe7f YQ |
1099 | 2015-08-03 Yao Qi <yao.qi@linaro.org> |
1100 | ||
1101 | * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type" | |
1102 | in comment. Replace "rw" with "type". | |
1103 | (arm_linux_remove_watchpoint): Change type of "rw" to | |
1104 | "enum target_hw_bp_type". | |
1105 | ||
835a09d9 PMR |
1106 | 2015-08-02 Pierre-Marie de Rodat <derodat@adacore.com> |
1107 | ||
1108 | * alpha-mdebug-tdep.c (find_proc_desc): Update call to | |
1109 | lookup_symbol. | |
1110 | * ft32-tdep.c (ft32_skip_prologue): Likewise. | |
1111 | * moxie-tdep.c (moxie_skip_prologue): Likewise. | |
1112 | * mt-tdep.c (mt_skip_prologue): Likewise. | |
1113 | * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise. | |
1114 | ||
d12307c1 PMR |
1115 | 2015-08-01 Pierre-Marie de Rodat <derodat@adacore.com> |
1116 | ||
1117 | * ada-exp.y (write_object_renaming): Replace struct | |
1118 | ada_symbol_info with struct block_symbol. Update field | |
1119 | references accordingly. | |
1120 | (block_lookup, select_possible_type_sym): Likewise. | |
1121 | (find_primitive_type): Likewise. Also update call to | |
1122 | ada_lookup_symbol to extract the symbol itself. | |
1123 | (write_var_or_type, write_name_assoc): Likewise. | |
1124 | * ada-lang.h (struct ada_symbol_info): Remove. | |
1125 | (ada_lookup_symbol_list): Replace struct ada_symbol_info with | |
1126 | struct block_symbol. | |
1127 | (ada_lookup_encoded_symbol, user_select_syms): Likewise. | |
1128 | (ada_lookup_symbol): Return struct block_symbol instead of a | |
1129 | mere symbol. | |
1130 | * ada-lang.c (defns_collected): Replace struct ada_symbol_info | |
1131 | with struct block_symbol. | |
1132 | (resolve_subexp, ada_resolve_function, sort_choices, | |
1133 | user_select_syms, is_nonfunction, add_defn_to_vec, | |
1134 | num_defns_collected, defns_collected, | |
1135 | symbols_are_identical_enums, remove_extra_symbols, | |
1136 | remove_irrelevant_renamings, add_lookup_symbol_list_worker, | |
1137 | ada_lookup_symbol_list, ada_iterate_over_symbols, | |
1138 | ada_lookup_encoded_symbol, get_var_value): Likewise. | |
1139 | (ada_lookup_symbol): Return a block_symbol instead of a mere | |
1140 | symbol. Replace struct ada_symbol_info with struct | |
1141 | block_symbol. | |
1142 | (ada_lookup_symbol_nonlocal): Likewise. | |
1143 | (standard_lookup): Make block passing explicit through | |
1144 | lookup_symbol_in_language. | |
1145 | * ada-tasks.c (get_tcb_types_info): Update the calls to | |
1146 | lookup_symbol_in_language to extract the mere symbol out of the | |
1147 | returned value. | |
1148 | (ada_tasks_inferior_data_sniffer): Likewise. | |
1149 | * ax-gdb.c (gen_static_field): Likewise for the call to | |
1150 | lookup_symbol. | |
a5fdf78a | 1151 | (gen_maybe_namespace_elt): Deal with struct block_symbol from |
d12307c1 PMR |
1152 | lookup functions. |
1153 | (gen_expr): Likewise. | |
1154 | * c-exp.y: Likewise. Remove uses of block_found. | |
1155 | (lex_one_token, classify_inner_name, c_print_token): Likewise. | |
1156 | (classify_name): Likewise. Rename the "sym" local variable to | |
1157 | "bsym". | |
1158 | * c-valprint.c (print_unpacked_pointer): Likewise. | |
1159 | * compile/compile-c-symbols.c (convert_symbol_sym): Promote the | |
1160 | "sym" parameter from struct symbol * to struct block_symbol. | |
1161 | Use it to remove uses of block_found. Deal with struct | |
a5fdf78a | 1162 | block_symbol from lookup functions. |
d12307c1 PMR |
1163 | (gcc_convert_symbol): Likewise. Update the call to |
1164 | convert_symbol_sym. | |
1165 | * compile/compile-object-load.c (compile_object_load): Deal with | |
a5fdf78a | 1166 | struct block_symbol from lookup functions. |
d12307c1 PMR |
1167 | * cp-namespace.c (cp_lookup_nested_symbol_1, |
1168 | cp_lookup_nested_symbol, cp_lookup_bare_symbol, | |
1169 | cp_search_static_and_baseclasses, | |
1170 | cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports, | |
1171 | cp_lookup_symbol_imports_or_template, | |
1172 | cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace, | |
1173 | lookup_namespace_scope, cp_lookup_nonlocal, | |
a5fdf78a PMR |
1174 | find_symbol_in_baseclass): Return struct block_symbol instead of |
1175 | mere symbols and deal with struct block_symbol from lookup | |
d12307c1 PMR |
1176 | functions. |
1177 | * cp-support.c (inspect_type, replace_typedefs, | |
a5fdf78a | 1178 | cp_lookup_rtti_type): Deal with struct block_symbol from |
d12307c1 PMR |
1179 | lookup functions. |
1180 | * cp-support.h (cp_lookup_symbol_nonlocal, | |
1181 | cp_lookup_symbol_from_namespace, | |
1182 | cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol): | |
a5fdf78a | 1183 | Return struct block_symbol instead of mere symbols. |
d12307c1 PMR |
1184 | * d-exp.y (d_type_from_name, d_module_from_name, push_variable, |
1185 | push_module_name): | |
a5fdf78a | 1186 | Deal with struct block_symbol from lookup functions. Remove |
d12307c1 PMR |
1187 | uses of block_found. |
1188 | * eval.c (evaluate_subexp_standard): Update call to | |
1189 | cp_lookup_symbol_namespace. | |
a5fdf78a PMR |
1190 | * f-exp.y: Deal with struct block_symbol from lookup functions. |
1191 | Remove uses of block_found. | |
d12307c1 PMR |
1192 | (yylex): Likewise. |
1193 | * gdbtypes.c (lookup_typename, lookup_struct, lookup_union, | |
1194 | lookup_enum, lookup_template_type, check_typedef): Deal with | |
a5fdf78a | 1195 | struct block_symbol from lookup functions. |
d12307c1 PMR |
1196 | * guile/scm-frame.c (gdbscm_frame_read_var): Likewise. |
1197 | * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise. | |
1198 | (gdbscm_lookup_global_symbol): Likewise. | |
1199 | * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise. | |
1200 | * go-exp.y: Likewise. Remove uses of block_found. | |
1201 | (package_name_p, classify_packaged_name, classify_name): | |
1202 | Likewise. | |
1203 | * infrun.c (insert_exception_resume_breakpoint): Likewise. | |
1204 | * jv-exp.y (push_variable): Likewise. | |
1205 | * jv-lang.c (java_lookup_class, get_java_object_type): Likewise. | |
1206 | * language.c (language_bool_type): Likewise. | |
1207 | * language.h (struct language_defn): Update | |
a5fdf78a PMR |
1208 | la_lookup_symbol_nonlocal to return a struct block_symbol rather |
1209 | than a mere symbol. | |
1210 | * linespec.c (find_label_symbols): Deal with struct block_symbol | |
1211 | from lookup functions. | |
d12307c1 PMR |
1212 | * m2-exp.y: Likewise. Remove uses of block_found. |
1213 | (yylex): Likewise. | |
1214 | * mi/mi-cmd-stack.c (list_args_or_locals): Likewise. | |
1215 | * objc-lang.c (lookup_struct_typedef, find_imps): Likewise. | |
1216 | * p-exp.y: Likewise. Remove uses of block_found. | |
1217 | (yylex): Likewise. | |
1218 | * p-valprint.c (pascal_val_print): Likewise. | |
1219 | * parse.c (write_dollar_variable): Likewise. Remove uses of | |
1220 | block_found. | |
1221 | * parser-defs.h (struct symtoken): Turn the SYM field into a | |
a5fdf78a PMR |
1222 | struct block_symbol. |
1223 | * printcmd.c (address_info): Deal with struct block_symbol from | |
1224 | lookup functions. | |
d12307c1 PMR |
1225 | * python/py-frame.c (frapy_read_var): Likewise. |
1226 | * python/py-symbol.c (gdbpy_lookup_symbol, | |
1227 | gdbpy_lookup_global_symbol): Likewise. | |
1228 | * skip.c (skip_function_command): Likewise. | |
1229 | * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct | |
a5fdf78a | 1230 | block_symbol instead of a mere symbol. |
d12307c1 PMR |
1231 | * solib-spu.c (spu_lookup_lib_symbol): Likewise. |
1232 | * solib-svr4.c (elf_lookup_lib_symbol): Likewise. | |
1233 | * solib.c (solib_global_lookup): Likewise. | |
1234 | * solist.h (solib_global_lookup): Likewise. | |
1235 | (struct target_so_ops): Update lookup_lib_global_symbol to | |
a5fdf78a PMR |
1236 | return a struct block_symbol rather than a mere symbol. |
1237 | * source.c (select_source_symtab): Deal with struct block_symbol | |
1238 | from lookup functions. | |
d12307c1 PMR |
1239 | * stack.c (print_frame_args, iterate_over_block_arg_vars): |
1240 | Likewise. | |
1241 | * symfile.c (set_initial_language): Likewise. | |
1242 | * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct | |
a5fdf78a | 1243 | block_symbol. |
d12307c1 PMR |
1244 | (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro. |
1245 | (struct symbol_cache_slot): Turn the FOUND field into a struct | |
a5fdf78a | 1246 | block_symbol. |
d12307c1 | 1247 | (block_found): Remove. |
a5fdf78a | 1248 | (eq_symbol_entry): Update to deal with struct block_symbol in |
d12307c1 | 1249 | cache slots. |
a5fdf78a PMR |
1250 | (symbol_cache_lookup): Return a struct block_symbol rather than |
1251 | a mere symbol. | |
d12307c1 PMR |
1252 | (symbol_cache_mark_found): Add a BLOCK parameter to fill |
1253 | appropriately the cache slots. Update callers. | |
1254 | (symbol_cache_dump): Update cache slots handling to the type | |
1255 | change. | |
1256 | (lookup_symbol_in_language, lookup_symbol, lookup_language_this, | |
1257 | lookup_symbol_aux, lookup_local_symbol, | |
1258 | lookup_symbol_in_objfile, lookup_global_symbol_from_objfile, | |
1259 | lookup_symbol_in_objfile_symtabs, | |
1260 | lookup_symbol_in_objfile_from_linkage_name, | |
1261 | lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal, | |
1262 | lookup_symbol_in_static_block, lookup_static_symbol, | |
1263 | lookup_global_symbol): | |
a5fdf78a PMR |
1264 | Return a struct block_symbol rather than a mere symbol. Deal |
1265 | with struct block_symbol from other lookup functions. Remove | |
d12307c1 PMR |
1266 | uses of block_found. |
1267 | (lookup_symbol_in_block): Remove uses of block_found. | |
1268 | (struct global_sym_lookup_data): Turn the RESULT field into a | |
a5fdf78a | 1269 | struct block_symbol. |
d12307c1 PMR |
1270 | (lookup_symbol_global_iterator_cb): Update references to the |
1271 | RESULT field. | |
a5fdf78a | 1272 | (search_symbols): Deal with struct block_symbol from lookup |
d12307c1 | 1273 | functions. |
a5fdf78a | 1274 | * symtab.h (struct block_symbol): New structure. |
d12307c1 PMR |
1275 | (block_found): Remove. |
1276 | (lookup_symbol_in_language, lookup_symbol, | |
1277 | basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block, | |
a5fdf78a PMR |
1278 | lookup_static_symbol, lookup_global_symbol, lookup_language_this, |
1279 | lookup_global_symbol_from_objfile): Return a struct block_symbol | |
1280 | rather than just a mere symbol. Update comments to remove | |
1281 | mentions of block_found. | |
d12307c1 PMR |
1282 | * valops.c (find_function_in_inferior, |
1283 | value_struct_elt_for_reference, value_maybe_namespace_elt, | |
a5fdf78a | 1284 | value_of_this): Deal with struct block_symbol from lookup |
d12307c1 PMR |
1285 | functions. |
1286 | * value.c (value_static_field, value_fn_field): Likewise. | |
1287 | ||
b1c59ddc SM |
1288 | 2015-07-31 Simon Marchi <simon.marchi@ericsson.com> |
1289 | ||
1290 | * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type | |
1291 | instead of integer. | |
1292 | ||
f486487f | 1293 | 2015-07-31 Simon Marchi <simon.marchi@ericsson.com> |
84da3f0c | 1294 | Pedro Alves <palves@redhat.com> |
f486487f SM |
1295 | |
1296 | * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum | |
1297 | type or value instead of integer. | |
1298 | (aarch64_linux_insert_watchpoint): Likewise. | |
1299 | (aarch64_linux_remove_watchpoint): Likewise. | |
1300 | * ada-lang.c (ada_op_print_tab): Likewise. | |
1301 | * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise. | |
1302 | (amd64_linux_syscall_record_common): Likewise. | |
1303 | * arch-utils.c (target_byte_order_user): Likewise. | |
1304 | (default_byte_order): Likewise. | |
1305 | * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise. | |
1306 | (arm_linux_get_hwbp_type): Likewise. | |
1307 | (arm_linux_hw_watchpoint_initialize): Likewise. | |
1308 | (arm_linux_insert_watchpoint): Likewise. | |
1309 | * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise. | |
1310 | (arm_linux_syscall_record): Likewise. | |
1311 | * breakpoint.c (update_watchpoint): Likewise. | |
1312 | (breakpoint_here_p): Likewise. | |
1313 | (bpstat_print): Likewise. | |
1314 | (enable_breakpoint_disp): Likewise. | |
1315 | * c-lang.c (c_op_print_tab): Likewise. | |
1316 | * cli/cli-decode.c (add_info_alias): Likewise. | |
1317 | * d-lang.c (d_op_print_tab): Likewise. | |
1318 | * eval.c (evaluate_subexp_standard): Likewise. | |
1319 | * f-exp.y (dot_ops): Likewise. | |
1320 | (f77_keywords): Likewise. | |
1321 | * f-lang.c (f_op_print_tab): Likewise. | |
1322 | * go-lang.c (go_op_print_tab): Likewise. | |
1323 | * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise. | |
1324 | * guile/scm-cmd.c (gdbscm_make_command): Likewise. | |
1325 | * guile/scm-param.c (gdbscm_make_parameter): Likewise. | |
1326 | * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise. | |
1327 | * guile/scm-string.c (struct scm_to_stringn_data): Likewise. | |
1328 | (struct scm_from_stringn_data): Likewise. | |
1329 | * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise. | |
1330 | * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise. | |
1331 | (ia64_linux_remove_watchpoint): Likewise. | |
1332 | (ia64_linux_can_use_hw_breakpoint): Likewise. | |
1333 | * infrun.c (print_stop_event): Likewise. | |
1334 | * jv-lang.c (java_op_print_tab): Likewise. | |
1335 | * linux-nat.c (linux_proc_xfer_partial): Likewise. | |
1336 | * linux-nat.h (struct lwp_info): Likewise. | |
1337 | * linux-thread-db.c (enable_thread_event): Likewise. | |
1338 | * m2-lang.c (m2_op_print_tab): Likewise. | |
1339 | * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise. | |
1340 | (mi_cmd_stack_list_variables): Likewise. | |
1341 | * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise. | |
1342 | * mi/mi-out.c (mi_table_begin): Likewise. | |
1343 | (mi_table_header): Likewise. | |
1344 | * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise. | |
1345 | (mips_linux_insert_watchpoint): Likewise. | |
1346 | (mips_linux_remove_watchpoint): Likewise. | |
1347 | * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise. | |
1348 | * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise. | |
1349 | (mips_linux_watch_type_to_irw): Likewise. | |
1350 | * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise. | |
1351 | (procfs_insert_hw_watchpoint): Likewise. | |
1352 | (procfs_remove_hw_watchpoint): Likewise. | |
1353 | (procfs_hw_watchpoint): Likewise. | |
1354 | (procfs_can_use_hw_breakpoint): Likewise. | |
1355 | (procfs_remove_hw_watchpoint): Likewise. | |
1356 | (procfs_insert_hw_watchpoint): Likewise. | |
1357 | * p-lang.c (pascal_op_print_tab): Likewise. | |
1358 | * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise. | |
1359 | * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise. | |
1360 | * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise. | |
1361 | * procfs.c (procfs_can_use_hw_breakpoint): Likewise. | |
1362 | (procfs_insert_watchpoint): Likewise. | |
1363 | (procfs_remove_watchpoint): Likewise. | |
1364 | * psymtab.c (recursively_search_psymtabs): Likewise. | |
1365 | * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise. | |
1366 | (m32r_insert_watchpoint): Likewise. | |
1367 | * remote-mips.c (mips_can_use_watchpoint): Likewise. | |
1368 | (mips_insert_watchpoint): Likewise. | |
1369 | (mips_remove_watchpoint): Likewise. | |
1370 | * remote.c (watchpoint_to_Z_packet): Likewise. | |
1371 | (remote_insert_watchpoint): Likewise. | |
1372 | (remote_remove_watchpoint): Likewise. | |
1373 | (remote_check_watch_resources): Likewise. | |
1374 | * s390-linux-nat.c (s390_insert_watchpoint): Likewise. | |
1375 | (s390_remove_watchpoint): Likewise. | |
1376 | (s390_can_use_hw_breakpoint): Likewise. | |
1377 | * s390-linux-tdep.c (s390_gdbarch_init): Likewise. | |
1378 | * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise. | |
1379 | * target.h (struct target_ops): Likewise. | |
1380 | * tilegx-tdep.c (tilegx_analyze_prologue): Likewise. | |
1381 | * ui-out.c (struct ui_out_hdr): Likewise. | |
1382 | (append_header_to_list): Likewise. | |
1383 | (get_next_header): Likewise. | |
1384 | (verify_field): Likewise. | |
1385 | (ui_out_begin): Likewise. | |
1386 | (ui_out_field_int): Likewise. | |
1387 | (ui_out_field_fmt_int): Likewise. | |
1388 | (ui_out_field_skip): Likewise. | |
1389 | (ui_out_field_string): Likewise. | |
1390 | (ui_out_field_fmt): Likewise. | |
1391 | * varobj.c (new_variable): Likewise. | |
1392 | * x86-nat.c (x86_insert_watchpoint): Likewise. | |
1393 | (x86_remove_watchpoint): Likewise. | |
1394 | (x86_can_use_hw_breakpoint): Likewise. | |
1395 | * xtensa-tdep.h (struct gdbarch_tdep): Likewise. | |
1396 | * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to | |
1397 | previously anonymous enumeration type.. | |
1398 | * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall | |
1399 | value. | |
1400 | * target-debug.h (target_debug_print_enum_target_hw_bp_type): New. | |
1401 | (target_debug_print_enum_bptype): New. | |
1402 | * target-delegates.c: Regenerate. | |
1403 | ||
e1b5381f SL |
1404 | 2015-07-30 Sandra Loosemore <sandra@codesourcery.com> |
1405 | ||
1406 | * nios2-tdep.c (nios2_analyze_prologue): Do what the comment | |
1407 | already says and disallow non-stack memory writes in the prologue. | |
1408 | ||
9aaf8e3a SL |
1409 | 2015-07-30 Sandra Loosemore <sandra@codesourcery.com> |
1410 | ||
1411 | * nios2-tdep.c (nios2_analyze_prologue): Update comments to | |
1412 | reflect how current GCC emits stack overflow checks. Match | |
1413 | both trap and break instructions for backward compatbility. | |
1414 | Disallow other trap and break instructions in the prologue. | |
1415 | ||
69dde7dc PA |
1416 | 2015-07-30 Pedro Alves <palves@redhat.com> |
1417 | ||
1418 | PR threads/18600 | |
1419 | * linux-nat.c (wait_lwp): Report to the core when thread group | |
1420 | leader exits. | |
1421 | ||
4dd63d48 PA |
1422 | 2015-07-30 Pedro Alves <palves@redhat.com> |
1423 | Simon Marchi <simon.marchi@ericsson.com> | |
1424 | ||
1425 | PR threads/18600 | |
1426 | * linux-nat.c (linux_handle_extended_wait): On CLONE event, always | |
1427 | mark the new thread as resumed. Remove STOPPING parameter. | |
1428 | (wait_lwp): Adjust call to linux_handle_extended_wait. | |
1429 | (linux_nat_filter_event): Adjust call to | |
1430 | linux_handle_extended_wait. | |
1431 | (resume_stopped_resumed_lwps): Add debug output. | |
1432 | ||
6b940e6a PL |
1433 | 2015-07-30 Pierre Langlois <pierre.langlois@arm.com> |
1434 | ||
1435 | * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused | |
1436 | isize argument. | |
1437 | * arch-utils.h (default_fast_tracepoint_valid_at): Likewise. | |
1438 | * breakpoint.c (check_fast_tracepoint_sals): Adjust call to | |
1439 | gdbarch_fast_tracepoint_valid_at. | |
1440 | * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument. | |
1441 | * gdbarch.h: Regenerate. | |
1442 | * gdbarch.c: Regenerate. | |
1443 | * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize | |
1444 | argument. Do not set it. | |
1445 | * remote.c (remote_download_tracepoint): Adjust call to | |
1446 | gdbarch_fast_tracepoint_valid_at. Call gdb_insn_length to get | |
1447 | the instruction length. | |
1448 | ||
ec741292 YQ |
1449 | 2015-07-30 Yao Qi <yao.qi@linaro.org> |
1450 | ||
1451 | * arm-tdep.h (enum gdb_regnum): Move it to ... | |
1452 | * arch/arm.h: ... here. New file. | |
1453 | * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h. | |
1454 | ||
0ea6402e PL |
1455 | 2015-07-30 Pierre Langlois <pierre.langlois@arm.com> |
1456 | ||
1457 | * aarch64-tdep.c (decode_b): Rename link argument to is_bl. | |
1458 | Change its type to int *. | |
1459 | (decode_br): Rename link argument to is_blr. Change its type to | |
1460 | int *. | |
1461 | (decode_cb): Rename op argument to is_cbnz. Change its type to | |
1462 | int *. | |
1463 | (decode_tb): Rename op argument to is_tbnz. Change its type to | |
1464 | int *. Set is_tbnz to either 1 or 0. | |
1465 | (aarch64_analyze_prologue): Change type of is_link to int. Add | |
1466 | new variables is_cbnz and is_tbnz. Adjust call to | |
1467 | aarch64_decode_cb and aarch64_decode_tb. | |
1468 | ||
aa58a496 SM |
1469 | 2015-07-29 Simon Marchi <simon.marchi@ericsson.com> |
1470 | ||
1471 | * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th | |
1472 | parameter. | |
1473 | (mips_linux_new_thread): Likewise. | |
1474 | * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise. | |
1475 | ||
18206ca3 PP |
1476 | 2015-07-29 Patrick Palka <patrick@parcs.ath.cx> |
1477 | ||
1478 | * top.c: Include "tui/tui.h". | |
1479 | (undo_terminal_modifications_before_exit): New static function. | |
1480 | (quit_force): Use it. | |
1481 | ||
7afa63c6 PP |
1482 | 2015-07-29 Patrick Palka <patrick@parcs.ath.cx> |
1483 | ||
1484 | * target.c (terminal_state): Initialize to terminal_is_ours. | |
1485 | ||
cc9f16aa YQ |
1486 | 2015-07-29 Yao Qi <yao.qi@linaro.org> |
1487 | ||
1488 | PR record/18691 | |
1489 | * dcache.c (dcache_read_memory_partial): Call | |
1490 | raw_memory_xfer_partial. | |
1491 | * target.c (raw_memory_xfer_partial): Make it non-static. | |
1492 | * target.h (raw_memory_xfer_partial): Declare. | |
1493 | ||
3ae385af SM |
1494 | 2015-07-28 Simon Marchi <simon.marchi@ericsson.com> |
1495 | ||
1496 | * c-valprint.c (c_val_print_array): Consider addressable memory | |
1497 | unit size. | |
1498 | (c_val_print_ptr): Likewise. | |
1499 | (c_val_print_int): Likewise. | |
1500 | * findvar.c (read_frame_register_value): Likewise. | |
1501 | * valarith.c (find_size_for_pointer_math): Likewise. | |
1502 | (value_ptrdiff): Likewise. | |
1503 | (value_subscripted_rvalue): Likewise. | |
1504 | * valops.c (read_value_memory): Likewise (and rename variables). | |
1505 | (value_assign): Likewise. | |
1506 | (value_repeat): Likewise. | |
1507 | (value_array): Likewise. | |
1508 | (value_slice): Likewise. | |
1509 | * valprint.c (generic_val_print_ptr): Likewise. | |
1510 | (generic_val_print_enum): Likewise. | |
1511 | (generic_val_print_bool): Likewise. | |
1512 | (generic_val_print_int): Likewise. | |
1513 | (generic_val_print_char): Likewise. | |
1514 | (generic_val_print_float): Likewise. | |
1515 | (generic_val_print_decfloat): Likewise. | |
1516 | (generic_val_print_complex): Likewise. | |
1517 | (val_print_scalar_formatted): Likewise. | |
1518 | (val_print_array_elements): Likewise. | |
1519 | * value.c (set_value_parent): Likewise. | |
1520 | (value_contents_copy_raw): Likewise. | |
1521 | (set_internalvar_component): Likewise. | |
1522 | (value_primitive_field): Likewise. | |
1523 | (value_fetch_lazy): Likewise. | |
1524 | * value.h (read_value_memory): Update comment. | |
1525 | ||
e512cdbd SM |
1526 | 2015-07-28 Simon Marchi <simon.marchi@ericsson.com> |
1527 | ||
1528 | * value.c (get_value_arch): New function. | |
1529 | * value.h (get_value_arch): New declaration. | |
1530 | ||
3723fda8 SM |
1531 | 2015-07-28 Simon Marchi <simon.marchi@ericsson.com> |
1532 | ||
1533 | * value.c (struct value): Update comments. | |
1534 | ||
2e056931 SM |
1535 | 2015-07-28 Simon Marchi <simon.marchi@ericsson.com> |
1536 | ||
1537 | * gdbtypes.c (type_length_units): New function. | |
1538 | * gdbtypes.h (type_length_units): New declaration. | |
1539 | (struct type) <length>: Update comment. | |
1540 | ||
0c87c0bf SM |
1541 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1542 | ||
1543 | * valprint.c (generic_val_print): Factor out complex | |
1544 | printing code to ... | |
1545 | (generic_val_print_complex): ... this new function. | |
1546 | ||
9550ae5e SM |
1547 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1548 | ||
1549 | * valprint.c (generic_val_print): Factor out decfloat | |
1550 | printing code to ... | |
1551 | (generic_val_print_decfloat): ... this new function. | |
1552 | ||
7784724b SM |
1553 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1554 | ||
1555 | * valprint.c (generic_val_print): Factor out float | |
1556 | printing code to ... | |
1557 | (generic_val_print_float): ... this new function. | |
1558 | ||
385f5aff SM |
1559 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1560 | ||
1561 | * valprint.c (generic_val_print): Factor out char | |
1562 | printing code to ... | |
1563 | (generic_val_print_char): ... this new function. | |
1564 | ||
b21b6342 SM |
1565 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1566 | ||
1567 | * valprint.c (generic_val_print): Factor out integer | |
1568 | printing code to ... | |
1569 | (generic_val_print_int): ... this new function. | |
1570 | ||
e5bead4b SM |
1571 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1572 | ||
1573 | * valprint.c (generic_val_print): Factor out bool | |
1574 | printing code to ... | |
1575 | (generic_val_print_bool): ... this new function. | |
1576 | ||
4a8c372f SM |
1577 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1578 | ||
1579 | * valprint.c (generic_val_print): Factor out function/method | |
1580 | printing code to ... | |
1581 | (generic_val_print_func): ... this new function. | |
1582 | ||
d93880bd SM |
1583 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1584 | ||
1585 | * valprint.c (generic_val_print): Factor out flags | |
1586 | printing code to ... | |
1587 | (generic_val_print_flags): ... this new function. | |
1588 | ||
ef0bc0dd SM |
1589 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1590 | ||
1591 | * valprint.c (generic_val_print): Factor out enum | |
1592 | printing code to ... | |
1593 | (generic_val_print_enum): ... this new function. | |
1594 | ||
fe43fede SM |
1595 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1596 | ||
1597 | * valprint.c (generic_val_print): Factor out reference | |
1598 | printing code to ... | |
1599 | (generic_val_print_ref): ... this new function. | |
1600 | ||
45000ea2 SM |
1601 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1602 | ||
1603 | * valprint.c (generic_val_print): Factor out memberptr | |
1604 | printing code to ... | |
1605 | (generic_val_print_memberptr): ... this new function. | |
1606 | ||
81eb921a SM |
1607 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1608 | ||
1609 | * valprint.c (generic_val_print): Factor out pointer | |
1610 | printing code to ... | |
1611 | (generic_val_print_ptr): ... this new function. | |
1612 | ||
557dbe8a SM |
1613 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1614 | ||
1615 | * valprint.c (generic_val_print): Factor out array | |
1616 | printing code to ... | |
1617 | (generic_val_print_array): ... this new function. | |
1618 | ||
9f436164 SM |
1619 | 2015-07-27 Simon Marchi <simon.marchi@ericsson.com> |
1620 | ||
1621 | * valprint.c (generic_val_print): Factor out | |
1622 | print_unpacked_pointer code to ... | |
1623 | (print_unpacked_pointer): ... this new function. | |
1624 | ||
077836f7 PP |
1625 | 2015-07-27 Patrick Palka <patrick@parcs.ath.cx> |
1626 | ||
1627 | * event-top.c (handle_sigterm): Don't inspect | |
1628 | target_can_async_p. Always set the quit flag and always mark | |
1629 | the async signal handler. | |
1630 | ||
3a60804f YQ |
1631 | 2015-07-27 Yao Qi <yao.qi@linaro.org> |
1632 | ||
1633 | * Makefile.in (REMOTE_EXAMPLES): Remove it. | |
1634 | ||
c9f35b34 KB |
1635 | 2015-07-25 Kevin Buettner <kevinb@redhat.com> |
1636 | ||
1637 | * remote.c (read_ptid): Return null_ptid when no thread id | |
1638 | is found. | |
1639 | (remote_current_thread): Add log warning for malformed | |
1640 | qC reply. | |
1641 | (remote_start_remote): Add log warning when current thread | |
1642 | not found. | |
1643 | ||
2b4cab86 PA |
1644 | 2015-07-24 Pedro Alves <palves@redhat.com> |
1645 | ||
1646 | * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs) | |
1647 | (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as | |
1648 | forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA. | |
1649 | ||
77598427 PA |
1650 | 2015-07-24 Pedro Alves <palves@redhat.com> |
1651 | ||
1652 | PR gdb/18717 | |
1653 | * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp | |
1654 | is resumed, and extend the debug log. | |
1655 | ||
fe23c31f PA |
1656 | 2015-07-24 Pedro Alves <palves@redhat.com> |
1657 | ||
1658 | * fork-child.c (fork_inferior): Print argv[0] instead of exec_file. | |
1659 | ||
5826e159 PA |
1660 | 2015-07-24 Pedro Alves <palves@redhat.com> |
1661 | ||
1662 | * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of | |
1663 | sys/ptrace.h. | |
1664 | * alpha-linux-nat.c: Likewise. | |
1665 | * amd64-linux-nat.c: Likewise. | |
1666 | * arm-linux-nat.c: Likewise. | |
1667 | * hppa-linux-nat.c: Likewise. | |
1668 | * i386-linux-nat.c: Likewise. | |
1669 | * ia64-linux-nat.c: Likewise. | |
1670 | * linux-fork.c: Likewise. | |
1671 | * linux-nat.c: Likewise. | |
1672 | * m32r-linux-nat.c: Likewise. | |
1673 | * m68klinux-nat.c: Likewise. | |
1674 | * mips-linux-nat.c: Likewise. | |
1675 | * nat/linux-btrace.c: Likewise. | |
1676 | * nat/linux-ptrace.c: Likewise. | |
1677 | * nat/linux-ptrace.h | |
1678 | * nat/mips-linux-watch.c: Likewise. | |
1679 | * nat/x86-linux-dregs.c: Likewise. | |
1680 | * ppc-linux-nat.c: Likewise. | |
1681 | * s390-linux-nat.c: Likewise. | |
1682 | * spu-linux-nat.c: Likewise. | |
1683 | * tilegx-linux-nat.c: Likewise. | |
1684 | * x86-linux-nat.c: Likewise. | |
1685 | * xtensa-linux-nat.c: Likewise. | |
1686 | ||
54019719 PA |
1687 | 2015-07-24 Pedro Alves <palves@redhat.com> |
1688 | ||
1689 | * ptrace.m4 (ptrace tests): Test in C++ mode. Try with 'enum | |
1690 | __ptrace_request as first parameter type instead of int. | |
1691 | (PTRACE_TYPE_ARG1): Define. | |
1692 | * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper | |
1693 | that casts first argument to PTRACE_TYPE_ARG1. | |
1694 | * config.in: Regenerate. | |
1695 | * configure: Regenerate. | |
1696 | ||
e3790375 PA |
1697 | 2015-07-24 Pedro Alves <palves@redhat.com> |
1698 | ||
1699 | * gdb_ptrace.h: Move ... | |
1700 | * nat/gdb_ptrace.h: ... here. | |
1701 | * inf-ptrace.c: Adjust. | |
1702 | ||
eb7aa561 PA |
1703 | 2015-07-24 Pedro Alves <palves@redhat.com> |
1704 | ||
1705 | * acinclude.m4: Include ptrace.m4. | |
1706 | * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ... | |
1707 | * ptrace.m4: ... to this new file. | |
1708 | ||
cc12ce38 DE |
1709 | 2015-07-23 Doug Evans <dje@google.com> |
1710 | ||
1711 | * dwarf2read.c (dwarf2_per_cu_data): Add comment. | |
1712 | (load_cu): Handle dummy CUs. | |
1713 | (dw2_do_instantiate_symtab, process_queuef): Ditto. | |
1714 | (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto. | |
1715 | ||
7b849db4 CS |
1716 | 2015-07-23 Ciro Santilli <ciro.santilli@gmail.com> (tiny patch) |
1717 | ||
1718 | * py-linetable.c (ltpy_get_all_source_lines): Adjust function | |
1719 | documentation to say that it returns a list rather than | |
1720 | a FrozenSet. | |
1721 | (linetable_object_methods): Update the docstring of the | |
1722 | "source_line" entry. | |
1723 | ||
d0d84780 PMR |
1724 | 2015-07-23 Pierre-Marie de Rodat <derodat@adacore.com> |
1725 | ||
1726 | * gdbtypes.c (resolve_dynamic_array): Pass the peeled element | |
1727 | type to the recursive call instead of the original (maybe | |
1728 | TYPE_CODE_TYPEDEF) type. | |
1729 | ||
c2fbdc59 YQ |
1730 | 2015-07-23 Yao Qi <yao.qi@linaro.org> |
1731 | ||
1732 | * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If | |
1733 | TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero. | |
1734 | If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero. | |
1735 | ||
af1b22f3 YQ |
1736 | 2015-07-21 Yao Qi <yao.qi@linaro.org> |
1737 | ||
1738 | * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): | |
1739 | Move it to nat/aarch64-linux-hw-point.c. | |
1740 | (aarch64_linux_child_post_startup_inferior): Update. | |
1741 | * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity): | |
1742 | New function. | |
1743 | * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity): | |
1744 | Declare it. | |
1745 | ||
40e050d2 MM |
1746 | 2015-07-21 Markus Metzger <markus.t.metzger@intel.com> |
1747 | ||
1748 | * common/btrace-common.c (btrace_data_append): Change case label. | |
1749 | ||
3675a06a YQ |
1750 | 2015-07-20 Yao Qi <yao.qi@linaro.org> |
1751 | ||
1752 | * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint): | |
1753 | Re-indent the code. | |
1754 | * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than | |
1755 | "unsigned long long". | |
1756 | ||
b4e1fd61 KB |
1757 | 2015-07-18 Kevin Buettner <kevinb@redhat.com> |
1758 | ||
1759 | * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero | |
1760 | to be set for SEC_ALLOC sections too. | |
1761 | ||
554717a3 YQ |
1762 | 2015-07-17 Yao Qi <yao.qi@linaro.org> |
1763 | ||
1764 | * Makefile.in (HFILES_NO_SRCDIR): Add | |
1765 | nat/aarch64-linux-hw-point.h. | |
1766 | (aarch64-linux-hw-point.o): New rule. | |
1767 | * nat/aarch64-linux-hw-point.h: New file. | |
1768 | * nat/aarch64-linux-hw-point.c: New file. | |
1769 | * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h. | |
1770 | (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h. | |
1771 | (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise. | |
1772 | (AARCH64_HWP_ALIGNMENT): Likewise. | |
1773 | (AARCH64_HWP_MAX_LEN_PER_REG): Likewise. | |
1774 | (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise. | |
1775 | (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise. | |
1776 | (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise. | |
1777 | (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise. | |
1778 | (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise. | |
1779 | (struct aarch64_debug_reg_state): Likewise. | |
1780 | (struct arch_lwp_info): Likewise. | |
1781 | (aarch64_linux_set_debug_regs): Likewise. | |
1782 | (aarch64_notify_debug_reg_change): Remove static. | |
1783 | (aarch64_align_watchpoint): Likewise. | |
1784 | (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise. | |
1785 | (aarch64_watchpoint_length): Likewise. | |
1786 | (aarch64_point_encode_ctrl_reg): Likewise | |
1787 | (aarch64_point_is_aligned): Likewise. | |
1788 | (aarch64_dr_state_insert_one_point): Likewise. | |
1789 | (aarch64_dr_state_remove_one_point): Likewise. | |
1790 | (aarch64_handle_breakpoint): Likewise. | |
1791 | (aarch64_handle_aligned_watchpoint): Likewise. | |
1792 | (aarch64_handle_unaligned_watchpoint): Likewise. | |
1793 | (aarch64_handle_watchpoint): Likewise. | |
1794 | * config/aarch64/linux.mh (NAT_FILE): Add | |
1795 | aarch64-linux-hw-point.o. | |
1796 | ||
c67ca4de YQ |
1797 | 2015-07-17 Yao Qi <yao.qi@linaro.org> |
1798 | ||
1799 | * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument | |
1800 | state and don't call aarch64_get_debug_reg_state. All callers | |
1801 | update. | |
1802 | (aarch64_linux_insert_hw_breakpoint): Call | |
1803 | aarch64_get_debug_reg_state earlier. | |
1804 | (aarch64_linux_remove_hw_breakpoint): Likewise. | |
1805 | (aarch64_handle_aligned_watchpoint): Add argument state and | |
1806 | don't call aarch64_get_debug_reg_state. All callers update. | |
1807 | (aarch64_handle_unaligned_watchpoint): Likewise. | |
1808 | (aarch64_handle_watchpoint): Add argument state. | |
1809 | (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state | |
1810 | earlier. | |
1811 | (aarch64_linux_remove_watchpoint): Likewise. | |
1812 | ||
25abf979 YQ |
1813 | 2015-07-17 Yao Qi <yao.qi@linaro.org> |
1814 | ||
1815 | * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use | |
1816 | debug_printf. | |
1817 | (aarch64_handle_unaligned_watchpoint): Likewise. | |
1818 | ||
2ecd81c2 YQ |
1819 | 2015-07-17 Yao Qi <yao.qi@linaro.org> |
1820 | ||
1821 | * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change | |
1822 | argument type's type to 'enum target_hw_bp_type'. | |
1823 | (aarch64_dr_state_remove_one_point): Likewise. | |
1824 | (aarch64_handle_breakpoint): Likewise. | |
1825 | (aarch64_linux_insert_hw_breakpoint): Likewise. | |
1826 | (aarch64_linux_remove_hw_breakpoint): Likewise. | |
1827 | (aarch64_handle_aligned_watchpoint): Likewise. | |
1828 | ||
e53b6938 YQ |
1829 | 2015-07-17 Yao Qi <yao.qi@linaro.org> |
1830 | ||
1831 | * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call | |
1832 | ptid_get_pid instead of get_thread_id. | |
1833 | ||
6a49a997 YQ |
1834 | 2015-07-17 Yao Qi <yao.qi@linaro.org> |
1835 | ||
1836 | * remote.c (get_current_thread): Initialise ptid to null_ptid. | |
1837 | (add_current_inferior_and_thread): Don't initialise ptid. | |
1838 | ||
4bcddace PL |
1839 | 2015-07-16 Pierre Langlois <pierre.langlois@arm.com> |
1840 | ||
1841 | * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as | |
1842 | unavailable if invalid. | |
1843 | ||
db1ff28b JK |
1844 | 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com> |
1845 | ||
1846 | Revert the previous 6 commits: | |
1847 | Create empty nat/linux-maps.[ch] and common/target-utils.[ch]. | |
1848 | Move gdb_regex* to common/ | |
1849 | Prepare linux_find_memory_regions_full & co. for move | |
1850 | Move linux_find_memory_regions_full & co. | |
1851 | gdbserver build-id attribute generator | |
1852 | Validate symbol file using build-id | |
1853 | ||
ca5268b6 JK |
1854 | 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com |
1855 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
1856 | ||
1857 | Validate symbol file using build-id. | |
1858 | * NEWS (Changes since GDB 7.10): Add 'set validate-build-id' | |
1859 | and 'show validate-build-id'. Add build-id attribute. | |
1860 | * solib-darwin.c (_initialize_darwin_solib): Assign validate value. | |
1861 | * solib-dsbt.c (_initialize_dsbt_solib): Ditto. | |
1862 | * solib-frv.c (_initialize_frv_solib): Ditto. | |
1863 | * solib-spu.c (set_spu_solib_ops): Ditto. | |
1864 | * solib-svr4.c: Include rsp-low.h. | |
1865 | (NOTE_GNU_BUILD_ID_NAME): New define. | |
1866 | (svr4_validate): New function. | |
1867 | (svr4_copy_library_list): Duplicate field build_id. | |
1868 | (library_list_start_library): Parse 'build-id' attribute. | |
1869 | (svr4_library_attributes): Add 'build-id' attribute. | |
1870 | (_initialize_svr4_solib): Assign validate value. | |
1871 | * solib-target.c (solib.h): Include. | |
1872 | (_initialize_solib_target): Assign validate value. | |
1873 | * solib.c (validate_build_id, show_validate_build_id): New. | |
1874 | (solib_map_sections): Use ops->validate. | |
1875 | (clear_so): Free build_id. | |
1876 | (default_solib_validate): New function. | |
1877 | (_initialize_solib): Add "validate-build-id". | |
1878 | * solib.h (default_solib_validate): New declaration. | |
1879 | * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'. | |
1880 | (target_so_ops): New field 'validate'. | |
1881 | ||
700ca40f JK |
1882 | 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com |
1883 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
1884 | ||
1885 | gdbserver build-id attribute generator. | |
1886 | * features/library-list-svr4.dtd (library-list-svr4): New | |
1887 | 'build-id' attribute. | |
1888 | ||
9904185c JK |
1889 | 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com |
1890 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
1891 | ||
1892 | Move linux_find_memory_regions_full & co. | |
1893 | * linux-tdep.c (nat/linux-maps.h): Include. | |
1894 | (gdb_regex.h): Remove the include. | |
1895 | (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags) | |
1896 | (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c. | |
1897 | (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h. | |
1898 | (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c. | |
1899 | * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h | |
1900 | and target/target.h. | |
1901 | (struct smaps_vmflags, read_mapping, decode_vmflags) | |
1902 | (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c. | |
1903 | (linux_find_memory_regions_full): Move from linux-tdep.c. | |
1904 | * nat/linux-maps.h (read_mapping): New declaration. | |
1905 | (linux_find_memory_region_ftype, enum filterflags): Moved from | |
1906 | linux-tdep.c. | |
1907 | (linux_find_memory_regions_full): New declaration. | |
1908 | * target.c (target/target-utils.h): Include. | |
1909 | (read_alloc_pread_ftype): Moved typedef to target/target-utils.h. | |
1910 | (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved | |
1911 | definitions to target/target-utils.c. | |
1912 | * target.h (target_fileio_read_stralloc): Move it to target/target.h. | |
1913 | * target/target-utils.c (read_alloc, read_stralloc): Move definitions | |
1914 | from target.c. | |
1915 | * target/target-utils.h (read_alloc_pread_ftype): New typedef. | |
1916 | (read_alloc): New declaration. | |
1917 | (read_stralloc_func_ftype): New typedef. | |
1918 | (read_stralloc): New declaration. | |
1919 | * target/target.h (target_fileio_read_stralloc): Move it from target.h. | |
1920 | ||
f7af1fcd JK |
1921 | 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com |
1922 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
1923 | ||
1924 | Prepare linux_find_memory_regions_full & co. for move. | |
1925 | * linux-tdep.c (linux_find_memory_region_ftype): Comment. | |
1926 | (linux_find_memory_regions_full): Change signature and prepare | |
1927 | for moving to linux-maps. | |
1928 | (linux_find_memory_regions_data): Rename field 'obfd' to 'data'. | |
1929 | (linux_find_memory_regions_thunk): New. | |
1930 | (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'. | |
1931 | (linux_find_memory_regions_gdb): New. | |
1932 | (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'. | |
1933 | (linux_make_mappings_corefile_notes): Use | |
1934 | linux_find_memory_regions_gdb. | |
1935 | * target.c (read_alloc_pread_ftype): New typedef. | |
1936 | (target_fileio_read_alloc_1_pread): New function. | |
1937 | (read_alloc): Refactor from target_fileio_read_alloc_1. | |
1938 | (read_stralloc_func_ftype): New typedef. | |
1939 | (target_fileio_read_alloc_1): New implementation. Use read_alloc. | |
1940 | (read_stralloc): Refactored from target_fileio_read_stralloc. | |
1941 | (target_fileio_read_stralloc): New implementation, use read_stralloc. | |
1942 | ||
6e5b4429 JK |
1943 | 2015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com> |
1944 | ||
1945 | * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to | |
1946 | common/gdb_regex.h. | |
1947 | (COMMON_OBS): Add gdb_regex.o. | |
1948 | (gdb_regex.o): New. | |
1949 | * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex, | |
1950 | --without-included-regex and USE_INCLUDED_REGEX. | |
1951 | * common/gdb_regex.c: New file from utils.c functions. | |
1952 | * common/gdb_regex.h: Move it here from gdb_regex.h, update include | |
1953 | file wrapping define name. | |
1954 | * configure: Rebuilt. | |
1955 | * configure.ac (gdb_use_included_regex, --without-included-regex) | |
1956 | (USE_INCLUDED_REGEX): Move them to common/common.m4. | |
1957 | * gdb_regex.h: Move it to common/gdb_regex.h. | |
1958 | * utils.c: Remove include gdb_regex.h. | |
1959 | (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error) | |
1960 | (compile_rx_or_error): Move them to common/gdb_regex.c. | |
1961 | ||
ddc98fbf JK |
1962 | 2015-07-15 Aleksandar Ristovski <aristovski@qnx.com |
1963 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
1964 | ||
1965 | Create empty nat/linux-maps.[ch] and common/target-utils.[ch]. | |
1966 | * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h, | |
1967 | common/target-utils.h. | |
1968 | (COMMON_OBS): Add target-utils.o. | |
1969 | (linux-maps.o, target-utils.o): New. | |
1970 | * target/target-utils.c: New file. | |
1971 | * target/target-utils.h: New file. | |
1972 | * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o. | |
1973 | * config/i386/linux64.mh (NATDEPFILES): Ditto. | |
1974 | * nat/linux-maps.c: New file. | |
1975 | * nat/linux-maps.h: New file. | |
1976 | ||
e7b01ce0 MM |
1977 | 2015-07-15 Markus Metzger <markus.t.metzger@intel.com> |
1978 | Pedro Alves <palves@redhat.com> | |
1979 | ||
1980 | * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD. | |
1981 | (perf_event_read_all): Change the type of SIZE and DATA_HEAD. | |
1982 | (perf_event_read_bts): Change the type of SIZE and READ. | |
1983 | (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE, | |
1984 | and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size | |
1985 | to UINT_MAX. Check for overflows when using DATA_HEAD from the perf | |
1986 | mmap page. | |
1987 | (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the | |
1988 | buffer size to UINT_MAX. | |
1989 | (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and | |
1990 | DATA_TAIL. | |
1991 | * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head> | |
1992 | <last_head>: Change type. | |
1993 | * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type. | |
1994 | * common/btrace-common.c (btrace_data_append): Change the type of | |
1995 | SIZE. | |
1996 | * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness | |
1997 | check. | |
1998 | ||
f168693b SM |
1999 | 2015-07-14 Simon Marchi <simon.marchi@ericsson.com> |
2000 | ||
2001 | * gdbtypes.h (CHECK_TYPEDEF): Remove. | |
2002 | * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF | |
2003 | with check_typedef. | |
2004 | * ada-lang.c (decode_constrained_packed_array_type): Likewise. | |
2005 | (ada_array_length): Likewise. | |
2006 | (find_parallel_type_by_descriptive_type): Likewise. | |
2007 | (ada_check_typedef): Likewise. | |
2008 | * arm-tdep.c (arm_return_in_memory): Likewise. | |
2009 | * ax-gdb.c (gen_trace_static_fields): Likewise. | |
2010 | (gen_struct_ref_recursive): Likewise. | |
2011 | * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise. | |
2012 | (variable: block COLONCOLON name): Likewise. | |
2013 | (qualified_name: TYPENAME COLONCOLON name): Likewise. | |
2014 | * c-lang.c (classify_type): Likewise. | |
2015 | * c-typeprint.c (c_print_type): Likewise. | |
2016 | (c_print_typedef): Likewise. | |
2017 | (c_type_print_base): Likewise. | |
2018 | * c-valprint.c (c_val_print): Likewise. | |
2019 | * compile/compile-c-types.c (convert_type): Likewise. | |
2020 | * compile/compile-object-load.c (get_out_value_type): Likewise. | |
2021 | * completer.c (add_struct_fields): Likewise. | |
2022 | (expression_completer): Likewise. | |
2023 | * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise. | |
2024 | (cp_lookup_nested_symbol_1): Likewise. | |
2025 | (cp_lookup_nested_symbol): Likewise. | |
2026 | * cp-valprint.c (cp_print_value_fields): Likewise. | |
2027 | (cp_print_static_field): Likewise. | |
2028 | * d-valprint.c (d_val_print): Likewise. | |
2029 | * eval.c (evaluate_subexp_standard): Likewise. | |
2030 | (evaluate_subexp_for_sizeof): Likewise. | |
2031 | * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise. | |
2032 | * f-typeprint.c (f_type_print_base): Likewise. | |
2033 | * f-valprint.c (f_val_print): Likewise. | |
2034 | * gdbtypes.c (get_discrete_bounds): Likewise. | |
2035 | (create_array_type_with_stride): Likewise. | |
2036 | (type_name_no_tag_or_error): Likewise. | |
2037 | (lookup_struct_elt_type): Likewise. | |
2038 | (get_unsigned_type_max): Likewise. | |
2039 | (internal_type_vptr_fieldno): Likewise. | |
2040 | (set_type_vptr_fieldno): Likewise. | |
2041 | (internal_type_vptr_basetype): Likewise. | |
2042 | (set_type_vptr_basetype): Likewise. | |
2043 | (get_vptr_fieldno): Likewise. | |
2044 | (is_integral_type): Likewise. | |
2045 | (is_scalar_type): Likewise. | |
2046 | (is_scalar_type_recursive): Likewise. | |
2047 | (distance_to_ancestor): Likewise. | |
2048 | (is_unique_ancestor_worker): Likewise. | |
2049 | (check_types_equal): Likewise. | |
2050 | * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise. | |
2051 | ||
45280282 IB |
2052 | 2015-07-14 Iain Buclaw <ibuclaw@gdcproject.org> |
2053 | ||
2054 | * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to | |
2055 | also test for language_d. | |
2056 | (dwarf2_compute_name): Likewise. | |
2057 | (read_func_scope): Likewise. | |
2058 | (read_structure_type): Likewise. | |
2059 | (new_symbol_full): Likewise. | |
2060 | (determine_prefix): Likewise. | |
2061 | (read_import_statement): Use dot as the separator for language_d. | |
2062 | (typename_concat): Likewise, but don't prefix the D main function. | |
2063 | ||
99fe86f7 PB |
2064 | 2015-07-14 Peter Bergner <bergner@vnet.ibm.com> |
2065 | ||
2066 | * nat/linux-namespaces.c (setns): Rename from this ... | |
2067 | (do_setns): ... to this. Support calling setns if it exists. | |
2068 | (mnsh_handle_setns): Call do_setns. | |
2069 | ||
d5131498 YQ |
2070 | 2015-07-13 Yao Qi <yao.qi@linaro.org> |
2071 | ||
2072 | * exec.c (exec_file_attach): Add period at the end of error | |
2073 | message. | |
2074 | ||
97605e61 AB |
2075 | 2015-07-13 Andrew Burgess <andrew.burgess@embecosm.com> |
2076 | ||
2077 | * tui/tui-win.c (window_name_completer): New function. | |
2078 | (focus_completer): Call window_name_completer. All old content | |
2079 | moved into window_name_completer. | |
2080 | (winheight_completer): New function. | |
2081 | (_initialize_tui_win): Rename variable. Add completer to | |
2082 | winheight command. Update doc string on winheight. | |
2083 | ||
8d6dbeb4 SL |
2084 | 2015-07-12 Sandra Loosemore <sandra@codesourcery.com> |
2085 | ||
2086 | * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register | |
2087 | all nios2 mach variants. | |
2088 | ||
a0e28e54 KB |
2089 | 2015-07-10 Kevin Buettner <kevinb@redhat.com> |
2090 | ||
2091 | * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead | |
2092 | of target_read_memory. | |
2093 | ||
c101f28f AB |
2094 | 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com> |
2095 | ||
2096 | * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the | |
2097 | string copy. | |
2098 | (parse_scrolling_args): Likewise. | |
2099 | ||
150375dc AB |
2100 | 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com> |
2101 | ||
2102 | * tui/tui-win.c (focus_completer): Don't duplicate the tui window | |
2103 | names in this function. | |
2104 | ||
6dce28e4 AB |
2105 | 2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com> |
2106 | ||
2107 | * tui/tui-data.h (SRC_NAME): Convert to lower case. | |
2108 | (CMD_NAME): Likewise. | |
2109 | (DATA_NAME): Likewise. | |
2110 | (DISASSEM_NAME): Likewise. | |
2111 | * tui/tui-win.c (tui_set_focus): Window names are now lower case. | |
2112 | (tui_set_win_height): Likewise. | |
2113 | (parse_scrolling_args): Likewise. | |
2114 | ||
485668e5 MM |
2115 | 2015-07-10 Markus Metzger <markus.t.metzger@intel.com> |
2116 | ||
2117 | * record-btrace.c (record_btrace_goto_begin) | |
2118 | (record_btrace_goto_end, record_btrace_goto): Move call to | |
2119 | print_stack_frame ... | |
2120 | (record_btrace_set_replay): ... here. Set stop_pc. | |
2121 | * record-full.c (record_full_goto_entry): Set stop_pc. | |
2122 | ||
58d2eda5 PL |
2123 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2124 | ||
2125 | * NEWS: Mention support for tracepoints on aarch64-linux. | |
2126 | ||
7671bf47 PL |
2127 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2128 | ||
2129 | * linux-aarch64-low.c (aarch64_supports_tracepoints): New | |
2130 | function. Return 1. | |
2131 | (the_low_target): Install it. | |
2132 | ||
7890fb45 PL |
2133 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2134 | ||
2135 | * gdb.trace/backtrace.exp: Set registers for aarch64 target. | |
2136 | * gdb.trace/collection.exp: Likewise. | |
2137 | * gdb.trace/mi-trace-frame-collected.exp: Likewise. | |
2138 | * gdb.trace/mi-trace-unavailable.exp: Likewise. | |
2139 | * gdb.trace/report.exp: Likewise. | |
2140 | * gdb.trace/trace-break.exp: Likewise. | |
2141 | * gdb.trace/unavailable.exp: Likewise. | |
2142 | * gdb.trace/while-dyn.exp: Likewise. | |
2143 | ||
ea873d8e PL |
2144 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2145 | ||
2146 | * aarch64-tdep.c: Add ax.h and ax-gdb.h includes. | |
2147 | (aarch64_gen_return_address): New function. | |
2148 | (aarch64_gdbarch_init): Hook it. | |
2149 | ||
02a2a705 PL |
2150 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2151 | ||
2152 | * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and | |
2153 | swallow NOT_AVAILABLE_ERROR. | |
2154 | (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if | |
2155 | available_p is not set. | |
2156 | (aarch64_stub_frame_unwind_stop_reason): New function. | |
2157 | (aarch64_stub_unwind): Install it. | |
2158 | ||
7dfa3edc PL |
2159 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2160 | ||
2161 | * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New | |
2162 | field. | |
2163 | (aarch64_make_prologue_cache_1): New function, factored out from | |
2164 | aarch64_make_prologue_cache. Do not allocate cache. Set | |
2165 | available_p. | |
2166 | (aarch64_make_prologue_cache): Reimplement wrapping | |
2167 | aarch64_make_prologue_cache_1, and swallowing | |
2168 | NOT_AVAILABLE_ERROR. | |
2169 | (aarch64_prologue_frame_unwind_stop_reason): New function. | |
2170 | Return UNWIND_UNAVAILABLE if available_p is not set. | |
2171 | (aarch64_prologue_unwind): Install it. | |
2172 | (aarch64_prologue_this_id): Move prev_pc and prev_sp limit | |
2173 | checks into aarch64_prologue_frame_unwind_stop_reason. Call | |
2174 | frame_id_build_unavailable_stack if available_p is not set. | |
2175 | ||
db634143 PL |
2176 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2177 | ||
2178 | * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New | |
2179 | fields. | |
2180 | (aarch64_scan_prologue): Set prev_pc. | |
2181 | (aarch64_make_prologue_cache): Set func. | |
2182 | (aarch64_make_stub_cache): Set prev_pc. | |
2183 | (aarch64_prologue_this_id): Remove local variables id, pc and | |
2184 | func. Read prev_pc and func from cache. | |
2185 | (aarch64_stub_this_id): Read prev_pc from cache. | |
2186 | ||
8b61f75d PL |
2187 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2188 | ||
2189 | * aarch64-tdep.c (aarch64_make_stub_cache): Update comment. New | |
2190 | argument this_cache. Remove unused local variables reg and | |
2191 | unwound_fp. Return early if this_cache is already set. Set | |
2192 | this_cache. | |
2193 | (aarch64_stub_this_id): Update call to aarch64_make_stub_cache. | |
2194 | ||
7c8edfae PL |
2195 | 2015-07-09 Pierre Langlois <pierre.langlois@arm.com> |
2196 | ||
2197 | * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment. | |
2198 | New argument this_cache. Return early if this_cache is already | |
2199 | set. Set this_cache. | |
2200 | (aarch64_prologue_this_id): Update call to | |
2201 | aarch64_make_prologue_cache. | |
2202 | (aarch64_prologue_prev_register): Likewise. | |
2203 | (aarch64_normal_frame_base): Likewise. | |
2204 | ||
938c69a1 SM |
2205 | 2015-07-09 Simon Marchi <simon.marchi@ericsson.com> |
2206 | ||
2207 | * c-valprint.c (c_val_print): Factor out memberptr printing code | |
2208 | from c_val_print to ... | |
2209 | (c_val_print_memberptr): ... this new function. | |
2210 | ||
49f7fe28 SM |
2211 | 2015-07-09 Simon Marchi <simon.marchi@ericsson.com> |
2212 | ||
2213 | * c-valprint.c (c_val_print): Factor out int printing code to ... | |
2214 | (c_val_print_int): ... this new function. | |
2215 | ||
9e4f353c SM |
2216 | 2015-07-09 Simon Marchi <simon.marchi@ericsson.com> |
2217 | ||
2218 | * c-valprint.c (c_val_print): Factor out struct and union | |
2219 | printing code to ... | |
2220 | (c_val_print_struct): ... this new function ... | |
2221 | (c_val_print_union): ... and this new function. | |
2222 | ||
1c67f032 SM |
2223 | 2015-07-09 Simon Marchi <simon.marchi@ericsson.com> |
2224 | ||
2225 | * c-valprint.c (c_val_print): Factor out pointer printing code | |
2226 | to ... | |
2227 | (c_val_print_ptr): ... this new function. | |
2228 | ||
0b6ef777 SM |
2229 | 2015-07-09 Simon Marchi <simon.marchi@ericsson.com> |
2230 | ||
2231 | * c-valprint.c (c_valprint): Factor our array printing code from | |
2232 | c_val_print to ... | |
2233 | (c_val_print_array): ... this new function. | |
2234 | ||
1033c33c SM |
2235 | 2015-07-09 Simon Marchi <simon.marchi@ericsson.com> |
2236 | ||
2237 | * c-valprint.c (c_val_print): Factor out pointer printing code | |
2238 | to ... | |
2239 | (print_unpacked_pointer): ... this new function. | |
2240 | ||
f6b93c34 SM |
2241 | 2015-07-09 Simon Marchi <simon.marchi@ericsson.com> |
2242 | ||
2243 | * c-valprint.c (c_val_print): Remove an assignment to i and move | |
2244 | its declaration. | |
2245 | ||
0f4576e3 YQ |
2246 | 2015-07-09 Yao Qi <yao.qi@linaro.org> |
2247 | ||
2248 | * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add | |
2249 | argument ptid. Update comments. Caller update. | |
2250 | ||
37fdfe4c MM |
2251 | 2015-07-09 Markus Metzger <markus.t.metzger@intel.com> |
2252 | ||
2253 | * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and | |
2254 | mnt packets. | |
2255 | ||
80a2b330 MM |
2256 | 2015-07-09 Markus Metzger <markus.t.metzger@intel.com> |
2257 | ||
2258 | * btrace.c (btrace_pt_readmem_callback): Change type of PC argument. | |
2259 | ||
4ab31498 SM |
2260 | 2015-07-08 Simon Marchi <simon.marchi@ericsson.com> |
2261 | ||
2262 | * progspace.c (delete_program_space): Add missing spaces. | |
2263 | ||
7a41607e SM |
2264 | 2015-07-08 Simon Marchi <simon.marchi@ericsson.com> |
2265 | ||
2266 | * inferior.c (delete_inferior_1): Rename to ... | |
2267 | (delete_inferior): ..., remove 'silent' parameter, delete | |
2268 | program space when unused and remove call to prune_program_spaces. | |
2269 | Remove the old, unused, delete_inferior. | |
2270 | (delete_inferior_silent): Remove. | |
2271 | (prune_inferiors): Change call from delete_inferior_1 to | |
2272 | delete_inferior and remove 'silent' parameter. Remove call to | |
2273 | prune_program_spaces. | |
2274 | (remove_inferior_command): Idem. | |
2275 | * inferior.h (delete_inferior_1): Rename to... | |
2276 | (delete_inferior): ..., remove 'silent' parameter and remove the | |
2277 | original delete_inferior. | |
2278 | (delete_inferior_silent): Remove. | |
2279 | * mi/mi-main.c (mi_cmd_remove_inferior): Change call from | |
2280 | delete_inferior_1 to delete_inferior and remove 'silent' | |
2281 | parameter. | |
2282 | * progspace.c (prune_program_spaces): Remove. | |
2283 | (pspace_empty_p): Rename to... | |
2284 | (program_space_empty_p): ... and make non-static. | |
2285 | (delete_program_space): New. | |
2286 | * progspace.h (prune_program_spaces): Remove declaration. | |
2287 | (program_space_empty_p): New declaration. | |
2288 | (delete_program_space): New declaration. | |
2289 | * monitor.c (monitor_close): Replace call to | |
2290 | delete_thread_silent and delete_inferior_silent with | |
2291 | discard_all_inferiors. | |
2292 | ||
a9bd710f PP |
2293 | 2015-07-08 Patrick Palka <patrick@parcs.ath.cx> |
2294 | ||
2295 | * defs.h (deprecated_register_changed_hook): Remove prototype. | |
2296 | * interps.c (clear_iterpreter_hooks): Remove reference to | |
2297 | deprecated_register_changed_hook. | |
2298 | * top.c (deprecated_register_changed_hook): Remove prototype. | |
2299 | * valops.c (value_assign): Remove reference to | |
2300 | deprecated_register_changed_hook. | |
2301 | * tui/tui-hooks.c (tui_register_changed): Add parameter "frame". | |
2302 | Add comment documenting the function. | |
2303 | (tui_register_changed_observer): Define. | |
2304 | (tui_install_hooks): Remove reference to | |
2305 | deprecated_register_changed_hook. Set | |
2306 | tui_register_changed_observer. | |
2307 | (tui_remove_hooks): Remove reference to | |
2308 | deprecated_register_changed_hook. Unset | |
2309 | tui_register_changed_observer. | |
2310 | ||
08464196 JK |
2311 | 2015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com> |
2312 | ||
2313 | PR compile/18484 | |
2314 | * compile/compile-c-types.c (insert_type): Change gdb_assert to error. | |
2315 | ||
bcf5c1d9 RC |
2316 | 2015-07-08 Robert O'Callahan <robert@ocallahan.org> |
2317 | ||
2318 | PR exp/18617 | |
2319 | * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'. | |
2320 | ||
e8643a45 MM |
2321 | 2015-07-08 Markus Metzger <markus.t.metzger@intel.com> |
2322 | ||
2323 | * MAINTAINERS (Write After Approval): Add Markus T. Metzger. | |
2324 | ||
76fb6829 MM |
2325 | 2015-07-08 Markus Metzger <markus.t.metzger@intel.com> |
2326 | ||
2327 | * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt): | |
2328 | Use safe_strerror() instead of strerror(). | |
2329 | ||
82c40d4b YQ |
2330 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
2331 | ||
2332 | * features/arm-with-m-fpa-layout.xml: Set architecture to arm. | |
2333 | * features/arm-with-m-fpa-layout.c: Regenerated. | |
2334 | * features/arm-with-m-vfp-d16.xml: Likewise. | |
2335 | * features/arm-with-m-vfp-d16.c: Regenerated. | |
2336 | * features/arm-with-m.xml: Likewise. | |
2337 | * features/arm-with-m.c: Regenerated. | |
2338 | * features/arm-with-neon.xml: Likewise. | |
2339 | * features/arm-with-neon.c: Regenerated. | |
2340 | * features/arm-with-vfpv2.xml: Likewise. | |
2341 | * features/arm-with-vfpv2.c: Regenerated. | |
2342 | * features/arm-with-vfpv3.xml: Likewise. | |
2343 | * features/arm-with-vfpv3.c: Regenerated. | |
2344 | ||
607685ec YQ |
2345 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
2346 | ||
2347 | * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from | |
2348 | arm-linux-nat.c. | |
2349 | * aarch64-linux-nat.c: Include aarch32-linux-nat.h and | |
2350 | elf/external.h. | |
2351 | (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply | |
2352 | if target is 32-bit. | |
2353 | (store_gregs_to_thread): Call aarch32_gp_regcache_collect | |
2354 | if target is 32-bit. | |
2355 | (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply | |
2356 | if target is 32-bit. | |
2357 | (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect | |
2358 | if target is 32-bit. | |
2359 | (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare. | |
2360 | (aarch64_linux_read_description): Return the right target | |
2361 | description. | |
2362 | * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h. | |
2363 | * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o. | |
2364 | * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and | |
2365 | arm-linux-tdep.o. | |
2366 | ||
f1b67888 YQ |
2367 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
2368 | ||
2369 | * aarch32-linux-nat.c: New file. | |
2370 | * aarch32-linux-nat.h: New file. | |
2371 | * arm-linux-nat.c: Include aarch32-linux-nat.h. | |
2372 | (fetch_regs): Move code to aarch32-linux-nat.c. Call | |
2373 | aarch32_gp_regcache_supply. | |
2374 | (store_regs): Move code to aarch32-linux-nat.c. Call | |
2375 | aarch32_gp_regcache_collect. | |
2376 | (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call | |
2377 | aarch32_vfp_regcache_supply. | |
2378 | (store_vfp_regs): Move code to aarch32-linux-nat.c. Call | |
2379 | aarch32_vfp_regcache_collect. | |
2380 | * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o. | |
2381 | ||
179bfe82 YQ |
2382 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
2383 | ||
2384 | * arm-linux-nat.c (store_fpregister): Remove. | |
2385 | (store_register): Likewise. | |
2386 | (fetch_fpregister): Likewise. | |
2387 | (fetch_register): Likewise. | |
2388 | (arm_linux_store_inferior_registers): Call store_regs and | |
2389 | store_fpregs instead. | |
2390 | (arm_linux_fetch_inferior_registers): Call fetch_fpregs and | |
2391 | fetch_regs instead. | |
2392 | ||
6008fc5f AB |
2393 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
2394 | ||
2395 | * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout | |
2396 | and focus commands. | |
2397 | ||
7c79d316 JB |
2398 | 2015-07-06 Joel Brobecker <brobecker@adacore.com> |
2399 | ||
2400 | * NEWS: Create a new section for the next release branch. | |
2401 | Rename the section of the current branch, now that it has | |
2402 | been cut. | |
2403 | ||
f2232bea JB |
2404 | 2015-07-06 Joel Brobecker <brobecker@adacore.com> |
2405 | ||
2406 | GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e): | |
2407 | * version.in: Bump version to 7.10.50.DATE-cvs. | |
2408 | ||
66c4b3e8 LM |
2409 | 2015-07-06 Luis Machado <lgustavo@codesourcery.com> |
2410 | ||
2411 | * breakpoint.c (remove_breakpoint_1): Don't handle permanent | |
2412 | breakpoints in a special way. | |
2413 | (remove_breakpoint): Likewise. | |
2414 | (mark_breakpoints_out): Likewise. | |
2415 | ||
bcd8537c AB |
2416 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
2417 | ||
2418 | * doc/gdb.texinfo (TUI): Add comma after @xref. | |
2419 | ||
10e9aaa3 AB |
2420 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
2421 | ||
2422 | * tui/tui-win.c (tui_set_focus): Use structure member 'generic' | |
2423 | instead of casting the structure type. | |
2424 | ||
8a13d42d SM |
2425 | 2015-07-06 Simon Marchi <simon.marchi@ericsson.com> |
2426 | ||
2427 | * valops.c (search_struct_field): Remove OFFSET parameter. | |
2428 | (value_cast_structs): Adjust calls to search_struct_field. | |
2429 | (value_struct_elt): Same. | |
2430 | (find_overload_match): Same. | |
2431 | ||
a844296a SM |
2432 | 2015-07-06 Simon Marchi <simon.marchi@ericsson.com> |
2433 | ||
2434 | * value.c (value_fetch_lazy): Update comment, change return | |
2435 | value to void. | |
2436 | * value.h (value_fetch_lazy): Change return value to void. | |
2437 | ||
f41cbf58 AB |
2438 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
2439 | ||
2440 | * tui/tui-data.c (tui_partial_win_by_name): Window name is const. | |
2441 | (tui_win_name): Make parameter and result const. | |
2442 | * tui/tui-data.h (tui_win_name): Make parameter and result const. | |
2443 | ||
118ca224 PP |
2444 | 2015-07-06 Patrick Palka <patrick@parcs.ath.cx> |
2445 | ||
2446 | * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead | |
2447 | use printf_unfiltered. | |
2448 | (set_mpx_cmd): Add missing trailing space to command string | |
2449 | literal. | |
2450 | (_initialize_i386_tdep): Give the "mpx" prefix command its | |
2451 | correct name. | |
2452 | ||
1b485e67 KB |
2453 | 2015-07-02 Kevin Buettner <kevinb@redhat.com> |
2454 | ||
2455 | * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants. | |
2456 | (enum rx_frame_type): New. | |
2457 | (struct rx_prologue): Add new field `frame_type'. | |
2458 | (rx_analyze_prologue): Add `frame_type' parameter. Cache this | |
2459 | parameter in the prologue struct. Add code for recording | |
2460 | locations of PC and PSW for fast interrupt and exception frames. | |
2461 | (rx_skip_prologue): Adjust call to rx_analyze_prologue. | |
2462 | (rx_analyze_frame_prologue): Add `frame_type' parameter. | |
2463 | (rx_frame_type): New function. | |
2464 | (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue. | |
2465 | (rx_frame_this_id): Rename parameter `this_prologue_cache' to | |
2466 | `this_cache'. | |
2467 | (rx_frame_prev_register): Rename parameter `this_prologue_cache' to | |
72f4393d | 2468 | `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and |
1b485e67 KB |
2469 | RX_FRAME_TYPE_FAST_INTERRUPT. |
2470 | (normal_frame_p, exception_frame_p, rx_frame_sniffer_common) | |
2471 | (rx_frame_sniffer, rx_exception_sniffer): New functions. | |
2472 | (rx_frame_unwind): Use rx_frame_sniffer instead of | |
2473 | default_frame_sniffer. | |
2474 | (rx_frame_unwind): New unwinder. | |
2475 | (rx_gdbarch_init): Register new unwinder. | |
2476 | ||
0561fea4 KB |
2477 | 2015-07-02 Kevin Buettner <kevinb@redhat.com> |
2478 | ||
2479 | * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants. | |
2480 | (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type. | |
2481 | (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM, | |
2482 | and RX_FPSW_REGNUM. | |
2483 | (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types. | |
2484 | ||
decf8d9a JK |
2485 | 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com> |
2486 | ||
2487 | Fix GCC false warning. | |
2488 | * s390-linux-tdep.c (s390_handle_arg): Initialize VAL. | |
2489 | ||
2fd0f80d YQ |
2490 | 2015-07-02 Yao Qi <yao.qi@linaro.org> |
2491 | ||
2492 | * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix | |
2493 | typo in the debugging message. | |
2494 | ||
b0627500 MM |
2495 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
2496 | ||
2497 | * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h. | |
2498 | (maint_btrace_cmdlist, maint_btrace_set_cmdlist) | |
2499 | (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist) | |
2500 | (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad) | |
2501 | (btrace_maint_clear): New. | |
2502 | (btrace_fetch, btrace_clear): Call btrace_maint_clear. | |
2503 | (pt_print_packet, btrace_maint_decode_pt) | |
2504 | (btrace_maint_update_pt_packets, btrace_maint_update_packets) | |
2505 | (btrace_maint_print_packets, get_uint, get_context_size, no_chunk) | |
2506 | (maint_btrace_packet_history_cmd) | |
2507 | (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd) | |
2508 | (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd) | |
2509 | (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd) | |
2510 | (maint_info_btrace_cmd, _initialize_btrace): New. | |
2511 | * btrace.h (btrace_pt_packet, btrace_pt_packet_s) | |
2512 | (btrace_maint_packet_history, btrace_maint_info): New. | |
2513 | (btrace_thread_info) <maint>: New. | |
2514 | * NEWS: Announce it. | |
2515 | ||
9be54cae MM |
2516 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
2517 | ||
2518 | * btrace.c (btrace_fetch): Append the new trace data. | |
2519 | (btrace_clear): Clear the stored trace data. | |
2520 | * btrace.h (btrace_thread_info) <data>: New. | |
2521 | * common/btrace-common.h (btrace_data_clear) | |
2522 | (btrace_data_append): New. | |
2523 | * common/btrace-common.c (btrace_data_clear) | |
2524 | (btrace_data_append): New. | |
2525 | ||
010a18a1 MM |
2526 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
2527 | ||
2528 | * nat/linux-btrace.c (linux_enable_bts): Check for | |
2529 | PERF_ATTR_SIZE_VER5. | |
2530 | Check for data_offset and data_size fields. Use them. | |
2531 | ||
b20a6524 MM |
2532 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
2533 | ||
2534 | * NEWS: Announce new commands "record btrace pt" and "record pt". | |
2535 | Announce new options "set|show record btrace pt buffer-size". | |
2536 | * btrace.c: Include "rsp-low.h". | |
2537 | Include "inttypes.h". | |
2538 | (btrace_add_pc): Add forward declaration. | |
2539 | (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback) | |
2540 | (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt) | |
2541 | (btrace_compute_ftrace_pt): New. | |
2542 | (btrace_compute_ftrace): Support BTRACE_FORMAT_PT. | |
2543 | (check_xml_btrace_version): Update version check. | |
2544 | (parse_xml_raw, parse_xml_btrace_pt_config_cpu) | |
2545 | (parse_xml_btrace_pt_raw, parse_xml_btrace_pt) | |
2546 | (btrace_pt_config_cpu_attributes, btrace_pt_config_children) | |
2547 | (btrace_pt_children): New. | |
2548 | (btrace_children): Add support for "pt". | |
2549 | (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New. | |
2550 | (btrace_conf_children): Add support for "pt". | |
2551 | * btrace.h: Include "intel-pt.h". | |
2552 | (btrace_pt_error): New. | |
2553 | * common/btrace-common.c (btrace_format_string, btrace_data_fini) | |
2554 | (btrace_data_empty): Support BTRACE_FORMAT_PT. | |
2555 | * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT. | |
2556 | (struct btrace_config_pt): New. | |
2557 | (struct btrace_config)<pt>: New. | |
2558 | (struct btrace_data_pt_config, struct btrace_data_pt): New. | |
2559 | (struct btrace_data)<pt>: New. | |
2560 | * features/btrace-conf.dtd (btrace-conf)<pt>: New. | |
2561 | (pt): New. | |
2562 | * features/btrace.dtd (btrace)<pt>: New. | |
2563 | (pt, pt-config, cpu): New. | |
2564 | * nat/linux-btrace.c (perf_event_read, perf_event_read_all) | |
2565 | (perf_event_pt_event_type, kernel_supports_pt) | |
2566 | (linux_supports_pt): New. | |
2567 | (linux_supports_btrace): Support BTRACE_FORMAT_PT. | |
2568 | (linux_enable_bts): Free tinfo on error. | |
2569 | (linux_enable_pt): New. | |
2570 | (linux_enable_btrace): Support BTRACE_FORMAT_PT. | |
2571 | (linux_disable_pt): New. | |
2572 | (linux_disable_btrace): Support BTRACE_FORMAT_PT. | |
2573 | (linux_fill_btrace_pt_config, linux_read_pt): New. | |
2574 | (linux_read_btrace): Support BTRACE_FORMAT_PT. | |
2575 | * nat/linux-btrace.h (struct btrace_tinfo_pt): New. | |
2576 | (struct btrace_target_info)<pt>: New. | |
2577 | * record-btrace.c (set_record_btrace_pt_cmdlist) | |
2578 | (show_record_btrace_pt_cmdlist): New. | |
2579 | (record_btrace_print_pt_conf): New. | |
2580 | (record_btrace_print_conf): Support BTRACE_FORMAT_PT. | |
2581 | (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT. | |
2582 | (cmd_record_btrace_pt_start): New. | |
2583 | (cmd_record_btrace_start): Support BTRACE_FORMAT_PT. | |
2584 | (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New. | |
2585 | (_initialize_record_btrace): Add new commands. | |
2586 | * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New. | |
2587 | (remote_protocol_features): Add "Qbtrace:pt". | |
2588 | Add "Qbtrace-conf:pt:size". | |
2589 | (remote_supports_btrace): Support BTRACE_FORMAT_PT. | |
2590 | (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size. | |
2591 | (remote_enable_btrace): Support BTRACE_FORMAT_PT. | |
2592 | (_initialize_remote): Add new commands. | |
2593 | ||
58bfce93 MM |
2594 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
2595 | ||
2596 | * configure.ac: check for libipt | |
2597 | * configure: Regenerate. | |
2598 | * config.in: Regenerate. | |
2599 | * Makefile.in (LIBIPT): New. | |
2600 | (CLIBS): Add $LIBIPT. | |
2601 | * NEWS: document new configure options | |
2602 | ||
b0fd6b30 JK |
2603 | 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com> |
2604 | ||
2605 | * compile/compile-object-load.c (compile_object_load): Replace debug | |
2606 | message "lookup undefined ELF symbol" by 3 more specific messages. | |
2607 | ||
e6280369 KB |
2608 | 2015-07-01 Kevin Buettner <kevinb@redhat.com> |
2609 | ||
2610 | * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type. | |
2611 | (rl78_register_type): Add case for RL78_PSW_REGNUM. | |
2612 | (rl78_gdbarch_init): Initialize rl78_psw_type. | |
2613 | ||
bbcbf914 PP |
2614 | 2015-07-01 Patrick Palka <patrick@parcs.ath.cx> |
2615 | ||
2616 | * tui/tui-hooks.c (tui_refresh_frame_and_register_information): | |
2617 | Update commentary. Always refresh the registers when frame | |
2618 | information has changed. | |
2619 | * tui/tui-stack.c (tui_show_frame_info): Update commentary. | |
2620 | Change return type to int. Return 1 if frame information has | |
2621 | changed, 0 otherwise. | |
2622 | (tui_before_prompt): Update commentary. | |
2623 | * tui/tui-stack.h (tui_show_frame_info): Change return type to | |
2624 | int. | |
2625 | ||
0986c744 PP |
2626 | 2015-06-30 Patrick Palka <patrick@parcs.ath.cx> |
2627 | ||
2628 | PR tui/13378 | |
2629 | * frame.c (select_frame): Remove reference to | |
2630 | deprecated_selected_frame_level_changed_hook. | |
2631 | * frame.h (deprecated_selected_frame_level_changed_hook): Remove | |
2632 | declaration. | |
2633 | * stack.c (deprecated_selected_frame_level_changed_hook): | |
2634 | Likewise. | |
2635 | * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): | |
2636 | Rename to ... | |
2637 | (tui_refresh_frame_and_register_information): ... this. Bail | |
2638 | out if there is no stack. Don't update register information | |
2639 | unless registers_too_p is true. | |
2640 | (tui_print_frame_info_listing_hook): Rename to ... | |
2641 | (tui_dummy_print_frame_info_listing_hook): ... this. | |
2642 | (tui_before_prompt): New function. | |
2643 | (tui_normal_stop): New function. | |
2644 | (tui_before_prompt_observer): New observer. | |
2645 | (tui_normal_stop_observer): New observer. | |
2646 | (tui_install_hooks): Set | |
2647 | deprecated_print_frame_info_listing_hook to | |
2648 | tui_dummy_print_frame_info_listing_hook. Register | |
2649 | tui_before_prompt_observer to call tui_before_prompt and | |
2650 | tui_normal_stop_observer to call tui_normal_stop. Remove | |
2651 | reference to deprecated_selected_frame_level_changed_hook. | |
2652 | (tui_remove_hooks): Detach and unset tui_before_prompt_observer | |
2653 | and tui_normal_stop_observer. Remove reference to | |
2654 | deprecated_selected_frame_level_changed_hook. | |
2655 | ||
b5fca6d7 PP |
2656 | 2015-06-30 Patrick Palka <patrick@parcs.ath.cx> |
2657 | ||
2658 | PR tui/13378 | |
2659 | * tui/tui-stack.c (tui_set_locator_info): Change prototype to | |
2660 | return an int instead of void. Return whether the locator | |
2661 | window has changed. | |
2662 | (tui_show_frame_info): If the locator info has not changed, then | |
2663 | bail out early to avoid refreshing the windows. | |
2664 | ||
c45613e3 PP |
2665 | 2015-06-30 Patrick Palka <patrick@parcs.ath.cx> |
2666 | ||
2667 | * tui/tui-stack.c (tui_set_locator_info): Explicitly pass | |
2668 | LOCATOR_WIN to tui_alloc_content. | |
2669 | ||
7b9be803 YQ |
2670 | 2015-06-30 Yao Qi <yao.qi@linaro.org> |
2671 | ||
2672 | PR tdep/18605 | |
2673 | * arm-tdep.c (arm_get_next_pc_raw): Break for media | |
2674 | instructions. | |
2675 | ||
fd6e021d KB |
2676 | 2015-06-29 Kevin Buettner <kevinb@redhat.com> |
2677 | ||
78ab7e9d KB |
2678 | * rx-tdep.c (RX_PSW_REGNUM): New enum constant. |
2679 | (rx_dwarf_reg_to_regnum): New function. | |
2680 | (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2 | |
2681 | unwinding. | |
fd6e021d | 2682 | |
28bf096c PA |
2683 | 2015-06-29 Pedro Alves <palves@redhat.com> |
2684 | ||
2685 | PR threads/18127 | |
2686 | * infcall.c (run_inferior_call): On infcall success, if the thread | |
2687 | was marked stopped before, reset it back to stopped. | |
2688 | * infrun.c (resume): Don't suppress the set_running calls when | |
2689 | doing an infcall. | |
2690 | (normal_stop): Only discard the finish_thread_state cleanup if the | |
2691 | infcall succeeded. | |
2692 | ||
2880b51c | 2693 | 2015-06-29 Pierre Langlois <pierre.langlois@arm.com> |
1451ea7d PL |
2694 | |
2695 | * MAINTAINERS (Write After Approval): Update my email address. | |
2696 | ||
ee93cd5e KS |
2697 | 2015-06-26 Keith Seitz <keiths@redhat.com> |
2698 | Doug Evans <dje@google.com> | |
2699 | ||
2700 | PR 16253 | |
2701 | * block.c (block_lookup_symbol): For non-function blocks, | |
2702 | continue to search for a symbol with an exact domain match | |
2703 | Otherwise, return any previously found "best domain" symbol. | |
2704 | (block_lookup_symbol_primary): Likewise. | |
2705 | ||
fc637f04 PP |
2706 | 2015-06-26 Patrick Palka <patrick@parcs.ath.cx> |
2707 | ||
2708 | * NEWS: Mention the new option "history remove-duplicates". | |
2709 | * top.c (history_remove_duplicates): New static variable. | |
2710 | (show_history_remove_duplicates): New static function. | |
2711 | (gdb_add_history): Conditionally remove duplicate history | |
2712 | entries. | |
2713 | (init_main): Add "history remove-duplicates" option. | |
2714 | ||
2e52ae68 PP |
2715 | 2015-06-26 Patrick Palka <patrick@parcs.ath.cx> |
2716 | ||
2717 | * tui/tui-win.c (focus_completer): New static function. | |
2718 | (_initialize_tui_win): Set the completion function of the | |
2719 | "focus" command to focus_completer. | |
2720 | ||
6e22494e JK |
2721 | 2015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
2722 | ||
2723 | * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID | |
2724 | and language_asm.. | |
2725 | * symtab.c (find_function_start_sal): Likewise. | |
2726 | ||
f8773be1 GB |
2727 | 2015-06-25 Gary Benson <gbenson@redhat.com> |
2728 | ||
2729 | * solib.c (solib_find_1): Set local variable sysroot to NULL if | |
2730 | it is the empty string after trailing slashes have been stripped. | |
2731 | ||
a3be80c3 GB |
2732 | 2015-06-25 Gary Benson <gbenson@redhat.com> |
2733 | ||
2734 | * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check. | |
2735 | * infrun.c (follow_exec): Likewise. | |
2736 | * remote.c (remote_filesystem_is_local): Likewise. | |
2737 | * solib.c (solib_find_1): Likewise. | |
2738 | ||
32fad71f KS |
2739 | 2015-06-24 Keith Seitz <keiths@redhat.com> |
2740 | ||
2741 | * build-id.c (build_id_to_debug_bfd): Add cleanup to free | |
2742 | return value from lrealpath. | |
2743 | ||
87d1b309 MF |
2744 | 2015-06-24 Mike Frysinger <vapier@gentoo.org> |
2745 | ||
2746 | * remote-sim.c (gdbsim_open): Move sysroot update to the top. | |
2747 | ||
23bf70af MF |
2748 | 2015-06-24 Mike Frysinger <vapier@gentoo.org> |
2749 | ||
2750 | * remote-sim.c: Include gdb_bfd.h. | |
2751 | (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot. | |
2752 | Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active. | |
2753 | ||
5cd867b4 YQ |
2754 | 2015-06-24 Yao Qi <yao.qi@linaro.org> |
2755 | ||
2756 | * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call | |
2757 | set_gdbarch_get_siginfo_type. | |
2758 | * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise. | |
2759 | * arm-linux-tdep.c (arm_linux_init_abi): Likewise. | |
2760 | * i386-linux-tdep.c (i386_linux_init_abi): Likewise. | |
2761 | * m68klinux-tdep.c (m68k_linux_init_abi): Likewise. | |
2762 | * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise. | |
2763 | * s390-linux-tdep.c (s390_gdbarch_init): Likewise. | |
2764 | * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise. | |
2765 | * linux-tdep.c (linux_get_siginfo_type): Change it to static. | |
2766 | (linux_init_abi): Call set_gdbarch_get_siginfo_type. | |
2767 | * linux-tdep.h (linux_get_siginfo_type): Remove the declaration. | |
2768 | ||
dc06243f GB |
2769 | 2015-06-24 Gary Benson <gbenson@redhat.com> |
2770 | ||
2771 | * common/buffer.c (stdint.h): Do not include. | |
2772 | * common/print-utils.c (stdint.h): Likewise. | |
2773 | * compile/compile-c-symbols.c (gdb_assert.h): Likewise. | |
2774 | * compile/compile-c-types.c (gdb_assert.h): Likewise. | |
2775 | * ft32-tdep.c (gdb_assert.h): Likewise. | |
2776 | * guile/scm-utils.c (stdint.h): Likewise. | |
2777 | * i386-linux-tdep.c (stdint.h): Likewise. | |
2778 | * i386-tdep.c (stdint.h): Likewise. | |
2779 | * nat/linux-btrace.c (stdint.h): Likewise. | |
2780 | * nat/linux-btrace.h (stdint.h): Likewise. | |
2781 | * nat/linux-ptrace.c (stdint.h): Likewise. | |
2782 | * nat/mips-linux-watch.h (stdint.h): Likewise. | |
2783 | * ppc-linux-nat.c (stdint.h): Likewise. | |
2784 | * python/python-internal.h (stdint.h): Likewise. | |
2785 | * stub-termcap.c (stdlib.h): Likewise. | |
2786 | * target/target.h (stdint.h): Likewise. | |
2787 | * xtensa-linux-nat.c (stdint.h): Likewise. | |
2788 | ||
0fc26caf PP |
2789 | 2015-06-23 Patrick Palka <patrick@parcs.ath.cx> |
2790 | ||
2791 | * top.c (init_history): Look at errno after calling strtol to | |
2792 | properly map large GDBHISTSIZE values to infinity. | |
2793 | ||
a38fe4fe DE |
2794 | 2015-06-23 Doug Evans <dje@google.com> |
2795 | ||
2796 | * inferior.h (struct inferior_suspend_state): Delete, unused. | |
2797 | All references deleted. | |
2798 | ||
7564fe45 MF |
2799 | 2015-06-23 Mike Frysinger <vapier@gentoo.org> |
2800 | ||
2801 | * microblaze-tdep.c (microblaze_push_dummy_code): Delete. | |
2802 | (microblaze_push_dummy_call): Likewise. | |
2803 | (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code | |
2804 | and set_gdbarch_push_dummy_call. | |
2805 | ||
0bdb2f78 YQ |
2806 | 2015-06-23 Yao Qi <yao.qi@linaro.org> |
2807 | ||
2808 | * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): | |
2809 | Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly. | |
2810 | (amd64_linux_store_inferior_registers): Likewise. | |
2811 | * arm-linux-nat.c (fetch_fpregister): Likewise. | |
2812 | (fetch_fpregs, store_fpregister): Likewise. | |
2813 | (store_fpregister, store_fpregs): Likewise. | |
2814 | (fetch_register, fetch_regs): Likewise. | |
2815 | (store_register, store_regs): Likewise. | |
2816 | (fetch_vfp_regs, store_vfp_regs): Likewise. | |
2817 | (arm_linux_read_description): Check have_ptrace_getregset is | |
2818 | TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE | |
2819 | or TRIBOOL_FALSE. | |
2820 | * i386-linux-nat.c (fetch_xstateregs): Check | |
2821 | have_ptrace_getregset is not TRIBOOL_TRUE. | |
2822 | (store_xstateregs): Likewise. | |
2823 | * linux-nat.c (have_ptrace_getregset): Change its type to | |
2824 | enum tribool. | |
2825 | * linux-nat.h (tribool): New enum. | |
2826 | * x86-linux-nat.c (x86_linux_read_description): Use enum tribool. | |
2827 | Check whether have_ptrace_getregset is TRIBOOL_TRUE. | |
2828 | ||
18a94d75 DE |
2829 | 2015-06-19 Doug Evans <dje@google.com> |
2830 | ||
2831 | * NEWS: Mention Sun's version of stabs is no longer supported. | |
2832 | * elfread.c (free_elfinfo): Delete. All uses updated. | |
2833 | (elfstab_offset_sections): Delete. All uses updated. | |
2834 | * gdb-stabs.h (stab_section_info): Delete. All uses updated. | |
2835 | * psympriv.h (partial_symtab) <section_offsets>: Delete. | |
2836 | All uses updated. | |
2837 | * psymtab.c (start_psymtab_common): Delete arg section_offsets. | |
2838 | All callers updated. | |
2839 | ||
124e13d9 SM |
2840 | 2015-06-18 Simon Marchi <simon.marchi@ericsson.com> |
2841 | ||
2842 | * common/rsp-low.c (needs_escaping): New. | |
2843 | (remote_escape_output): Add unit_size parameter. Refactor to | |
2844 | support multi-byte addressable units. Rename parameters. | |
2845 | * common/rsp-low.h (remote_escape_output): Add unit_size | |
2846 | parameter and rename others. Update doc. | |
2847 | * remote.c (align_for_efficient_write): New. | |
2848 | (remote_write_bytes_aux): Add unit_size parameter and use it. | |
2849 | Rename some variables. Update doc. | |
2850 | (remote_xfer_partial): Get unit size and use it. | |
2851 | (remote_read_bytes_1): Add unit_size parameter and use it. | |
2852 | Rename some variables. Update doc. | |
2853 | (remote_write_bytes): Same. | |
2854 | (remote_xfer_live_readonly_partial): Same. | |
2855 | (remote_read_bytes): Same. | |
2856 | (remote_flash_write): Update call to remote_write_bytes_aux. | |
2857 | (remote_write_qxfer): Update call to remote_escape_output. | |
2858 | (remote_search_memory): Same. | |
2859 | (remote_hostio_pwrite): Same. | |
2860 | ||
6ae88661 LM |
2861 | 2015-06-17 Luis Machado <lgustavo@codesourcery.com> |
2862 | ||
2863 | * breakpoint.c (add_location_to_breakpoint): Don't mark permanent | |
2864 | locations as inserted. | |
2865 | Update and expand comment about permanent locations. | |
2866 | (bp_loc_is_permanent): Don't return 0 for bp_call_dummy. | |
2867 | Move comment to add_location_to_breakpoint. | |
2868 | (update_global_location_list): Don't error out if a permanent | |
2869 | breakpoint is not marked inserted. | |
2870 | Don't error out if a non-permanent breakpoint location is inserted on | |
2871 | top of a permanent breakpoint. | |
2872 | ||
da4616f6 LM |
2873 | 2015-06-17 Luis Machado <lgustavo@codesourcery.com> |
2874 | ||
2875 | * breakpoint.c (make_breakpoint_permanent): Remove unused | |
2876 | function. | |
2877 | * breakpoint.h (make_breakpoint_permanent): Remove declaration. | |
2878 | ||
bc460514 PP |
2879 | 2015-06-17 Patrick Palka <patrick@parcs.ath.cx> |
2880 | ||
2881 | PR gdb/16999 | |
2882 | * NEWS: Mention new GDBHISTSIZE behavior. | |
2883 | * top.c (init_history): For null or out-of-range GDBHISTSIZE, | |
2884 | set history size to unlimited. Ignore non-numeric GDBHISTSIZE. | |
2885 | ||
b58c513b PP |
2886 | 2015-06-17 Patrick Palka <patrick@parcs.ath.cx> |
2887 | ||
2888 | * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE. | |
2889 | * top.c (init_history): Read from GDBHISTSIZE instead of | |
2890 | HISTSIZE. | |
2891 | (init_main): Refer to GDBHISTSIZE instead of HISTSIZE. | |
2892 | ||
2093d2d3 PP |
2893 | 2015-06-17 Patrick Palka <patrick@parcs.ath.cx> |
2894 | ||
2895 | * top.c (gdb_safe_append_history): Do not call | |
2896 | history_truncate_file if the history is not stifled. | |
2897 | ||
fc248485 AA |
2898 | 2015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com> |
2899 | ||
2900 | * syscalls/s390-linux.xml: Add syscalls 344 through 354. | |
2901 | * syscalls/s390x-linux.xml: Likewise. | |
2902 | ||
4da680ad ME |
2903 | 2015-06-16 Michael Eager <eager@eagercon.com> |
2904 | ||
2905 | * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined. | |
2906 | ||
0a75489f PP |
2907 | 2015-06-16 Patrick Palka <patrick@parcs.ath.cx> |
2908 | ||
2909 | * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call | |
2910 | target_terminal_ours_for_output() before calling | |
2911 | tui_show_frame_info(), and restore the original terminal | |
2912 | settings afterwards. | |
2913 | ||
95855ca8 MS |
2914 | 2015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch) |
2915 | ||
2916 | * arm-linux-nat.c: Include nat/linux-ptrace.h. | |
2917 | ||
cfc32360 SM |
2918 | 2015-06-15 Simon Marchi <simon.marchi@ericsson.com> |
2919 | ||
2920 | * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable | |
2921 | memory unit size. | |
2922 | (mi_cmd_data_write_memory_bytes): Same. | |
2923 | ||
cb6f16cf SM |
2924 | 2015-06-15 Simon Marchi <simon.marchi@ericsson.com> |
2925 | ||
2926 | * corefile.c (write_memory): Update doc. | |
2927 | * gdbcore.h (write_memory): Same. | |
2928 | ||
31b7833d JK |
2929 | 2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com> |
2930 | ||
2931 | * linux-tdep.c (enum filterflags): Make it from anonymous enum. | |
2932 | (dump_mapping_p): Use it for parameter filterflags. | |
2933 | (linux_find_memory_regions_full): Use it for variable filterflags. | |
2934 | ||
909c2cda JK |
2935 | 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com |
2936 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
2937 | ||
2938 | Merge multiple hex conversions. | |
2939 | * monitor.c: Include rsp-low.h. | |
2940 | (fromhex): Remove definition. | |
2941 | ||
03aef70f JK |
2942 | 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com |
2943 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
2944 | ||
2945 | Move utility functions to common/. | |
2946 | * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const): | |
2947 | Move defs to common/common-utils.c. | |
2948 | * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space) | |
2949 | (skip_to_space_const): Move decls to common/common-utils.h. | |
2950 | * common/common-defs.h: Move include of common-types.h before | |
2951 | common-utils.h. | |
2952 | * common/common-utils.c: Include host-defs.h and ctype.h. | |
2953 | (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move | |
2954 | from utils.c. | |
2955 | (skip_spaces, skip_spaces_const, skip_to_space_const): Move from | |
2956 | cli/cli-utils.c. | |
2957 | * common/common-utils.h (strtoulst): Move decl from utils.h. | |
2958 | (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const): | |
2959 | Move from cli/cli-utils.h. | |
2960 | * common/host-defs.h: Include limits.h. | |
2961 | (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h. | |
2962 | (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h. | |
2963 | * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to | |
2964 | common/common-utils.h. | |
2965 | * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int) | |
2966 | (strtoulst): Move to common/common-utils.c. | |
2967 | * utils.h (strtoulst): Moved decl to common/common-utils.h. | |
2968 | ||
d1168cc1 YQ |
2969 | 2015-06-15 Yao Qi <yao.qi@linaro.org> |
2970 | ||
2971 | * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml. | |
2972 | ||
c74f7d1c JT |
2973 | 2015-06-10 Jon Turney <jon.turney@dronecode.org.uk> |
2974 | ||
2975 | * build-id.c: Don't include elf-bfd.h. | |
2976 | (build_id_bfd_get): Use bfd_build_id. | |
2977 | (build_id_verify): Ditto. | |
2978 | * build-id.h: Ditto. | |
2979 | (find_separate_debug_file_by_buildid): Ditto. | |
2980 | * python/py-objfile.c: Don't include elf-bfd.h. | |
2981 | (objfpy_get_build_id) Use bfd_build_id. | |
2982 | (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto. | |
2983 | * coffread.c: Include build-id.h. | |
2984 | (coff_symfile_read): Try find_separate_debug_file_by_buildid. | |
2985 | ||
f20c58f5 JT |
2986 | 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk> |
2987 | ||
2988 | * windows-nat.c (do_windows_fetch_inferior_registers) | |
2989 | (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE | |
2990 | conditional with __CYGWIN__. | |
2991 | ||
51f0e40d AB |
2992 | 2015-06-13 Andrew Burgess <andrew.burgess@embecosm.com> |
2993 | ||
2994 | * completer.c: Add arch-utils.h include. | |
2995 | (enum reg_completer_targets): New enum. | |
2996 | (reg_or_group_completer_1): New function containing old | |
2997 | reg_or_group_completer, add and use new parameter to control what | |
2998 | is completed on. Use get_current_arch rather than architecture of | |
2999 | currently selected frame. | |
3000 | (reg_or_group_completer): Call new reg_or_group_completer_1. | |
3001 | (reggroup_completer): Call new reg_or_group_completer_1. | |
3002 | * completer.h (reggroup_completer): Add declaration. | |
3003 | * tui/tui-regs.c: Add 'completer.h' include. | |
3004 | (tui_reg_next_command): Renamed to... | |
3005 | (tui_reg_next): ...this. Adjust parameters and return rather than | |
3006 | display new group. | |
3007 | (tui_reg_prev_command): Renamed to... | |
3008 | (tui_reg_prev): ...this. Adjust parameters and return rather than | |
3009 | display new group. | |
3010 | (tui_reg_float_command): Delete. | |
3011 | (tui_reg_general_command): Delete. | |
3012 | (tui_reg_system_command): Delete. | |
3013 | (tui_reg_command): Rewrite to perform switching of register group. | |
3014 | Add header comment. | |
3015 | (tuireglist): Remove. | |
3016 | (tui_reggroup_completer): New function. | |
3017 | (_initialize_tui_regs): Remove 'tui reg' sub-commands, update | |
3018 | creation of 'tui reg' command. | |
3019 | * NEWS: Add comment about 'tui reg' changes. | |
3020 | ||
d309493c SM |
3021 | 2015-06-12 Simon Marchi <simon.marchi@ericsson.com> |
3022 | ||
3023 | * target.c (target_read): Consider addressable unit size when | |
3024 | reading from a memory object. | |
3025 | (read_memory_robust): Same. | |
3026 | (read_whatever_is_readable): Same. | |
3027 | (target_write_with_progress): Consider addressable unit size | |
3028 | when writing to a memory object. | |
3029 | * target.h (target_read): Update documentation. | |
3030 | (target_write): Add documentation. | |
3031 | ||
3374165f SM |
3032 | 2015-06-12 Simon Marchi <simon.marchi@ericsson.com> |
3033 | ||
3034 | * arch-utils.h (default_addressable_memory_unit_size): New. | |
3035 | * arch-utils.c (default_addressable_memory_unit_size): New. | |
3036 | * gdbarch.sh (addressable_memory_unit_size): New. | |
3037 | * gdbarch.h: Re-generate. | |
3038 | * gdbarch.c: Re-generate. | |
3039 | ||
279a6fed SM |
3040 | 2015-06-12 Simon Marchi <simon.marchi@ericsson.com> |
3041 | ||
3042 | * target.c (target_read): Rename variables and use | |
3043 | TARGET_XFER_E_IO. | |
3044 | (target_read_with_progress): Same. | |
3045 | (read_memory_robust): Constify parameters and rename | |
3046 | variables. | |
3047 | (read_whatever_is_readable): Constify parameters, | |
3048 | rename variables, adjust formatting. | |
3049 | * target.h (read_memory_robust): Constify parameters. | |
3050 | ||
1e5338b6 | 3051 | 2015-06-12 Ulrich Weigand <uweigand@de.ibm.com> |
a1da2672 UW |
3052 | |
3053 | * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short | |
3054 | synthetic (non-AltiVec) vector types. | |
3055 | (ppc64_sysv_abi_return_value): Likewise. | |
3056 | ||
98aa42ee AT |
3057 | 2015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com> |
3058 | ||
3059 | PR breakpoints/16465 | |
3060 | * breakpoint.c (create_breakpoint): Save extra_string for | |
3061 | pending breakpoints. | |
3062 | ||
966f0aef WT |
3063 | 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com> |
3064 | ||
3065 | * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask | |
3066 | and bt_mask to CORE_ADDR. | |
3067 | ||
6449ed0d GB |
3068 | 2015-06-11 Gary Benson <gbenson@redhat.com> |
3069 | ||
3070 | * nat/linux-namespaces.c (mnsh_send_message): Use pulongest. | |
3071 | (mnsh_recv_message): Likewise. | |
3072 | ||
34f8ac9f WT |
3073 | 2015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com> |
3074 | ||
3075 | * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of | |
3076 | long long int and plongest instead of %ll. | |
3077 | ||
198c808c GB |
3078 | 2015-06-11 Gary Benson <gbenson@redhat.com> |
3079 | ||
3080 | * nat/linux-namespaces.c (gdb_wait.h): New include. | |
3081 | (sys/wait.h): Do not include. | |
3082 | ||
e815d2d2 SM |
3083 | 2015-06-10 Simon Marchi <simon.marchi@ericsson.com> |
3084 | ||
3085 | * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if | |
3086 | end_sequence is true. | |
3087 | ||
8847cac2 JK |
3088 | 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com> |
3089 | ||
3090 | Code cleanup. | |
3091 | * solib-target.c (library_list_start_list): Use explicit NULL | |
3092 | comparison. | |
3093 | ||
24c05f46 JK |
3094 | 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com> |
3095 | ||
3096 | * solib-target.c (library_list_start_list): Do not dereference | |
3097 | variable version in its initialization. Make the VERSION check handle | |
3098 | NULL. | |
3099 | (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL. | |
3100 | ||
51aad7cc GB |
3101 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3102 | ||
3103 | * NEWS: Announce support for direct access of executable and | |
3104 | shared library files when attaching to inferiors in containers | |
3105 | on GNU/Linux systems. | |
3106 | ||
15a201c8 GB |
3107 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3108 | ||
3109 | * remote.c (struct remote_state) <fs_pid>: New field. | |
3110 | (new_remote_state): Initialize the above. | |
3111 | (PACKET_vFile_setfs): New enum value. | |
3112 | (remote_hostio_set_filesystem): New function. | |
3113 | (remote_hostio_open): Call the above. | |
3114 | (remote_hostio_unlink): Likewise. | |
3115 | (remote_hostio_readlink): Likewise. | |
3116 | (_initialize_remote): Register new "set/show remote | |
3117 | hostio-setfs-packet" command. | |
3118 | * NEWS: Announce new vFile:setfs packet. | |
3119 | ||
7a6a1731 GB |
3120 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3121 | ||
3122 | * linux-nat.c (nat/linux-namespaces.h): New include. | |
3123 | (fileio.h): Likewise. | |
3124 | (linux_nat_filesystem_is_local): New function. | |
3125 | (linux_nat_fileio_pid_of): Likewise. | |
3126 | (linux_nat_fileio_open): Likewise. | |
3127 | (linux_nat_fileio_readlink): Likewise. | |
3128 | (linux_nat_fileio_unlink): Likewise. | |
3129 | (linux_nat_add_target): Initialize to_filesystem_is_local, | |
3130 | to_fileio_open, to_fileio_readlink and to_fileio_unlink. | |
3131 | (_initialize_linux_nat): New "set/show debug linux-namespaces" | |
3132 | commands. | |
3133 | * NEWS: Mention new "set/show debug linux-namespaces" commands. | |
3134 | ||
07c138c8 GB |
3135 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3136 | ||
3137 | * target.h (struct inferior): New forward declaration. | |
3138 | (struct target_ops) <to_filesystem_is_local>: Update comment. | |
3139 | (struct target_ops) <to_fileio_open>: New argument inf. | |
3140 | Update comment. All implementations updated. | |
3141 | (struct target_ops) <to_fileio_unlink>: Likewise. | |
3142 | (struct target_ops) <to_fileio_readlink>: Likewise. | |
3143 | (target_filesystem_is_local): Update comment. | |
3144 | (target_fileio_open): New argument inf. Update comment. | |
3145 | (target_fileio_unlink): Likewise. | |
3146 | (target_fileio_readlink): Likewise. | |
3147 | (target_fileio_read_alloc): Likewise. | |
3148 | (target_fileio_read_stralloc): Likewise. | |
3149 | * target.c (target_fileio_open): New argument inf. | |
3150 | Pass inf to implementation. Update debug printing. | |
3151 | (target_fileio_unlink): Likewise. | |
3152 | (target_fileio_readlink): Likewise. | |
3153 | (target_fileio_read_alloc_1): New argument inf. Pass inf | |
3154 | to target_fileio_open. | |
3155 | (target_fileio_read_alloc): New argument inf. Pass inf to | |
3156 | target_fileio_read_alloc_1. | |
3157 | (target_fileio_read_stralloc): Likewise. | |
3158 | * gdb_bfd.c (inferior.h): New include. | |
3159 | (gdb_bfd_iovec_fileio_open): Replace unused "open_closure" | |
3160 | argument with new argument "inferior". Pass inferior to | |
3161 | target_fileio_open. | |
3162 | (gdb_bfd_open): Supply inferior argument to | |
3163 | gdb_bfd_iovec_fileio_open. | |
3164 | * linux-tdep.c (linux_info_proc): Supply inf argument to | |
3165 | relevant target_fileio calls. | |
3166 | (linux_find_memory_regions_full): Likewise. | |
3167 | (linux_fill_prpsinfo): Likewise. | |
3168 | * remote.c (remote_filesystem_is_local): Supply inf | |
3169 | argument to remote_hostio_open. | |
3170 | (remote_file_put): Likewise. | |
3171 | (remote_file_get): Likewise. | |
3172 | (remote_file_delete): Supply inf argument to | |
3173 | remote_hostio_unlink. | |
3174 | ||
12e2a5fd GB |
3175 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3176 | ||
3177 | * inf-child.c (inf_child_fileio_open): Replace comment. | |
3178 | (inf_child_fileio_pwrite): Likewise. | |
3179 | (inf_child_fileio_pread): Likewise. | |
3180 | (inf_child_fileio_fstat): Insert blank line before comment. | |
3181 | (inf_child_fileio_close): Replace comment. | |
3182 | (inf_child_fileio_unlink): Likewise. | |
3183 | (inf_child_fileio_readlink): Likewise. | |
3184 | * remote.c (remote_hostio_open): Likewise. | |
3185 | (remote_hostio_pread): Likewise. | |
3186 | (remote_hostio_pwrite): Likewise. | |
3187 | (remote_hostio_close): Likewise. | |
3188 | (remote_hostio_unlink): Likewise. | |
3189 | (remote_hostio_readlink): Likewise. | |
3190 | (remote_hostio_fstat): Likewise. | |
3191 | (remote_filesystem_is_local): Likewise. | |
3192 | * target.c (target_fileio_open): Likewise. | |
3193 | (target_fileio_pwrite): Likewise. | |
3194 | (target_fileio_pread): Likewise. | |
3195 | (target_fileio_fstat): Insert blank line before comment. | |
3196 | (target_fileio_close): Replace comment. | |
3197 | (target_fileio_unlink): Likewise. | |
3198 | (target_fileio_readlink): Likewise. | |
3199 | (target_fileio_read_alloc): Likewise. | |
3200 | (target_fileio_read_stralloc): Likewise. | |
3201 | ||
9bc3a976 GB |
3202 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3203 | ||
3204 | * linux-thread-db.c (nat/linux-namespaces.h): New include. | |
3205 | (check_pid_namespace_match): Use linux_ns_same rather than | |
3206 | linux_proc_pid_get_ns to spot PID namespace mismatches. | |
3207 | * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove. | |
3208 | * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise. | |
3209 | ||
4b8b5e72 GB |
3210 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3211 | ||
3212 | * configure.ac (AC_CHECK_FUNCS): Add setns. | |
3213 | * config.in: Regenerate. | |
3214 | * configure: Likewise. | |
3215 | * nat/linux-namespaces.h: New file. | |
3216 | * nat/linux-namespaces.c: Likewise. | |
3217 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h. | |
3218 | (linux-namespaces.o): New rule. | |
3219 | * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o. | |
3220 | * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise. | |
3221 | * config/arm/linux.mh (NATDEPFILES): Likewise. | |
3222 | * config/i386/linux.mh (NATDEPFILES): Likewise. | |
3223 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
3224 | * config/ia64/linux.mh (NATDEPFILES): Likewise. | |
3225 | * config/m32r/linux.mh (NATDEPFILES): Likewise. | |
3226 | * config/m68k/linux.mh (NATDEPFILES): Likewise. | |
3227 | * config/mips/linux.mh (NATDEPFILES): Likewise. | |
3228 | * config/pa/linux.mh (NATDEPFILES): Likewise. | |
3229 | * config/powerpc/linux.mh (NATDEPFILES): Likewise. | |
3230 | * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise. | |
3231 | * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise. | |
3232 | * config/s390/linux.mh (NATDEPFILES): Likewise. | |
3233 | * config/sparc/linux.mh (NATDEPFILES): Likewise. | |
3234 | * config/sparc/linux64.mh (NATDEPFILES): Likewise. | |
3235 | * config/tilegx/linux.mh (NATDEPFILES): Likewise. | |
3236 | * config/xtensa/linux.mh (NATDEPFILES): Likewise. | |
3237 | ||
ca095836 GB |
3238 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
3239 | ||
3240 | * utils.h (make_cleanup_close): Moved to common/filestuff.h. | |
3241 | * utils.c (do_close_cleanup): Moved to common/filestuff.c. | |
3242 | (make_cleanup_close): Likewise. | |
3243 | * common/filestuff.h (make_cleanup_close): Moved from utils.h. | |
3244 | * common/filestuff.c (do_close_cleanup): Moved from utils.c. | |
3245 | (make_cleanup_close): Likewise. | |
3246 | ||
5d9c55d3 JT |
3247 | 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk> |
3248 | ||
3249 | * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE | |
3250 | from SuspendThread(). | |
3251 | ||
040ea00b JT |
3252 | 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk> |
3253 | ||
3254 | * windows-nat.c (handle_output_debug_string): Trim trailing '\n' | |
3255 | from OutputDebugString. | |
3256 | ||
7d73c23c WT |
3257 | 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com> |
3258 | Mircea Gherzan <mircea.gherzan@intel.com> | |
3259 | ||
3260 | * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32, | |
3261 | MPX_BT_MASK_32): New macros. | |
3262 | (i386_mpx_set_bounds): New function that implements | |
3263 | the command "set-mpx-bound". | |
3264 | (i386_mpx_enabled): Helper function to test MPX availability. | |
3265 | (i386_mpx_bd_base): Helper function to calculate the base directory | |
3266 | address. | |
3267 | (i386_mpx_get_bt_entry): Helper function to access a bound | |
3268 | table entry. | |
3269 | (i386_mpx_print_bounds): Effectively display bound information. | |
3270 | (_initialize_i386_tdep): Add new commands to commands "set mpx" and | |
3271 | "show mpx". | |
3272 | (_initialize_i386_tdep): | |
3273 | Add "bound" to the commands "show mpx" and "set mpx" commands. | |
3274 | (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx" | |
3275 | and "show mpx" commands. | |
3276 | * NEWS: List new commands for MPX support. | |
3277 | ||
3ac2e371 GB |
3278 | 2015-06-09 Gary Benson <gbenson@redhat.com> |
3279 | ||
3280 | * common/fileio.h (fileio_to_host_mode): New declaration. | |
3281 | * common/fileio.c (fileio_to_host_mode): New Function. | |
3282 | * inf-child.c (inf_child_fileio_open): Process mode argument | |
3283 | with fileio_to_host_mode. | |
3284 | ||
ecef18c5 GB |
3285 | 2015-06-09 Gary Benson <gbenson@redhat.com> |
3286 | ||
3287 | * common/fileio.c (fileio_mode_pack): Fix preprocessor | |
3288 | conditional. | |
3289 | ||
e3dd7556 GB |
3290 | 2015-06-05 Gary Benson <gbenson@redhat.com> |
3291 | ||
3292 | * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to... | |
3293 | * remote.c (remote_filesystem_is_local): ...here. | |
3294 | ||
5b74bf7d YQ |
3295 | 2015-06-04 Yao Qi <yao.qi@linaro.org> |
3296 | ||
3297 | * gdbarch.c: Regenerate it. | |
3298 | ||
7f361056 JK |
3299 | 2015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com> |
3300 | ||
3301 | * arch-utils.c (default_infcall_munmap): New. | |
3302 | * arch-utils.h (default_infcall_munmap): New declaration. | |
3303 | * compile/compile-object-load.c (struct munmap_list, munmap_list_add) | |
3304 | (munmap_list_free, munmap_listp_free_cleanup): New. | |
3305 | (struct setup_sections_data): Add field munmap_list_headp. | |
3306 | (setup_sections): Call munmap_list_add. | |
3307 | (compile_object_load): New variable munmap_list_head, initialize | |
3308 | setup_sections_data.munmap_list_headp, return munmap_list_head. | |
3309 | * compile/compile-object-load.h (struct munmap_list): New declaration. | |
3310 | (struct compile_module): Add field munmap_list_head. | |
3311 | (munmap_list_free): New declaration. | |
3312 | * compile/compile-object-run.c (struct do_module_cleanup): Add field | |
3313 | munmap_list_head. | |
3314 | (do_module_cleanup): Call munmap_list_free. | |
3315 | (compile_object_run): Pass munmap_list_head to do_module_cleanup. | |
3316 | * gdbarch.c: Regenerate. | |
3317 | * gdbarch.h: Regenerate. | |
3318 | * gdbarch.sh (infcall_munmap): New. | |
3319 | * linux-tdep.c (linux_infcall_munmap): New. | |
3320 | (linux_init_abi): Install it. | |
3321 | ||
3b462ec2 SM |
3322 | 2015-06-02 Simon Marchi <simon.marchi@ericsson.com> |
3323 | ||
3324 | PR gdb/15564 | |
3325 | * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0. | |
3326 | ||
8d683210 YQ |
3327 | 2015-06-02 Yao Qi <yao.qi@linaro.org> |
3328 | ||
3329 | * i386-linux-nat.c: Include linux-nat.h. | |
3330 | ||
e0619de6 JK |
3331 | 2015-06-01 Andreas Schwab <schwab@linux-m68k.org> |
3332 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
3333 | ||
3334 | PR symtab/18392 | |
3335 | * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct | |
3336 | assertion. | |
3337 | * dwarf2loc.c (chain_candidate): Likewise. | |
3338 | ||
bd16da51 YQ |
3339 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
3340 | ||
3341 | * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET. | |
3342 | (store_vfp_regs): Use PTRACE_SETREGSET. | |
3343 | ||
df9d7ec9 YQ |
3344 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
3345 | ||
3346 | * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET. | |
3347 | (fetch_fpregs): Likewise. | |
3348 | * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET. | |
3349 | (store_fpregs): Likewise. | |
3350 | ||
10766686 YQ |
3351 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
3352 | ||
3353 | * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET. | |
3354 | (fetch_regs): Likewise. | |
3355 | (store_regs): Use PTRACE_SETREGSET. | |
3356 | (store_register): Likewise. | |
3357 | ||
7efe48d1 YQ |
3358 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
3359 | ||
3360 | * arm-linux-nat.c (arm_linux_read_description): Check whether | |
3361 | kernel supports PTRACE_GETREGSET. | |
3362 | ||
433bbbf8 YQ |
3363 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
3364 | ||
3365 | * x86-linux-nat.c (have_ptrace_getregset): Move it to ... | |
3366 | * linux-nat.c: ... here. | |
3367 | * x86-linux-nat.h (have_ptrace_getregset): Move the declaration | |
3368 | to ... | |
3369 | * linux-nat.h: ... here. | |
3370 | ||
ca9b78ce YQ |
3371 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
3372 | ||
3373 | * amd64-linux-nat.c: Include "nat/linux-ptrace.h". | |
3374 | * i386-linux-nat.c: Likewise. | |
3375 | * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define. | |
3376 | * s390-linux-nat.c: Include "nat/linux-ptrace.h". | |
3377 | (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove. | |
3378 | * x86-linux-nat.c: Include "nat/linux-ptrace.h". | |
3379 | * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove. | |
3380 | ||
99cee7b7 EZ |
3381 | 2015-05-30 Eli Zaretskii <eliz@gnu.org> |
3382 | ||
3383 | * go32-nat.c (go32_xfer_memory): Fix the return value to be | |
3384 | compatible to what read_child and write_child return. This | |
3385 | unbreaks that DJGPP build of GDB which was broken since v7.7. | |
3386 | ||
2147f5bd MG |
3387 | 2015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com> |
3388 | ||
3389 | * MAINTAINERS (Write After Approval): Add Martin Galvan. | |
3390 | ||
c8f6c93c RM |
3391 | 2015-05-29 Roland McGrath <mcgrathr@google.com> |
3392 | ||
3393 | PR gdb/18464 | |
3394 | * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning | |
3395 | rather than internal_error for an unrecognized value. | |
3396 | ||
8c6a948d MF |
3397 | 2015-05-29 Max Filippov <jcmvbkbc@gmail.com> |
3398 | ||
3399 | * xtensa-tdep.c (xtensa_pseudo_register_read) | |
3400 | (xtensa_pseudo_register_write): Don't alias last pseudo register | |
3401 | to a1. | |
3402 | ||
8dd06f7a DB |
3403 | 2015-05-28 Don Breazeal <donb@codesourcery.com> |
3404 | ||
3405 | * infrun.c (follow_fork_inferior): Ensure the use of | |
3406 | process-style ptids (pid,0,0) in verbose/debug "Detaching" | |
3407 | messages. | |
3408 | ||
a051152b DE |
3409 | 2015-05-28 Doug Evans <dje@google.com> |
3410 | ||
3411 | * dwarf2read.c (record_line_ftype): Remove, duplicate. | |
3412 | ||
a56cc1ce YQ |
3413 | 2015-05-28 Yao Qi <yao.qi@linaro.org> |
3414 | ||
3415 | * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove. | |
3416 | (arm_linux_fetch_inferior_registers): Use | |
3417 | tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers. | |
3418 | (arm_linux_store_inferior_registers): Likewise. | |
3419 | (arm_linux_read_description): Don't set | |
3420 | arm_linux_has_wmmx_registers. | |
3421 | * arm-tdep.c (arm_gdbarch_init): Set | |
3422 | tdep->have_wmmx_registers according target descriptions. | |
3423 | * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New | |
3424 | field. | |
3425 | ||
330c6ca9 YQ |
3426 | 2015-05-28 Yao Qi <yao.qi@linaro.org> |
3427 | ||
3428 | * arm-linux-nat.c (arm_linux_vfp_register_count): Remove. | |
3429 | (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep | |
3430 | instead of arm_linux_vfp_register_count. | |
3431 | (store_vfp_regs): Likewise. | |
3432 | (arm_linux_fetch_inferior_registers): Likewise. | |
3433 | (arm_linux_store_inferior_registers): Likewise. | |
3434 | (arm_linux_read_description): Don't set | |
3435 | arm_linux_vfp_register_count. | |
3436 | * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections): | |
3437 | Adjust. | |
3438 | * arm-tdep.c (arm_gdbarch_init): Add assert on | |
3439 | vfp_register_count. | |
3440 | * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename | |
3441 | field to vfp_register_count. All users updated. | |
3442 | ||
d403db27 KH |
3443 | 2015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch) |
3444 | ||
3445 | * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on | |
3446 | ELFOSABI_GNU binaries. | |
3447 | ||
d9b3de22 DE |
3448 | 2015-05-27 Doug Evans <dje@google.com> |
3449 | ||
3450 | * dwarf2read.c (lnp_state_machine): New typedef. | |
3451 | (lnp_reader_state): New typedef. | |
3452 | (dwarf_record_line_1): Renamed from dwarf_record_line. | |
3453 | All callers updated. | |
3454 | (dwarf_record_line): New function. | |
3455 | (init_lnp_state_machine): New function. | |
3456 | (check_line_address): Replace p_record_line parameter with state. | |
3457 | All callers updated. | |
3458 | (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine. | |
3459 | Update to record state in lnp_state_machine. | |
3460 | ||
924c2928 DE |
3461 | 2015-05-27 Doug Evans <dje@google.com> |
3462 | ||
3463 | * dwarf2read.c (record_line_ftype): New typedef. | |
3464 | (check_line_address): New function. | |
3465 | (dwarf_decode_lines_1): Call it. | |
3466 | ||
27e0867f DE |
3467 | 2015-05-27 Doug Evans <dje@google.com> |
3468 | ||
3469 | * NEWS: Mention "set debug dwarf-line". | |
3470 | * dwarf2read.c (dwarf_line_debug): New static global. | |
3471 | (add_include_dir): Add debug dwarf-line support. | |
3472 | (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto. | |
3473 | (_initialize_dwarf2_read): New parameter "debug dwarf-line". | |
3474 | ||
4dcabcc2 DE |
3475 | 2015-05-27 Doug Evans <dje@google.com> |
3476 | ||
3477 | * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain". | |
3478 | All callers updated. | |
3479 | (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto. | |
3480 | * cp-support.h (cp_lookup_nested_symbol): Update. | |
3481 | ||
b2e2f908 DE |
3482 | 2015-05-27 Doug Evans <dje@google.com> |
3483 | ||
3484 | PR symtab/18258 | |
3485 | * block.c (block_find_symbol): New function. | |
3486 | (block_find_non_opaque_type): Ditto. | |
3487 | (block_find_non_opaque_type_preferred): Ditto. | |
3488 | * block.h (block_symbol_matcher_ftype): New typedef. | |
3489 | (block_find_symbol): Declare. | |
3490 | (block_find_non_opaque_type): Ditto. | |
3491 | (block_find_non_opaque_type_preferred): Ditto. | |
3492 | * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol. | |
3493 | * psymtab.c (psym_lookup_symbol): Ditto. | |
3494 | * symtab.c (basic_lookup_transparent_type_1): New function. | |
3495 | (basic_lookup_transparent_type): Call it. | |
3496 | ||
f62fce35 YQ |
3497 | 2015-05-27 Yao Qi <yao.qi@linaro.org> |
3498 | ||
3499 | * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return | |
3500 | AARCH64_RECORD_UNKNOWN for unknown instruction encoding. | |
3501 | ||
5d98d3cd YQ |
3502 | 2015-05-27 Yao Qi <yao.qi@linaro.org> |
3503 | ||
3504 | * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines | |
3505 | before operator &&. | |
3506 | (aarch64_record_load_store): Likewise. | |
3507 | ||
82c7be31 DE |
3508 | 2015-05-26 Doug Evans <dje@google.com> |
3509 | ||
3510 | PR c++/18141, c++/18417. | |
3511 | * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being | |
3512 | a typedef. | |
3513 | ||
b4f54984 DE |
3514 | 2015-05-26 Doug Evans <dje@google.com> |
3515 | ||
3516 | * NEWS: Add entries for command renamings. | |
3517 | * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug. | |
3518 | All uses updated. | |
3519 | (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated. | |
3520 | (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age. | |
3521 | All uses updated. | |
3522 | (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age. | |
3523 | All callers updated. Fix spelling of DWARF in help text. | |
3524 | (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist. | |
3525 | All uses updated. | |
3526 | (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist. | |
3527 | All uses updated. | |
3528 | (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated. | |
3529 | (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated. | |
3530 | (dwarf_always_disassemble): Renamed from dwarf_always_disassemble. | |
3531 | All uses updated. | |
3532 | (show_dwarf_always_disassemble): Renamed from | |
3533 | show_dwarf2_always_disassemble. All callers updated. | |
3534 | (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to | |
3535 | "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to | |
3536 | "set/show dwarf max-cache-age". Rename | |
3537 | "set/show dwarf2 always-disassemble" to | |
3538 | "set/show dwarf always-disassemble". Rename | |
3539 | "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename | |
3540 | "set/show debug dwarf2-die" to "set/show debug dwarf-die". | |
3541 | ||
4ea6efe9 DE |
3542 | 2015-05-26 Doug Evans <dje@google.com> |
3543 | ||
3544 | PR python/18438 | |
3545 | * python/py-lazy-string.c (stpy_convert_to_value): Use | |
3546 | gdbpy_gdb_memory_error not PyExc_MemoryError. | |
3547 | (gdbpy_create_lazy_string_object): Ditto. | |
3548 | ||
b93fd21d AB |
3549 | 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com> |
3550 | ||
3551 | * tui/tui-regs.c (tui_reg_next_command): Compare against NULL. | |
3552 | ||
55b40027 AB |
3553 | 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com> |
3554 | ||
3555 | * tui/tui-regs.c (tui_reg_prev_command): New function. | |
3556 | (_initialize_tui_regs): Add 'prev' command for 'tui reg'. | |
3557 | * reggroups.c (reggroup_prev): New function. | |
3558 | * reggroups.h (reggroup_prev): Add declaration. Update comment. | |
3559 | ||
99afc88b OJ |
3560 | 2015-05-26 Omair Javaid <omair.javaid@linaro.org> |
3561 | Yao Qi <yao.qi@linaro.org> | |
3562 | ||
3563 | * aarch64-linux-tdep.c: Include linux-record.h and | |
3564 | record-full.h. | |
3565 | (struct linux_record_tdep aarch64_linux_record_tdep): Declare. | |
3566 | (aarch64_syscall): New enum. | |
3567 | (aarch64_canonicalize_syscall): New function. | |
3568 | (aarch64_all_but_pc_registers_record): New function. | |
3569 | (aarch64_linux_syscall_record): New function. | |
3570 | (aarch64_linux_init_abi): Install AArch64 process record | |
3571 | handler. Update to handle syscall recording. | |
3572 | * aarch64-tdep.c: Include record.h and record-full.h. | |
3573 | (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros. | |
3574 | (struct aarch64_mem_r): Define. | |
3575 | (aarch64_record_result): New enum. | |
3576 | (struct insn_decode_record): Define. | |
3577 | (insn_decode_record): New typedef. | |
3578 | (aarch64_record_data_proc_reg): New function. | |
3579 | (aarch64_record_data_proc_imm): New function. | |
3580 | (aarch64_record_branch_except_sys): New function. | |
3581 | (aarch64_record_load_store): New function. | |
3582 | (aarch64_record_data_proc_simd_fp): New function. | |
3583 | (aarch64_record_asimd_load_store): New function. | |
3584 | (aarch64_record_decode_insn_handler): New function. | |
3585 | (deallocate_reg_mem): New function. | |
3586 | (aarch64_process_record): New function. | |
3587 | * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>: | |
3588 | New field. | |
3589 | (aarch64_process_record): New extern declaration. | |
3590 | * configure.tgt: Add linux-record.o to gdb_target_obs. | |
3591 | * linux-record.h (struct linux_record_tdep) <arg7>: New field. | |
3592 | ||
c16a3f52 OJ |
3593 | 2015-05-26 Omair Javaid <omair.javaid@linaro.org> |
3594 | ||
3595 | * NEWS: Add a note on process record-replay support on aarch64*-linux* | |
3596 | targets. | |
3597 | ||
c9cf6e20 MG |
3598 | 2015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com> |
3599 | ||
3600 | * amd64-tdep.c: Replace in_function_epilogue_p with | |
3601 | stack_frame_destroyed_p throughout. | |
3602 | * arch-utils.c: Ditto. | |
3603 | * arch-utils.h: Ditto. | |
3604 | * arm-tdep.c: Ditto. | |
3605 | * breakpoint.c: Ditto. | |
3606 | * gdbarch.sh: Ditto. | |
3607 | * hppa-tdep.c: Ditto. | |
3608 | * i386-tdep.c: Ditto. | |
3609 | * mips-tdep.c: Ditto. | |
3610 | * nios2-tdep.c: Ditto. | |
3611 | * rs6000-tdep.c: Ditto. | |
3612 | * s390-linux-tdep.c: Ditto. | |
3613 | * score-tdep.c: Ditto. | |
3614 | * sh-tdep.c: Ditto. | |
3615 | * sparc-tdep.c: Ditto. | |
3616 | * sparc-tdep.h: Ditto. | |
3617 | * sparc64-tdep.c: Ditto. | |
3618 | * spu-tdep.c: Ditto. | |
3619 | * tic6x-tdep.c: Ditto. | |
3620 | * tilegx-tdep.c: Ditto. | |
3621 | * xstormy16-tdep.c: Ditto. | |
3622 | * gdbarch.c, gdbarch.h: Re-generated. | |
3623 | ||
a4ea0946 AB |
3624 | 2015-05-22 Andrew Burgess <andrew.burgess@embecosm.com> |
3625 | ||
3626 | * NEWS: Mention 'tui enable' and 'tui disable'. | |
3627 | * tui/tui.c (tui_enable_command): New function. | |
3628 | (tui_disable_command): New function. | |
3629 | (_initialize_tui): New function. | |
3630 | ||
b75c69bb AB |
3631 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
3632 | ||
3633 | * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0. | |
3634 | ||
c1b009ee AB |
3635 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
3636 | ||
3637 | * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure | |
3638 | buf_ptr is freed. | |
3639 | ||
880d1e40 AB |
3640 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
3641 | ||
3642 | * tui/tui-layout.c (tui_layout_command): Move call to tui_enable | |
3643 | into ... | |
3644 | (tui_set_layout_for_display_command): ...here, before calling | |
3645 | tui_set_layout. Only set the layout if gdb has not already | |
3646 | entered the TUI_FAILURE state. | |
3647 | ||
a0145030 AB |
3648 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
3649 | ||
3650 | * tui/tui-layout.c (layout_completer): New function. | |
3651 | (_initialize_tui_layout): Set completer on layout command. | |
3652 | ||
7bd0be3a AB |
3653 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
3654 | ||
3655 | * tui/tui-layout.c (tui_set_layout): Remove | |
3656 | tui_register_display_type parameter. Remove all checking of this | |
3657 | parameter, and reindent function. Update header comment. | |
3658 | (tui_set_layout_for_display_command): Rename to... | |
3659 | (tui_set_layout_by_name): ...this, and don't check for different | |
3660 | register class types, don't pass a tui_register_display_type to | |
3661 | tui_set_layout. Update header comment. | |
3662 | (layout_names): Remove register set specific names. | |
3663 | * tui/tui-layout.h (tui_set_layout): Remove | |
3664 | tui_register_display_type parameter. | |
3665 | * tui/tui.c (tui_rl_change_windows): Don't pass a | |
3666 | tui_register_display_type to tui_set_layout. | |
3667 | (tui_rl_delete_other_windows): Likewise. | |
3668 | (tui_enable): Likewise. | |
3669 | * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove. | |
3670 | (TUI_FLOAT_REGS_NAME_LOWER): Remove. | |
3671 | (TUI_GENERAL_REGS_NAME): Remove. | |
3672 | (TUI_GENERAL_REGS_NAME_LOWER): Remove. | |
3673 | (TUI_SPECIAL_REGS_NAME): Remove. | |
3674 | (TUI_SPECIAL_REGS_NAME_LOWER): Remove. | |
3675 | (TUI_GENERAL_SPECIAL_REGS_NAME): Remove. | |
3676 | (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove. | |
3677 | (enum tui_register_display_type): Remove. | |
3678 | (struct tui_layout_def): Remove regs_display_type and | |
3679 | float_regs_display_type fields. | |
3680 | (struct tui_data_info): Remove regs_display_type field. | |
3681 | (tui_layout_command): Use new name for | |
3682 | tui_set_layout_for_display_command. | |
3683 | * tui/tui-data.c (layout_def): Don't initialise removed fields. | |
3684 | (tui_clear_win_detail): Don't initialise removed fields of | |
3685 | win_info. | |
3686 | * tui/tui-regs.c (tui_show_registers): Use new name for | |
3687 | tui_set_layout_for_display_command. | |
3688 | * tui/tui.h (tui_set_layout_for_display_command): Rename | |
3689 | declaration to... | |
3690 | (tui_set_layout_by_name): ...this. | |
3691 | * printcmd.c (display_command): Remove tui related layout call, | |
3692 | and reindent. | |
3693 | ||
0b6e5e10 JB |
3694 | 2015-05-20 Joel Brobecker <brobecker@adacore.com> |
3695 | ||
3696 | * infrun.c (handle_inferior_event_1): Renames handle_inferior_event. | |
3697 | (handle_inferior_event): New function. | |
3698 | ||
1da0522e JB |
3699 | 2015-05-20 Joel Brobecker <brobecker@adacore.com> |
3700 | ||
3701 | * ada-lang.c (to_fixed_array_type): Rename local variable | |
3702 | typename into type_name. | |
3703 | ||
5fe75eec JK |
3704 | 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com> |
3705 | ||
3706 | Fix ASAN crash for gdb.compile/compile.exp. | |
3707 | * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME. | |
3708 | ||
a4063588 JK |
3709 | 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com> |
3710 | ||
3711 | * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol) | |
3712 | (gcc_symbol_address): Change gdb_stdout to gdb_stdlog. | |
3713 | * compile/compile-object-load.c (setup_sections, compile_object_load): | |
3714 | Likewise. | |
3715 | * compile/compile.c (compile_to_object): Likewise. | |
3716 | ||
37442ce1 DE |
3717 | 2015-05-16 Doug Evans <xdje42@gmail.com> |
3718 | ||
3719 | * NEWS: Mention support for unbuffered Guile memory ports. | |
3720 | * scm-ports.c (ioscm_memory_port): Update comments on end, size. | |
3721 | (ioscm_lseek_address): Improve overflow calculation. | |
3722 | (gdbscm_memory_port_fill_input): Add assert. | |
3723 | (gdbscm_memory_port_write): Handle unbuffered ports. | |
3724 | Handle large writes identical to Guile's fport_write. | |
3725 | (gdbscm_memory_port_seek): Fix seeking past end check. | |
3726 | (gdbscm_memory_port_close): Handle closing unbuffered port. | |
3727 | (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports. | |
3728 | (ioscm_init_memory_port): Handle unbuffered ports. | |
3729 | (ioscm_reinit_memory_port): Ditto. | |
3730 | (ioscm_init_memory_port): Update size calculation. | |
3731 | (gdbscm_open_memory): Support zero sized ports. | |
3732 | ||
d976bace JK |
3733 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3734 | ||
3735 | * compile/compile-object-load.c (get_out_value_type): Fix uninitialized | |
3736 | variable compiler warnings. | |
3737 | ||
4d18dfad JK |
3738 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3739 | ||
3740 | * compile/compile-object-load.c (get_out_value_type): Fix returned type. | |
3741 | ||
36de76f9 JK |
3742 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3743 | Phil Muldoon <pmuldoon@redhat.com> | |
3744 | ||
3745 | * NEWS (Changes since GDB 7.9): Add compile print. | |
3746 | * compile/compile-c-support.c (add_code_header, add_code_footer) | |
3747 | (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and | |
3748 | COMPILE_I_PRINT_VALUE_SCOPE. | |
3749 | * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE) | |
3750 | (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE): | |
3751 | New. | |
3752 | * compile/compile-object-load.c: Include block.h. | |
3753 | (get_out_value_type): New function. | |
3754 | (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and | |
3755 | COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and | |
3756 | OUT_VALUE_TYPE. | |
3757 | * compile/compile-object-load.h (struct compile_module): Add fields | |
3758 | out_value_addr and out_value_type. | |
3759 | * compile/compile-object-run.c: Include valprint.h and compile.h. | |
3760 | (struct do_module_cleanup): Add fields out_value_addr and | |
3761 | out_value_type. | |
3762 | (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and | |
3763 | COMPILE_I_PRINT_VALUE_SCOPE. | |
3764 | (compile_object_run): Propagate out_value_addr and out_value_type. | |
3765 | Pass OUT_VALUE_ADDR. | |
3766 | * compile/compile.c: Include valprint.h. | |
3767 | (compile_print_value, compile_print_command): New functions. | |
3768 | (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE. | |
3769 | (_initialize_compile): Update compile code help text. Install | |
3770 | compile_print_command. | |
3771 | * compile/compile.h (compile_print_value): New prototype. | |
3772 | * defs.h (enum compile_i_scope_types): Add | |
3773 | COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE. | |
3774 | ||
83d3415e JK |
3775 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3776 | ||
3777 | * compile/compile-object-load.c (get_regs_type): Add parameter func_sym. | |
3778 | Rely on its parameter count. | |
3779 | (compile_object_load): Replace lookup_minimal_symbol_text by | |
3780 | lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the | |
3781 | return value. | |
3782 | * compile/compile-object-load.h (struct compile_module): Replace | |
3783 | func_addr by func_sym. | |
3784 | * compile/compile-object-run.c: Include block.h. | |
3785 | (compile_object_run): Reset module variable after it is freed. Use | |
3786 | FUNC_SYM instead of FUNC_ADDR. Rely on it. | |
3787 | ||
3a9558c4 JK |
3788 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3789 | ||
3790 | * compile/compile-c-support.c (print_one_macro): Use #ifndef. | |
3791 | (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR. | |
3792 | (c_compute_program): Call generate_register_struct after typedefs. | |
3793 | * compile/compile-loc2c.c (push, pushf_register_address) | |
3794 | (pushf_register): Cast to GCC_UINTPTR. | |
3795 | (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after | |
3796 | type. Use GCC_UINTPTR instead of void *. Remove excessive cast. | |
3797 | (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *. | |
3798 | * compile/compile.c (_initialize_compile): Enable warnings for | |
3799 | COMPILE_ARGS. | |
3800 | ||
5c65b58a JK |
3801 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3802 | ||
3803 | * cli/cli-script.c (execute_control_command): Update | |
3804 | eval_compile_command caller. | |
3805 | * compile/compile-object-load.c (compile_object_load): Add parameters | |
3806 | scope and scope_data. Set them. | |
3807 | * compile/compile-object-load.h (struct compile_module): Add fields | |
3808 | scope and scope_data. | |
3809 | (compile_object_load): Add parameters scope and scope_data. | |
3810 | * compile/compile-object-run.c (struct do_module_cleanup): Add fields | |
3811 | scope and scope_data. | |
3812 | (compile_object_run): Propagate the fields scope and scope_data. | |
3813 | * compile/compile.c (compile_file_command, compile_code_command): | |
3814 | Update eval_compile_command callers. | |
3815 | (eval_compile_command): Add parameter scope_data. Pass it plus scope. | |
3816 | * compile/compile.h (eval_compile_command): Add parameter scope_data. | |
3817 | * defs.h (struct command_line): Add field scope_data. | |
3818 | ||
1c88ceb1 JK |
3819 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3820 | ||
3821 | * printcmd.c (struct format_data): Move it to valprint.h. | |
3822 | (print_command_parse_format, print_value): New functions from ... | |
3823 | (print_command_1): ... here. Call them. | |
3824 | * valprint.h (struct format_data): Move it here from printcmd.c. | |
3825 | (print_command_parse_format, print_value): New declarations. | |
3826 | ||
0b738f27 JK |
3827 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
3828 | ||
3829 | * compile/compile-object-load.c (compile_object_load): Add | |
3830 | COMPILE_DEBUG message. | |
3831 | ||
aa715135 JG |
3832 | 2015-05-15 Jerome Guitton <guitton@adacore.com> |
3833 | ||
3834 | * ada-lang.c (ada_value_ptr_subscript): Use enum position of | |
3835 | index to get element instead of enum value. | |
3836 | (ada_value_slice_from_ptr, ada_value_slice): Use enum position | |
3837 | of index to compute length, but enum values to compute bounds. | |
3838 | (ada_array_length): Use enum position of index instead of enum value. | |
3839 | (pos_atr): Move position computation to... | |
3840 | (ada_evaluate_subexp): Use enum values to compute bounds. | |
3841 | * gdbtypes.c (discrete_position): ...this new function. | |
3842 | * gdbtypes.h (discrete_position): New function declaration. | |
3843 | * valprint.c (val_print_array_elements): Call discrete_position | |
3844 | to handle array indexed by non-contiguous enumeration types. | |
3845 | ||
931e5bc3 JG |
3846 | 2015-05-15 Jerome Guitton <guitton@adacore.com> |
3847 | ||
3848 | * ada-lang.c (find_parallel_type_by_descriptive_type): | |
3849 | Go through typedefs during lookup. | |
3850 | (to_fixed_array_type): Add support for non-bit packed arrays | |
3851 | as variable-length fields. | |
3852 | ||
4e63d0ac PA |
3853 | 2015-05-15 Pedro Alves <palves@redhat.com> |
3854 | Simon Marchi <simon.marchi@ericsson.com> | |
3855 | ||
3856 | * event-loop.c (gdb_notifier) <next_file_handler, | |
3857 | next_poll_fds_index>: New fields. | |
3858 | (get_next_file_handler_to_handle_and_advance): New function. | |
3859 | (delete_file_handler): If deleting the next file handler to | |
3860 | handle, advance to the next file handler. | |
3861 | (gdb_wait_for_event): Bail early if no event fired. Poll file | |
3862 | handlers in round-robin fashion. | |
3863 | ||
52e48b36 PA |
3864 | 2015-05-15 Pedro Alves <palves@redhat.com> |
3865 | ||
3866 | * linux-tdep.c (linux_find_memory_regions_full): Rename local | |
3867 | 'private' to 'priv'. | |
3868 | ||
2465e12e PA |
3869 | 2015-05-15 Pedro Alves <palves@redhat.com> |
3870 | ||
3871 | * nat/linux-nat.h: Include "target/waitstatus.h". | |
3872 | ||
13fa0398 YZ |
3873 | 2015-05-15 Yuanhui Zhang <asmwarrior@gmail.com> |
3874 | ||
3875 | * python/py-unwind.c (struct reg_info): Move out of ... | |
3876 | (struct cached_frame_info): ... this scope. | |
3877 | (pending_frame_object_type, unwind_info_object_type): Make extern. | |
3878 | ||
9cd4d857 JB |
3879 | 2015-05-15 Joel Brobecker <brobecker@adacore.com> |
3880 | ||
3881 | * ada-lang.c (ada_value_primitive_packed_val): Make sure | |
3882 | accumSize is never negative. | |
3883 | ||
e3555239 PP |
3884 | 2015-05-14 Patrick Palka <patrick@parcs.ath.cx> |
3885 | ||
3886 | * tui/tui-command.c: Remove include of <ctype.h>. | |
3887 | (tui_dispatch_ctrl_char): Remove workaround for xterm terminals. | |
3888 | ||
08a76f8a MG |
3889 | 2015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com> |
3890 | ||
3891 | * dwarf2read.c (die_needs_namespace): Return 1 for | |
3892 | DW_TAG_inlined_subroutine. | |
3893 | ||
bd49952b JK |
3894 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
3895 | ||
3896 | * regcache.c (regcache_cpy_no_passthrough): New declaration. | |
3897 | (regcache_cpy_no_passthrough): Make it static, add function comment. | |
3898 | * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment. | |
3899 | (regcache_cpy_no_passthrough): Remove declaration. | |
3900 | ||
46c03469 JK |
3901 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
3902 | ||
3903 | * gdbthread.h (struct thread_control_state): Update comment for | |
3904 | proceed_to_finish. | |
3905 | * infcall.c (run_inferior_call): Update comment about | |
3906 | proceed_to_finish. | |
3907 | * infcmd.c (get_return_value): Update comment about stop_registers. | |
3908 | (finish_forward): Update comment about proceed_to_finish. | |
3909 | * infrun.c (stop_registers): Remove. | |
3910 | (clear_proceed_status, normal_stop): Remove stop_registers handling. | |
3911 | * infrun.h (stop_registers): Remove. | |
3912 | ||
8a6c4031 JK |
3913 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
3914 | ||
3915 | * infcall.c (struct dummy_frame_context_saver) | |
3916 | (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor) | |
3917 | (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup) | |
3918 | (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup): | |
3919 | New. | |
3920 | (call_function_by_hand_dummy): Move discard_cleanups of | |
3921 | inf_status_cleanup before dummy_frame_push. Call | |
3922 | dummy_frame_context_saver_setup and prepare context_saver_cleanup. | |
3923 | Use dummy_frame_context_saver_get_regs instead of stop_registers. | |
3924 | * infcall.h (struct dummy_frame_context_saver) | |
3925 | (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup) | |
3926 | (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup): | |
3927 | New declarations. | |
3928 | * infcmd.c: Include infcall.h. | |
3929 | (get_return_value): Add parameter ctx_saver, use it instead of | |
3930 | stop_registers. | |
3931 | (print_return_value): Add parameter ctx_saver, pass it. | |
3932 | (struct finish_command_continuation_args): Add field ctx_saver. | |
3933 | (finish_command_continuation): Update print_return_value caller. | |
3934 | (finish_command_continuation_free_arg): Free also ctx_saver. | |
3935 | (finish_forward): Call dummy_frame_context_saver_setup. | |
3936 | * inferior.h (struct dummy_frame_context_saver): New declaration. | |
3937 | (get_return_value): Add parameter ctx_saver. | |
3938 | * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update | |
3939 | get_return_value caller. | |
3940 | ||
10989690 JK |
3941 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
3942 | ||
3943 | * dummy-frame.c (struct dummy_frame_dtor_list): New. | |
3944 | (struct dummy_frame): Replace dtor and dtor_data by dtor_list. | |
3945 | (remove_dummy_frame): Process dtor_list. | |
3946 | (pop_dummy_frame): Process dtor_list. | |
3947 | (register_dummy_frame_dtor): Maintain dtor_list. | |
3948 | (find_dummy_frame_dtor): Handle dtor_list. | |
3949 | * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor): | |
3950 | Update comments. | |
3951 | ||
5e970501 JK |
3952 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
3953 | ||
3954 | * compile/compile-object-run.c (do_module_cleanup): Add parameter | |
3955 | registers_valid. | |
3956 | (compile_object_run): Update do_module_cleanup caller. | |
3957 | * dummy-frame.c: Include infcall.h. | |
3958 | (struct dummy_frame): Update dtor comment. | |
3959 | (remove_dummy_frame): Call dtor. | |
3960 | (pop_dummy_frame): Update dtor caller. | |
3961 | * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter | |
3962 | registers_valid. | |
3963 | ||
1c4eb778 JB |
3964 | 2015-05-13 Joel Brobecker <brobecker@adacore.com> |
3965 | ||
3966 | GDB 7.9.1 released. | |
3967 | ||
f5f85ab9 JB |
3968 | 2015-05-13 Joel Brobecker <brobecker@adacore.com> |
3969 | ||
3970 | * NEWS: Create "Changes in GDB 7.9.1" section. Move news about | |
3971 | Xmethods now being able to specify a result type to that new | |
3972 | sectioin. | |
3973 | ||
242cd84c PP |
3974 | 2015-05-13 Patrick Palka <patrick@parcs.ath.cx> |
3975 | ||
3976 | * tui/tui-win.c (tui_async_resize_screen): Clear win_resized | |
3977 | first before resizing the window. | |
e3555239 | 3978 | * tui/tui.c (tui_enable): Likewise. |
242cd84c PP |
3979 | |
3980 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> | |
558e5469 JK |
3981 | |
3982 | * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor. | |
3983 | * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment. | |
3984 | * infcall.c (call_function_by_hand_dummy): Use proper typedef for | |
3985 | dummy_dtor parameter. | |
3986 | * infcall.h: Include dummy-frame.h. | |
3987 | (call_function_by_hand_dummy_dtor_ftype): Remove. | |
3988 | (call_function_by_hand_dummy): Use proper typedef for dummy_dtor | |
3989 | parameter. | |
3990 | ||
ebfd00d2 PP |
3991 | 2015-05-13 Patrick Palka <patrick@parcs.ath.cx> |
3992 | ||
3993 | PR gdb/17820 | |
3994 | * top.c (history_size_setshow_var): Change type to signed. | |
3995 | Initialize to -2. Update documentation. | |
3996 | (set_readline_history_size): Define. | |
3997 | (set_history_size_command): Use it. Remove logic for handling | |
3998 | out-of-range sizes. | |
3999 | (init_history): Use set_readline_history_size(). Test for a | |
4000 | value of -2 instead of 0 when determining whether to set a | |
4001 | default history size. | |
4002 | (init_main): Decode the argument of the "size" command as a | |
4003 | zuinteger_unlimited. | |
4004 | ||
83769d0b DE |
4005 | 2015-05-12 Doug Evans <dje@google.com> |
4006 | ||
4007 | * dwarf2read.c (struct file_entry): Tweak comments. | |
4008 | (get_debug_line_section): Tweak comments. | |
4009 | ||
0d71eef5 DB |
4010 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
4011 | ||
4012 | * NEWS: Announce fork support in the RSP and support | |
4013 | for fork debugging in extended mode. | |
4014 | ||
cbb8991c DB |
4015 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
4016 | ||
4017 | * remote.c (remote_insert_fork_catchpoint): New function. | |
4018 | (remote_remove_fork_catchpoint): New function. | |
4019 | (remote_insert_vfork_catchpoint): New function. | |
4020 | (remote_remove_vfork_catchpoint): New function. | |
4021 | (pending_fork_parent_callback): New function. | |
4022 | (remove_new_fork_child): New function. | |
4023 | (remote_update_thread_list): Call remote_notif_get_pending_events | |
4024 | and remove_new_fork_child. | |
4025 | (extended_remote_kill): Kill fork child when killing the | |
4026 | parent before follow_fork completes. | |
4027 | (init_extended_remote_ops): Initialize target vector with | |
4028 | new fork catchpoint functions. | |
4029 | ||
c269dbdb DB |
4030 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
4031 | ||
4032 | * remote.c (remove_vfork_event_p): New function. | |
4033 | (remote_follow_fork): Add vfork event type to event checking. | |
4034 | (remote_parse_stop_reply): New stop reasons "vfork" and | |
4035 | "vforkdone" for RSP 'T' Stop Reply Packet. | |
4036 | ||
de0d863e DB |
4037 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
4038 | ||
4039 | * linux-nat.c (linux_nat_ptrace_options): New function. | |
4040 | (linux_init_ptrace, wait_lwp, linux_nat_filter_event): | |
4041 | Call linux_nat_ptrace_options and use different argument to | |
4042 | linux_enable_event_reporting. | |
4043 | (_initialize_linux_nat): Delete call to | |
4044 | linux_ptrace_set_additional_flags. | |
c8f6c93c | 4045 | * nat/linux-ptrace.c (current_ptrace_options): Rename to |
de0d863e DB |
4046 | supported_ptrace_options. |
4047 | (additional_flags): Delete variable. | |
4048 | (linux_check_ptrace_features): Use supported_ptrace_options. | |
4049 | (linux_test_for_tracesysgood, linux_test_for_tracefork): | |
4050 | Likewise, and remove additional_flags check. | |
4051 | (linux_enable_event_reporting): Change 'attached' argument to | |
4052 | 'options'. Use supported_ptrace_options. | |
c8f6c93c | 4053 | (ptrace_supports_feature): Change comment. Use |
de0d863e DB |
4054 | supported_ptrace_options. |
4055 | (linux_ptrace_set_additional_flags): Delete function. | |
4056 | * nat/linux-ptrace.h (linux_ptrace_set_additional_flags): | |
4057 | Delete function prototype. | |
4058 | * remote.c (remote_fork_event_p): New function. | |
4059 | (remote_detach_pid): New function. | |
4060 | (remote_detach_1): Call remote_detach_pid, don't mourn inferior | |
4061 | if doing detach-on-fork. | |
4062 | (remote_follow_fork): New function. | |
4063 | (remote_parse_stop_reply): Handle new "T" stop reason "fork". | |
4064 | (remote_pid_to_str): Print "process" strings for pid/0/0 ptids. | |
4065 | (init_extended_remote_ops): Initialize to_follow_fork. | |
4066 | ||
89245bc0 DB |
4067 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
4068 | ||
4069 | * nat/linux-ptrace.c (linux_check_ptrace_features): Change | |
4070 | from static to extern. | |
4071 | * nat/linux-ptrace.h (linux_check_ptrace_features): Declare. | |
4072 | * remote.c (anonymous enum): <PACKET_fork_event_feature, | |
4073 | * PACKET_vfork_event_feature>: New enumeration constants. | |
4074 | (remote_protocol_features): Add table entries for new packets. | |
4075 | (remote_query_supported): Add new feature queries to qSupported | |
4076 | packet. | |
4077 | ||
835205d0 GB |
4078 | 2015-05-12 Gary Benson <gbenson@redhat.com> |
4079 | ||
4080 | * remote.c (remote_add_inferior): Call exec_file_locate_attach | |
4081 | for fake PIDs as well as real ones. | |
4082 | (remote_pid_to_exec_file): Send empty annex if PID is fake. | |
4083 | ||
4c082a81 SC |
4084 | 2015-05-09 Siva Chandra Reddy <sivachandra@google.com> |
4085 | ||
4086 | * NEWS (Python Scripting): Mention the new gdb.Value methods. | |
4087 | * python/py-value.c (valpy_reference_value): New function. | |
4088 | (valpy_const_value): Likewise. | |
4089 | (value_object_methods): Add new methods. | |
4090 | * value.c (make_cv_value): New function. | |
4091 | * value.h (make_cv_value): Declare. | |
4092 | ||
afa6c9ab SL |
4093 | 2015-05-08 Yao Qi <yao@codesourcery.com> |
4094 | Sandra Loosemore <sandra@codesourcery.com> | |
4095 | ||
4096 | * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check | |
4097 | to 'lh->include_dirs' before accessing to it. | |
4098 | (psymtab_include_file_name): Likewise. | |
4099 | (dwarf_decode_lines_1): Likewise. | |
4100 | (dwarf_decode_lines): Likewise. | |
4101 | (file_file_name): Likewise. | |
4102 | ||
35d54293 SL |
4103 | 2015-05-08 Sandra Loosemore <sandra@codesourcery.com> |
4104 | ||
4105 | * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define. | |
4106 | (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define. | |
4107 | (nios2_linux_rt_sigreturn_init): Adjust base address of | |
4108 | register save area. | |
4109 | ||
b73c49b7 SL |
4110 | 2015-05-08 Sandra Loosemore <sandra@codesourcery.com> |
4111 | ||
4112 | * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using | |
4113 | "trap 31" as the breakpoint instruction on all targets. | |
4114 | ||
dd9f02a0 JK |
4115 | 2015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com> |
4116 | ||
4117 | * infcmd.c (print_return_value): Remove unused declaration. | |
4118 | ||
6ad395a7 JB |
4119 | 2015-05-08 Joel Brobecker <brobecker@adacore.com> |
4120 | ||
4121 | * dwarf2read.c (attr_to_dynamic_prop) | |
4122 | <DW_AT_data_member_location>: Use read_type_die isntead of | |
4123 | get_die_type. | |
4124 | ||
8344af1e JB |
4125 | 2015-05-08 Joel Brobecker <brobecker@adacore.com> |
4126 | ||
4127 | * ada-lang.c (ada_convert_actual): Add handling of formals | |
4128 | passed inside an aligner type. | |
4129 | ||
80b0912b JB |
4130 | 2015-05-08 Joel Brobecker <brobecker@adacore.com> |
4131 | ||
4132 | * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries. | |
4133 | ||
df2eb078 SC |
4134 | 2015-05-08 Siva Chandra Reddy <sivachandra@google.com> |
4135 | ||
4136 | PR python/18291 | |
4137 | * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo. | |
4138 | Print xmethod matcher status. | |
4139 | ||
2492f0d0 AA |
4140 | 2015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4141 | ||
4142 | * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA | |
4143 | register in the regcache when treating the PSWM register, and vice | |
4144 | versa. | |
4145 | ||
1c56a84d GB |
4146 | 2015-05-07 Gary Benson <gbenson@redhat.com> |
4147 | ||
4148 | * linux-thread-db.c (struct thread_db_info) | |
4149 | <td_ta_map_id2thr_p>: Remove field. | |
4150 | (try_thread_db_load_1): Remove initialization for the above. | |
4151 | ||
74850322 GB |
4152 | 2015-05-07 Gary Benson <gbenson@redhat.com> |
4153 | ||
4154 | * linux-thread-db.c (struct thread_db_info) | |
4155 | <td_thr_validate_p>: Remove field. | |
4156 | (try_thread_db_load_1): Remove initialization for the above. | |
4157 | ||
e26efa40 JK |
4158 | 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com> |
4159 | ||
4160 | * compile/compile-object-load.c (compile_object_load): Support | |
4161 | mst_text_gnu_ifunc. | |
4162 | ||
851c9091 JK |
4163 | 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com> |
4164 | ||
4165 | * compile/compile.c (compile_to_object): Make the cmd_string parameter | |
4166 | const. Use new variables for the const compatibility. | |
4167 | (eval_compile_command): Make the cmd_string parameter const. | |
4168 | * compile/compile.h (eval_compile_command): Make the cmd_string | |
4169 | parameter const. | |
4170 | ||
f218b647 JB |
4171 | 2015-05-06 Joel Brobecker <brobecker@adacore.com> |
4172 | ||
4173 | * defs.h (deprecated_init_ui_hook): Delete. Remove associated | |
4174 | comment. | |
4175 | * top.c (deprecated_init_ui_hook): Delete. | |
4176 | (gdb_init): Remove handling of deprecated_init_ui_hook. | |
4177 | * interps.c (clear_interpreter_hooks): Remove handling of | |
4178 | deprecated_init_ui_hook. | |
4179 | * main.c (captured_main): Update comment. | |
4180 | ||
b30a0bc3 JB |
4181 | 2015-05-06 Joel Brobecker <brobecker@adacore.com> |
4182 | ||
4183 | * solib.c (_initialize_solib): Add "info dll" alias creation. | |
4184 | * windows-nat.c (set_windows_aliases): Delete. | |
4185 | (_initialize_windows_nat): Remove deprecated_init_ui_hook | |
4186 | assignment. | |
4187 | * NEWS: Add news entry about "info dll" now being available | |
4188 | on all platforms. | |
4189 | ||
7c512744 JB |
4190 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4191 | ||
4192 | * ada-lang.c (value_assign_to_component): Reformat and improve | |
4193 | documentation. Remove all trailing spaces. | |
4194 | ||
0fa7fe50 JB |
4195 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4196 | ||
4197 | * inline-frame.c (inline_frame_sniffer, skip_inline_frames): | |
4198 | Stop counting inlined frames as soon as an out-of-line function | |
4199 | is found. | |
4200 | ||
3ea89b92 PMR |
4201 | 2014-05-05 Pierre-Marie de Rodat <derodat@adacore.com> |
4202 | ||
4203 | * dwarf2read.c (inherit_abstract_dies): Skip | |
4204 | DW_TAG_GNU_call_site dies while inheriting children of an | |
4205 | abstract DIE into a scope. | |
4206 | (read_lexical_block_scope): Inherit abstract DIE's for | |
4207 | lexical scopes. | |
4208 | ||
2478d075 JB |
4209 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4210 | ||
4211 | * ada-valprint.c (val_print_packed_array_elements): Delete | |
4212 | variable "len". Add a type-length check when comparing two | |
4213 | consecutive elements of the array. Use the element's actual | |
4214 | length in call to value_contents_eq. | |
4215 | * ada-lang.c (ada_value_primitive_packed_val): Always return | |
4216 | a value whose type has been resolved. | |
4217 | ||
fc958966 JB |
4218 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4219 | ||
4220 | * ada-lang.c (ada_value_primitive_packed_val): Recompute | |
4221 | BIT_SIZE and LEN if the size of the resolved type is smaller | |
4222 | than BIT_SIZE * HOST_CHAR_BIT. | |
4223 | ||
ca34b84f JB |
4224 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4225 | ||
4226 | * ada-lang.c (ada_value_primitive_packed_val): Use a more | |
4227 | correct address in call to value_at. Adjust call to | |
4228 | value_address accordingly. | |
4229 | ||
62c67f3c JB |
4230 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4231 | ||
4232 | * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying | |
4233 | to print it. | |
4234 | ||
c3345124 JB |
4235 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4236 | ||
4237 | * dwarf2loc.h (struct property_addr_info): Add "valaddr" field. | |
4238 | * dwarf2loc.c (dwarf2_evaluate_property): Add handling of | |
4239 | pinfo->valaddr. | |
4240 | * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter. | |
4241 | * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr. | |
4242 | (resolve_dynamic_type_internal): Set pinfo.valaddr. | |
4243 | Add handling of addr_stack->valaddr. | |
4244 | (resolve_dynamic_type): Add "valaddr" parameter. | |
4245 | Set pinfo.valaddr field. | |
4246 | * ada-lang.c (ada_discrete_type_high_bound): Update call to | |
4247 | resolve_dynamic_type. | |
4248 | (ada_discrete_type_low_bound): Likewise. | |
4249 | * findvar.c (default_read_var_value): Likewise. | |
4250 | * value.c (value_from_contents_and_address): Likewise. | |
4251 | ||
75ea5859 JB |
4252 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
4253 | ||
4254 | * gdbtypes.c (resolve_dynamic_array): Use | |
4255 | create_array_type_with_stride instead of create_array_type. | |
4256 | ||
0952813b DD |
4257 | 2015-04-30 DJ Delorie <dj@redhat.com> |
4258 | ||
4259 | * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to | |
4260 | rl78_decode_opcode | |
4261 | ||
2ce1cdbf DE |
4262 | 2015-04-29 Doug Evans <dje@google.com> |
4263 | ||
4264 | PR python/18285 | |
4265 | * NEWS: Document new gdb.XMethodWorker.get_result_type method. | |
4266 | * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle | |
4267 | EVAL_AVOID_SIDE_EFFECTS for xmethods. | |
4268 | * extension-priv.h (struct extension_language_ops) | |
4269 | <get_xmethod_result_type>: New member. | |
4270 | * extension.c (get_xmethod_result_type): New function. | |
4271 | * extension.h (get_xmethod_result_type): Declare. | |
4272 | * python/py-xmethods.c (get_result_type_method_name): New static | |
4273 | global. | |
4274 | (py_get_result_type_method_name): Ditto. | |
4275 | (gdbpy_get_xmethod_result_type): New function. | |
4276 | (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name. | |
4277 | * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare. | |
4278 | * python/python.c (python_extension_ops): Add | |
4279 | gdbpy_get_xmethod_result_type. | |
4280 | * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type. | |
4281 | * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for | |
4282 | xmethods. | |
4283 | (value_x_unop): Ditto. | |
4284 | * value.c (result_type_of_xmethod): New function. | |
4285 | * value.h (result_type_of_xmethod): Declare. | |
4286 | ||
998d2a3e GB |
4287 | 2015-04-29 Gary Benson <gbenson@redhat.com> |
4288 | ||
4289 | * solib.c (solib_find_1): Allow fd argument to be NULL. | |
4290 | (exec_file_find): Update comment. | |
4291 | (solib_find): Likewise. | |
4292 | * exec.c (exec_file_locate_attach): Use NULL as fd | |
4293 | argument to exec_file_find to avoid having to close | |
4294 | the opened file. | |
4295 | * infrun.c (follow_exec): Likewise. | |
4296 | ||
34f5f757 DE |
4297 | 2015-04-28 Doug Evans <dje@google.com> |
4298 | ||
4299 | PR python/18299 | |
4300 | * python/lib/gdb/printing.py (register_pretty_printer): Handle | |
4301 | name or __name__ attributes. Handle gdb module as first argument. | |
4302 | ||
69b4374a DE |
4303 | 2015-04-28 Doug Evans <dje@google.com> |
4304 | ||
4305 | PR python/18089 | |
4306 | * python/py-prettyprint.c (print_children): Verify result of children | |
4307 | iterator. Provide better error message. | |
4308 | * python/python-internal..h (gdbpy_print_python_errors_p): Declare. | |
4309 | * python/python.c (gdbpy_print_python_errors_p): New function. | |
4310 | ||
5e7cf078 DE |
4311 | 2015-04-28 Doug Evans <dje@google.com> |
4312 | ||
4313 | * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment. | |
4314 | ||
59fb7612 SS |
4315 | 2015-04-28 Sasha Smundak <asmundak@google.com> |
4316 | ||
4317 | * NEWS: Mention gdb.Type.optimized_out method. | |
4318 | * python/py-type.c (typy_optimized_out): New function. | |
4319 | ||
cea6e4f1 JB |
4320 | 2015-04-28 John Baldwin <jhb@FreeBSD.org> |
4321 | ||
4322 | * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>. | |
4323 | ||
24b73f8e PP |
4324 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
4325 | ||
4326 | * utils.c (init_page_info): Set rl_catch_sigwinch to zero. | |
4327 | (initialize_utils): Move call of init_page_info() to ... | |
4328 | * top.c (gdb_init): ... here. | |
4329 | ||
a88d0bb3 PP |
4330 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
4331 | ||
4332 | * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment. | |
4333 | (tui_sigwinch_handler): Still update our idea of | |
4334 | the terminal's width and height even when TUI is not active. | |
4335 | ||
d6e5e7f7 PP |
4336 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
4337 | ||
4338 | * utils.h (set_screen_width_and_height): Declare. | |
4339 | * utils.c (set_screen_width_and_height): Define. | |
4340 | * tui/tui-win.c (tui_update_gdb_sizes): Use it. | |
4341 | ||
ff862be4 GB |
4342 | 2015-04-28 Gary Benson <gbenson@redhat.com> |
4343 | ||
4344 | * infrun.c (solist.h): New include. | |
4345 | (follow_exec): Use exec_file_find to prefix execd_pathname | |
4346 | with gdb_sysroot. | |
4347 | ||
2eb639cb PP |
4348 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
4349 | ||
4350 | * tui/tui-source.c (tui_set_source_content): Avoid calling | |
4351 | strcpy() when offset is 0. | |
4352 | ||
97206799 PP |
4353 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
4354 | ||
4355 | PR gdb/18155 | |
4356 | * tui/tui-data.c (tui_free_window): Don't free the locator | |
4357 | window when passed an SRC_WIN or a DISASSEM_WIN. | |
4358 | ||
63ed8182 PP |
4359 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
4360 | ||
4361 | * tui/tui-data.h (struct tui_win_element): Forward-declare. | |
4362 | (tui_win_content): Move declaration. | |
4363 | (struct tui_gen_win_info): Give 'content' field the | |
4364 | type tui_win_content. | |
4365 | * tui/tui-data.c (init_content_element): Remove redundant and | |
4366 | erroneous casts. | |
4367 | (tui_add_content_elements): Remove erroneous cast. | |
4368 | * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant | |
4369 | casts. | |
4370 | (tui_get_begin_asm_address): Likewise. | |
4371 | * tui/tui-regs.c (tui_show_registers): Likewise. | |
4372 | (tui_show_register_group): Likewise. | |
4373 | (tui_display_registers_from): Likewise. | |
4374 | (tui_check_register_values): Likewise. | |
4375 | * tui/tui-source.c (tui_set_source_content): Likewise. | |
4376 | (tui_set_source_content_nil): Likewise. | |
4377 | (tui_source_is_displayed): Likewise. | |
4378 | * tui/tui-stack.c (tui_show_locator_content): Likewise. | |
4379 | (tui_set_locator_fullname): Likewise. | |
4380 | (tui_set_locator_info): Likewise. | |
4381 | (tui_show_frame_info): Likewise. | |
4382 | * tui/tui-winsource.c (tui_clear_source_content): Likewise. | |
4383 | (tui_show_source_line): Likewise. | |
4384 | (tui_horizontal_source_scroll): Likewise. | |
4385 | (tui_update_breakpoint_info): Likewise. | |
4386 | (tui_set_exec_info_content): Likewise. | |
4387 | (tui_show_exec_info_content): Likewise. | |
4388 | (tui_alloc_source_buffer): Likewise. | |
4389 | (tui_line_is_displayed): Likewise. | |
4390 | (tui_addr_is_displayed): Likewise. | |
4391 | ||
d2b41ca0 JB |
4392 | 2015-04-27 John Baldwin <jhb@FreeBSD.org> |
4393 | ||
4394 | * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD | |
4395 | event if PL_FLAG_EXEC is set. | |
4396 | [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function. | |
4397 | [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function. | |
4398 | (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set | |
4399 | "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint". | |
4400 | Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint". | |
4401 | ||
e58e05d6 JB |
4402 | 2015-04-27 John Baldwin <jhb@FreeBSD.org> |
4403 | ||
4404 | * fbsd-nat.c: [PT_LWPINFO] New variable super_wait. | |
4405 | [TDP_RFPPWAIT] New variable fbsd_pending_children. | |
4406 | [TDP_RFPPWAIT] (fbsd_remember_child): New function. | |
4407 | [TDP_RFPPWAIT] (fbsd_is_child_pending): New function. | |
4408 | [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function. | |
4409 | [PT_LWPINFO] (fbsd_wait): New function. | |
4410 | [TDP_RFPPWAIT] (fbsd_follow_fork): New function. | |
4411 | [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function. | |
4412 | [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function. | |
4413 | [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function. | |
4414 | [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function. | |
4415 | [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function. | |
4416 | [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function. | |
4417 | [TDP_RFPPWAIT] (fbsd_post_attach): New function. | |
4418 | (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to | |
4419 | "fbsd_wait". | |
4420 | [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork". | |
4421 | Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint". | |
4422 | Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint". | |
4423 | Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint". | |
4424 | Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint". | |
4425 | Set "to_post_startup_inferior" to "fbsd_post_startup_inferior". | |
4426 | Set "to_post_attach" to "fbsd_post_attach". | |
4427 | ||
8f60fe01 JB |
4428 | 2015-04-27 John Baldwin <jhb@FreeBSD.org> |
4429 | ||
4430 | * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static. | |
4431 | (fbsd_find_memory_regions): Mark static. | |
4432 | (fbsd_nat_add_target): New function. | |
4433 | * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for | |
4434 | fbsd_pid_to_exec_file and fbsd_find_memory_regions. | |
4435 | * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target. | |
4436 | * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise. | |
4437 | * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise. | |
4438 | * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise. | |
4439 | ||
5fbae7d1 GB |
4440 | 2015-04-27 Gary Benson <gbenson@redhat.com> |
4441 | ||
4442 | * objfiles.c (allocate_objfile): Do not attempt to expand name | |
4443 | if name is a "target:" filename. | |
4444 | * auto-load.c (load_auto_scripts_for_objfile): Do not attempt | |
4445 | to load auto-load scripts for objfiles with "target:" filenames. | |
4446 | ||
417c80f9 AA |
4447 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4448 | ||
4449 | * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h". | |
4450 | (enum s390_vector_abi_kind): New enum. | |
4451 | (struct gdbarch_tdep)<vector_abi>: New field. | |
4452 | (s390_effective_inner_type): Add parameter min_size. Stop | |
4453 | unwrapping if the inner type is smaller than min_size. | |
4454 | (s390_function_arg_float): Adjust call to | |
4455 | s390_effective_inner_type. | |
4456 | (s390_function_arg_vector): New function. | |
4457 | (s390_function_arg_integer): Adjust comment. | |
4458 | (struct s390_arg_state)<vr>: New field. | |
4459 | (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector | |
4460 | arguments according to vector ABI when appropriate. | |
4461 | (s390_push_dummy_call): Initialize the argument state's field | |
4462 | 'vr'. Adjust calls to s390_handle_arg. | |
4463 | (s390_register_return_value): Handle vector return values. | |
4464 | (s390_return_value): Apply the "register" return value convention | |
4465 | to a vector when appropriate. | |
4466 | (s390_gdbarch_init): Initialize tdep->vector_abi. | |
4467 | * NEWS: Announce S390 vector ABI support. | |
4468 | ||
4e65a17e AA |
4469 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4470 | ||
4471 | * s390-linux-tdep.c (s390_return_value_convention): Remove | |
4472 | function. Inline its logic... | |
4473 | (s390_return_value): ...here. Instead, move the handling of the | |
4474 | "register" return value convention... | |
4475 | (s390_register_return_value): ...here. New function. | |
4476 | ||
80f75320 AA |
4477 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4478 | ||
4479 | * s390-linux-tdep.c | |
4480 | (is_float_singleton): Remove function. Move the "singleton" part | |
4481 | of the logic... | |
4482 | (s390_effective_inner_type): ...here. New function. | |
4483 | (is_float_like): Remove function. Inline its logic... | |
4484 | (s390_function_arg_float): ...here. | |
4485 | (is_pointer_like, is_integer_like, is_struct_like): Remove | |
4486 | functions. Inline their logic... | |
4487 | (s390_function_arg_integer): ...here. | |
4488 | (s390_function_arg_pass_by_reference): Remove function. | |
4489 | (extend_simple_arg): Remove function. | |
4490 | (alignment_of): Remove function. | |
4491 | (struct s390_arg_state): New structure. | |
4492 | (s390_handle_arg): New function. | |
4493 | (s390_push_dummy_call): Move parameter placement logic to the new | |
4494 | function s390_handle_arg. Call it for calculating the stack area | |
4495 | sizes first, and again for actually writing the parameters. | |
4496 | ||
6dbc9c04 AA |
4497 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4498 | ||
4499 | * s390-linux-tdep.c (is_power_of_two): Add comment. Return | |
4500 | false if the argument is zero. | |
4501 | ||
9e195661 PMR |
4502 | 2015-04-27 Pierre-Marie de Rodat <derodat@adacore.com> |
4503 | ||
4504 | * ada-lang.c (template_to_static_fixed_type): Return input type | |
4505 | when it is already fixed. Cache the input type itself when not | |
4506 | creating a static fixed copy. Make it explicit that we never | |
4507 | molestate the input type. | |
4508 | * gdbtypes.c (resolve_dynamic_struct): Reset the | |
4509 | TYPE_TARGET_TYPE field for resolved copies. | |
4510 | ||
460efde1 JB |
4511 | 2015-04-27 Joel Brobecker <brobecker@adacore.com> |
4512 | ||
4513 | * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef. | |
4514 | (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef. | |
4515 | (template_to_static_fixed_type): Call ada_check_typedef only | |
4516 | when necessary. | |
4517 | ||
6faec16b AB |
4518 | 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com> |
4519 | ||
4520 | * cli/cli-dump.c (srec_dump_command): Add internationalization | |
4521 | mark ups. | |
4522 | (ihex_dump_command): Likewise. | |
4523 | (tekhex_dump_command): Likewise. | |
4524 | (binary_dump_command): Likewise. | |
4525 | (binary_append_command): Likewise. | |
4526 | ||
cf75d6c3 AB |
4527 | 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com> |
4528 | ||
4529 | * cli/cli-dump.c (verilog_cmdlist): New variable. | |
4530 | (dump_verilog_memory): New function. | |
4531 | (dump_verilog_value): New function. | |
4532 | (verilog_dump_command): New function. | |
4533 | (_initialize_cli_dump): Add new commands to support verilog dump | |
4534 | format. | |
4535 | * NEWS: Add entry for "dump verilog". | |
4536 | ||
8cd00c59 PMR |
4537 | 2015-04-24 Pierre-Marie de Rodat <derodat@adacore.com> |
4538 | ||
4539 | * gdbtypes.c (print_gnat_stuff): Do not recurse on the | |
4540 | descriptive type when there is none. | |
4541 | ||
8900d71e PP |
4542 | 2015-04-23 Patrick Palka <patrick@parcs.ath.cx> |
4543 | ||
4544 | * tui/tui-win.c (tui_async_resize_screen): Call | |
4545 | rl_resize_terminal(). | |
4546 | ||
f16eab5f JT |
4547 | 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk> |
4548 | ||
4549 | * windows-nat.c (handle_output_debug_string): Don't change | |
4550 | current_event.dwThreadId. | |
4551 | (get_windows_debug_event): Use thread_id, rather than relying on | |
4552 | current_event.dwThreadId being changed. | |
4553 | ||
68ffc902 JT |
4554 | 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk> |
4555 | ||
4556 | * windows-nat.c (windows_continue): Report an error if | |
4557 | ContinueDebugEvent() fails. | |
4558 | ||
23942819 JT |
4559 | 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk> |
4560 | ||
4561 | * windows-nat.c (windows_resume): Fix misspelling in debug output. | |
4562 | ||
e6ad66bd JT |
4563 | 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk> |
4564 | ||
4565 | * windows-nat.c (get_windows_debug_event): Replace retval with | |
4566 | thread_id throughout. Update stale comment. | |
4567 | ||
776704b9 JT |
4568 | 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk> |
4569 | ||
4570 | * windows-nat.c (get_windows_debug_event): Don't use ternary | |
4571 | conditional operator. | |
4572 | ||
8aae4344 PM |
4573 | 2015-04-21 Pierre Muller <muller@sourceware.org> |
4574 | ||
4575 | PR pascal/17815 | |
4576 | p-exp.y (yylex): Reorganize code to return the matched pattern | |
4577 | for a field of this. | |
4578 | ||
819843c7 GB |
4579 | 2015-04-21 Gary Benson <gbenson@redhat.com> |
4580 | ||
4581 | * common/fileio.h (fileio_to_host_openflags): New declaration. | |
4582 | * common/fileio.c (fcntl.h): New include. | |
4583 | (fileio_to_host_openflags): New function, factored out from... | |
4584 | * inf-child.c (inf_child_fileio_open_flags_to_host): ...here. | |
4585 | Single use updated. | |
4586 | ||
0bca7f99 KB |
4587 | 2015-04-21 Kevin Buettner <kevinb@redhat.com> |
4588 | ||
4589 | * rl78-tdep.c (RL78_SP_ADDR): Define. | |
4590 | (opc_reg_to_gdb_regnum): New static function. | |
4591 | (rl78_analyze_prologue): Recognize instructions forming slightly | |
4592 | more interesting prologues. | |
4593 | ||
e771e4be PMR |
4594 | 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com> |
4595 | ||
4596 | Revert: | |
4597 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> | |
4598 | * gdbtypes.c (is_dynamic_type_internal): Remove special handling of | |
4599 | TYPE_CODE_REF types so that they are not considered as dynamic | |
4600 | depending on the referenced type. | |
4601 | (resolve_dynamic_type_internal): Likewise. | |
4602 | ||
ee715b5a PMR |
4603 | 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com> |
4604 | ||
4605 | Revert: | |
4606 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> | |
4607 | * gdbtypes.c (is_dynamic_type_internal): Remove the unused | |
4608 | "top_level" parameter. | |
4609 | (resolve_dynamic_type_internal): Remove the unused "top_level" | |
4610 | parameter. Update call to is_dynamic_type_internal. | |
4611 | (is_dynamic_type): Update call to is_dynamic_type_internal. | |
4612 | (resolve_dynamic_range): Update call to | |
4613 | resolve_dynamic_type_internal. | |
4614 | (resolve_dynamic_union): Likewise. | |
4615 | (resolve_dynamic_struct): Likewise. | |
4616 | (resolve_dynamic_type): Likewise. | |
4617 | ||
e31d7699 GKB |
4618 | 2015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be> |
4619 | ||
4620 | * breakpoint.c (update_dprintf_command_list): Remove duplicated | |
4621 | xmalloc. | |
4622 | ||
d214e5e7 TS |
4623 | 2015-04-20 Thomas Schwinge <thomas@codesourcery.com> |
4624 | ||
110f9112 TS |
4625 | * reply_mig_hack.awk: Robustify parsing. |
4626 | ||
d214e5e7 TS |
4627 | * reply_mig_hack.awk: Don't bother to declare an intermediate |
4628 | function pointer variable. | |
4629 | ||
8f61baf8 DE |
4630 | 2015-04-17 Doug Evans <dje@google.com> |
4631 | ||
4632 | * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement" | |
4633 | to "exec_displacement" to avoid confusion with inner use of the name. | |
4634 | ||
dbbf180a YQ |
4635 | 2015-04-17 Pedro Alves <palves@redhat.com> |
4636 | ||
4637 | * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero | |
4638 | if HW point of TYPE isn't supported. | |
4639 | ||
059790a0 YQ |
4640 | 2015-04-17 Yao Qi <yao.qi@linaro.org> |
4641 | Pedro Alves <palves@redhat.com> | |
4642 | ||
4643 | * target.h (target_can_use_hardware_watchpoint): Update comments. | |
4644 | Remove trailing ";". | |
4645 | ||
1b6e6f5c GB |
4646 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
4647 | ||
4648 | * remote.c (remote_add_inferior): New argument try_open_exec. | |
4649 | If nonzero, attempt to open the inferior's executable file as | |
4650 | the main executable if no main executable is open already. | |
4651 | All callers updated. | |
4652 | * NEWS: Mention that GDB now supports automatic location and | |
4653 | retrieval of executable + files from remote targets. | |
4654 | ||
c78fa86a GB |
4655 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
4656 | ||
4657 | * target.h (TARGET_OBJECT_EXEC_FILE): New enum value. | |
4658 | * remote.c (PACKET_qXfer_exec_file): Likewise. | |
4659 | (remote_protocol_features): Register the | |
4660 | "qXfer:exec-file:read" feature. | |
4661 | (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE. | |
4662 | (remote_pid_to_exec_file): New function. | |
4663 | (init_remote_ops): Initialize to_pid_to_exec_file. | |
4664 | (_initialize_remote): Register new "set/show remote | |
4665 | pid-to-exec-file-packet" command. | |
4666 | * NEWS: Announce new qXfer:exec-file:read packet. | |
4667 | ||
e0d86d2c GB |
4668 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
4669 | ||
4670 | * nat/linux-procfs.h (linux_proc_pid_to_exec_file): | |
4671 | New declaration. | |
4672 | * nat/linux-procfs.c (linux_proc_pid_to_exec_file): | |
4673 | New function, factored out from... | |
4674 | * linux-nat.c (linux_child_pid_to_exec_file): ...here. | |
4675 | ||
a9a5a3d1 GB |
4676 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
4677 | ||
4678 | * exec.c (solist.h): New include. | |
4679 | (exec_file_locate_attach): Prefix absolute executable | |
4680 | paths with gdb_sysroot if set. | |
4681 | * NEWS: Mention that executable paths may be prepended | |
4682 | with sysroot. | |
4683 | ||
af1900b0 GB |
4684 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
4685 | ||
4686 | * solist.h (exec_file_find): New declaration. | |
4687 | * solib.c (solib_find_1): New function, factored out from... | |
4688 | (solib_find): ...here. | |
4689 | (exec_file_find): New function. | |
4690 | ||
a10de604 GB |
4691 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
4692 | ||
4693 | * gdbcore.h (exec_file_locate_attach): New declaration. | |
4694 | * exec.c (exec_file_locate_attach): New function, factored | |
4695 | out from... | |
4696 | * infcmd.c (attach_command_post_wait): ...here. | |
4697 | ||
92209ddf MF |
4698 | 2015-04-17 Mike Frysinger <vapier@gentoo.org> |
4699 | ||
4700 | * MAINTAINERS: Add myself for Blackfin/write-after-approval. | |
4701 | ||
8550d3b3 YQ |
4702 | 2015-04-16 Yao Qi <yao.qi@linaro.org> |
4703 | ||
4704 | * infrun.c (maybe_software_singlestep): Declare. | |
4705 | (displaced_step_fixup): Call maybe_software_singlestep. | |
4706 | ||
30b3dd9d DE |
4707 | 2015-04-15 Doug Evans <dje@google.com> |
4708 | ||
4709 | * psymtab.c (psym_expand_symtabs_matching): Add QUIT call. | |
4710 | ||
61d96d7e DE |
4711 | 2015-04-15 Doug Evans <dje@google.com> |
4712 | ||
4713 | * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls. | |
4714 | ||
40d2f8d6 SM |
4715 | 2015-04-15 Simon Marchi <simon.marchi@ericsson.com> |
4716 | ||
4717 | * python/lib/gdb/command/unwinders.py: Add parentheses. | |
4718 | ||
6bbbba9b YQ |
4719 | 2015-04-15 Yao Qi <yao.qi@linaro.org> |
4720 | ||
4721 | * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message. | |
4722 | ||
2bb2dcab YQ |
4723 | 2015-04-15 Yao Qi <yao.qi@linaro.org> |
4724 | ||
4725 | * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation. | |
4726 | ||
41f071ef YQ |
4727 | 2015-04-15 Yao Qi <yao.qi@linaro.org> |
4728 | ||
4729 | * arm-linux-tdep.c (arm_linux_cleanup_svc): Use | |
4730 | dsc->insn_size instead of 4. | |
4731 | ||
326a5c7e GB |
4732 | 2015-04-14 Gary Benson <gbenson@redhat.com> |
4733 | ||
4734 | * jit.c (mem_bfd_iovec_stat): Zero supplied buffer. | |
4735 | * minidebug.c (lzma_stat): Likewise. | |
4736 | * solib-spu.c (spu_bfd_iovec_stat): Likewise. | |
4737 | * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise. | |
4738 | ||
dd177e81 SS |
4739 | 2015-04-13 Stan Shebs <stanshebs@google.com> |
4740 | ||
4741 | * MAINTAINERS: Update my email address. | |
4742 | ||
97de3545 JB |
4743 | 2015-04-13 John Baldwin <jhb@FreeBSD.org> |
4744 | ||
4745 | * amd64-tdep.c (amd64_target_description): New function. | |
4746 | * amd64-tdep.h: Export amd64_target_description and tdesc_amd64. | |
4747 | * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len. | |
4748 | (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle | |
4749 | x86 extended save area. | |
4750 | (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise. | |
4751 | * amd64bsd-nat.h: Export amd64bsd_xsave_len. | |
4752 | * amd64fbsd-nat.c (amd64fbsd_read_description): New function. | |
4753 | (_initialize_amd64fbsd_nat): Set "to_read_description" to | |
4754 | "amd64fbsd_read_description". | |
4755 | * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function. | |
4756 | (amd64fbsd_supply_xstateregset): New function. | |
4757 | (amd64fbsd_collect_xstateregset): New function. | |
4758 | Add "amd64fbsd_xstateregset". | |
4759 | (amd64fbsd_iterate_over_regset_sections): New function. | |
4760 | (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to | |
4761 | "I386_FBSD_XSAVE_XCR0_OFFSET". | |
4762 | Add "iterate_over_regset_sections" gdbarch method. | |
4763 | Add "core_read_description" gdbarch method. | |
4764 | * i386-tdep.c (i386_target_description): New function. | |
4765 | * i386-tdep.h: Export i386_target_description and tdesc_i386. | |
4766 | * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len. | |
4767 | (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle | |
4768 | x86 extended save area. | |
4769 | (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise. | |
4770 | * i386bsd-nat.h: Export i386bsd_xsave_len. | |
4771 | * i386fbsd-nat.c (i386fbsd_read_description): New function. | |
4772 | (_initialize_i386fbsd_nat): Set "to_read_description" to | |
4773 | "i386fbsd_read_description". | |
4774 | * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function. | |
4775 | (i386fbsd_core_read_description): New function. | |
4776 | (i386fbsd_supply_xstateregset): New function. | |
4777 | (i386fbsd_collect_xstateregset): New function. | |
4778 | Add "i386fbsd_xstateregset". | |
4779 | (i386fbsd_iterate_over_regset_sections): New function. | |
4780 | (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to | |
4781 | "I386_FBSD_XSAVE_XCR0_OFFSET". | |
4782 | Add "iterate_over_regset_sections" gdbarch method. | |
4783 | Add "core_read_description" gdbarch method. | |
4784 | * i386fbsd-tdep.h: New file. | |
4785 | ||
4f45d445 JK |
4786 | 2015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
4787 | ||
4788 | * NEWS (Changes since GDB 7.9): Add removed -xdb. | |
4789 | * breakpoint.c (command_line_is_silent): Remove xdb_commands | |
4790 | conditional. | |
4791 | (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba | |
4792 | and lb. | |
4793 | * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and | |
4794 | va. | |
4795 | * cli/cli-decode.c (find_command_name_length): Remove xdb_commands | |
4796 | conditional. | |
4797 | * defs.h (xdb_commands): Remove declaration. | |
4798 | * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc. | |
4799 | * guile/scm-cmd.c (command_classes): Remove xdb from comment. | |
4800 | * infcmd.c (run_no_args_command, go_command): Remove. | |
4801 | (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr. | |
4802 | * infrun.c (xdb_handle_command): Remove. | |
4803 | (_initialize_infrun): Remove xdb_commands for lz and z. | |
4804 | * main.c (xdb_commands): Remove variable. | |
4805 | (captured_main): Remove "xdb" from long_options. | |
4806 | (print_gdb_help): Remove --xdb from help. | |
4807 | * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment. | |
4808 | * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?. | |
4809 | * stack.c (backtrace_full_command, args_plus_locals_info) | |
4810 | (current_frame_command): Remove. | |
4811 | (_initialize_stack): Remove xdb_commands for t, T and l. | |
4812 | * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg. | |
4813 | * thread.c (_initialize_thread): Remove xdb_commands condition. | |
4814 | * tui/tui-layout.c (tui_toggle_layout_command) | |
4815 | (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove. | |
4816 | (_initialize_tui_layout): Remove xdb_commands for td and ts. | |
4817 | * tui/tui-regs.c (tui_scroll_regs_forward_command) | |
4818 | (tui_scroll_regs_backward_command): Remove. | |
4819 | (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r. | |
4820 | * tui/tui-win.c (tui_xdb_set_win_height_command): Remove. | |
4821 | (_initialize_tui_win): Remove xdb_commands for U and w. | |
4822 | * utils.c (pagination_on_command, pagination_off_command): Remove. | |
4823 | (initialize_utils): Remove xdb_commands for am and sm. | |
4824 | ||
cb71640d PA |
4825 | 2015-04-10 Pedro Alves <palves@redhat.com> |
4826 | ||
4827 | * infrun.c (displaced_step_fixup): Switch to the event ptid | |
4828 | earlier. If the thread stopped for a watchpoint and the | |
4829 | target/arch has non-continuable watchpoints, cancel the displaced | |
4830 | step. | |
4831 | (resume): Don't start a displaced step if in-line step-over info | |
4832 | is valid. | |
4833 | ||
8f572e5c PA |
4834 | 2015-04-10 Pedro Alves <palves@redhat.com> |
4835 | ||
4836 | * infrun.c (displaced_step_in_progress): New function. | |
4837 | (do_target_resume): Advise target to report all signals if | |
4838 | displaced stepping. | |
4839 | ||
8d707a12 PA |
4840 | 2015-04-10 Pedro Alves <palves@redhat.com> |
4841 | ||
4842 | PR gdb/18216 | |
4843 | * infrun.c (process_event_stop_test): Don't assume a step-resume | |
4844 | is set if tp->stepped_breakpoint is true. | |
4845 | ||
ef713951 YQ |
4846 | 2015-04-10 Yao Qi <yao.qi@linaro.org> |
4847 | ||
4848 | * arm-tdep.c (install_alu_reg): Update comment. | |
4849 | (thumb_copy_alu_reg): Remove local variable rn. Update | |
4850 | debugging message. Use r2 instead of r1 in the modified | |
4851 | instruction. | |
4852 | ||
906d60cf PA |
4853 | 2015-04-10 Pedro Alves <palves@redhat.com> |
4854 | ||
4855 | PR gdb/13858 | |
4856 | * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install | |
4857 | linux_displaced_step_location as gdbarch_displaced_step_location | |
4858 | hook. | |
4859 | * arm-linux-tdep.c (arm_linux_init_abi): Likewise. | |
4860 | * i386-linux-tdep.c (i386_linux_init_abi): Likewise. | |
4861 | * linux-tdep.c (linux_displaced_step_location): New function, | |
4862 | based on ppc_linux_displaced_step_location. | |
4863 | * linux-tdep.h (linux_displaced_step_location): New declaration. | |
4864 | * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete. | |
4865 | (ppc_linux_inferior_created, ppc_linux_displaced_step_location): | |
4866 | Delete. | |
4867 | (ppc_linux_init_abi): Install linux_displaced_step_location as | |
4868 | gdbarch_displaced_step_location hook, even without Cell/B.E.. | |
4869 | (_initialize_ppc_linux_tdep): Don't install | |
4870 | ppc_linux_inferior_created as inferior_created observer. | |
4871 | * s390-linux-tdep.c (s390_gdbarch_init): Install | |
4872 | linux_displaced_step_location as gdbarch_displaced_step_location | |
4873 | hook. | |
4874 | ||
7823a941 GB |
4875 | 2015-04-09 Gary Benson <gbenson@redhat.com> |
4876 | ||
4877 | * common/common-remote-fileio.h: Rename to... | |
4878 | * common/fileio.h: ...this. Update all references. | |
4879 | (remote_fileio_to_fio_error): Rename to... | |
4880 | (host_to_fileio_error): ...this. | |
4881 | (remote_fileio_to_be): Rename to... | |
4882 | (host_to_bigendian): ...this. Update all callers. | |
4883 | (remote_fileio_to_fio_uint): Rename to... | |
4884 | (host_to_fileio_uint): ...this. Update all callers. | |
4885 | (remote_fileio_to_fio_time): Rename to... | |
4886 | (host_to_fileio_time): ...this. Update all callers. | |
4887 | (remote_fileio_to_fio_stat): Rename to... | |
4888 | (host_to_fileio_stat): ...this. | |
4889 | Update all references. | |
4890 | * common/common-remote-fileio.c: Rename to... | |
4891 | * common/fileio.c: ...this. Update all references. | |
4892 | (remote_fileio_to_fio_error): Rename to... | |
4893 | (host_to_fileio_error): ...this. Update all callers. | |
4894 | (remote_fileio_mode_to_target): Rename to... | |
4895 | (fileio_mode_pack): ...this. Update all callers. | |
4896 | (remote_fileio_to_fio_mode): Rename to... | |
4897 | (host_to_fileio_mode): ...this. Update all callers. | |
4898 | (remote_fileio_to_fio_ulong): Rename to... | |
4899 | (host_to_fileio_ulong): ...this. Update all callers. | |
4900 | (remote_fileio_to_fio_stat): Rename to... | |
4901 | (host_to_fileio_stat): ...this. Update all callers. | |
4902 | ||
f2983cc3 AW |
4903 | 2015-04-09 Andy Wingo <wingo@igalia.com> |
4904 | ||
4905 | * guile/scm-frame.c (gdbscm_frame_read_register): New function. | |
4906 | (frame_functions): Bind gdbscm_frame_read_register to | |
4907 | frame-read-register. | |
4908 | * guile/lib/gdb.scm (frame-read-register): Export. | |
4909 | ||
b88bb450 GB |
4910 | 2015-04-09 Gary Benson <gbenson@redhat.com> |
4911 | ||
4912 | * common/common-remote-fileio.h (remote_fileio_to_fio_error): | |
4913 | New declaration. | |
4914 | * common/common-remote-fileio.c (remote_fileio_to_fio_error): | |
4915 | New function, factored out the named functions below. | |
4916 | * inf-child.c (gdb/fileio.h): Remove include. | |
4917 | (common-remote-fileio.h): New include. | |
4918 | (inf_child_errno_to_fileio_error): Remove function. Update | |
4919 | all callers to use remote_fileio_to_fio_error. | |
4920 | * remote-fileio.c (remote_fileio_errno_to_target): Likewise. | |
4921 | ||
2f2680f3 AW |
4922 | 2015-04-09 Andy Wingo <wingo@igalia.com> |
4923 | ||
4924 | * MAINTAINERS (Write After Approval): Add Andy Wingo. | |
4925 | ||
5a2d4533 L |
4926 | 2015-04-09 H.J. Lu <hongjiu.lu@intel.com> |
4927 | ||
4928 | * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir. | |
4929 | Replace $zlibdir with $ZLIBDIR in LDFLAGS. | |
4930 | * configure: Regenerated. | |
4931 | ||
421693b0 PA |
4932 | 2015-04-09 Pedro Alves <palves@redhat.com> |
4933 | ||
4934 | * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r. | |
4935 | * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4. | |
4936 | * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate. | |
4937 | * gnulib/import/Makefile.am: Update. | |
4938 | * gnulib/import/Makefile.in: Update. | |
4939 | * gnulib/import/m4/gnulib-cache.m4: Update. | |
4940 | * gnulib/import/m4/gnulib-comp.m4: Update. | |
4941 | * gnulib/import/m4/strtok_r.m4: New file. | |
4942 | * gnulib/import/strtok_r.c: New file. | |
4943 | ||
f543dc83 PA |
4944 | 2015-04-09 Pedro Alves <palves@redhat.com> |
4945 | ||
4946 | * gnulib/update-gnulib.sh (aclocal version check): Filter out | |
4947 | "called too early to check prototype". | |
4948 | ||
6d62641c SDJ |
4949 | 2015-04-08 Sergio Durigan Junior <sergiodj@redhat.com> |
4950 | ||
4951 | PR python/16699 | |
4952 | * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not | |
4953 | use a caching mechanism. Adjust comments and code to reflect | |
4954 | that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'. | |
4955 | (cmdpy_completer_handle_brkchars): Adjust call to | |
4956 | cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'. | |
4957 | (cmdpy_completer): Likewise. | |
4958 | ||
85558555 YQ |
4959 | 2015-04-08 Yao Qi <yao.qi@linaro.org> |
4960 | ||
4961 | * spu-tdep.c (spu_gdbarch_init): Don't call | |
4962 | set_gdbarch_cannot_step_breakpoint. | |
4963 | ||
d249a14a SDJ |
4964 | 2015-04-07 Sergio Durigan Junior <sergiodj@redhat.com> |
4965 | ||
4966 | * linux-tdep.c (decode_vmflags): Initialize 'saveptr'. | |
4967 | ||
8a06aea7 PA |
4968 | 2015-04-07 Pedro Alves <palves@redhat.com> |
4969 | ||
4970 | * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ... | |
4971 | (ALL_THREADS_SAFE): ... this, and don't skip exited threads. | |
4972 | (delete_exited_threads): New declaration. | |
4973 | * infrun.c (follow_exec): Use ALL_THREADS_SAFE. | |
4974 | * linux-nat.c (linux_nat_update_thread_list): New function. | |
4975 | (linux_nat_add_target): Install it. | |
4976 | * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE. | |
4977 | * thread.c (prune_threads): Use ALL_THREADS_SAFE. | |
4978 | (delete_exited_threads): New function. | |
4979 | ||
d9b67d9f PA |
4980 | 2015-04-07 Pedro Alves <pedro@codesourcery.com> |
4981 | ||
4982 | * infrun.c (resume) <displaced stepping debug output>: Get the | |
4983 | leader thread's regcache, not resume_ptid's. | |
4984 | ||
2c26b84f DE |
4985 | 2015-04-06 Doug Evans <xdje42@gmail.com> |
4986 | ||
4987 | * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as | |
4988 | VAR_DOMAIN. | |
4989 | (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters. | |
4990 | Include symbol domain in debugging output. | |
4991 | ||
7a85168d PA |
4992 | 2015-04-06 Pedro Alves <palves@redhat.com> |
4993 | Bernd Edlinger <bernd.edlinger@hotmail.de> | |
4994 | ||
4995 | * configure.ac: Remove the mingw32-specific stub-termcap.o | |
4996 | fallback, and instead fallback to the stub termcap on all hosts. | |
4997 | * configure: Regenerate. | |
4998 | * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak | |
4999 | symbols. | |
5000 | ||
25755e2b PMR |
5001 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> |
5002 | ||
5003 | * gdbtypes.c (is_dynamic_type_internal): Remove the unused | |
5004 | "top_level" parameter. | |
5005 | (resolve_dynamic_type_internal): Remove the unused "top_level" | |
5006 | parameter. Update call to is_dynamic_type_internal. | |
5007 | (is_dynamic_type): Update call to is_dynamic_type_internal. | |
5008 | (resolve_dynamic_range): Update call to | |
5009 | resolve_dynamic_type_internal. | |
5010 | (resolve_dynamic_union): Likewise. | |
5011 | (resolve_dynamic_struct): Likewise. | |
5012 | (resolve_dynamic_type): Likewise. | |
5013 | ||
961f4160 PMR |
5014 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> |
5015 | ||
5016 | * gdbtypes.c (is_dynamic_type_internal): Remove special handling of | |
5017 | TYPE_CODE_REF types so that they are not considered as dynamic | |
5018 | depending on the referenced type. | |
5019 | (resolve_dynamic_type_internal): Likewise. | |
5020 | ||
39f3de7c L |
5021 | 2015-04-02 H.J. Lu <hongjiu.lu@intel.com> |
5022 | ||
5023 | * Makefile.in (top_srcdir): New. | |
5024 | * configure: Regenerated. | |
5025 | ||
599bd15c GB |
5026 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5027 | ||
5028 | * NEWS: Announce the new default sysroot of "target:". | |
5029 | ||
fed040c6 GB |
5030 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5031 | ||
5032 | * main.c (captured_main): Set gdb_sysroot to "target:" | |
5033 | if not otherwise set. | |
5034 | ||
64c0b5de GB |
5035 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5036 | ||
5037 | * exec.c (exec_file_attach): Support "target:" filenames. | |
5038 | ||
b57fbfba GB |
5039 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5040 | ||
5041 | * solib.c (solib_find): Strip "target:" prefix from sysroot | |
5042 | if accessing local files. | |
5043 | ||
97a41605 GB |
5044 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5045 | ||
5046 | * symfile.c (symfile_bfd_open): Reorder to remove duplicated | |
5047 | checks and error messages. | |
5048 | ||
2938e6cf GB |
5049 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5050 | ||
5051 | * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition. | |
5052 | (remote_filename_p): Remove declaration. | |
5053 | (remote_bfd_open): Likewise. | |
5054 | * remote.c (remote_bfd_iovec_open): Remove function. | |
5055 | (remote_bfd_iovec_close): Likewise. | |
5056 | (remote_bfd_iovec_pread): Likewise. | |
5057 | (remote_bfd_iovec_stat): Likewise. | |
5058 | (remote_filename_p): Likewise. | |
5059 | (remote_bfd_open): Likewise. | |
5060 | * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration. | |
5061 | * symfile.c (separate_debug_file_exists): Use gdb_bfd_open. | |
5062 | (gdb_bfd_open_maybe_remote): Remove function. | |
5063 | (symfile_bfd_open): Replace remote filename check with | |
5064 | target filename check. | |
5065 | (reread_symbols): Use gdb_bfd_open. | |
5066 | * build-id.c (gdbcore.h): New include. | |
5067 | (build_id_to_debug_bfd): Use gdb_bfd_open. | |
5068 | * infcmd.c (attach_command_post_wait): Remove remote filename | |
5069 | check. | |
5070 | * solib.c (solib_find): Replace remote-specific handling with | |
5071 | target-specific handling. Update comments where necessary. | |
5072 | (solib_bfd_open): Replace remote-specific handling with | |
5073 | target-specific handling. | |
5074 | (gdb_sysroot_changed): New function. | |
5075 | (_initialize_solib): Call the above when gdb_sysroot changes. | |
5076 | * windows-tdep.c (gdbcore.h): New include. | |
5077 | (windows_xfer_shared_library): Use gdb_bfd_open. | |
5078 | ||
f08e97fe GB |
5079 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5080 | ||
5081 | * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition. | |
5082 | (is_target_filename): New declaration. | |
5083 | (gdb_bfd_has_target_filename): Likewise. | |
5084 | (gdb_bfd_open): Update documentation comment. | |
5085 | * gdb_bfd.c (target.h): New include. | |
5086 | (gdb/fileio.h): Likewise. | |
5087 | (is_target_filename): New function. | |
5088 | (gdb_bfd_has_target_filename): Likewise. | |
5089 | (fileio_errno_to_host): Likewise. | |
5090 | (gdb_bfd_iovec_fileio_open): Likewise. | |
5091 | (gdb_bfd_iovec_fileio_pread): Likewise. | |
5092 | (gdb_bfd_iovec_fileio_close): Likewise. | |
5093 | (gdb_bfd_iovec_fileio_fstat): Likewise. | |
5094 | (gdb_bfd_open): Use target fileio to access paths prefixed | |
5095 | with "target:" where necessary. | |
5096 | ||
4bd7dc42 GB |
5097 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5098 | ||
5099 | * target.h (struct target_ops) <to_filesystem_is_local>: | |
5100 | New field. | |
5101 | (target_filesystem_is_local): New macro. | |
5102 | * target-delegates.c: Regenerate. | |
5103 | * remote.c (remote_filesystem_is_local): New function. | |
5104 | (init_remote_ops): Initialize to_filesystem_is_local. | |
5105 | ||
9b15c1f0 GB |
5106 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
5107 | ||
5108 | * target.h (struct target_ops) <to_fileio_fstat>: New field. | |
5109 | (target_fileio_fstat): New declaration. | |
5110 | * target.c (target_fileio_fstat): New function. | |
5111 | * inf-child.c (inf_child_fileio_fstat): Likewise. | |
5112 | (inf_child_target): Initialize to_fileio_fstat. | |
5113 | * remote.c (init_remote_ops): Likewise. | |
5114 | ||
d11916aa SS |
5115 | 2015-04-01 Sasha Smundak <asmundak@google.com> |
5116 | ||
5117 | * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o. | |
5118 | (SUBDIR_PYTHON_SRCS): Add py-unwind.c. | |
5119 | (py-unwind.o): New recipe. | |
5120 | * NEWS: mention Python frame unwinding. | |
5121 | * data-directory/Makefile.in (PYTHON_FILE_LIST): Add | |
5122 | gdb/unwinder.py and gdb/command/unwinder.py | |
5123 | * python/lib/gdb/__init__.py (packages): Add frame_unwinders | |
5124 | list. | |
5125 | (execute_unwinders): New function. | |
5126 | * python/lib/gdb/command/unwinders.py: New file. | |
5127 | * python/lib/gdb/unwinder.py: New file. | |
5128 | * python/py-objfile.c (objfile_object): Add frame_unwinders field. | |
5129 | (objfpy_dealloc): Decrement frame_unwinders reference count. | |
5130 | (objfpy_initialize): Create frame_unwinders list. | |
5131 | (objfpy_get_frame_unwinders): New function. | |
5132 | (objfpy_set_frame_unwinders): Ditto. | |
5133 | (objfile_getset): Add frame_unwinders attribute to Objfile. | |
5134 | * python/py-progspace.c (pspace_object): Add frame_unwinders field. | |
5135 | (pspy_dealloc): Decrement frame_unwinders reference count. | |
5136 | (pspy_initialize): Create frame_unwinders list. | |
5137 | (pspy_get_frame_unwinders): New function. | |
5138 | (pspy_set_frame_unwinders): Ditto. | |
5139 | (pspy_getset): Add frame_unwinders attribute to gdb.Progspace. | |
5140 | * python/py-unwind.c: New file. | |
5141 | * python/python-internal.h (pspy_get_name_unwinders): New prototype. | |
5142 | (objpy_get_frame_unwinders): New prototype. | |
5143 | (gdbpy_initialize_unwind): New prototype. | |
5144 | * python/python.c (gdbpy_apply_type_printers): Call | |
5145 | gdbpy_initialize_unwind. | |
5146 | ||
6b403daa PA |
5147 | 2015-04-01 Pedro Alves <palves@redhat.com> |
5148 | ||
5149 | * infrun.c (resume): Check currently_stepping after clearing | |
5150 | stepped_breakpoint, not before. | |
5151 | ||
1176ecec PA |
5152 | 2015-04-01 Pedro Alves <palves@redhat.com> |
5153 | ||
5154 | * infrun.c (print_target_wait_results): Print all the ptid | |
5155 | elements. | |
5156 | ||
de1fe8c8 PA |
5157 | 2015-04-01 Pedro Alves <palves@redhat.com> |
5158 | ||
5159 | * infrun.c (keep_going): Also discard cleanups if inserting | |
5160 | breakpoints fails. | |
5161 | ||
e6f5c25b PA |
5162 | 2015-04-01 Pedro Alves <palves@redhat.com> |
5163 | ||
5164 | * infrun.c (wait_for_inferior): Install the | |
5165 | finish_thread_state_cleanup cleanup across the whole function, not | |
5166 | just around handle_inferior_event. | |
5167 | ||
1ac806b8 PA |
5168 | 2015-04-01 Pedro Alves <palves@redhat.com> |
5169 | ||
5170 | * infrun.c (resume) <step past permanent breakpoint>: Use | |
5171 | do_target_resume. | |
5172 | ||
2ee52aa4 PA |
5173 | 2015-04-01 Pedro Alves <palves@redhat.com> |
5174 | ||
5175 | * linux-nat.c (linux_handle_extended_wait): Always call set_running. | |
5176 | ||
5445da1b PMR |
5177 | 2015-04-01 Pierre-Marie de Rodat <derodat@adacore.com> |
5178 | ||
5179 | * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat". | |
5180 | ||
4eec2deb PA |
5181 | 2015-04-01 Pedro Alves <palves@redhat.com> |
5182 | ||
5183 | * linux-thread-db.c (record_thread): Readd the thread to gdb's | |
5184 | list if it was marked exited. | |
5185 | ||
afa59b79 L |
5186 | 2015-04-01 H.J. Lu <hongjiu.lu@intel.com> |
5187 | ||
5188 | * configure: Regenerated. | |
5189 | ||
df8411da SDJ |
5190 | 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com> |
5191 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
5192 | Oleg Nesterov <oleg@redhat.com> | |
5193 | ||
5194 | PR corefiles/16092 | |
5195 | * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'. | |
5196 | New enum identifying the various options of the coredump_filter | |
5197 | file. | |
5198 | (struct smaps_vmflags): New struct. | |
5199 | (use_coredump_filter): New variable. | |
5200 | (decode_vmflags): New function. | |
5201 | (mapping_is_anonymous_p): Likewise. | |
5202 | (dump_mapping_p): Likewise. | |
5203 | (linux_find_memory_regions_full): New variables | |
5204 | 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'. | |
5205 | Removed variable 'modified'. Read /proc/<PID>/smaps file; improve | |
5206 | parsing of its information. Implement memory mapping filtering | |
5207 | based on its contents. | |
5208 | (show_use_coredump_filter): New function. | |
5209 | (_initialize_linux_tdep): New command 'set use-coredump-filter'. | |
5210 | * NEWS: Mention the possibility of using the | |
5211 | '/proc/PID/coredump_filter' file when generating a corefile. | |
5212 | Mention new command 'set use-coredump-filter'. | |
5213 | ||
416f679e SDJ |
5214 | 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com> |
5215 | ||
5216 | * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by | |
5217 | read_memory_unsigned_integer. | |
5218 | ||
711a72d3 L |
5219 | 2015-03-31 H.J. Lu <hongjiu.lu@intel.com> |
5220 | ||
5221 | * Makefile.in (ZLIB): New. | |
5222 | (ZLIBINC): Likewise. | |
5223 | (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC). | |
5224 | (CLIBS): Add $(ZLIB). | |
5225 | * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS. | |
5226 | Add -lz to LIBS. | |
5227 | * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>. | |
5228 | * top.c (print_gdb_configuration): Remove --with-zlib and | |
5229 | --without-zlib. | |
5230 | * config.in: Regenerated. | |
5231 | * configure: Likewise. | |
5232 | ||
d33279b3 AT |
5233 | 2015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com> |
5234 | ||
5235 | * NEWS: Mention info os cpus support. | |
5236 | * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function. | |
5237 | (struct osdata_type): Add cpus entry, reorder the entries in | |
5238 | alphabetical order. | |
5239 | ||
71b30f27 MK |
5240 | 2015-03-31 Matthias Klose <doko@ubuntu.com> |
5241 | ||
5242 | * compile/compile.c (compile_to_object): Allow triplets with or | |
5243 | without vendor set. | |
5244 | ||
13ce9222 DE |
5245 | 2015-03-30 Doug Evans <dje@google.com> |
5246 | ||
5247 | PR c++/18141 | |
5248 | * cp-namespace.c (cp_search_static_and_baseclasses): Always look for | |
5249 | klass in VAR_DOMAIN. | |
5250 | ||
20f796c9 GB |
5251 | 2015-03-30 Gary Benson <gbenson@redhat.com> |
5252 | ||
5253 | * remote.c (remote_mourn_1): Remove function. Update all callers | |
5254 | to use remote_mourn. | |
5255 | (extended_remote_mourn_1): Remove function. Update all callers | |
5256 | to use extended_remote_mourn. | |
5257 | (extended_remote_attach_1): Remove function. Update all callers | |
5258 | to use extended_remote_attach. | |
5259 | ||
49d45b20 JB |
5260 | 2015-03-28 James Bowman <james.bowman@ftdichip.com> |
5261 | ||
5262 | * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o. | |
5263 | (HFILES_NO_SRCDIR): Add ft32-tdep.h. | |
5264 | (ALLDEPFILES): Add ft32-tdep.c. | |
5265 | * configure.tgt: Add FT32 entry. | |
5266 | * ft32-tdep.c: New file, FT32 target-dependent code. | |
5267 | * ft32-tdep.h: New file, FT32 target-dependent code. | |
5268 | ||
1c4ff080 JK |
5269 | 2015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com> |
5270 | ||
5271 | Revert: | |
5272 | 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com> | |
5273 | Code cleanup. | |
5274 | * printcmd.c (print_command_1): Move expr variable scope. | |
5275 | ||
79498702 JB |
5276 | 2015-03-27 Joel Brobecker <brobecker@adacore.com> |
5277 | ||
5278 | * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL. | |
5279 | ||
ce9c0ca1 AK |
5280 | 2015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com> |
5281 | ||
5282 | * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special | |
5283 | sections. | |
5284 | ||
429e1e81 JB |
5285 | 2015-03-26 Joel Brobecker <brobecker@adacore.com> |
5286 | ||
5287 | * dtrace-probe.c (dtrace_process_dof_probe): Contain any | |
5288 | exception raised while parsing the probe arguments. | |
5289 | Force parsing to be done using the C language parser. | |
5290 | * expression.h (parse_expression_with_language): Declare. | |
5291 | * parse.c (parse_expression_with_language): New function. | |
5292 | ||
4593441b JT |
5293 | 2015-03-26 Jon Turney <jon.turney@dronecode.org.uk> |
5294 | ||
5295 | * MAINTAINERS (Write After Approval): Add "Jon Turney". | |
5296 | ||
ff908ebf AW |
5297 | 2015-03-26 Andy Wingo <wingo@igalia.com> |
5298 | ||
5299 | PR symtab/18148 | |
5300 | * dwarf2read.c (struct partial_die_info): Add has_const_value | |
5301 | member. | |
5302 | (add_partial_symbol): Don't punt on symbols that have const_value | |
5303 | attributes. | |
5304 | (read_partial_die): Detect DW_AT_const_value. | |
5305 | ||
f30d5c78 JK |
5306 | 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
5307 | ||
5308 | Code cleanup. | |
5309 | * printcmd.c (print_command_1): Move expr variable scope. | |
5310 | ||
8d89f51a JK |
5311 | 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
5312 | ||
5313 | Code cleanup. | |
5314 | * printcmd.c (validate_format): Make the parameter cmdname const. | |
5315 | ||
0b736949 DB |
5316 | 2015-03-26 Don Breazeal <donb@codesourcery.com> |
5317 | ||
5318 | * remote.c (_initialize_remote): Update comment. | |
5319 | ||
20d35291 PA |
5320 | 2015-03-26 Pedro Alves <palves@redhat.com> |
5321 | Jon TURNEY <jon.turney@dronecode.org.uk> | |
5322 | ||
5323 | * coffread.c (coff_symfile_read): When constructing the name of an | |
5324 | import stub symbol from import symbol for amd64, only skip the | |
5325 | char after _imp_ if the target is underscored (like i386) and the | |
5326 | char is indeed the target's leading char. | |
5327 | ||
6a3753b3 PA |
5328 | 2015-03-25 Pedro Alves <palves@redhat.com> |
5329 | ||
5330 | * target.h <to_async>: Replace 'callback' and 'context' parameters | |
5331 | with boolean 'enable' parameter. | |
5332 | (target_async): Replace CALLBACK and CONTEXT parameters with | |
5333 | boolean ENABLE parameter. | |
5334 | * inf-loop.c (inferior_event_handler): Adjust. | |
5335 | * linux-nat.c (linux_nat_attach, linux_nat_resume) | |
5336 | (linux_nat_resume): Adjust. | |
5337 | (async_client_callback, async_client_context): Delete. | |
5338 | (handle_target_event): Call inferior_event_handler directly. | |
5339 | (linux_nat_async): Replace 'callback' and 'context' parameters | |
5340 | with boolean 'enable' parameter. Adjust. Remove references to | |
5341 | async_client_callback and async_client_context. | |
5342 | (linux_nat_close): Adjust. | |
5343 | * record-btrace.c (record_btrace_async): Replace 'callback' and | |
5344 | 'context' parameters with boolean 'enable' parameter. Adjust. | |
5345 | (record_btrace_resume): Adjust. | |
5346 | * record-full.c (record_full_async): Replace 'callback' and | |
5347 | 'context' parameters with boolean 'enable' parameter. Adjust. | |
5348 | (record_full_resume, record_full_core_resume): Adjust. | |
5349 | * remote.c (struct remote_state) <async_client_callback, | |
5350 | async_client_context>: Delete fields. | |
5351 | (remote_start_remote, extended_remote_attach_1, remote_resume) | |
5352 | (extended_remote_create_inferior): Adjust. | |
5353 | (remote_async_serial_handler): Call inferior_event_handler | |
5354 | directly. | |
5355 | (remote_async): Replace 'callback' and 'context' parameters with | |
5356 | boolean 'enable' parameter. Adjust. | |
5357 | * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper): | |
5358 | Adjust. | |
5359 | * target-delegates.c: Regenerate. | |
5360 | ||
1c4b552b GB |
5361 | 2015-03-25 Gary Benson <gbenson@redhat.com> |
5362 | Pedro Alves <palves@redhat.com> | |
5363 | ||
5364 | * target.c (fileio_ft_t): New typedef, define object vector. | |
5365 | (fileio_fhandles): New static variable. | |
5366 | (is_closed_fileio_fh): New macro. | |
5367 | (lowest_closed_fd): New static variable. | |
5368 | (acquire_fileio_fd): New function. | |
5369 | (release_fileio_fd): Likewise. | |
5370 | (fileio_fd_to_fh): New macro. | |
5371 | (target_fileio_open): Wrap the file descriptor on success. | |
5372 | (target_fileio_pwrite): Updated to use wrapped file descriptor. | |
5373 | (target_fileio_pread): Likewise. | |
5374 | (target_fileio_close): Likewise. | |
5375 | ||
a25d8bf9 PA |
5376 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5377 | ||
5378 | * thread.c (thread_apply_all_command): Take exited threads into | |
5379 | account. | |
5380 | ||
44a1ee51 PA |
5381 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5382 | ||
5383 | * infrun.c (resume, proceed): Mention | |
5384 | switch_back_to_stepped_thread, not switch_back_to_stepping. | |
5385 | ||
f3263aa4 PA |
5386 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5387 | ||
5388 | * infrun.c (user_visible_resume_ptid): Rewrite going from | |
5389 | most-locked to unlocked instead of the opposite. Move comment ... | |
5390 | * infrun.h (user_visible_resume_ptid): ... here. | |
5391 | ||
2bf6fb9d PA |
5392 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5393 | ||
5394 | * linux-nat.c (linux_nat_resume): Output debug logs before trying | |
5395 | to resume the event lwp. Use the lwp's ptid instead of the passed | |
5396 | in (maybe wildcard) ptid. | |
5397 | (stop_wait_callback): Tweak debug log output. | |
5398 | (check_stopped_by_breakpoint): Tweak debug log output. Also dump | |
5399 | TRAP_TRACE. | |
5400 | (linux_nat_filter_event): In debug output, distinguish a | |
5401 | resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs | |
5402 | before trying to resume the lwp. | |
5403 | ||
283a9958 JB |
5404 | 2015-03-24 Joel Brobecker <brobecker@adacore.com> |
5405 | ||
5406 | * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove | |
5407 | pointer indirection. | |
5408 | * gdbtypes.c (get_dyn_prop): Adjust, following change above. | |
5409 | (add_dyn_prop, copy_dynamic_prop_list): Likewise. | |
5410 | ||
93a8e227 JB |
5411 | 2015-03-24 Joel Brobecker <brobecker@adacore.com> |
5412 | ||
5413 | * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>: | |
5414 | Renames DYN_ATTR_DATA_LOCATION. | |
5415 | (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of | |
5416 | DYN_ATTR_DATA_LOCATION. | |
5417 | * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION | |
5418 | instead of DYN_ATTR_DATA_LOCATION. | |
5419 | ||
64ce06e4 PA |
5420 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5421 | ||
5422 | * breakpoint.c (until_break_command): Adjust call to proceed. | |
5423 | * gdbthread.h (struct thread_control_state) <stepping_command>: | |
5424 | New field. | |
5425 | * infcall.c (run_inferior_call): Adjust call to proceed. | |
5426 | * infcmd.c (run_command_1, proceed_thread_callback, continue_1): | |
5427 | Adjust calls to proceed. | |
5428 | (set_step_frame): Set the current thread's step_start_function | |
5429 | here. | |
5430 | (step_once): Adjust calls to proceed. | |
5431 | (jump_command, signal_command, until_next_command) | |
5432 | (finish_backward, finish_forward, proceed_after_attach_callback) | |
5433 | (attach_command_post_wait): Adjust calls to proceed. | |
5434 | * infrun.c (proceed_after_vfork_done): Adjust call to proceed. | |
5435 | (do_target_resume): New function, factored out from ... | |
5436 | (resume): ... here. Remove 'step' parameter. Instead, check | |
5437 | currently_stepping to determine whether the thread should be | |
5438 | single-stepped. | |
5439 | (proceed): Remove 'step' parameter and don't set the thread's | |
5440 | step_start_function here. Adjust call to 'resume'. | |
5441 | (handle_inferior_event): Adjust calls to 'resume'. | |
5442 | (switch_back_to_stepped_thread): Use do_target_resume instead of | |
5443 | 'resume'. | |
5444 | (keep_going): Adjust calls to 'resume'. | |
5445 | * infrun.h (proceed): Remove 'step' parameter. | |
5446 | (resume): Likewise. | |
5447 | * windows-nat.c (do_initial_windows_stuff): Adjust call to | |
5448 | 'resume'. | |
5449 | * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'. | |
5450 | ||
856e7dd6 PA |
5451 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5452 | ||
5453 | * gdbthread.h (struct thread_control_state) <stepping_command>: | |
5454 | New field. | |
5455 | * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set | |
5456 | the thread's stepping_command field. | |
5457 | * infrun.c (resume): Check the thread's stepping_command flag to | |
5458 | determine which threads should be resumed. Rename 'entry_step' | |
5459 | local to user_step. | |
5460 | (clear_proceed_status_thread): Clear 'stepping_command'. | |
5461 | (schedlock_applies): Change parameter type to struct thread_info | |
5462 | pointer. Adjust. | |
5463 | (find_thread_needs_step_over): Remove 'step' parameter. Adjust. | |
5464 | (switch_back_to_stepped_thread): Adjust calls to | |
5465 | 'schedlock_applies'. | |
5466 | (_initialize_infrun): Adjust "set scheduler-locking step" help. | |
5467 | ||
885eeb5b PA |
5468 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5469 | ||
5470 | * infrun.c (step_start_function): Delete and ... | |
5471 | * gdbthread.h (struct thread_control_state) <step_start_function>: | |
5472 | ... now a field here. | |
5473 | * infrun.c (clear_proceed_status_thread): Clear the thread's | |
5474 | step_start_function. | |
5475 | (proceed, process_event_stop_test, print_stop_event): Adjust. | |
5476 | ||
3333f03a PA |
5477 | 2015-03-24 Pedro Alves <palves@redhat.com> |
5478 | ||
5479 | * infrun.c (proceed): No longer handle negative step. | |
5480 | ||
369f6daa GB |
5481 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5482 | ||
5483 | * nat/x86-linux.h (x86_linux_new_thread): New declaration. | |
5484 | (x86_linux_prepare_to_resume): Likewise. | |
5485 | * x86-linux-nat.c (x86_linux_new_thread): | |
5486 | Moved to nat/x86-linux.c. | |
5487 | (x86_linux_prepare_to_resume): Likewise. | |
5488 | * nat/x86-linux.c (x86_linux_new_thread): New function. | |
5489 | (x86_linux_prepare_to_resume): Likewise. | |
5490 | ||
8e5d4070 GB |
5491 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5492 | ||
5493 | * nat/x86-linux-dregs.h: New file. | |
5494 | * nat/x86-linux-dregs.c: Likewise. | |
5495 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h. | |
5496 | (x86-linux-dregs.o): New rule. | |
5497 | * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o. | |
5498 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
5499 | * x86-linux-nat.c: Include nat/x86-linux-dregs.h. | |
5500 | (u_debugreg_offset): Moved to nat/x86-linux-dregs.c. | |
5501 | (x86_linux_dr_get): Likewise. | |
5502 | (x86_linux_dr_set): Likewise. | |
5503 | (x86_linux_dr_get_addr): Likewise. | |
5504 | (x86_linux_dr_get_control): Likewise. | |
5505 | (x86_linux_dr_get_status): Likewise. | |
5506 | (update_debug_registers_callback): Likewise. | |
5507 | (x86_linux_dr_set_control): Likewise. | |
5508 | (x86_linux_dr_set_addr): Likewise. | |
5509 | (x86_linux_update_debug_registers): Likewise. | |
5510 | ||
2b95d440 GB |
5511 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5512 | ||
5513 | * x86-linux-nat.c (x86_linux_update_debug_registers): | |
5514 | New function, factored out from... | |
5515 | (x86_linux_prepare_to_resume): ...this. | |
5516 | ||
14b0bc68 GB |
5517 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5518 | ||
5519 | * x86-linux-nat.c (x86_linux_dr_get): Update comments. | |
5520 | (x86_linux_dr_set): Likewise. | |
5521 | (x86_linux_dr_get_addr): Likewise. | |
5522 | (x86_linux_dr_get_control): Likewise. | |
5523 | (x86_linux_dr_get_status): Likewise. | |
5524 | (update_debug_registers_callback): Likewise. | |
5525 | (x86_linux_dr_set_control): Likewise. | |
5526 | (x86_linux_dr_set_addr): Likewise. | |
5527 | (x86_linux_prepare_to_resume): Likewise. | |
5528 | (x86_linux_new_thread): Likewise. | |
5529 | ||
5dfe6ca8 GB |
5530 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5531 | ||
5532 | * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion. | |
5533 | (x86_linux_new_thread): Rename argument. | |
5534 | ||
4b134ca1 GB |
5535 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5536 | ||
5537 | * nat/x86-linux.h: New file. | |
5538 | * nat/x86-linux.c: Likewise. | |
5539 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h. | |
5540 | (x86-linux.o): New rule. | |
5541 | * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o. | |
5542 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
5543 | * nat/linux-nat.h (struct arch_lwp_info): New forward declaration. | |
5544 | (lwp_set_arch_private_info): New declaration. | |
5545 | (lwp_arch_private_info): Likewise. | |
5546 | * linux-nat.c (lwp_set_arch_private_info): New function. | |
5547 | (lwp_arch_private_info): Likewise. | |
5548 | * x86-linux-nat.c: Include nat/x86-linux.h. | |
5549 | (arch_lwp_info): Removed structure. | |
5550 | (update_debug_registers_callback): | |
5551 | Use lwp_set_debug_registers_changed. | |
5552 | (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed | |
5553 | and lwp_set_debug_registers_changed. | |
5554 | (x86_linux_new_thread): Use lwp_set_debug_registers_changed. | |
5555 | ||
cff068da GB |
5556 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5557 | ||
5558 | * nat/linux-nat.h (ptid_of_lwp): New declaration. | |
5559 | (lwp_is_stopped): Likewise. | |
5560 | (lwp_stop_reason): Likewise. | |
5561 | * linux-nat.c (ptid_of_lwp): New function. | |
5562 | (lwp_is_stopped): Likewise. | |
5563 | (lwp_is_stopped_by_watchpoint): Likewise. | |
5564 | * x86-linux-nat.c (update_debug_registers_callback): | |
5565 | Use lwp_is_stopped. | |
5566 | (x86_linux_prepare_to_resume): Use ptid_of_lwp and | |
5567 | lwp_stop_reason. | |
5568 | ||
b2f7c7e8 GB |
5569 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5570 | ||
5571 | * linux-nat.h (linux_stop_lwp): Move declaration to... | |
5572 | * nat/linux-nat.h (linux_stop_lwp): New declaration. | |
5573 | ||
6d4ee8c6 GB |
5574 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5575 | ||
5576 | * linux-nat.h: Include nat/linux-nat.h. | |
5577 | (iterate_over_lwps): Move declaration to nat/linux-nat.h. | |
5578 | * nat/linux-nat.h (struct lwp_info): New forward declaration. | |
5579 | (iterate_over_lwps_ftype): New typedef. | |
5580 | (iterate_over_lwps): New declaration. | |
5581 | * linux-nat.h (iterate_over_lwps): Update comment. Use | |
5582 | iterate_over_lwps_ftype. Update callback return value check. | |
5583 | ||
70a0bb6b GB |
5584 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5585 | ||
5586 | * x86-nat.h (x86_debug_reg_state): Move declaration to... | |
5587 | * nat/x86-dregs.h (x86_debug_reg_state): New declaration. | |
5588 | ||
7b669087 GB |
5589 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
5590 | ||
5591 | * nat/linux-nat.h (current_lwp_ptid): New declaration. | |
5592 | * linux-nat.c (current_lwp_ptid): New function. | |
5593 | * x86-linux-nat.c: Include nat/linux-nat.h. | |
5594 | (x86_linux_dr_get_addr): Use current_lwp_ptid. | |
5595 | (x86_linux_dr_get_control): Likewise. | |
5596 | (x86_linux_dr_get_status): Likewise. | |
5597 | (x86_linux_dr_set_control): Likewise. | |
5598 | (x86_linux_dr_set_addr): Likewise. | |
5599 | ||
15630549 AT |
5600 | 2015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com> |
5601 | ||
5602 | PR breakpoints/16466 | |
5603 | * breakpoint.c (create_breakpoint): Set thread on breakpoint struct. | |
5604 | ||
8a4506c0 JB |
5605 | 2015-03-23 Joel Brobecker <brobecker@adacore.com> |
5606 | ||
5607 | * ser-mingw.c (ser_windows_setparity): Fix indentation. | |
5608 | * ser-unix.c (hardwire_setparity): Likewise. | |
5609 | ||
236af5e3 YG |
5610 | 2015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com> |
5611 | ||
5612 | * NEWS: Mention set/show serial parity command. | |
5613 | * monitor.c (monitor_open): Call serial_setparity. | |
5614 | * remote.c (remote_open_1): Likewise. | |
5615 | * ser-base.c (ser_base_serparity): New function. | |
5616 | * ser-base.h (ser_base_setparity): Add declaration. | |
5617 | * ser-go32.c (dos_ops): Set "setparity" field. | |
5618 | * ser-mingw.c (ser_windows_raw): Do not set state.fParity and | |
5619 | state.Parity. | |
5620 | (ser_windows_setparity): New function. | |
5621 | (hardwire_ops): Add ser_windows_setparity. | |
5622 | (tty_ops): Add NULL for setparity field. | |
5623 | (pipe_ops): Add ser_base_setparity. | |
5624 | (tcp_ops): Likewise. | |
5625 | * ser-pipe.c (pipe_ops): Likewise. | |
5626 | * ser-tcp.c (tcp_ops): Likewise. | |
5627 | * ser-unix.c (hardwire_setparity): Add declaration. | |
5628 | (hardwire_raw): Don't reset PARENB flag. | |
5629 | (hardwire_setparity): New function. | |
5630 | (hardwire_ops): Add hardwire_setparity. | |
5631 | * serial.c (serial_setparity): New function. | |
5632 | (serial_parity): New global. | |
5633 | (parity_none, parity_odd, parity_even, parity_enums, parity): | |
5634 | New static globals. | |
5635 | (set_parity): New function. | |
5636 | (_initialize_serial): Add set/show serial parity commands. | |
5637 | * serial.h (GDBPARITY_NONE): Define. | |
5638 | (GDBPARITY_ODD): Define. | |
5639 | (GDBPARITY_EVEN): Define. | |
5640 | (serial_setparity) Add declaration. | |
5641 | (struct serial_ops): Add setparity field. | |
5642 | * target.h (serial_parity): Add declaration. | |
5643 | ||
32b40af9 KS |
5644 | 2015-03-23 Keith Seitz <keiths@redhat.com> |
5645 | ||
5646 | * linespec.c (linespec_lexer_lex_keyword): Update comment. | |
5647 | ||
693dca06 KS |
5648 | 2015-03-23 Keith Seitz <keiths@redhat.com> |
5649 | ||
5650 | * breakpoint.c (parse_breakpoint_sals): Use | |
5651 | linespec_lexer_lex_keyword to ascertain if the user specified | |
5652 | a NULL location. | |
5653 | * linespec.c [IF_KEYWORD_INDEX]: Define. | |
5654 | (linespec_lexer_lex_keyword): Export. | |
5655 | (struct ls_parser) <keyword_ok>: Remove. | |
5656 | A keyword is only a keyword if not followed by another keyword. | |
5657 | (linespec_lexer_lex_one): Remove keyword_ok handling. | |
5658 | Add comment explaining why the parsing stream is not advanced | |
5659 | when a keyword is seen. | |
5660 | (parse_linespec): Remove parser->keyword_ok. | |
5661 | * linespec.h (linespec_lexer_lex_keyword): Add declaration. | |
5662 | ||
7e993ebf KS |
5663 | 2015-03-23 Keith Seitz <keiths@redhat.com> |
5664 | ||
5665 | PR gdb/18021 | |
5666 | * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint | |
5667 | if we find a static method with DW_AT_vtable_elem_location. | |
5668 | ||
b1a0f704 EZ |
5669 | 2015-03-21 Eli Zaretskii <eliz@gnu.org> |
5670 | ||
5671 | * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter | |
5672 | before the second loop, to avoid undefined behavior. Reported by | |
5673 | Anton Blanchard <anton@samba.org>. | |
5674 | ||
d9823cbb KB |
5675 | 2015-03-20 Keven Boell <keven.boell@intel.com> |
5676 | ||
5677 | * gdbtypes.c (resolve_dynamic_type_internal): Adapt | |
5678 | data_location usage to linked list. | |
5679 | (resolve_dynamic_type_internal): Adapt data_location to | |
5680 | linked list. | |
5681 | (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function. | |
5682 | (copy_type_recursive, copy_type): Add copy of linked list. | |
5683 | * gdbtypes.h (enum dynamic_prop_node_kind): New enum. | |
5684 | (struct dynamic_prop_list): New struct. | |
5685 | * dwarf2read.c (set_die_type): Set data_location data. | |
5686 | ||
2e7bf1d7 PA |
5687 | 2015-03-20 Pedro Alves <palves@redhat.com> |
5688 | ||
5689 | * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to | |
5690 | inner block and make it const. | |
5691 | * machoread.c (get_archive_prefix_len): Make "lparen" const. | |
5692 | ||
7a26bd4d PA |
5693 | 2015-03-20 Pedro Alves <palves@redhat.com> |
5694 | ||
5695 | * breakpoint.c (set_breakpoint_condition): Make argument "exp" const. | |
5696 | * breakpoint.h (set_breakpoint_condition): Update declaration. | |
5697 | ||
cd46431b PA |
5698 | 2015-03-20 Pedro Alves <palves@redhat.com> |
5699 | ||
5700 | * tui/tui-io.c (tui_expand_tabs): Make "s1" const. | |
5701 | ||
e28566f7 PA |
5702 | 2015-03-20 Pedro Alves <palves@redhat.com> |
5703 | ||
5704 | * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const. | |
5705 | ||
f6fc92f6 PA |
5706 | 2015-03-20 Pedro Alves <palves@redhat.com> |
5707 | ||
5708 | * remote-m32r-sdi.c (m32r_open): Make "port_str" const. | |
5709 | ||
c32ed3ef PA |
5710 | 2015-03-20 Pedro Alves <palves@redhat.com> |
5711 | ||
5712 | * nto-tdep.c (nto_find_and_open_solib): Make "endian" const. | |
5713 | (nto_init_solib_absolute_prefix): Likewise. | |
5714 | ||
53e78085 PA |
5715 | 2015-03-20 Pedro Alves <palves@redhat.com> |
5716 | ||
5717 | * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const. | |
5718 | * spu-tdep.c (spu_gdbarch_init): Make "name" const. | |
5719 | ||
bc23328c JK |
5720 | 2015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com> |
5721 | ||
5722 | * config/djgpp/README: Remove gdb.hp. | |
5723 | ||
e8ffc436 YQ |
5724 | 2015-03-20 Yao Qi <yao.qi@linaro.org> |
5725 | ||
5726 | * aarch64-tdep.c (aarch64_gdbarch_init): Don't call | |
5727 | set_gdbarch_cannot_step_breakpoint. | |
5728 | ||
23f238d3 PA |
5729 | 2015-03-19 Pedro Alves <palves@redhat.com> |
5730 | ||
5731 | * linux-nat.c (linux_resume_one_lwp): Rename to ... | |
5732 | (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here, | |
5733 | instead call perror_with_name. | |
5734 | (check_ptrace_stopped_lwp_gone): New function. | |
5735 | (linux_resume_one_lwp): Reimplement as wrapper around | |
5736 | linux_resume_one_lwp_throw that swallows errors if the LWP is | |
5737 | gone. | |
5738 | (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and | |
5739 | swallows errors if the LWP is gone. Use | |
5740 | linux_resume_one_lwp_throw instead of linux_resume_one_lwp. | |
5741 | ||
eb54c8bf PA |
5742 | 2015-03-19 Pedro Alves <palves@redhat.com> |
5743 | ||
5744 | * linux-nat.c (status_callback): Return early if the LWP has no | |
5745 | status pending. | |
5746 | ||
b90fc188 PA |
5747 | 2015-03-19 Pedro Alves <palves@redhat.com> |
5748 | ||
5749 | * linux-nat.c (select_event_lwp_callback): Update comment to no | |
5750 | longer mention SIGTRAP. | |
5751 | ||
670f82d4 TG |
5752 | 2015-03-18 Tristan Gingold <gingold@adacore.com> |
5753 | ||
72f4393d L |
5754 | * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move |
5755 | redirection code to ... | |
5756 | (amd64_windows_frame_decode_insns): ... Here. Fix in prologue | |
5757 | checks. Fix SAVE_NONVOL operations. Add debug code and comments. | |
670f82d4 | 5758 | |
464b0089 GB |
5759 | 2015-03-18 Gary Benson <gbenson@redhat.com> |
5760 | ||
5761 | (remote_protocol_features): Remove the "vFile:fstat" feature. | |
5762 | (remote_hostio_fstat): Probe for "vFile:fstat" support. | |
5763 | ||
f68f11b7 YQ |
5764 | 2015-03-11 Yao Qi <yao.qi@linaro.org> |
5765 | ||
5766 | PR tdep/18107 | |
5767 | * aarch64-linux-tdep.c: Include xml-syscall.h | |
5768 | (aarch64_linux_get_syscall_number): New function. | |
5769 | (aarch64_linux_init_abi): Call | |
5770 | set_gdbarch_get_syscall_number. | |
5771 | * syscalls/aarch64-linux.xml: New file. | |
5772 | ||
393bd0c0 YG |
5773 | 2015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com> |
5774 | ||
5775 | * ser-base.h (ser_base_setstopbits): Change second argument name | |
5776 | from "rate" to "num". | |
5777 | ||
7f3647e2 GB |
5778 | 2015-03-17 Gary Benson <gbenson@redhat.com> |
5779 | Luke Allardyce <lukeallardyce@gmail.com> | |
5780 | ||
5781 | PR gdb/18131 | |
5782 | * common/common-remote-fileio.h (sys/stat.h): New include. | |
5783 | (stuct stat): Remove forward declaration. | |
5784 | ||
3ce5b6e2 JB |
5785 | 2015-03-16 John Baldwin <jhb@FreeBSD.org> |
5786 | ||
5787 | * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers | |
5788 | before writing core register notes. | |
5789 | ||
d053f6be YZ |
5790 | 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com> |
5791 | Pedro Alves <palves@redhat.com> | |
5792 | ||
5793 | * gdb_curses.h (tgetnum): Mark with EXTERN_C. | |
5794 | * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs) | |
5795 | (tgoto): Wrap with extern "C". | |
5796 | ||
b1a921c8 PA |
5797 | 2015-03-16 Pedro Alves <palves@redhat.com> |
5798 | Yuanhui Zhang <asmwarrior@gmail.com> | |
5799 | ||
5800 | * stub-termcap.c (tputs): Change prototype. | |
5801 | ||
876d1cd7 YZ |
5802 | 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com> |
5803 | Pedro Alves <palves@redhat.com> | |
5804 | ||
5805 | * windows-nat.c (struct thread_info_struct): Rename to ... | |
5806 | (struct windows_thread_info_struct): ... this. | |
5807 | (thread_info): Rename to ... | |
5808 | (windows_thread_info): ... this. | |
5809 | All users updated. | |
5810 | ||
0800b440 JK |
5811 | 2015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com> |
5812 | Pedro Alves <palves@redhat.com> | |
5813 | ||
5814 | * NEWS: New Removed targets and native configurations. | |
5815 | ||
5816 | 2015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com> | |
61a12cfa JK |
5817 | |
5818 | Remove HPUX. | |
5819 | * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o. | |
5820 | (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o. | |
5821 | (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and | |
5822 | ia64-hpux-tdep.h, solib-ia64-hpux.h. | |
5823 | (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c, | |
5824 | ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c. | |
5825 | * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and | |
5826 | hppa-hpux-tdep.c. | |
5827 | * config/ia64/hpux.mh: Remove file. | |
5828 | * config/pa/hpux.mh: Remove file. | |
5829 | * configure: Rebuilt. | |
5830 | * configure.ac (dlgetmodinfo, somread.o): Remove. | |
5831 | * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete. | |
5832 | (ia64-*-hpux*): Remove its float format exception. | |
5833 | * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete. | |
5834 | * hppa-hpux-nat.c: Remove file. | |
5835 | * hppa-hpux-tdep.c: Remove file. | |
5836 | * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private): | |
5837 | Move them here from hppa-tdep.h | |
5838 | (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static. | |
5839 | (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception. | |
5840 | * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private): | |
5841 | Move them to hppa-tdep.c. | |
5842 | (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove | |
5843 | declarations. | |
5844 | * ia64-hpux-nat.c: Remove file. | |
5845 | * ia64-hpux-tdep.c: Remove file. | |
5846 | * ia64-hpux-tdep.h: Remove file. | |
5847 | * inf-ttrace.c: Remove file. | |
5848 | * inf-ttrace.h: Remove file. | |
5849 | * solib-ia64-hpux.c: Remove file. | |
5850 | * solib-ia64-hpux.h: Remove file. | |
5851 | * solib-pa64.c: Remove file. | |
5852 | * solib-pa64.h: Remove file. | |
5853 | * solib-som.c: Remove file. | |
5854 | * solib-som.h: Remove file. | |
5855 | * somread.c: Remove file. | |
5856 | ||
25268153 JB |
5857 | 2015-03-13 John Baldwin <jhb@FreeBSD.org> |
5858 | ||
5859 | * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util). | |
5860 | * config.in: Regenerate. | |
5861 | * configure: Regenerate. | |
5862 | * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't | |
72f4393d | 5863 | define. |
25268153 JB |
5864 | (fbsd_find_memory_regions): Use kinfo_getvmmap to |
5865 | enumerate memory regions if present. | |
5866 | ||
773eacf5 JB |
5867 | 2015-03-13 John Baldwin <jhb@FreeBSD.org> |
5868 | ||
5869 | * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes. | |
5870 | * i386fbsd-tdep.c: Fix style in various gdb_static_assert | |
5871 | expressions. | |
5872 | (i386fbsd_sigtramp_p): Likewise. | |
5873 | ||
01b6bdb0 JB |
5874 | 2015-03-12 John Baldwin <jhb@FreeBSD.org> |
5875 | ||
5876 | * MAINTAINERS (Write After Approval): Add John Baldwin. | |
5877 | ||
811a659a GB |
5878 | 2015-03-12 Gary Benson <gbenson@redhat.com> |
5879 | ||
5880 | * solib.c (_initialize_solib): Make "set/show sysroot" use | |
5881 | add_setshow_optional_filename_cmd so it can be restored to | |
5882 | empty after being set. | |
5883 | ||
10304ef3 SDJ |
5884 | 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com> |
5885 | ||
5886 | * Makefile.in (SFILES): New source break-catch-syscall.c. | |
5887 | (COMMON_OBS): New object break-catch-syscall.o. | |
5888 | * break-catch-syscall.c: New file. | |
5889 | * breakpoint.c: Remove inclusion of "xml-syscall.h". | |
5890 | (syscall_catchpoint_p): Move declaration to break-catch-syscall.c | |
5891 | (struct syscall_catchpoint): Likewise. | |
5892 | (dtor_catch_syscall): Likewise. | |
5893 | (catch_syscall_inferior_data): Likewise. | |
5894 | (struct catch_syscall_inferior_data): Likewise. | |
5895 | (get_catch_syscall_inferior_data): Likewise. | |
5896 | (catch_syscall_inferior_data_cleanup): Likewise. | |
5897 | (insert_catch_syscall): Likewise. | |
5898 | (remove_catch_syscall): Likewise. | |
5899 | (breakpoint_hit_catch_syscall): Likewise. | |
5900 | (print_it_catch_syscall): Likewise. | |
5901 | (print_one_catch_syscall): Likewise. | |
5902 | (print_mention_catch_syscall): Likewise. | |
5903 | (print_recreate_catch_syscall): Likewise. | |
5904 | (catch_syscall_breakpoint_ops): Likewise. | |
5905 | (syscall_catchpoint_p): Likewise. | |
5906 | (create_syscall_event_catchpoint): Likewise. | |
5907 | (catch_syscall_split_args): Likewise. | |
5908 | (catch_syscall_command_1): Likewise. | |
5909 | (is_syscall_catchpoint_enabled): Likewise. | |
5910 | (catch_syscall_enabled): Likewise. | |
5911 | (catching_syscall_number): Likewise. | |
5912 | (catch_syscall_completer): Likewise. | |
5913 | (clear_syscall_counts): Likewise. | |
5914 | (initialize_breakpoint_ops): Move initialization of syscall | |
5915 | catchpoints to break-catch-syscall.c. | |
5916 | (_initialize_breakpoint): Move code related to syscall catchpoints | |
5917 | to break-catch-syscall.c. | |
5918 | ||
badd37ce SDJ |
5919 | 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com> |
5920 | ||
5921 | * breakpoint.c (breakpoint_find_if): New function. | |
5922 | * breakpoint.h (breakpoint_find_if): New prototype. | |
5923 | ||
0a93529c GB |
5924 | 2015-03-11 Gary Benson <gbenson@redhat.com> |
5925 | ||
5926 | * remote-fileio.h (remote_fileio_to_host_stat): New declaration. | |
5927 | * remote-fileio.c (remote_fileio_to_host_uint): New function. | |
5928 | (remote_fileio_to_host_ulong): Likewise. | |
5929 | (remote_fileio_to_host_mode): Likewise. | |
5930 | (remote_fileio_to_host_time): Likewise. | |
5931 | (remote_fileio_to_host_stat): Likewise. | |
5932 | * remote.c (PACKET_vFile_fstat): New enum value. | |
5933 | (remote_protocol_features): Register the "vFile:fstat" feature. | |
5934 | (remote_hostio_fstat): New function. | |
5935 | (remote_bfd_iovec_stat): Use the above. | |
5936 | (_initialize_remote): Register new "set/show remote | |
5937 | hostio-fstat-packet" command. | |
5938 | * symfile.c (separate_debug_file_exists): Update comment. | |
5939 | * NEWS: Announce new vFile:fstat packet. | |
5940 | ||
791c0056 GB |
5941 | 2015-03-11 Gary Benson <gbenson@redhat.com> |
5942 | ||
5943 | * common/common-remote-fileio.h: New file. | |
5944 | * common/common-remote-fileio.c: Likewise. | |
5945 | * Makefile.in (SFILES): Add common/common-remote-fileio.c. | |
5946 | (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h. | |
5947 | (COMMON_OBS): Add common-remote-fileio.o. | |
5948 | (common-remote-fileio.o): New rule. | |
5949 | * remote-fileio.h (common-remote-fileio.h): New include. | |
5950 | * remote-fileio.c (gdb/fileio.h): Do not include. | |
5951 | (remote_fileio_to_be): Moved to common-remote-fileio.h. | |
5952 | (remote_fileio_to_fio_uint): Likewise. | |
5953 | (remote_fileio_to_fio_time): Likewise. | |
5954 | (remote_fileio_mode_to_target): Moved to common-remote-fileio.c. | |
5955 | (remote_fileio_to_fio_mode): Likewise. | |
5956 | (remote_fileio_to_fio_ulong): Likewise. | |
5957 | (remote_fileio_to_fio_stat): Likewise. | |
5958 | ||
1390d0ef AW |
5959 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
5960 | ||
5961 | * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which | |
5962 | we were checking the cached type, not the cached dynamic type. | |
5963 | ||
84a4591a AW |
5964 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
5965 | ||
5966 | * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and | |
5967 | other strings, as these are on the GC'd heap, and will be | |
5968 | collected along with the smob. | |
5969 | ||
85642ba0 AW |
5970 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
5971 | ||
5972 | * guile/scm-objfile.c (gdbscm_objfile_progspace): New function. | |
5973 | (objfile_functions): Bind gdbscm_objfile_progspace to | |
5974 | objfile-progspace. | |
5975 | * guile/lib/gdb.scm: Add objfile-progspace to exports. | |
5976 | ||
92fab5a6 AW |
5977 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
5978 | ||
5979 | * guile/guile.c (_initialize_guile): Disable automatic | |
5980 | finalization, if Guile offers us that possibility. | |
5981 | * guile/guile.c (call_initialize_gdb_module): | |
5982 | * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run | |
5983 | finalizers in appropriate places. | |
5984 | * configure.ac (AC_TRY_LIBGUILE): Add a check for | |
5985 | scm_set_automatic_finalization_enabled. | |
5986 | * configure: Regenerated. | |
5987 | ||
f054145e AA |
5988 | 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com> |
5989 | ||
5990 | * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using | |
5991 | SAL, if possible. | |
5992 | ||
18396193 AA |
5993 | 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com> |
5994 | ||
5995 | * s390-linux-nat.c (struct arch_lwp_info): New. | |
5996 | (s390_fix_watch_points): Rename to... | |
5997 | (s390_prepare_to_resume): ...this. Skip the PER info update | |
5998 | unless the watch points have changed. | |
5999 | (s390_refresh_per_info, s390_new_thread): New functions. | |
6000 | (s390_insert_watchpoint): Call s390_refresh_per_info instead of | |
6001 | s390_fix_watch_points. | |
6002 | (s390_remove_watchpoint): Likewise. | |
6003 | (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points. | |
6004 | Register s390_prepare_to_resume. | |
6005 | ||
9eb1356e PA |
6006 | 2015-03-09 Pedro Alves <palves@redhat.com> |
6007 | ||
6008 | Revert: | |
6009 | 2015-03-07 Pedro Alves <palves@redhat.com> | |
6010 | * common/gdb_socket.h: New file. | |
6011 | * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor | |
6012 | sys/socket.h. | |
6013 | (net_open): Use union gdb_sockaddr_u. | |
6014 | ||
aac331e4 PA |
6015 | 2015-03-07 Pedro Alves <palves@redhat.com> |
6016 | ||
6017 | * configure.ac (build_warnings): Move -Wmissing-prototypes | |
6018 | -Wdeclaration-after-statement -Wmissing-parameter-type | |
6019 | -Wold-style-declaration -Wold-style-definition to the C-specific | |
6020 | set. | |
6021 | * configure: Regenerate. | |
6022 | ||
366c75fc PA |
6023 | 2015-03-07 Pedro Alves <palves@redhat.com> |
6024 | ||
6025 | * common/gdb_socket.h: New file. | |
6026 | * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor | |
6027 | sys/socket.h. | |
6028 | (net_open): Use union gdb_sockaddr_u. | |
6029 | ||
72df25b2 PA |
6030 | 2015-03-07 Pedro Alves <palves@redhat.com> |
6031 | ||
6032 | * common/common-exceptions.c [!__cplusplus] (enum catcher_state) | |
6033 | (exceptions_state_mc_action_iter) | |
6034 | (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch): | |
6035 | Don't define. | |
6036 | [__cplusplus] (try_scope_depth): New global. | |
6037 | [__cplusplus] (exception_try_scope_entry) | |
6038 | (exception_try_scope_exit, gdb_exception_sliced_copy) | |
6039 | (exception_rethrow): New functions. | |
6040 | (throw_exception): In C++ mode, throw | |
6041 | gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and | |
6042 | gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR. | |
6043 | (throw_it): In C++ mode, use try_scope_depth. | |
6044 | * common/common-exceptions.h [!__cplusplus] | |
6045 | (exceptions_state_mc_action_iter) | |
6046 | (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch): | |
6047 | Don't declare. | |
6048 | [__cplusplus] (exception_try_scope_entry) | |
6049 | (exception_try_scope_exit, exception_rethrow): Declare. | |
6050 | [__cplusplus] (struct exception_try_scope): New struct. | |
6051 | [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real | |
6052 | C++ exceptions. | |
6053 | (struct gdb_exception_RETURN_MASK_ALL) | |
6054 | (struct gdb_exception_RETURN_MASK_ERROR) | |
6055 | (struct gdb_exception_RETURN_MASK_QUIT): New types. | |
6056 | ||
284e6217 PA |
6057 | 2015-03-07 Pedro Alves <palves@redhat.com> |
6058 | ||
6059 | * main.c (handle_command_errors): Remove volatile qualifier from | |
6060 | parameter. | |
6061 | ||
6c63c96a PA |
6062 | 2015-03-07 Pedro Alves <palves@redhat.com> |
6063 | ||
6064 | * breakpoint.c (save_breakpoints): Adjust to avoid code between | |
6065 | TRY and CATCH. | |
6066 | * gdbtypes.c (safe_parse_type): Remove empty line. | |
6067 | (types_deeply_equal): | |
6068 | * guile/scm-frame.c (gdbscm_frame_name): | |
6069 | * linux-thread-db.c (find_new_threads_once): | |
6070 | * python/py-breakpoint.c (bppy_get_commands): | |
6071 | * record-btrace.c (record_btrace_insert_breakpoint) | |
6072 | (record_btrace_remove_breakpoint, record_btrace_start_replaying) | |
6073 | (record_btrace_start_replaying): Adjust to avoid code between TRY | |
6074 | and CATCH. | |
6075 | ||
492d29ea PA |
6076 | 2015-03-07 Pedro Alves <palves@redhat.com> |
6077 | ||
6078 | * common/common-exceptions.c (struct catcher) <exception>: No | |
6079 | longer a pointer to volatile exception. Now an exception value. | |
6080 | <mask>: Delete field. | |
6081 | (exceptions_state_mc_init): Remove all parameters. Adjust. | |
6082 | (exceptions_state_mc): No longer pop the catcher here. | |
6083 | (exceptions_state_mc_catch): New function. | |
6084 | (throw_exception): Adjust. | |
6085 | * common/common-exceptions.h (exceptions_state_mc_init): Remove | |
6086 | all parameters. | |
6087 | (exceptions_state_mc_catch): Declare. | |
6088 | (TRY_CATCH): Rename to ... | |
6089 | (TRY): ... this. Remove EXCEPTION and MASK parameters. | |
6090 | (CATCH, END_CATCH): New. | |
6091 | All callers adjusted. | |
6092 | ||
ece957c8 TT |
6093 | 2015-03-07 Tom Tromey <tromey@redhat.com> |
6094 | ||
6095 | * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX. | |
6096 | ||
7556d4a4 PA |
6097 | 2015-03-07 Pedro Alves <palves@redhat.com> |
6098 | ||
6099 | * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache) | |
6100 | (amd64_epilogue_frame_cache): Normal exception handling code. | |
6101 | * break-catch-throw.c (check_status_exception_catchpoint) | |
6102 | (re_set_exception_catchpoint): Ditto. | |
6103 | * cli/cli-interp.c (safe_execute_command): | |
6104 | * cli/cli-script.c (script_from_file): Ditto. | |
6105 | * compile/compile-c-symbols.c (generate_c_for_for_one_variable): | |
6106 | Ditto. | |
6107 | * compile/compile-object-run.c (compile_object_run): Ditto. | |
6108 | * cp-abi.c (baseclass_offset): Ditto. | |
6109 | * cp-valprint.c (cp_print_value): Ditto. | |
6110 | * exceptions.c (catch_exceptions_with_msg): | |
6111 | * frame-unwind.c (frame_unwind_try_unwinder): Ditto. | |
6112 | * frame.c (get_frame_address_in_block_if_available): Ditto. | |
6113 | * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache) | |
6114 | (i386_sigtramp_frame_cache): Ditto. | |
6115 | * infcmd.c (post_create_inferior): Ditto. | |
6116 | * linespec.c (parse_linespec, find_linespec_symbols): | |
6117 | * p-valprint.c (pascal_object_print_value): Ditto. | |
6118 | * parse.c (parse_expression_for_completion): Ditto. | |
6119 | * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto. | |
6120 | * remote.c (remote_get_noisy_reply): Ditto. | |
6121 | * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto. | |
6122 | * solib-svr4.c (solib_svr4_r_map): Ditto. | |
6123 | ||
f873665f | 6124 | 2015-03-06 Gary Benson <gbenson@redhat.com> |
61012eef GB |
6125 | |
6126 | * common/common-utils.h (startswith): New inline function. | |
6127 | All places where this logic was used updated to use the above. | |
6128 | ||
68901c4d PA |
6129 | 2015-03-05 Pedro Alves <palves@redhat.com> |
6130 | ||
6131 | PR gdb/18002 | |
6132 | * mem-break.c (default_memory_insert_breakpoint): Set shadow_len | |
6133 | after reading the breakpoint's shadow memory. | |
6134 | ||
2dcb2b1a MK |
6135 | 2015-03-05 Mark Kettenis <kettenis@gnu.org> |
6136 | ||
6137 | * hppabsd-nat.c: Remove file. | |
6138 | * hppaobsd-nat.c: New file. | |
6139 | * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add | |
6140 | hppaobsd-nat.c. | |
6141 | * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with | |
6142 | hppaobsd-nat.o. | |
6143 | ||
527a273a PA |
6144 | 2015-03-04 Pedro Alves <palves@redhat.com> |
6145 | ||
6146 | * target.h (struct target_ops) <to_decr_pc_after_break>: Delete. | |
6147 | (target_decr_pc_after_break): Delete declaration. | |
6148 | * target.c (default_target_decr_pc_after_break) | |
6149 | (target_decr_pc_after_break): Delete. | |
6150 | * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use | |
6151 | gdbarch_decr_pc_after_break instead of target_decr_pc_after_break. | |
6152 | * linux-thread-db.c (check_event): Likewise. | |
6153 | * infrun.c (adjust_pc_after_break): Likewise. | |
6154 | * darwin-nat.c (cancel_breakpoint): Likewise. | |
6155 | * aix-thread.c (aix_thread_wait): Likewise. | |
6156 | * target-delegates.c: Regenerate. | |
6157 | ||
faf09f01 PA |
6158 | 2015-03-04 Pedro Alves <palves@redhat.com> |
6159 | ||
6160 | * linux-nat.c (save_sigtrap): Check for breakpoints before | |
6161 | checking watchpoints. | |
6162 | (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a | |
6163 | breakpoint is inserted if relying on SIGTRAP's siginfo.si_code. | |
6164 | (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether | |
6165 | a breakpoint triggered based on the SIGTRAP's siginfo.si_code. | |
6166 | (linux_nat_stopped_by_sw_breakpoint) | |
6167 | (linux_nat_supports_stopped_by_sw_breakpoint) | |
6168 | (linux_nat_stopped_by_hw_breakpoint) | |
6169 | (linux_nat_supports_stopped_by_hw_breakpoint): New functions. | |
6170 | (linux_nat_wait_1): Don't re-increment the PC if relying on | |
6171 | SIGTRAP's siginfo->si_code. | |
6172 | (linux_nat_add_target): Install new target methods. | |
6173 | * linux-thread-db.c (check_event): Don't account for breakpoint PC | |
6174 | offset if the target already adjusted the PC. | |
6175 | * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New. | |
6176 | (GDB_ARCH_TRAP_BRKPT): New. | |
6177 | (TRAP_HWBKPT): Define if not already defined. | |
6178 | ||
f7e6eed5 PA |
6179 | 2015-03-04 Pedro Alves <palves@redhat.com> |
6180 | ||
6181 | * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons. | |
6182 | * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>: | |
6183 | Delete field. | |
6184 | <stop_reason>: New field. | |
6185 | (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values. | |
6186 | (packet_set_cmd_state): New function. | |
6187 | (remote_protocol_features): Register the "swbreak" and "hwbreak" | |
6188 | features. | |
6189 | (remote_query_supported): If not disabled with the corresponding | |
6190 | "set remote foo-packet" command, report support for the swbreak | |
6191 | and hwbreak features. | |
6192 | (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete | |
6193 | field. | |
6194 | <stop_reason>: New field. | |
6195 | (remote_parse_stop_reply): Handle "swbreak" and "hwbreak". | |
6196 | (remote_wait_as): Adjust. | |
6197 | (remote_stopped_by_sw_breakpoint) | |
6198 | (remote_supports_stopped_by_sw_breakpoint) | |
6199 | (remote_stopped_by_hw_breakpoint) | |
6200 | (remote_supports_stopped_by_hw_breakpoint): New functions. | |
6201 | (remote_stopped_by_watchpoint): New function. | |
6202 | (init_remote_ops): Install them. | |
6203 | (_initialize_remote): Register new "set/show remote | |
6204 | swbreak-feature-packet" and "set/show remote | |
6205 | swbreak-feature-packet" commands. | |
6206 | ||
9e8915c6 PA |
6207 | 2015-03-04 Pedro Alves <palves@redhat.com> |
6208 | ||
6209 | * btrace.h: Include target/waitstatus.h. | |
6210 | (struct btrace_thread_info) <stop_reason>: New field. | |
6211 | * record-btrace.c (record_btrace_step_thread): Use | |
6212 | record_check_stopped_by_breakpoint instead of breakpoint_here_p. | |
6213 | (record_btrace_decr_pc_after_break): Delete. | |
6214 | (record_btrace_stopped_by_sw_breakpoint) | |
6215 | (record_btrace_supports_stopped_by_sw_breakpoint) | |
6216 | (record_btrace_stopped_by_hw_breakpoint) | |
6217 | (record_btrace_supports_stopped_by_hw_breakpoint): New functions. | |
6218 | (init_record_btrace_ops): Install them. | |
6219 | * record-full.c (record_full_hw_watchpoint): Delete and replace | |
6220 | with ... | |
6221 | (record_full_stop_reason): ... this throughout. | |
6222 | (record_full_exec_insn): Adjust. | |
6223 | (record_full_wait_1): Adjust. No longer re-increment the PC. | |
6224 | (record_full_wait_1): Adjust. Use | |
6225 | record_check_stopped_by_breakpoint instead of breakpoint_here_p. | |
6226 | (record_full_stopped_by_watchpoint): Adjust. | |
6227 | (record_full_stopped_by_sw_breakpoint) | |
6228 | (record_full_supports_stopped_by_sw_breakpoint) | |
6229 | (record_full_supports_stopped_by_sw_breakpoint) | |
6230 | (record_full_stopped_by_hw_breakpoint) | |
6231 | (record_full_supports_stopped_by_hw_breakpoint): New functions. | |
6232 | (init_record_full_ops, init_record_full_core_ops): Install them. | |
6233 | * record.c (record_check_stopped_by_breakpoint): New function. | |
6234 | * record.h: Include target/waitstatus.h. | |
6235 | (record_check_stopped_by_breakpoint): New declaration. | |
6236 | ||
15c66dd6 PA |
6237 | 2015-03-04 Pedro Alves <palves@redhat.com> |
6238 | ||
6239 | enum lwp_stop_reason -> enum target_stop_reason | |
6240 | * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint) | |
6241 | (linux_nat_stopped_by_watchpoint, status_callback) | |
6242 | (linux_nat_wait_1): Adjust. | |
6243 | * linux-nat.h (enum lwp_stop_reason): Delete. | |
6244 | (struct lwp_info) <stop_reason>: Now an enum target_stop_reason. | |
6245 | * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust. | |
6246 | * target/waitstatus.h (enum target_stop_reason): New. | |
6247 | ||
1cf4d951 PA |
6248 | 2015-03-04 Pedro Alves <palves@redhat.com> |
6249 | ||
6250 | * breakpoint.c (need_moribund_for_location_type): New function. | |
6251 | (bpstat_stop_status): Don't skipping checking moribund locations | |
6252 | of breakpoint types which the target tell caused a stop. | |
6253 | (program_breakpoint_here_p): New function, factored out from ... | |
6254 | (bp_loc_is_permanent): ... this. | |
6255 | (update_global_location_list): Don't create a moribund location if | |
6256 | the target supports reporting stops of the type of the removed | |
6257 | breakpoint. | |
6258 | * breakpoint.h (program_breakpoint_here_p): New declaration. | |
6259 | * infrun.c (adjust_pc_after_break): Return early if the target has | |
6260 | already adjusted the PC. Add comments. | |
6261 | (handle_signal_stop): If nothing explains a signal, and the target | |
6262 | tells us the stop was caused by a software breakpoint, check if | |
6263 | there's a breakpoint instruction in the memory. If so, adjust the | |
6264 | PC before presenting the stop to the user. Otherwise, ignore the | |
6265 | trap. If nothing explains a signal, and the target tells us the | |
6266 | stop was caused by a hardware breakpoint, ignore the trap. | |
6267 | * target.h (struct target_ops) <to_stopped_by_sw_breakpoint, | |
6268 | to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint, | |
6269 | to_supports_stopped_by_hw_breakpoint>: New fields. | |
6270 | (target_stopped_by_sw_breakpoint) | |
6271 | (target_supports_stopped_by_sw_breakpoint) | |
6272 | (target_stopped_by_hw_breakpoint) | |
6273 | (target_supports_stopped_by_hw_breakpoint): Define. | |
6274 | * target-delegates.c: Regenerate. | |
6275 | ||
79639e11 PA |
6276 | 2015-03-04 Pedro Alves <palves@redhat.com> |
6277 | ||
6278 | * infrun.c (follow_fork_inferior): Use the whole of the | |
6279 | inferior_ptid and pending_follow.related_pid ptids instead of | |
6280 | building ptids from the process components. Adjust verbose output | |
6281 | to use target_pid_to_str. | |
6282 | * linux-nat.c (linux_child_follow_fork): Use the whole of the | |
6283 | inferior_ptid and pending_follow.related_pid ptids instead of | |
6284 | building ptids from the process components. | |
6285 | ||
e85e8e5e MK |
6286 | 2015-03-04 Mark Kettenis <kettenis@gnu.org> |
6287 | ||
6288 | * inf-ptrace.c [PT_GET_PROCESS_STATE] | |
6289 | (inf_ptrace_insert_fork_catchpoint): New function. | |
6290 | (inf_ptrace_remove_fork_catchpoint): New function. | |
6291 | (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them. | |
6292 | ||
87de11c0 AA |
6293 | 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
6294 | ||
6295 | * s390-linux-tdep.c (s390_register_name): Return empty string | |
6296 | instead of NULL for registers that shouldn't be visible. | |
6297 | ||
d851a69a AA |
6298 | 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
6299 | ||
6300 | * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall | |
6301 | XML file for 64-bit targets. | |
6302 | ||
b072f6c1 SM |
6303 | 2015-03-03 Simon Marchi <simon.marchi@ericsson.com> |
6304 | ||
6305 | * target.h (find_default_create_inferior): Remove declaration. | |
6306 | (find_default_attach): Likewise. | |
6307 | ||
c1593e4f PA |
6308 | 2015-03-03 Pedro Alves <palves@redhat.com> |
6309 | ||
6310 | * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace. | |
6311 | Use ptid_get_pid to get the overall process id when resuming all | |
6312 | threads. | |
6313 | ||
90ad5e1d PA |
6314 | 2015-03-03 Pedro Alves <palves@redhat.com> |
6315 | ||
6316 | * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of | |
6317 | the lwp field of ptid. Pass the full ptid to get_thread_regcache. | |
6318 | * inf-ptrace.c (get_ptrace_pid): New function. | |
6319 | (inf_ptrace_resume): Use it. | |
6320 | * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified | |
6321 | to the lower layer. | |
6322 | ||
d68e53f4 MM |
6323 | 2015-03-03 Markus Metzger <markus.t.metzger@intel.com> |
6324 | ||
6325 | * nat/linux-btrace.c: Include sys/utsname.h. | |
6326 | (linux_determine_kernel_ptr_bits): New. | |
6327 | (linux_enable_bts): Call linux_determine_kernel_ptr_bits. | |
6328 | * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero | |
6329 | ptr_bits. | |
6330 | ||
986b6601 MM |
6331 | 2015-03-03 Markus Metzger <markus.t.metzger@intel.com> |
6332 | ||
6333 | * btrace.c (ftrace_update_function): Treat return as tailcall for | |
6334 | "_dl_runtime_resolve". | |
6335 | ||
ce0dfbea MM |
6336 | 2015-03-03 Markus Metzger <markus.t.metzger@intel.com> |
6337 | ||
6338 | * btrace.h (btrace_function) <lbegin, lend>: Remove. | |
6339 | * btrace.c (ftrace_debug): Do not print the line range. | |
6340 | (ftrace_skip_file, ftrace_update_lines): Remove. | |
6341 | (ftrace_new_function): Remove lbegin and lend initialization. | |
6342 | (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines. | |
6343 | * record-btrace.c (btrace_compute_src_line_range): New. | |
6344 | (btrace_call_history_src_line): Call btrace_compute_src_line_range. | |
6345 | ||
95e50b27 PA |
6346 | 2015-03-02 Pedro Alves <palves@redhat.com> |
6347 | ||
6348 | * infrun.c (follow_exec): Delete all threads of the process except | |
6349 | the event thread. Extended comments. | |
6350 | ||
00e474c2 JB |
6351 | 2015-03-02 Joel Brobecker <brobecker@adacore.com> |
6352 | ||
6353 | * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false". | |
6354 | ||
cc7039d3 JB |
6355 | 2015-03-02 Joel Brobecker <brobecker@adacore.com> |
6356 | ||
6357 | * utils.h: Remove <stdbool.h> #include. | |
6358 | (producer_is_gcc): Change return type to "int". | |
6359 | * utils.c (producer_is_gcc): Change return type to int. | |
6360 | Return 1 instead of true, and 0 instead of false. | |
6361 | Adjust function documentation accordingly. | |
6362 | ||
550bdf96 AA |
6363 | 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com> |
6364 | ||
6365 | * s390-linux-nat.c (have_regset_vxrs): New static variable. | |
6366 | (s390_linux_fetch_inferior_registers): Handle vector registers, if | |
6367 | present. | |
6368 | (s390_linux_store_inferior_registers): Likewise. | |
6369 | (s390_get_hwcap): Remove function. Embed its logic... | |
6370 | (s390_read_description): ...here. Yield a target description with | |
6371 | vector registers if applicable. | |
6372 | * s390-linux-tdep.c: Include "features/s390-vx-linux64.c", | |
6373 | "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and | |
6374 | "features/s390x-tevx-linux64.c". | |
6375 | (struct gdbarch_tdep) <v0_full_regnum>: New field. | |
6376 | (s390_dwarf_regmap): Add vector registers. Remove bogus entries | |
6377 | for "GNU/Linux-specific registers". | |
6378 | (s390_dwarf_reg_r0l): New enum value. | |
6379 | (s390_dwarf_reg_to_regnum): Support vector registers. | |
6380 | (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers | |
6381 | of GPR lower halves. | |
6382 | (regnum_is_vxr_full): New function. | |
6383 | (s390_register_name): New function. | |
6384 | (s390_pseudo_register_name): Handle v0-v15, which are composed of | |
6385 | f0-f15 and v0l-v15l. | |
6386 | (s390_pseudo_register_type): Likewise. | |
6387 | (s390_pseudo_register_read): Likewise. | |
6388 | (s390_pseudo_register_write): Likewise. | |
6389 | (s390_value_from_register): Account for the fact that values are | |
6390 | placed left-justified in vector registers. | |
6391 | (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to | |
6392 | the vector reggroup and omit them from the general reggroup. | |
6393 | (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps. | |
6394 | (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets. | |
6395 | (s390_iterate_over_regset_sections): Add iterations for the two | |
6396 | new vector regsets. | |
6397 | (s390_core_read_description): Yield a target description with | |
6398 | vector registers if applicable. | |
6399 | (s390_gdbarch_init): Handle target descriptions with vector | |
6400 | registers. Add "register_name" gdbarch method. | |
6401 | (_initialize_s390_tdep): Call new tdesc initialization functions. | |
6402 | * s390-linux-tdep.h (HWCAP_S390_VX): New macro. | |
6403 | (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM) | |
6404 | (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM) | |
6405 | (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM) | |
6406 | (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM) | |
6407 | (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM) | |
6408 | (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM) | |
6409 | (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM) | |
6410 | (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM) | |
6411 | (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM) | |
6412 | (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM) | |
6413 | (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM) | |
6414 | (S390_V30_REGNUM, S390_V31_REGNUM): New macros. | |
6415 | (S390_NUM_REGS): Adjust value. | |
6416 | (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare. | |
6417 | (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64) | |
6418 | (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise. | |
6419 | * NEWS: Announce S/390 vector register support. | |
6420 | ||
446899e4 AA |
6421 | 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com> |
6422 | ||
6423 | * features/s390-tevx-linux64.xml: New file. | |
6424 | * features/s390-vx-linux64.xml: New file. | |
6425 | * features/s390-vx.xml: New file. | |
6426 | * features/s390x-tevx-linux64.xml: New file. | |
6427 | * features/s390x-vx-linux64.xml: New file. | |
6428 | * features/Makefile (WHICH): Add s390-vx-linux64, | |
6429 | s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64. | |
6430 | (s390-vx-linux64-expedite, s390-tevx-linux64-expedite) | |
6431 | (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New | |
6432 | macros. | |
6433 | * features/s390-tevx-linux64.c: New generated file. | |
6434 | * features/s390-vx-linux64.c: Likewise. | |
6435 | * features/s390x-tevx-linux64.c: Likewise. | |
6436 | * features/s390x-vx-linux64.c: Likewise. | |
6437 | * regformats/s390-tevx-linux64.dat: Likewise. | |
6438 | * regformats/s390-vx-linux64.dat: Likewise. | |
6439 | * regformats/s390x-tevx-linux64.dat: Likewise. | |
6440 | * regformats/s390x-vx-linux64.dat: Likewise. | |
6441 | ||
b7236fbe DE |
6442 | 2015-02-28 Doug Evans <xdje42@gmail.com> |
6443 | ||
6444 | * symtab.h (struct symtab) <next>: Fix comment. | |
6445 | ||
02e62830 SM |
6446 | 2015-02-27 Simon Marchi <simon.marchi@ericsson.com> |
6447 | ||
6448 | * python/python.c (python_GdbModuleDef): Rename GdbMethods to | |
6449 | python_GdbMethods. | |
6450 | ||
bf36a1e7 PA |
6451 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6452 | ||
6453 | * dtrace-probe.c (dtrace_probe_ops): Make extern. | |
6454 | ||
ad6aff7d PA |
6455 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6456 | ||
6457 | * common/common-exceptions.h (exception_none): Declare. | |
6458 | * common/common-exceptions.c (exception_none): Moved from | |
6459 | exceptions.c. | |
6460 | (exceptions_state_mc_init): Use exception_none. | |
6461 | * exceptions.c (exception_none): Move to | |
6462 | common/common-exceptions.c. | |
6463 | * exceptions.h (exception_none): Move to | |
6464 | common/common-exceptions.h. | |
6465 | ||
97c18565 PA |
6466 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6467 | ||
6468 | * main.c (catch_command_errors, catch_command_errors_const): | |
6469 | Remove 'mask' argument. Adjust. | |
6470 | (captured_main): Adjust callers. | |
6471 | ||
e992c591 PA |
6472 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6473 | ||
6474 | * python/python-internal.h: Include "extension-priv.h". | |
6475 | ||
64166036 PA |
6476 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6477 | ||
6478 | * breakpoint.h (enum print_stop_action): Move further up in the | |
6479 | file. | |
6480 | ||
8a526fa6 PA |
6481 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6482 | ||
6483 | * gdbarch.sh: Include regcache.h. | |
6484 | * gdbarch.h: Regenerate. | |
6485 | ||
0fa9c223 PA |
6486 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6487 | ||
6488 | * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>: | |
6489 | Remove duplicate const. | |
6490 | * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove | |
6491 | duplicate const. | |
6492 | ||
7cf99fb1 PA |
6493 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6494 | ||
6495 | * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST. | |
6496 | * guile/guile.c (extension_language_guile): Use EXPORTED_CONST. | |
6497 | * features/feature_to_c.sh: Tag the generated xml_builtin array | |
6498 | with extern const in C++ mode. | |
6499 | ||
1424c16e TT |
6500 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
6501 | ||
6502 | * minidebug.c (struct lzma_stream): Rename to ... | |
6503 | (struct gdb_lzma_stream): ... this. | |
6504 | (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust. | |
6505 | ||
10367c7c PA |
6506 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6507 | ||
6508 | * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New | |
6509 | function. | |
6510 | (mi_cmd_stack_list_locals, mi_cmd_stack_list_args) | |
6511 | (mi_cmd_stack_list_variables): Use it. | |
6512 | ||
4180215b PA |
6513 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6514 | ||
6515 | * x86-linux-nat.c (u_debugreg_offset): New function. | |
6516 | (x86_linux_dr_get, x86_linux_dr_set): Use it. | |
6517 | ||
2f56f7c3 PA |
6518 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6519 | ||
6520 | * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward | |
6521 | declaration. | |
6522 | Include break-common.h. | |
6523 | ||
570dc176 TT |
6524 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
6525 | Pedro Alves <palves@redhat.com> | |
6526 | ||
6527 | * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for | |
6528 | local used to iterate over enums. | |
6529 | * completer.c (signal_completer): Likewise. | |
6530 | * i386-tdep.c (i386_stap_parse_special_token): Likewise. | |
6531 | * rs6000-tdep.c (powerpc_set_vector_abi): Likewise. | |
6532 | * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise. | |
6533 | * tui/tui-layout.c (next_layout, prev_layout): Likewise. | |
6534 | * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all) | |
6535 | (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise. | |
6536 | * tui-wingeneral.c (tui_refresh_all): Likewise. | |
6537 | ||
68c14faa PA |
6538 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6539 | ||
6540 | * target.h: Include "infrun.h". | |
6541 | ||
749bab01 PA |
6542 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6543 | ||
6544 | * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP. | |
6545 | ||
3c14e5a3 PA |
6546 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6547 | ||
6548 | * common/agent.h (IPA_SYM_EXPORTED_NAME): New. | |
6549 | (IPA_SYM): Use it. | |
6550 | * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros. | |
6551 | ||
56000a98 PA |
6552 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6553 | ||
6554 | * cli-out.c (_rl_erase_entire_line): Move declaration out of | |
6555 | cli_mld_erase_entire_line, and make it extern "C". | |
6556 | * common/common-defs.h (EXTERN_C): New. | |
6557 | * completer.c (_rl_completion_prefix_display_length) | |
6558 | (_rl_print_completions_horizontally, QSFUNC): Move declarations | |
6559 | out of gdb_display_match_list_1. | |
6560 | (_rl_qsort_string_compare): Move declaration out of | |
6561 | gdb_display_match_list_1, and make it extern "C". | |
6562 | * defs.h (re_comp): Use EXTERN_C. | |
6563 | * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper, | |
6564 | and make it extern "C". | |
6565 | (monstartup): Move declaration out of maintenance_set_profile_cmd, | |
6566 | and make it extern "C". | |
6567 | (main): Move declaration out of maintenance_set_profile_cmd. | |
6568 | * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use | |
6569 | EXTERN_C. | |
6570 | ||
bcabf420 PA |
6571 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6572 | ||
6573 | * python/python.c (GdbMethods): Rename to ... | |
6574 | (python_GdbMethods): ... this and make extern. | |
6575 | (GdbModuleDef): Rename to ... | |
6576 | (python_GdbModuleDef): ... this and make extern. | |
6577 | ||
928dbe07 PA |
6578 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6579 | ||
6580 | * record-btrace.c (set_record_btrace_cmdlist) | |
6581 | (show_record_btrace_cmdlist): Remove redefinitions. | |
6582 | ||
52059ffd TT |
6583 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
6584 | Pedro Alves <palves@redhat.com> | |
6585 | ||
6586 | * dwarf2-frame.c (enum cfa_how_kind, struct | |
6587 | dwarf2_frame_state_reg_info): Move out of struct | |
6588 | dwarf2_frame_state. | |
6589 | * dwarf2read.c (struct tu_stats): Move out of struct | |
6590 | dwarf2_per_objfile. | |
6591 | (struct file_entry): Move out of struct line_header. | |
6592 | (struct nextfield, struct nextfnfield, struct fnfieldlist, struct | |
6593 | typedef_field_list): Move out of struct field_info. | |
6594 | * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data): | |
6595 | Move out of struct dynamic_prop. | |
6596 | (union type_owner, union field_location, struct field, struct | |
6597 | range_bounds, union type_specific): Move out of struct main_type. | |
6598 | (struct fn_fieldlist, struct fn_field, struct typedef_field) | |
6599 | (VOFFSET_STATIC): Move out of struct cplus_struct_type. | |
6600 | (struct call_site_target, union call_site_parameter_u, struct | |
6601 | call_site_parameter): Move out of struct call_site. | |
6602 | * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct | |
6603 | m32c_prologue. | |
6604 | (enum srcdest_kind): Move out of struct srcdest. | |
6605 | * main.c (enum cmdarg_kind): Move out of struct cmdarg. | |
6606 | * prologue-value.h (enum prologue_value_kind): Move out of struct | |
6607 | prologue_value. | |
6608 | * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct | |
6609 | gdbarch_tdep. | |
6610 | * stabsread.c (struct nextfield, struct next_fnfieldlist): Move | |
6611 | out of struct field_info. | |
6612 | * symfile.h (struct other_sections): Move out of struct | |
6613 | section_addr_info. | |
6614 | * symtab.c (struct symbol_cache_slot): Move out struct | |
6615 | block_symbol_cache. | |
6616 | * target-descriptions.c (enum tdesc_type_kind): Move out of | |
6617 | typedef struct tdesc_type. | |
6618 | * tui/tui-data.h (enum tui_line_or_address_kind): Move out of | |
6619 | struct tui_line_or_address. | |
6620 | * value.c (enum internalvar_kind, union internalvar_data): Move | |
6621 | out of struct internalvar. | |
6622 | * xtensa-tdep.h (struct ctype_cache): Move out of struct | |
6623 | gdbarch_tdep. | |
6624 | ||
fe978cb0 PA |
6625 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
6626 | Pedro Alves <palves@redhat.com> | |
6627 | ||
6628 | Rename symbols whose names are reserved C++ keywords throughout. | |
6629 | ||
3bc3d82a PA |
6630 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6631 | ||
6632 | * Makefile.in (COMPILER): New, get it from autoconf. | |
6633 | (COMPILE.pre, CC_LD): Use COMPILER. | |
6634 | (CXX): Get from autoconf instead. | |
6635 | (CXX_FOR_TARGET): Default to g++ instead of gcc. | |
6636 | * acinclude.m4: Include build-with-cxx.m4. | |
6637 | * build-with-cxx.m4: New file. | |
6638 | * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX. | |
6639 | Disable -Werror by default if building in C++ mode. | |
6640 | (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and | |
6641 | -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode. | |
6642 | Run supported-warning-flags tests with the C++ compiler. | |
6643 | Save/restore CXXFLAGS too. | |
6644 | * configure: Regenerate. | |
6645 | ||
07697489 PA |
6646 | 2015-02-27 Pedro Alves <palves@redhat.com> |
6647 | ||
6648 | * libiberty.m4: New file. | |
6649 | * acinclude.m4: Include libiberty.m4. | |
6650 | * configure.ac: Call libiberty_INIT. | |
6651 | * config.in, configure: Regenerate. | |
6652 | ||
60abeae4 AA |
6653 | 2015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
6654 | ||
6655 | * s390-linux-tdep.c (s390_gcc_target_options): Not just handle | |
6656 | 31-bit targets, but 64-bit targets as well. | |
6657 | (s390_gnu_triplet_regexp): New function. | |
6658 | (s390_gdbarch_init): Set the gcc_target_options gdbarch method for | |
6659 | 64-bit targets as well. Set the gnu_triplet_regexp gdbarch | |
6660 | method. | |
6661 | ||
f44466fb | 6662 | 2015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch) |
f0666312 JT |
6663 | |
6664 | * windows-nat.c (CONTEXT_DEBUGGER): Remove. | |
6665 | (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags | |
6666 | from CONTEXT_DEBUGGER. | |
6667 | ||
0def5aaa DE |
6668 | 2015-02-26 Doug Evans <dje@google.com> |
6669 | ||
6670 | * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to | |
6671 | CHECK_TYPEDEF. | |
6672 | (set_type_vptr_fieldno): Ditto. | |
6673 | (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto. | |
6674 | * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto. | |
6675 | ||
77b64a49 PA |
6676 | 2015-02-26 Pedro Alves <palves@redhat.com> |
6677 | ||
6678 | * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF. | |
6679 | * complaints.c (vcomplaint): Pass argument FMT directly to | |
6680 | printf-like functions instead of complaint->fmt. | |
6681 | * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF. | |
6682 | * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF. | |
6683 | * compile/compile-loc2c.c (pushf, unary, binary): Add | |
6684 | ATTRIBUTE_PRINTF. | |
6685 | (do_compile_dwarf_expr_to_c): Pass string literal as format string | |
6686 | to pushf. | |
6687 | (BINARY): Pass string literal as format string to 'binary'. | |
6688 | * compile/compile-object-load.c (link_callbacks_einfo): Add | |
6689 | ATTRIBUTE_PRINTF. | |
6690 | * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF. | |
6691 | ||
532f44ed PA |
6692 | 2015-02-26 Pedro Alves <palves@redhat.com> |
6693 | ||
6694 | * windows-termcap.c: Rename to ... | |
6695 | * stub-termcap.c: ... this. Adjust header line. | |
6696 | * Makefile.in (SFILES): Refer to stub-termcap.c instead of | |
6697 | windows-termcap.c. | |
6698 | * configure: Regenerate. | |
6699 | * configure.ac: Refer to stub-termcap.o instead of | |
6700 | windows-termcap.o. | |
6701 | * gdb_curses.h: Mention stub-termcap.c instead of | |
6702 | windows-termcap.c. | |
6703 | ||
081a1c2c JK |
6704 | 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
6705 | ||
6706 | * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym) | |
6707 | (gcc_symbol_address): Call gnu_ifunc_resolve_addr. | |
6708 | ||
2f41223f AT |
6709 | 2015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com> |
6710 | ||
6711 | * gdb/infcmd.c (print_return_value): use type_to_string to print type. | |
6712 | ||
80c57053 JK |
6713 | 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
6714 | ||
6715 | * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for | |
6716 | bfd_canonicalize_symtab. | |
6717 | ||
cf424aef JB |
6718 | 2015-02-25 John Baldwin <jhb@FreeBSD.org> |
6719 | ||
6720 | * amd64fbsd-nat.c: Include sys/user.h. | |
6721 | (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl | |
6722 | instead of KERN_PS_STRINGS to locate the signal trampoline. | |
6723 | * i386fbsd-nat.c: Include sys/user.h. | |
6724 | (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl | |
6725 | instead of KERN_PS_STRINGS to locate the signal trampoline. | |
6726 | * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New. | |
6727 | (amd64fbsd_sigtramp_p): New. | |
6728 | (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No | |
6729 | longer set default values. | |
6730 | (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p". | |
6731 | * i386fbsd-tdep.c (i386fbsd_sigtramp_start) | |
6732 | (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end) | |
6733 | (i386fbsd_freebsd4_sigtramp_start) | |
6734 | (i386fbsd_freebsd4_sigtramp_middle) | |
6735 | (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start) | |
6736 | (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New. | |
6737 | (i386fbsd_sigtramp_p): New. | |
6738 | (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No | |
6739 | longer set default values. | |
6740 | (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p". | |
6741 | ||
c5cb74ee JB |
6742 | 2015-02-25 John Baldwin <jhb@freebsd.org> |
6743 | ||
6744 | * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use | |
6745 | get_frame_register instead of frame_unwind_register_unsigned. | |
6746 | ||
17487d85 JK |
6747 | 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
6748 | ||
6749 | PR build/18033 | |
6750 | * compile/compile-c-support.c (c_compute_program): Change // comment. | |
6751 | * compile/compile-object-load.c (setup_sections): Change // comment. | |
6752 | ||
9357a9e6 JB |
6753 | 2015-02-26 Joel Brobecker <brobecker@adacore.com> |
6754 | ||
6755 | PR build/18033: | |
6756 | * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment. | |
6757 | ||
1f10ba14 PA |
6758 | 2015-02-23 Pedro Alves <palves@redhat.com> |
6759 | ||
6760 | * remote.c (skip_to_semicolon): New function. | |
6761 | (remote_parse_stop_reply) <T stop reply>: Use it. Don't | |
6762 | special case the stop reasons that look like hex numbers | |
6763 | upfront. Instead handle real register numbers after matching | |
6764 | all the known stop reasons. | |
6765 | ||
96553a0c DE |
6766 | 2015-02-21 Doug Evans <dje@google.com> |
6767 | ||
6768 | PR c++/17976, symtab/17821 | |
6769 | * cp-namespace.c (cp_search_static_and_baseclasses): New parameter | |
6770 | is_in_anonymous. All callers updated. | |
6771 | (find_symbol_in_baseclass): Ditto. | |
6772 | (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks | |
6773 | for symbols in an anonymous namespace. | |
6774 | * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch | |
6775 | DW_AT_name directly. | |
6776 | (dwarf2_name): Convert missing namespace name to | |
6777 | CP_ANONYMOUS_NAMESPACE_STR. | |
6778 | ||
2db9a427 PA |
6779 | 2015-02-20 Pedro Alves <palves@redhat.com> |
6780 | ||
6781 | * linux-nat.c (linux_handle_extended_wait): Call | |
6782 | thread_db_notice_clone whenever a new clone LWP is detected. | |
6783 | (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New | |
6784 | functions. | |
6785 | * linux-nat.h (thread_db_attach_lwp): Delete declaration. | |
6786 | (thread_db_notice_clone, linux_stop_and_wait_all_lwps) | |
6787 | (linux_unstop_all_lwps): Declare. | |
6788 | * linux-thread-db.c (struct thread_get_info_inout): Delete. | |
6789 | (thread_get_info_callback): Delete. | |
6790 | (thread_from_lwp): Use td_thr_get_info and record_thread. | |
6791 | (thread_db_attach_lwp): Delete. | |
6792 | (thread_db_notice_clone): New function. | |
6793 | (try_thread_db_load_1): If /proc is mounted and shows the | |
6794 | process'es task list, walk over all LWPs and call thread_from_lwp | |
6795 | instead of relying on td_ta_thr_iter. | |
6796 | (attach_thread): Don't call check_thread_signals here. Split the | |
6797 | tail part of the function (which adds the thread to the core GDB | |
6798 | thread list) to ... | |
6799 | (record_thread): ... this function. Call check_thread_signals | |
6800 | here. | |
6801 | (thread_db_wait): Don't call thread_db_find_new_threads_1. Always | |
6802 | call thread_from_lwp. | |
6803 | (thread_db_update_thread_list): Rename to ... | |
6804 | (thread_db_update_thread_list_org): ... this. | |
6805 | (thread_db_update_thread_list): New function. | |
6806 | (thread_db_find_thread_from_tid): Delete. | |
6807 | (thread_db_get_ada_task_ptid): Simplify. | |
6808 | * nat/linux-procfs.c: Include <sys/stat.h>. | |
6809 | (linux_proc_task_list_dir_exists): New function. | |
6810 | * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare. | |
6811 | ||
3b27ef47 PA |
6812 | 2015-02-20 Pedro Alves <palves@redhat.com> |
6813 | ||
6814 | * linux-nat.c (lin_lwp_attach_lwp): No longer special case the | |
6815 | main LWP. Handle the case of waitpid returning 0 if we're already | |
6816 | attached to the LWP. Don't set the LWP's last_resume_kind to | |
6817 | resume_stop if we already knew about the LWP. | |
6818 | (linux_nat_filter_event): Add debug logs. | |
6819 | ||
1cc28231 PA |
6820 | 2015-02-20 Pedro Alves <palves@redhat.com> |
6821 | ||
6822 | * target.h (forward_target_decr_pc_after_break): Delete | |
6823 | declaration. | |
6824 | ||
5c5019c2 PA |
6825 | 2015-02-20 Pedro Alves <palves@redhat.com> |
6826 | ||
6827 | PR threads/18006 | |
6828 | * linux-thread-db.c (thread_get_info_callback): Return early if | |
6829 | the thread's lwp id is -1. | |
6830 | ||
f3978e91 JB |
6831 | 2015-02-20 Joel Brobecker <brobecker@adacore.com> |
6832 | ||
6833 | GDB 7.9 released. | |
6834 | ||
ffdf88ec SE |
6835 | 2015-02-19 Steve Ellcey <sellcey@imgtec.com> |
6836 | ||
6837 | * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr. | |
6838 | (dtrace_get_probes) Change type of variable 'dof'. | |
6839 | ||
c9587f88 AT |
6840 | 2015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com> |
6841 | ||
6842 | PR breakpoints/16812 | |
6843 | * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV. | |
6844 | * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add. | |
6845 | * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint. | |
6846 | ||
53cf2ee0 DT |
6847 | 2015-02-19 David Taylor <dtaylor@emc.com> |
6848 | ||
6849 | * common/ax.def (setv): Fix consumed entry in setv DEFOP. | |
6850 | ||
acfe0940 PP |
6851 | 2015-02-18 Patrick Palka <patrick@parcs.ath.cx> |
6852 | ||
6853 | * tui/tui-io.c (tui_handle_resize_during_io): Remove this | |
6854 | function. | |
6855 | (tui_putc): Don't call tui_handle_resize_during_io. | |
6856 | (tui_getc): Likewise. | |
6857 | (tui_mld_getc): Likewise. | |
6858 | * tui/tui-win.c: Include event-loop.h and tui/tui-io.h. | |
6859 | (tui_sigwinch_token): New static variable. | |
6860 | (tui_initialize_win): Adjust documentation. Set | |
6861 | tui_sigwinch_token. | |
6862 | (tui_async_resize_screen): New asynchronous callback. | |
6863 | (tui_sigwinch_handler): Adjust documentation. Asynchronously | |
6864 | invoke tui_async_resize_screen. | |
6865 | ||
f6a88844 JM |
6866 | 2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com> |
6867 | ||
6868 | * configure: Regenerated. | |
6869 | * configure.ac: Use GDB_AC_TRANSFORM. | |
6870 | * Makefile.in (aclocal_m4_deps): Added transform.m4. | |
6871 | * acinclude.m4: sinclude transform.m4. | |
6872 | * transform.m4: New file. | |
6873 | (GDB_AC_TRANSFORM): New macro. | |
6874 | ||
b05e3b0d JM |
6875 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
6876 | ||
6877 | * NEWS: Announce the support for DTrace SDT probes. | |
6878 | ||
c3e3045e JM |
6879 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
6880 | ||
6881 | * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h". | |
6882 | (amd64_dtrace_parse_probe_argument): New function. | |
6883 | (amd64_dtrace_probe_is_enabled): Likewise. | |
6884 | (amd64_dtrace_enable_probe): Likewise. | |
6885 | (amd64_dtrace_disable_probe): Likewise. | |
6886 | (amd64_linux_init_abi): Register the | |
6887 | `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe', | |
6888 | `gdbarch_dtrace_disable_probe' and | |
6889 | `gdbarch_dtrace_probe_is_enabled' hooks. | |
6890 | (amd64_dtrace_disabled_probe_sequence_1): New constant. | |
6891 | (amd64_dtrace_disabled_probe_sequence_2): Likewise. | |
6892 | (amd64_dtrace_enable_probe_sequence): Likewise. | |
6893 | (amd64_dtrace_disable_probe_sequence): Likewise. | |
6894 | ||
d4777acb JM |
6895 | 2015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
6896 | ||
6897 | * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention | |
6898 | the -probe-dtrace new vpossible value for PROBE_MODIFIER. | |
6899 | * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can | |
6900 | handle ELF files. | |
6901 | * Makefile.in (SFILES): dtrace-probe.c added. | |
6902 | * configure: Regenerate. | |
6903 | * dtrace-probe.c: New file. | |
6904 | (SHT_SUNW_dof): New constant. | |
6905 | (dtrace_probe_type): New enum. | |
6906 | (dtrace_probe_arg): New struct. | |
6907 | (dtrace_probe_arg_s): New typedef. | |
6908 | (struct dtrace_probe_enabler): New struct. | |
6909 | (dtrace_probe_enabler_s): New typedef. | |
6910 | (dtrace_probe): New struct. | |
6911 | (dtrace_probe_is_linespec): New function. | |
6912 | (dtrace_dof_sect_type): New enum. | |
6913 | (dtrace_dof_dofh_ident): Likewise. | |
6914 | (dtrace_dof_encoding): Likewise. | |
6915 | (DTRACE_DOF_ENCODE_LSB): Likewise. | |
6916 | (DTRACE_DOF_ENCODE_MSB): Likewise. | |
6917 | (dtrace_dof_hdr): New struct. | |
6918 | (dtrace_dof_sect): Likewise. | |
6919 | (dtrace_dof_provider): Likewise. | |
6920 | (dtrace_dof_probe): Likewise. | |
6921 | (DOF_UINT): New macro. | |
6922 | (DTRACE_DOF_PTR): Likewise. | |
6923 | (DTRACE_DOF_SECT): Likewise. | |
6924 | (dtrace_process_dof_probe): New function. | |
6925 | (dtrace_process_dof): Likewise. | |
6926 | (dtrace_build_arg_exprs): Likewise. | |
6927 | (dtrace_get_arg): Likewise. | |
6928 | (dtrace_get_probes): Likewise. | |
6929 | (dtrace_get_probe_argument_count): Likewise. | |
6930 | (dtrace_can_evaluate_probe_arguments): Likewise. | |
6931 | (dtrace_evaluate_probe_argument): Likewise. | |
6932 | (dtrace_compile_to_ax): Likewise. | |
6933 | (dtrace_probe_destroy): Likewise. | |
6934 | (dtrace_gen_info_probes_table_header): Likewise. | |
6935 | (dtrace_gen_info_probes_table_values): Likewise. | |
6936 | (dtrace_probe_is_enabled): Likewise. | |
6937 | (dtrace_probe_ops): New variable. | |
6938 | (info_probes_dtrace_command): New function. | |
6939 | (_initialize_dtrace_probe): Likewise. | |
6940 | (dtrace_type_name): Likewise. | |
6941 | ||
8b367e17 JM |
6942 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
6943 | ||
6944 | * gdbarch.sh (dtrace_parse_probe_argument): New. | |
6945 | (dtrace_probe_is_enabled): Likewise. | |
6946 | (dtrace_enable_probe): Likewise. | |
6947 | (dtrace_disable_probe): Likewise. | |
6948 | * gdbarch.c: Regenerate. | |
6949 | * gdbarch.h: Regenerate. | |
6950 | ||
9aca2ff8 JM |
6951 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
6952 | ||
6953 | * stap-probe.c (stap_probe_ops): Add NULLs in the static | |
6954 | stap_probe_ops for `enable_probe' and `disable_probe'. | |
6955 | * probe.c (enable_probes_command): New function. | |
6956 | (disable_probes_command): Likewise. | |
6957 | (_initialize_probe): Define the cli commands `enable probe' and | |
6958 | `disable probe'. | |
6959 | (parse_probe_linespec): New function. | |
6960 | (info_probes_for_ops): Use parse_probe_linespec. | |
6961 | * probe.h (probe_ops): New hooks `enable_probe' and | |
6962 | `disable_probe'. | |
6963 | ||
03e98035 JM |
6964 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
6965 | ||
6966 | * probe.c (compute_probe_arg): Moved from stap-probe.c | |
6967 | (compile_probe_arg): Likewise. | |
6968 | (probe_funcs): Likewise. | |
6969 | * stap-probe.c (compute_probe_arg): Moved to probe.c. | |
6970 | (compile_probe_arg): Likewise. | |
6971 | (probe_funcs): Likewise. | |
6972 | ||
6f9b8491 JM |
6973 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
6974 | ||
6975 | * probe.c (print_ui_out_not_applicables): New function. | |
6976 | (exists_probe_with_pops): Likewise. | |
6977 | (info_probes_for_ops): Do not include column headers for probe | |
6978 | types for which no probe has been actually found on any object. | |
6979 | Also invoke `print_ui_out_not_applicables' in order to match the | |
6980 | column rows with the header when probes of several types are | |
6981 | listed. | |
6982 | Print the "Type" column. | |
6983 | * probe.h (probe_ops): Added a new probe operation `type_name'. | |
6984 | * stap-probe.c (stap_probe_ops): Add `stap_type_name'. | |
6985 | (stap_type_name): New function. | |
6986 | ||
69efdff1 PP |
6987 | 2015-02-17 Patrick Palka <patrick@parcs.ath.cx> |
6988 | ||
6989 | * tui/tui-io.c (tui_getc): Don't call key_is_command_char. | |
6990 | (key_is_command_char): Delete. | |
6991 | ||
f8e5e23e PA |
6992 | 2015-02-17 Pedro Alves <palves@redhat.com> |
6993 | ||
6994 | * tui/tui.c (tui_enable): Resize windows before anything | |
6995 | might show a window. | |
6996 | ||
9f2e0721 MO |
6997 | 2015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com> |
6998 | ||
6999 | PR gdb/17984 | |
7000 | * aarch64-linux-nat.c: Don't include features/aarch64.c anymore. | |
7001 | (aarch64_linux_read_description): Remove initialize_tdesc_aarch64 | |
7002 | call. | |
7003 | * aarch64-tdep.h (tdesc_aarch64): Declare. | |
7004 | ||
171e6b1c MW |
7005 | 2015-02-12 Mark Wielaard <mjw@redhat.com> |
7006 | ||
7007 | * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false". | |
7008 | ||
d5ff0482 DE |
7009 | 2015-02-13 Doug Evans <dje@google.com> |
7010 | ||
7011 | * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter | |
7012 | anonymous_namespace to is_in_anonymous for consistency with the rest | |
7013 | of the file. | |
7014 | (cp_lookup_bare_symbol): Fix typo in comment. | |
7015 | (cp_search_static_and_baseclasses): Ditto. | |
7016 | (search_symbol_list): Use vertical space in comment better. | |
7017 | (reset_directive_searched): Ditto. Fix typo. | |
7018 | (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter. | |
7019 | ||
9f04ac5f YQ |
7020 | 2015-02-13 Yao Qi <yao.qi@arm.com> |
7021 | ||
7022 | * MAINTAINERS: Update my email address. | |
7023 | ||
013d0319 DE |
7024 | 2015-02-12 Doug Evans <dje@google.com> |
7025 | ||
b615dd20 | 7026 | * symtab.c (completion_list_add_name): Fix memory leak. |
013d0319 | 7027 | |
9a7e538e DE |
7028 | 2015-02-12 Doug Evans <dje@google.com> |
7029 | ||
7030 | * completer.c (complete_line): Remove incorrect comment. | |
7031 | ||
e1fcd575 JK |
7032 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
7033 | ||
7034 | * python/py-framefilter.c (py_print_single_arg, enumerate_locals) | |
7035 | (py_print_frame): Use RETURN_MASK_ERROR. | |
7036 | ||
b99bf4e3 JK |
7037 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
7038 | ||
7039 | * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in | |
7040 | function comment. Wrap all function that can throw in cleanups. | |
7041 | (gdbpy_apply_frame_filter): Wrap all function that can throw in | |
7042 | cleanups. | |
7043 | ||
800eb1ce JK |
7044 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
7045 | ||
7046 | * python/py-framefilter.c (py_print_frame): Substitute goto error. | |
7047 | Remove the error label. | |
7048 | ||
34019068 JK |
7049 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
7050 | ||
7051 | * python/py-framefilter.c (py_print_frame): Put conditional code paths | |
7052 | with goto first, indent the former else codepath left. Put variable | |
7053 | 'elided' to a new inner block. | |
7054 | ||
8d4a54e2 JK |
7055 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
7056 | ||
7057 | * python/py-framefilter.c (py_print_frame): Whitespacing fixes. | |
7058 | ||
18ad82c1 PA |
7059 | 2015-02-11 Pedro Alves <palves@redhat.com> |
7060 | ||
7061 | * xcoffread.c (within_function): Delete. | |
7062 | ||
e36122e9 TT |
7063 | 2015-02-11 Tom Tromey <tromey@redhat.com> |
7064 | Pedro Alves <palves@redhat.com> | |
7065 | ||
7066 | * breakpoint.c (base_breakpoint_ops): Delete. | |
7067 | * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern. | |
7068 | * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern. | |
7069 | * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern. | |
7070 | * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern. | |
7071 | * python/py-arch.c (arch_object_type): Make extern. | |
7072 | * python/py-block.c (block_syms_iterator_object_type): Make extern. | |
7073 | * python/py-bpevent.c (breakpoint_event_object_type): Make extern. | |
7074 | * python/py-cmd.c (cmdpy_object_type): Make extern. | |
7075 | * python/py-continueevent.c (continue_event_object_type) | |
7076 | * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual' | |
7077 | parameter. Update all callers. | |
7078 | * python/py-evtregistry.c (eventregistry_object_type): Make extern. | |
7079 | * python/py-exitedevent.c (exited_event_object_type): Make extern. | |
7080 | * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern. | |
7081 | * python/py-function.c (fnpy_object_type): Make extern. | |
7082 | * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern. | |
7083 | * python/py-infevents.c (call_pre_event_object_type) | |
7084 | (inferior_call_post_event_object_type). | |
7085 | (memory_changed_event_object_type): Make extern. | |
7086 | * python/py-infthread.c (thread_object_type): Make extern. | |
7087 | * python/py-lazy-string.c (lazy_string_object_type): Make extern. | |
7088 | * python/py-linetable.c (linetable_entry_object_type) | |
7089 | (linetable_object_type, ltpy_iterator_object_type): Make extern. | |
7090 | * python/py-newobjfileevent.c (new_objfile_event_object_type) | |
7091 | (clear_objfiles_event_object_type): Make extern. | |
7092 | * python/py-objfile.c (objfile_object_type): Make extern. | |
7093 | * python/py-param.c (parmpy_object_type): Make extern. | |
7094 | * python/py-progspace.c (pspace_object_type): Make extern. | |
7095 | * python/py-signalevent.c (signal_event_object_type): Make extern. | |
7096 | * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern. | |
7097 | * python/py-type.c (type_object_type, field_object_type) | |
7098 | (type_iterator_object_type): Make extern. | |
7099 | * python/python.c (python_extension_script_ops) | |
7100 | (python_extension_ops): Make extern. | |
7101 | * stap-probe.c (stap_probe_ops): Make extern. | |
7102 | ||
0703599a PA |
7103 | 2015-02-11 Pedro Alves <pedro@codesourcery.com> |
7104 | ||
7105 | * infrun.c (adjust_pc_after_break): Don't adjust the PC just | |
7106 | because the event thread is not the current thread. | |
7107 | ||
eaaf76ab DE |
7108 | 2015-02-11 Doug Evans <xdje42@gmail.com> |
7109 | ||
7110 | * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't | |
7111 | been initialized yet, return NULL. | |
7112 | ||
e7d52ed3 DE |
7113 | 2015-02-11 Doug Evans <dje@google.com> |
7114 | ||
7115 | * symfile.h (new_symfile_objfile): Delete. | |
7116 | * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile. | |
7117 | All callers updated. | |
7118 | ||
fc6b1256 PP |
7119 | 2015-02-11 Patrick Palka <patrick@parcs.ath.cx> |
7120 | ||
7121 | * tui/tui-io.c (tui_handle_resize_during_io): Call | |
7122 | tui_update_gdb_sizes() after resizing the screen. | |
7123 | * tui/tui.c (tui_enable): Resize the terminal before | |
7124 | calling tui_update_gdb_sizes(). | |
7125 | ||
d9080678 PP |
7126 | 2015-02-11 Patrick Palka <patrick@parcs.ath.cx> |
7127 | ||
7128 | * tui/tui-io.c (tui_getc): Move cursor to the end of the command | |
7129 | line before printing a newline. | |
7130 | ||
9f615e3a MW |
7131 | 2015-02-11 Mark Wielaard <mjw@redhat.com> |
7132 | ||
7133 | * utils.c (producer_is_gcc): Return true or false. | |
7134 | ||
d9080678 | 7135 | 2015-02-10 Mark Wielaard <mjw@redhat.com> |
b1ffba5a MW |
7136 | |
7137 | * utils.h (producer_is_gcc): Change return type to bool. Add major | |
7138 | argument. | |
7139 | * utils.c (producer_is_gcc): Likewise. | |
7140 | (producer_is_gcc_ge_4): Adjust producer_is_gcc call. | |
7141 | * dwarf2read.c (check_producer): Likewise. | |
7142 | ||
b052c4fb PA |
7143 | 2015-02-10 Pedro Alves <palves@redhat.com> |
7144 | ||
7145 | * infrun.c (displaced_step_fixup): Switch to the event thread | |
7146 | before calling gdbarch_displaced_step_fixup. | |
7147 | ||
3ac240d4 AT |
7148 | 2015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com> |
7149 | ||
7150 | * MAINTAINERS (Write After Approval): Add Antoine Tremblay. | |
7151 | ||
c1cc6152 SM |
7152 | 2015-02-10 Simon Marchi <simon.marchi@ericsson.com> |
7153 | ||
7154 | * ada-varobj.c (ada_name_of_child): Constify parent. | |
7155 | (ada_path_expr_of_child): Same. | |
7156 | (ada_value_of_child): Same. | |
7157 | (ada_type_of_child): Same. | |
7158 | * c-varobj.c (c_is_path_expr_parent): Same. | |
7159 | (c_describe_child): Same. | |
7160 | (c_name_of_child): Same. | |
7161 | (c_value_of_child): Same. | |
7162 | (c_type_of_child): Same. | |
7163 | (cplus_number_of_children): Same. | |
7164 | (cplus_describe_child): Constify var. | |
7165 | (cplus_name_of_child): Constify parent. | |
7166 | (cplus_value_of_child): Same. | |
7167 | (cplus_type_of_child): Same. | |
7168 | * jv-varobj.c (java_name_of_child): Same. | |
7169 | (java_value_of_child): Same. | |
7170 | (java_type_of_child): Same. | |
7171 | * varobj.c (value_of_child): Same. | |
7172 | (varobj_default_is_path_expr_parent): Constify var, parent and return | |
7173 | value. | |
7174 | (varobj_get_path_expr): Constify var, modify path_expr through | |
7175 | mutable_var. | |
7176 | (install_new_value): Constify parent. | |
7177 | (value_of_child): Constify parent. | |
7178 | * varobj.h (struct varobj): Constify parent. | |
7179 | (struct lang_varobj_ops): Constify name_of_child, value_of_child and | |
7180 | type_of_child. | |
7181 | (varobj_get_path_expr): Constify var. | |
7182 | (varobj_get_path_expr_parent): Constify var and return value. | |
7183 | ||
c1ee9414 LM |
7184 | 2015-02-10 Luis Machado <lgustavo@codesourcery.com> |
7185 | ||
7186 | * arm-tdep.c (arm_prologue_unwind_stop_reason): New function. | |
7187 | (arm_prologue_this_id): Move PC and SP limit checks to | |
7188 | arm_prologue_unwind_stop_reason. | |
7189 | (arm_prologue_unwind) <stop_reason> : Set to | |
7190 | arm_prologue_unwind_stop_reason. | |
7191 | ||
f7de9aab MW |
7192 | 2015-02-09 Mark Wielaard <mjw@redhat.com> |
7193 | ||
7194 | * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and | |
7195 | DW_LANG_Fortran08 as language_fortran. | |
7196 | ||
0b24eb2d SDJ |
7197 | 2015-02-09 Sergio Durigan Junior <sergiodj@redhat.com> |
7198 | ||
7199 | PR remote/17946 | |
7200 | * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison | |
7201 | of pointer against char. | |
7202 | ||
a2c2acaf MW |
7203 | 2015-02-09 Mark Wielaard <mjw@redhat.com> |
7204 | ||
7205 | * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'. | |
7206 | (c_type_print_modifier): Likewise. | |
7207 | * dwarf2read.c (read_tag_atomic_type): New function. | |
7208 | (read_type_die_1): Handle DW_TAG_atomic_type. | |
7209 | * gdbtypes.c (make_atomic_type): New function. | |
7210 | (recursive_dump_type): Handle TYPE_ATOMIC. | |
7211 | * gdbtypes.h (enum type_flag_values): Renumber. | |
7212 | (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC. | |
7213 | (TYPE_ATOMIC): New macro. | |
7214 | (make_atomic_type): Declare. | |
7215 | ||
31fd9caa MM |
7216 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7217 | ||
7218 | * btrace.c (ftrace_find_call): Skip gaps. | |
7219 | (ftrace_new_function): Initialize level. | |
7220 | (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return) | |
7221 | (ftrace_new_switch): Update | |
7222 | level computation. | |
7223 | (ftrace_new_gap): New. | |
7224 | (ftrace_update_function): Create new function after gap. | |
7225 | (btrace_compute_ftrace_bts): Create gap on error. | |
7226 | (btrace_stitch_bts): Update parameters. Clear trace if it | |
7227 | becomes empty. | |
7228 | (btrace_stitch_trace): Update parameters. Update callers. | |
7229 | (btrace_clear): Reset the number of gaps. | |
7230 | (btrace_insn_get): Return NULL if the iterator points to a gap. | |
7231 | (btrace_insn_number): Return zero if the iterator points to a gap. | |
7232 | (btrace_insn_end): Allow gaps at the end. | |
7233 | (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps. | |
7234 | (btrace_find_insn_by_number): Assert that the found iterator does | |
7235 | not point to a gap. | |
7236 | (btrace_call_next, btrace_call_prev): Assert that the last function | |
7237 | is not a gap. | |
7238 | * btrace.h (btrace_bts_error): New. | |
7239 | (btrace_function): Update comment. | |
7240 | (btrace_function) <insn, insn_offset, number>: Update comment. | |
7241 | (btrace_function) <errcode>: New. | |
7242 | (btrace_thread_info) <ngaps>: New. | |
7243 | (btrace_thread_info) <replay>: Update comment. | |
7244 | (btrace_insn_get): Update comment. | |
7245 | * record-btrace.c (btrace_ui_out_decode_error): New. | |
7246 | (record_btrace_info): Print number of gaps. | |
7247 | (btrace_insn_history, btrace_call_history): Call | |
7248 | btrace_ui_out_decode_error for gaps. | |
7249 | (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps. | |
7250 | ||
afb778a2 MM |
7251 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7252 | ||
7253 | * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New. | |
7254 | * nat/linux-btrace.c: (btrace_this_cpu): New. | |
7255 | (cpu_supports_bts): Call btrace_this_cpu. | |
7256 | (intel_supports_bts): Add cpu parameter. | |
7257 | ||
7d5c24b3 MM |
7258 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7259 | ||
7260 | * btrace.h (btrace_insn_class): New. | |
7261 | (btrace_insn) <size, iclass>: New. | |
7262 | * btrace.c (ftrace_find_call): Update parameters. Update users. | |
7263 | Use instruction classification. | |
7264 | (ftrace_new_return): Update parameters. Update users. | |
7265 | (ftrace_update_function): Update parameters. Update users. Use | |
7266 | instruction classification. | |
7267 | (ftrace_update_insns): Update parameters. Update users. | |
7268 | (ftrace_classify_insn): New. | |
7269 | (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add | |
7270 | TRY_CATCH around call to gdb_insn_length. | |
7271 | ||
76235df1 MM |
7272 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7273 | ||
7274 | * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace): | |
7275 | Update parameters. Update users. | |
7276 | ||
d33501a5 MM |
7277 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7278 | ||
7279 | * btrace.c (parse_xml_btrace_conf_bts): Add size. | |
7280 | (btrace_conf_bts_attributes): New. | |
7281 | (btrace_conf_children): Add attributes. | |
7282 | * common/btrace-common.h (btrace_config_bts): New. | |
7283 | (btrace_config)<bts>: New. | |
7284 | (btrace_config): Update comment. | |
7285 | * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts): | |
7286 | Use config. | |
7287 | * features/btrace-conf.dtd: Increment version. Add size | |
7288 | attribute to bts element. | |
7289 | * record-btrace.c (set_record_btrace_bts_cmdlist, | |
7290 | show_record_btrace_bts_cmdlist): New. | |
7291 | (record_btrace_adjust_size, record_btrace_print_bts_conf, | |
7292 | record_btrace_print_conf, cmd_set_record_btrace_bts, | |
7293 | cmd_show_record_btrace_bts): New. | |
7294 | (record_btrace_info): Call record_btrace_print_conf. | |
7295 | (_initialize_record_btrace): Add commands. | |
7296 | * remote.c: Add PACKET_Qbtrace_conf_bts_size enum. | |
7297 | (remote_protocol_features): Add Qbtrace-conf:bts:size packet. | |
7298 | (btrace_sync_conf): Synchronize bts size. | |
7299 | (_initialize_remote): Add Qbtrace-conf:bts:size packet. | |
7300 | * NEWS: Announce new commands and new packets. | |
7301 | ||
f4abbc16 MM |
7302 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7303 | ||
7304 | * Makefile.in (XMLFILES): Add btrace-conf.dtd. | |
7305 | * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters. | |
7306 | (x86_linux_btrace_conf): New. | |
7307 | (x86_linux_create_target): Initialize to_btrace_conf. | |
7308 | * nat/linux-btrace.c (linux_enable_btrace): Update parameters. | |
7309 | Check format. Split into this and ... | |
7310 | (linux_enable_bts): ... this. | |
7311 | (linux_btrace_conf): New. | |
7312 | (perf_event_skip_record): Renamed into ... | |
7313 | (perf_event_skip_bts_record): ... this. Updated users. | |
7314 | (linux_disable_btrace): Split into this and ... | |
7315 | (linux_disable_bts): ... this. | |
7316 | (linux_read_btrace): Check format. | |
7317 | * nat/linux-btrace.h (linux_enable_btrace): Update parameters. | |
7318 | (linux_btrace_conf): New. | |
7319 | (btrace_target_info)<ptid>: Moved. | |
7320 | (btrace_target_info)<conf>: New. | |
7321 | (btrace_target_info): Split into this and ... | |
7322 | (btrace_tinfo_bts): ... this. Updated users. | |
7323 | * btrace.c (btrace_enable): Update parameters. | |
7324 | (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf) | |
7325 | (btrace_conf_children, btrace_conf_attributes) | |
7326 | (btrace_conf_elements): New. | |
7327 | * btrace.h (btrace_enable): Update parameters. | |
7328 | (btrace_conf, parse_xml_btrace_conf): New. | |
7329 | * common/btrace-common.h (btrace_config): New. | |
7330 | * feature/btrace-conf.dtd: New. | |
7331 | * record-btrace.c (record_btrace_conf): New. | |
7332 | (record_btrace_cmdlist): New. | |
7333 | (record_btrace_enable_warn, record_btrace_open): Pass | |
7334 | &record_btrace_conf. | |
7335 | (record_btrace_info): Print recording format. | |
7336 | (cmd_record_btrace_bts_start): New. | |
7337 | (cmd_record_btrace_start): Call cmd_record_btrace_bts_start. | |
7338 | (_initialize_record_btrace): Add "record btrace bts" subcommand. | |
7339 | Add "record bts" alias command. | |
7340 | * remote.c (remote_state)<btrace_config>: New. | |
7341 | (remote_btrace_reset, PACKET_qXfer_btrace_conf): New. | |
7342 | (remote_protocol_features): Add qXfer:btrace-conf:read. | |
7343 | (remote_open_1): Call remote_btrace_reset. | |
7344 | (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF. | |
7345 | (btrace_target_info)<conf>: New. | |
7346 | (btrace_sync_conf, btrace_read_config): New. | |
7347 | (remote_enable_btrace): Update parameters. Call btrace_sync_conf and | |
7348 | btrace_read_conf. | |
7349 | (remote_btrace_conf): New. | |
7350 | (init_remote_ops): Initialize to_btrace_conf. | |
7351 | (_initialize_remote): Add qXfer:btrace-conf packet. | |
7352 | * target.c (target_enable_btrace): Update parameters. | |
7353 | (target_btrace_conf): New. | |
7354 | * target.h (target_enable_btrace): Update parameters. | |
7355 | (target_btrace_conf): New. | |
7356 | (target_object)<TARGET_OBJECT_BTRACE_CONF>: New. | |
7357 | (target_ops)<to_enable_btrace>: Update parameters and comment. | |
7358 | (target_ops)<to_btrace_conf>: New. | |
7359 | * target-delegates: Regenerate. | |
7360 | * target-debug.h (target_debug_print_const_struct_btrace_config_p) | |
7361 | (target_debug_print_const_struct_btrace_target_info_p): New. | |
7362 | * NEWS: Announce new command and new packet. | |
7363 | ||
aadf7753 MM |
7364 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7365 | ||
7366 | * nat/linux-btrace.h (perf_event_buffer): New. | |
7367 | (btrace_target_info) <buffer, size, data_head>: Replace with ... | |
7368 | <bts>: ... this. | |
7369 | * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size) | |
7370 | (perf_event_buffer_size, perf_event_buffer_begin) | |
7371 | (perf_event_buffer_end, linux_btrace_has_changed): Removed. | |
7372 | Updated users. | |
7373 | (perf_event_new_data): New. | |
7374 | ||
043c3577 MM |
7375 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7376 | ||
7377 | * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS. | |
7378 | * record-btrace.c (record_btrace_open): Remove call to | |
7379 | target_supports_btrace. | |
7380 | * remote.c (remote_supports_btrace): Update parameters. | |
7381 | * target.c (target_supports_btrace): Update parameters. | |
7382 | * target.h (to_supports_btrace, target_supports_btrace): Update | |
7383 | parameters. | |
7384 | * target-delegates.c: Regenerate. | |
7385 | * target-debug.h (target_debug_print_enum_btrace_format): New. | |
7386 | * nat/linux-btrace.c | |
7387 | (kernel_supports_btrace): Rename into ... | |
7388 | (kernel_supports_bts): ... this. Update users. Update warning text. | |
7389 | (intel_supports_btrace): Rename into ... | |
7390 | (intel_supports_bts): ... this. Update users. | |
7391 | (cpu_supports_btrace): Rename into ... | |
7392 | (cpu_supports_bts): ... this. Update users. | |
7393 | (linux_supports_btrace): Update parameters. Split into this and ... | |
7394 | (linux_supports_bts): ... this. | |
7395 | * nat/linux-btrace.h (linux_supports_btrace): Update parameters. | |
7396 | ||
734b0e4b MM |
7397 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
7398 | ||
7399 | * Makefile.in (SFILES): Add common/btrace-common.c. | |
7400 | (COMMON_OBS): Add common/btrace-common.o. | |
7401 | (btrace-common.o): Add build rules. | |
7402 | * btrace.c (parse_xml_btrace): Update parameters. | |
7403 | (parse_xml_btrace_block): Set format field. | |
7404 | (btrace_add_pc, btrace_fetch): Use struct btrace_data. | |
7405 | (do_btrace_data_cleanup, make_cleanup_btrace_data): New. | |
7406 | (btrace_compute_ftrace): Split into this and... | |
7407 | (btrace_compute_ftrace_bts): ...this. | |
7408 | (btrace_stitch_trace): Split into this and... | |
7409 | (btrace_stitch_bts): ...this. | |
7410 | * btrace.h (parse_xml_btrace): Update parameters. | |
7411 | (make_cleanup_btrace_data): New. | |
7412 | * common/btrace-common.c: New. | |
7413 | * common/btrace-common.h: Include common-defs.h. | |
7414 | (btrace_block_s): Update comment. | |
7415 | (btrace_format): New. | |
7416 | (btrace_format_string): New. | |
7417 | (btrace_data_bts): New. | |
7418 | (btrace_data): New. | |
7419 | (btrace_data_init, btrace_data_fini, btrace_data_empty): New. | |
7420 | * remote.c (remote_read_btrace): Update parameters. | |
7421 | * target.c (target_read_btrace): Update parameters. | |
7422 | * target.h (target_read_btrace): Update parameters. | |
7423 | (target_ops)<to_read_btrace>: Update parameters. | |
7424 | * x86-linux-nat.c (x86_linux_read_btrace): Update parameters. | |
7425 | * target-delegates.c: Regenerate. | |
7426 | * target-debug (target_debug_print_struct_btrace_data_p): New. | |
7427 | * nat/linux-btrace.c (linux_read_btrace): Split into this and... | |
7428 | (linux_read_bts): ...this. | |
7429 | * nat/linux-btrace.h (linux_read_btrace): Update parameters. | |
7430 | ||
bd2e0e9e DE |
7431 | 2015-02-06 Doug Evans <dje@google.com> |
7432 | ||
7433 | * remote-m32r-sdi.c: Include symfile.h. | |
7434 | ||
f176c4b5 DE |
7435 | 2015-02-06 Doug Evans <dje@google.com> |
7436 | ||
7437 | * symtab.h (clear_symtab_users, deduce_language_from_filename): Move | |
7438 | * symfile.h (clear_symtab_users, deduce_language_from_filename): ... | |
7439 | to here. | |
7440 | ||
d6c146e9 PA |
7441 | 2015-02-06 Pedro Alves <palves@redhat.com> |
7442 | ||
7443 | * linux-thread-db.c (find_new_threads_callback): Add debug output. | |
7444 | ||
b9d61307 SM |
7445 | 2015-02-06 Simon Marchi <simon.marchi@ericsson.com> |
7446 | ||
7447 | PR gdb/15678 | |
7448 | * breakpoint.c (map_breakpoint_numbers): Check for empty args string. | |
7449 | (enable_count_command): Check args for NULL value. | |
7450 | ||
e9fbd043 DE |
7451 | 2015-02-05 Doug Evans <xdje42@gmail.com> |
7452 | ||
7453 | * guile/scm-frame.c: Fix spelling errors in a comment. | |
7454 | ||
881d5d5d JK |
7455 | 2015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com> |
7456 | ||
7457 | * python/python-internal.h (Py_hash_t): Define it for Python <3.2. | |
7458 | * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the | |
7459 | return type. | |
7460 | ||
20ba1ce6 PA |
7461 | 2015-02-04 Pedro Alves <palves@redhat.com> |
7462 | ||
7463 | * linux-nat.c (handle_extended_wait): Don't resume LWPs here. | |
7464 | (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait | |
7465 | returns true. | |
7466 | (resume_stopped_resumed_lwps): Don't check whether the thread is | |
7467 | marked as executing. | |
7468 | (linux_nat_wait_1): Use resume_stopped_resumed_lwps. | |
7469 | ||
f962539a AA |
7470 | 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
7471 | ||
7472 | * regset.h (struct regset): Add flags field. | |
7473 | (REGSET_VARIABLE_SIZE): New value for a regset's flags field. | |
7474 | * corelow.c (get_core_register_section): Add warning if the size | |
7475 | exceeds the requested size and the regset does not have the | |
7476 | REGSET_VARIABLE_SIZE flag set. | |
7477 | * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE | |
7478 | flag. | |
7479 | * armbsd-tdep.c (armbsd_gregset): Likewise. | |
7480 | * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise. | |
7481 | * hppaobsd-tdep.c (hppaobsd_gregset): Likewise. | |
7482 | * m68kbsd-tdep.c (m68kbsd_gregset): Likewise. | |
7483 | * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise. | |
7484 | ||
dde9acd6 AA |
7485 | 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
7486 | ||
7487 | * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections): | |
7488 | For ".reg-xstate", explicitly specify the requested section size | |
7489 | via X86_XSTATE_SIZE instead of just 0 on input and | |
7490 | X86_XSTATE_MAX_SIZE on output. | |
7491 | * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections): | |
7492 | Likewise. | |
7493 | ||
1528345d AA |
7494 | 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
7495 | ||
7496 | PR corefiles/17808: | |
7497 | * gdbarch.sh (iterate_over_regset_sections_cb): Document this | |
7498 | function type, particularly its SIZE parameter. | |
7499 | * gdbarch.h: Regenerate. | |
7500 | * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare | |
7501 | actual against required size using ">=" instead of "==". | |
7502 | (amd64_collect_fpregset): Likewise. | |
7503 | * i386-tdep.c (i386_supply_gregset): Likewise. | |
7504 | (i386_collect_gregset): Likewise. | |
7505 | (i386_supply_fpregset): Likewise. | |
7506 | (i386_collect_fpregset): Likewise. | |
7507 | * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise. | |
7508 | (mips_fill_gregset_wrapper): Likewise. | |
7509 | (mips_supply_fpregset_wrapper): Likewise. | |
7510 | (mips_fill_fpregset_wrapper): Likewise. | |
7511 | (mips64_supply_gregset_wrapper): Likewise. | |
7512 | (mips64_fill_gregset_wrapper): Likewise. | |
7513 | (mips64_supply_fpregset_wrapper): Likewise. | |
7514 | (mips64_fill_fpregset_wrapper): Likewise. | |
7515 | * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise. | |
7516 | (am33_supply_fpregset_method): Likewise. | |
7517 | (am33_collect_gregset_method): Likewise. | |
7518 | (am33_collect_fpregset_method): Likewise. | |
7519 | ||
518be979 DE |
7520 | 2015-02-04 Doug Evans <dje@google.com> |
7521 | Pedro Alves <palves@redhat.com> | |
7522 | Eli Zaretskii <eliz@gnu.org> | |
7523 | ||
7524 | PR tui/17810 | |
7525 | * tui/tui-command.c (tui_refresh_cmd_win): New function. | |
7526 | * tui/tui-command.c (tui_refresh_cmd_win): Declare. | |
7527 | * tui/tui-file.c: #include tui/tui-command.h. | |
7528 | (tui_file_fputs): Refresh command window if stream is not gdb_stdout. | |
7529 | (tui_file_flush): Refresh command window if stream is gdb_stdout. | |
7530 | * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush. | |
7531 | ||
80bd5fab PA |
7532 | 2015-02-04 Pedro Alves <palves@redhat.com> |
7533 | ||
7534 | Fix build breakage. | |
7535 | * event-loop.c (gdb_do_one_event): Add default switch case. | |
7536 | ||
a7606d80 JK |
7537 | 2015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com> |
7538 | ||
7539 | Filter out inferior gcc option -fpreprocessed. | |
7540 | * compile/compile.c (filter_args): New function. | |
7541 | (get_args): Use it. | |
7542 | ||
70b66289 PA |
7543 | 2015-02-03 Pedro Alves <palves@redhat.com> |
7544 | ||
7545 | * event-loop.c: Don't declare nor define a queue type for | |
7546 | gdb_event_p. | |
7547 | (event_queue): Delete. | |
7548 | (create_event, create_file_event, gdb_event_xfree) | |
7549 | (initialize_event_loop, process_event): Delete. | |
7550 | (gdb_do_one_event): Return as soon as one event is handled. | |
7551 | (handle_file_event): Change prototype. Used the passed in | |
7552 | file_handler pointer and ready_mask instead of looping over all | |
7553 | file handlers. | |
7554 | (gdb_wait_for_event): Update the poll/select timeouts before | |
7555 | blocking. Run event handlers directly instead of queueing events. | |
7556 | Return as soon as one event is handled. | |
7557 | (struct async_event_handler_data): Delete. | |
7558 | (invoke_async_event_handler): Delete. | |
7559 | (check_async_event_handlers): Change return type to int. Run | |
7560 | event handlers directly instead of queueing events. Return as | |
7561 | soon as one event is handled. | |
7562 | (handle_timer_event): Delete. | |
7563 | (update_wait_timeout): New function, factored out from | |
7564 | poll_timers. | |
7565 | (poll_timers): Reimplement. | |
7566 | * event-loop.h (initialize_event_loop): Delete declaration. | |
7567 | * top.c (gdb_init): Don't call initialize_event_loop. | |
7568 | ||
b7d2e916 PA |
7569 | 2015-02-03 Pedro Alves <palves@redhat.com> |
7570 | ||
7571 | * event-loop.c (clear_async_event_handler): New function. | |
7572 | * event-loop.h (clear_async_event_handler): New declaration. | |
7573 | * record-btrace.c (record_btrace_async): New function. | |
7574 | (init_record_btrace_ops): Install record_btrace_async. | |
7575 | * record-full.c (record_full_async): New function. | |
7576 | (record_full_resume): Don't mark the async event source here. | |
7577 | (init_record_full_ops): Install record_full_async. | |
7578 | (record_full_core_resume): Don't mark the async event source here. | |
7579 | (init_record_full_core_ops): Install record_full_async. | |
7580 | * remote.c (remote_async): Mark and clear the async stop reply | |
7581 | queue event-loop token as appropriate. | |
7582 | ||
d9d41e78 PA |
7583 | 2015-02-03 Pedro Alves <palves@redhat.com> |
7584 | ||
7585 | * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use | |
7586 | target_is_async_p instead of target_can_async. | |
7587 | (linux_nat_wait): Use target_is_async_p instead of | |
7588 | target_can_async. Don't enable async here. | |
7589 | * remote.c (interrupt_query, remote_wait, putpkt_binary): Use | |
7590 | target_is_async_p instead of target_can_async. | |
7591 | ||
aa3de267 SM |
7592 | 2015-02-02 Simon Marchi <simon.marchi@ericsson.com> |
7593 | ||
7594 | * varobj.h (lang_varobj_ops): Mention which return values need | |
7595 | to be freed. | |
7596 | ||
2c811c0f JB |
7597 | 2015-02-02 Joel Brobecker <brobecker@adacore.com> |
7598 | ||
7599 | * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker. | |
7600 | ||
b1eedac9 JB |
7601 | 2015-02-02 Joel Brobecker <brobecker@adacore.com> |
7602 | ||
7603 | PR gdb/17856: | |
7604 | * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache | |
7605 | results found in the cache. | |
7606 | ||
66c168ae JB |
7607 | 2015-02-02 Joel Brobecker <brobecker@adacore.com> |
7608 | ||
7609 | PR gdb/17854: | |
7610 | * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache | |
7611 | when allocating a new one. | |
7612 | ||
4bdc02b2 TT |
7613 | 2015-02-01 Tom Tromey <tom@tromey.com> |
7614 | ||
7615 | * MAINTAINERS: Remove myself. | |
7616 | ||
ae6ae975 DE |
7617 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7618 | ||
7619 | * dwarf2read.c (process_structure_scope): Update setting of | |
7620 | TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO. | |
7621 | * gdbtypes.c (internal_type_vptr_fieldno): New function. | |
7622 | (set_type_vptr_fieldno): New function. | |
7623 | (internal_type_vptr_basetype): New function. | |
7624 | (set_type_vptr_basetype): New function. | |
7625 | (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO, | |
7626 | TYPE_VPTR_BASETYPE. | |
7627 | (allocate_cplus_struct_type): Initialize vptr_fieldno. | |
7628 | (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ... | |
7629 | (print_cplus_stuff): ... moved here. | |
7630 | (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE. | |
7631 | * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype | |
7632 | moved to ... | |
7633 | (struct cplus_struct_type): ... here. All uses updated. | |
7634 | (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite. | |
7635 | (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare. | |
7636 | (internal_type_vptr_basetype, set_type_vptr_basetype): Declare. | |
7637 | * stabsread.c (read_tilde_fields): Update setting of | |
7638 | TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE. | |
7639 | ||
09e2d7c7 DE |
7640 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7641 | ||
7642 | * cp-valprint.c (cp_find_class_member): Rename parameter domain_p | |
7643 | to self_p. | |
7644 | (cp_print_class_member): Rename local domain to self_type. | |
7645 | * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local | |
7646 | domain_type to self_type. | |
7647 | (set_die_type) <need_gnat_info>: Handle | |
7648 | TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD. | |
7649 | * gdb-gdb.py (StructMainTypePrettyPrinter): Handle | |
7650 | TYPE_SPECIFIC_SELF_TYPE. | |
7651 | * gdbtypes.c (internal_type_self_type): New function. | |
7652 | (set_type_self_type): New function. | |
7653 | (smash_to_memberptr_type): Rename parameter domain to self_type. | |
7654 | Update setting of TYPE_SELF_TYPE. | |
7655 | (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE. | |
7656 | (smash_to_method_type): Rename parameter domain to self_type. | |
7657 | Update setting of TYPE_SELF_TYPE. | |
7658 | (check_stub_method): Call smash_to_method_type. | |
7659 | (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE. | |
7660 | (copy_type_recursive): Ditto. | |
7661 | * gdbtypes.h (enum type_specific_kind): New value | |
7662 | TYPE_SPECIFIC_SELF_TYPE. | |
7663 | (struct main_type) <type_specific>: New member self_type. | |
7664 | (struct cplus_struct_type) <fn_field.type>: Update comment. | |
7665 | (TYPE_SELF_TYPE): Rewrite. | |
7666 | (internal_type_self_type, set_type_self_type): Declare. | |
7667 | * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to | |
7668 | self_type. | |
7669 | (gnuv3_method_ptr_to_value): Rename local domain_type to self_type. | |
7670 | * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with | |
7671 | TYPE_TARGET_TYPE. | |
7672 | * stabsread.c (read_member_functions): Mark methods with | |
7673 | TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of | |
7674 | TYPE_SELF_TYPE. | |
7675 | ||
4bfb94b8 DE |
7676 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7677 | ||
7678 | * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE. | |
7679 | All uses updated. | |
7680 | ||
5f4ce105 DE |
7681 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7682 | ||
7683 | * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs | |
7684 | or unions. Return zero if union. | |
7685 | (gnuv3_get_vtable): Call check_typedef. Assert only passed structs. | |
7686 | (gnuv3_rtti_type): Pass already-check_typedef'd value to | |
7687 | gnuv3_get_vtable. | |
7688 | (compute_vtable_size): Assert only passed structs. | |
7689 | (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs. | |
7690 | ||
f6b3afbf DE |
7691 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7692 | ||
7693 | * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD | |
7694 | kinds. | |
7695 | ||
cfb069a8 GB |
7696 | 2015-01-31 Gary Benson <gbenson@redhat.com> |
7697 | Doug Evans <dje@google.com> | |
7698 | ||
7699 | PR cli/9007 | |
7700 | PR cli/11920 | |
7701 | PR cli/15548 | |
7702 | * cli/cli-cmds.c (complete_command): Notify user if max-completions | |
7703 | reached. | |
7704 | * common/common-exceptions.h (enum errors) | |
7705 | <MAX_COMPLETIONS_REACHED_ERROR>: New value. | |
7706 | * completer.h (get_max_completions_reached_message): New declaration. | |
7707 | (max_completions): Likewise. | |
7708 | (completion_tracker_t): New typedef. | |
7709 | (new_completion_tracker): New declaration. | |
7710 | (make_cleanup_free_completion_tracker): Likewise. | |
7711 | (maybe_add_completion_enum): New enum. | |
7712 | (maybe_add_completion): New declaration. | |
7713 | (throw_max_completions_reached_error): Likewise. | |
7714 | * completer.c (max_completions): New global variable. | |
7715 | (new_completion_tracker): New function. | |
7716 | (free_completion_tracker): Likewise. | |
7717 | (make_cleanup_free_completion_tracker): Likewise. | |
7718 | (maybe_add_completions): Likewise. | |
7719 | (throw_max_completions_reached_error): Likewise. | |
7720 | (complete_line): Remove duplicates and limit result to max_completions | |
7721 | entries. | |
7722 | (get_max_completions_reached_message): New function. | |
7723 | (gdb_display_match_list): Handle max_completions. | |
7724 | (_initialize_completer): New declaration and function. | |
7725 | * symtab.c: Include completer.h. | |
7726 | (completion_tracker): New static variable. | |
7727 | (completion_list_add_name): Call maybe_add_completion. | |
7728 | (default_make_symbol_completion_list_break_on_1): Renamed from | |
7729 | default_make_symbol_completion_list_break_on. Maintain | |
7730 | completion_tracker across calls to completion_list_add_name. | |
7731 | (default_make_symbol_completion_list_break_on): New function. | |
7732 | * top.c (init_main): Set rl_completion_display_matches_hook. | |
7733 | * tui/tui-io.c: Include completer.h. | |
7734 | (tui_old_rl_display_matches_hook): New static global. | |
7735 | (tui_rl_display_match_list): Notify user if max-completions reached. | |
7736 | (tui_setup_io): Save/restore rl_completion_display_matches_hook. | |
7737 | * NEWS (New Options): Mention set/show max-completions. | |
7738 | ||
e11c72c7 GB |
7739 | 2015-01-31 Gary Benson <gbenson@redhat.com> |
7740 | ||
7741 | * symtab.c (struct add_name_data) <code>: New field. | |
7742 | Updated comments. | |
7743 | (add_symtab_completions): New function. | |
7744 | (symtab_expansion_callback): Likewise. | |
7745 | (default_make_symbol_completion_list_break_on): Set datum.code. | |
7746 | Move minimal symbol scan before calling expand_symtabs_matching. | |
7747 | Scan known primary symtabs for externs and statics before calling | |
7748 | expand_symtabs_matching. Pass symtab_expansion_callback as | |
7749 | expansion_notify argument to expand_symtabs_matching. Do not scan | |
7750 | primary symtabs for externs and statics after calling | |
7751 | expand_symtabs_matching. | |
7752 | ||
276d885b GB |
7753 | 2015-01-31 Gary Benson <gbenson@redhat.com> |
7754 | ||
7755 | * symfile.h (expand_symtabs_exp_notify_ftype): New typedef. | |
7756 | (struct quick_symbol_functions) <expand_symtabs_matching>: | |
7757 | New argument expansion_notify. All uses updated. | |
7758 | (expand_symtabs_matching): New argument expansion_notify. | |
7759 | All uses updated. | |
7760 | * symfile-debug.c (debug_qf_expand_symtabs_matching): | |
7761 | Also print expansion notify. | |
7762 | * symtab.c (expand_symtabs_matching_via_partial): Call | |
7763 | expansion_notify whenever a partial symbol table is expanded. | |
7764 | * dwarf2read.c (dw2_expand_symtabs_matching): Call | |
7765 | expansion_notify whenever a symbol table is instantiated. | |
7766 | ||
82083d6d DE |
7767 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7768 | ||
7769 | * cli-out.c: #include completer.h, readline/readline.h. | |
7770 | (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions. | |
7771 | (cli_mld_flush, cld_mld_erase_entire_line): Ditto. | |
7772 | (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto. | |
7773 | * cli-out.h (cli_display_match_list): Declare. | |
7774 | * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros. | |
7775 | (ELLIPSIS_LEN): Ditto. | |
7776 | (gdb_get_y_or_n, gdb_display_match_list_pager): New functions. | |
7777 | (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto. | |
7778 | (gdb_fnprint, gdb_print_filename): Ditto. | |
7779 | (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto. | |
7780 | (gdb_display_match_list): Ditto. | |
7781 | * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs. | |
7782 | (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto. | |
7783 | (mld_beep_ftype, mld_read_key_ftype): Ditto. | |
7784 | (match_list_displayer): New struct. | |
7785 | (gdb_display_match_list): Declare. | |
7786 | * top.c (init_main): Set rl_completion_display_matches_hook. | |
7787 | * tui/tui-io.c: #include completer.h. | |
7788 | (printable_part, PUTX, print_filename, get_y_or_n): Delete. | |
7789 | (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions. | |
7790 | (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto. | |
7791 | (tui_mld_getc, tui_mld_read_key): Ditto. | |
7792 | (tui_rl_display_match_list): Rewrite. | |
7793 | (tui_handle_resize_during_io): New arg for_completion. All callers | |
7794 | updated. | |
7795 | ||
f57d2163 DE |
7796 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7797 | ||
7798 | Add symbol lookup cache. | |
7799 | * NEWS: Document new options and commands. | |
7800 | * symtab.c (symbol_cache_key): New static global. | |
7801 | (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros. | |
7802 | (SYMBOL_LOOKUP_FAILED): New macro. | |
7803 | (symbol_cache_slot_state): New enum. | |
7804 | (block_symbol_cache): New struct. | |
7805 | (symbol_cache): New struct. | |
7806 | (new_symbol_cache_size, symbol_cache_size): New static globals. | |
7807 | (hash_symbol_entry, eq_symbol_entry): New functions. | |
7808 | (symbol_cache_byte_size, resize_symbol_cache): New functions. | |
7809 | (make_symbol_cache, free_symbol_cache): New functions. | |
7810 | (get_symbol_cache, symbol_cache_cleanup): New function. | |
7811 | (set_symbol_cache_size, set_symbol_cache_size_handler): New functions. | |
7812 | (symbol_cache_lookup, symbol_cache_clear_slot): New function. | |
7813 | (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions. | |
7814 | (symbol_cache_flush, symbol_cache_dump): New functions. | |
7815 | (maintenance_print_symbol_cache): New function. | |
7816 | (maintenance_flush_symbol_cache): New function. | |
7817 | (symbol_cache_stats): New function. | |
7818 | (maintenance_print_symbol_cache_statistics): New function. | |
7819 | (symtab_new_objfile_observer): New function. | |
7820 | (symtab_free_objfile_observer): New function. | |
7821 | (lookup_static_symbol, lookup_global_symbol): Use symbol cache. | |
7822 | (_initialize_symtab): Init symbol_cache_key. New parameter | |
7823 | maint symbol-cache-size. New maint commands print symbol-cache, | |
7824 | print symbol-cache-statistics, flush-symbol-cache. | |
7825 | Install new_objfile, free_objfile observers. | |
7826 | ||
e700d1b2 JB |
7827 | 2015-01-31 Joel Brobecker <brobecker@adacore.com> |
7828 | ||
7829 | PR symtab/17855 | |
7830 | * symfile.c (clear_symtab_users): Move call to breakpoint_re_set | |
7831 | to end. | |
7832 | ||
9f050062 DE |
7833 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
7834 | ||
7835 | * NEWS: Mention inlined scripts in .debug_gdb_scripts section. | |
7836 | * auto-load.c: #include ctype.h. | |
7837 | (struct auto_load_pspace_info): Replace member loaded_scripts with | |
7838 | new members loaded_script_files, loaded_script_texts. | |
7839 | (auto_load_pspace_data_cleanup): Update. | |
7840 | (init_loaded_scripts_info): Update. | |
7841 | (get_auto_load_pspace_data_for_loading): Update. | |
7842 | (maybe_add_script_file): Renamed from maybe_add_script. All callers | |
7843 | updated. | |
7844 | (maybe_add_script_text): New function. | |
7845 | (clear_section_scripts): Update. | |
7846 | (source_script_file, execute_script_contents): New functions. | |
7847 | (source_section_scripts): Add support for | |
7848 | SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT. | |
7849 | (print_scripts): New function. | |
7850 | (auto_load_info_scripts): Also print inlined scripts. | |
7851 | (maybe_print_unsupported_script_warning): Renamed from | |
7852 | unsupported_script_warning_print. All callers updated. | |
7853 | (maybe_print_script_not_found_warning): Renamed from | |
7854 | script_not_found_warning_print. All callers updated. | |
7855 | * extension-priv.h (struct extension_language_script_ops): New member | |
7856 | objfile_script_executor. | |
7857 | * extension.c (ext_lang_objfile_script_executor): New function. | |
7858 | * extension.h (objfile_script_executor_func): New typedef. | |
7859 | (ext_lang_objfile_script_executor): Declare. | |
7860 | * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare. | |
7861 | * guile/guile.c (guile_extension_script_ops): Update. | |
7862 | * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function. | |
7863 | * python/python.c (python_extension_script_ops): Update. | |
7864 | (gdbpy_execute_objfile_script): New function. | |
7865 | ||
312809f8 EZ |
7866 | 2015-01-31 Eli Zaretskii <eliz@gnu.org> |
7867 | ||
7868 | * tui/tui-io.c (tui_expand_tabs): New function. | |
7869 | (tui_puts, tui_redisplay_readline): Expand TABs into the | |
7870 | appropriate number of spaces. | |
7871 | * tui/tui-regs.c: Include tui-io.h. | |
7872 | (tui_register_format): Call tui_expand_tabs to expand TABs into | |
7873 | the appropriate number of spaces. | |
7874 | * tui/tui-io.h: Add prototype for tui_expand_tabs. | |
7875 | ||
b6577aab DE |
7876 | 2015-01-30 Doug Evans <dje@google.com> |
7877 | ||
7878 | * NEWS: "info source" command now display producer string if present. | |
7879 | * source.c (source_info): Print producer string if present. | |
7880 | ||
6da58d3e SM |
7881 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
7882 | ||
7883 | * varobj.c (varobj_delete): Fix comment. | |
7884 | ||
837ce252 SM |
7885 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
7886 | ||
7887 | * varobj.c (create_child): Modify comment. | |
7888 | ||
b09e2c59 SM |
7889 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
7890 | ||
7891 | * ada-varobj.c (ada_number_of_children): Constify struct varobj * | |
7892 | parameter. | |
7893 | (ada_name_of_variable): Same. | |
7894 | (ada_path_expr_of_child): Same. | |
7895 | (ada_value_of_variable): Same. | |
7896 | (ada_value_is_changeable_p): Same. | |
7897 | (ada_value_has_mutated): Same. | |
7898 | * c-varobj.c (varobj_is_anonymous_child): Same. | |
7899 | (c_is_path_expr_parent): Same. | |
7900 | (c_number_of_children): Same. | |
7901 | (c_name_of_variable): Same. | |
7902 | (c_path_expr_of_child): Same. | |
7903 | (get_type): Same. | |
7904 | (c_value_of_variable): Same. | |
7905 | (cplus_number_of_children): Same. | |
7906 | (cplus_name_of_variable): Same. | |
7907 | (cplus_path_expr_of_child): Same. | |
7908 | (cplus_value_of_variable): Same. | |
7909 | * jv-varobj.c (java_number_of_children): Same. | |
7910 | (java_name_of_variable): Same. | |
7911 | (java_path_expr_of_child): Same. | |
7912 | (java_value_of_variable): Same. | |
7913 | * varobj.c (number_of_children): Same. | |
7914 | (name_of_variable): Same. | |
7915 | (is_root_p): Same. | |
7916 | (varobj_ensure_python_env): Same. | |
7917 | (varobj_get_objname): Same. | |
7918 | (varobj_get_expression): Same. | |
7919 | (varobj_get_display_format): Same. | |
7920 | (varobj_get_display_hint): Same. | |
7921 | (varobj_has_more): Same. | |
7922 | (varobj_get_thread_id): Same. | |
7923 | (varobj_get_frozen): Same. | |
7924 | (dynamic_varobj_has_child_method): Same. | |
7925 | (varobj_get_gdb_type): Same. | |
7926 | (is_path_expr_parent): Same. | |
7927 | (varobj_default_is_path_expr_parent): Same. | |
7928 | (varobj_get_language): Same. | |
7929 | (varobj_get_attributes): Same. | |
7930 | (varobj_is_dynamic_p): Same. | |
7931 | (varobj_get_child_range): Same. | |
7932 | (varobj_value_has_mutated): Same. | |
7933 | (varobj_get_value_type): Same. | |
7934 | (number_of_children): Same. | |
7935 | (name_of_variable): Same. | |
7936 | (check_scope): Same. | |
7937 | (varobj_editable_p): Same. | |
7938 | (varobj_value_is_changeable_p): Same. | |
7939 | (varobj_floating_p): Same. | |
7940 | (varobj_default_value_is_changeable_p): Same. | |
7941 | ||
2568868e SM |
7942 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
7943 | ||
7944 | * varobj.c (varobj_get_path_expr): Set var->path_expr. | |
7945 | * c-varobj.c (c_path_expr_of_child): Set local var instead of | |
7946 | child->path_expr. | |
7947 | (cplus_path_expr_of_child): Same. | |
7948 | ||
ca83fa81 SM |
7949 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
7950 | ||
7951 | * mi-cmd-var.c (print_varobj): Free varobj_get_expression | |
7952 | result. | |
7953 | (mi_cmd_var_info_expression): Same. | |
7954 | * varobj.c (varobj_get_expression): Mention in the comment that | |
7955 | the result must by freed by the caller. | |
7956 | ||
afa269ae SM |
7957 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
7958 | ||
7959 | * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of | |
7960 | varobj_get_type. | |
7961 | (varobj_update_one): Same. | |
7962 | * varobj.c (update_type_if_necessary): Free curr_type_str and | |
7963 | new_type_str. | |
7964 | (varobj_get_type): Specify in comment that the result needs to be | |
7965 | freed by the caller. | |
7966 | ||
cd366ee8 DE |
7967 | 2015-01-29 Doug Evans <dje@google.com> |
7968 | ||
7969 | PR symtab/17890 | |
7970 | * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4. | |
7971 | ||
38360086 MW |
7972 | 2015-01-25 Mark Wielaard <mjw@redhat.com> |
7973 | ||
7974 | * dwarf2read.c (checkproducer): Call producer_is_gcc. | |
7975 | * utils.c (producer_is_gcc_ge_4): Likewise. | |
7976 | (producer_is_gcc): New function. | |
7977 | * utils.h (producer_is_gcc): New declaration. | |
7978 | ||
df25ebbd JB |
7979 | 2015-01-29 Joel Brobecker <brobecker@adacore.com> |
7980 | ||
7981 | * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum | |
7982 | kind. | |
7983 | * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr" | |
7984 | parameter by "addr_stack" parameter. | |
7985 | (resolve_dynamic_range): Replace "addr" parameter by | |
7986 | "stack_addr" parameter. Update function documentation. | |
7987 | Update code accordingly. | |
7988 | (resolve_dynamic_array, resolve_dynamic_union) | |
7989 | (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise. | |
7990 | (resolve_dynamic_type): Update code, following the changes made | |
7991 | to resolve_dynamic_type_internal's interface. | |
7992 | * dwarf2loc.h (struct property_addr_info): New. | |
7993 | (dwarf2_evaluate_property): Replace "address" parameter | |
7994 | by "addr_stack" parameter. Adjust function documentation. | |
7995 | (struct dwarf2_offset_baton): New. | |
7996 | (struct dwarf2_property_baton): Update documentation of | |
7997 | field "referenced_type" to be more general. New field | |
7998 | "offset_info" in union data field. | |
7999 | * dwarf2loc.c (dwarf2_evaluate_property): Replace "address" | |
8000 | parameter by "addr_stack" parameter. Adjust code accordingly. | |
8001 | Add support for PROP_ADDR_OFFSET properties. | |
8002 | * dwarf2read.c (attr_to_dynamic_prop): Add support for | |
8003 | DW_AT_data_member_location attributes as well. Use case | |
8004 | statements instead of if/else condition. | |
8005 | ||
4a0ca9ec JB |
8006 | 2015-01-29 Joel Brobecker <brobecker@adacore.com> |
8007 | ||
8008 | * ada-varobj.c (ada_varobj_get_array_number_of_children): | |
8009 | Return zero if PARENT_VALUE is NULL and parent_type's | |
8010 | range type is dynamic. | |
8011 | ||
ddb87a81 JB |
8012 | 2015-01-29 Joel Brobecker <brobecker@adacore.com> |
8013 | ||
8014 | * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return | |
8015 | nonzero if the type's subtype is dynamic. | |
8016 | (resolve_dynamic_range): Also resolve the range's subtype. | |
8017 | ||
3d7ad9b4 | 8018 | 2015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch) |
7a270e0c | 8019 | |
3d7ad9b4 | 8020 | Pushed by Joel Brobecker <brobecker@adacore.com>. |
7a270e0c AK |
8021 | * symfile.c (unmap_overlay_command): Initialize sec to NULL. |
8022 | ||
3a8b707a DE |
8023 | 2015-01-27 Doug Evans <dje@google.com> |
8024 | ||
8025 | * NEWS: Mention gdb.Objfile.username. | |
8026 | * python/py-objfile.c (objfpy_get_username): New function. | |
8027 | (objfile_getset): Add "username". | |
8028 | ||
d35b90fb MW |
8029 | 2015-01-24 Mark Wielaard <mjw@redhat.com> |
8030 | ||
8031 | * stack.c (return_command): Markup warning message with _. | |
8032 | ||
734ae125 DE |
8033 | 2015-01-24 Doug Evans <xdje42@gmail.com> |
8034 | ||
8035 | * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete. | |
8036 | ||
527f3840 JK |
8037 | 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com> |
8038 | ||
8039 | Fix 100x slowdown regression on DWZ files. | |
8040 | * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash. | |
8041 | (struct line_header): Add offset and offset_in_dwz. | |
8042 | (dwarf_decode_lines): Add parameter decode_mapping to the declaration. | |
8043 | (free_line_header_voidp): New declaration. | |
8044 | (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New | |
8045 | functions. | |
8046 | (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller. | |
8047 | (handle_DW_AT_stmt_list): Use line_header_hash. | |
8048 | (free_line_header_voidp): New function. | |
8049 | (dwarf_decode_line_header): Initialize offset and offset_in_dwz. | |
8050 | (dwarf_decode_lines): New parameter decode_mapping, use it. | |
8051 | (dwarf2_free_objfile): Free line_header_hash. | |
8052 | ||
f7e5394d SM |
8053 | 2015-01-23 Simon Marchi <simon.marchi@ericsson.com> |
8054 | ||
8055 | PR gdb/17416 | |
8056 | * valops.c (value_rtti_indirect_type): Catch exception thrown by | |
8057 | value_ind. | |
8058 | ||
743649fd MW |
8059 | 2015-01-15 Mark Wielaard <mjw@redhat.com> |
8060 | ||
8061 | * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from | |
8062 | DW_AT_noreturn. | |
8063 | * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make | |
8064 | calling_convention an 8 bit bit field. | |
8065 | (TYPE_NO_RETURN): New macro. | |
8066 | * infcmd.c (finish_command): Query if function does not return | |
8067 | normally. | |
8068 | * stack.c (return_command): Likewise. | |
8069 | ||
198297aa PA |
8070 | 2015-01-23 Pedro Alves <palves@redhat.com> |
8071 | ||
8072 | * linux-nat.c (linux_is_async_p): New macro. | |
8073 | (linux_nat_is_async_p): | |
8074 | (linux_nat_terminal_inferior): Check whether the target can async | |
8075 | instead of whether it is already async. | |
8076 | (linux_nat_terminal_ours): Don't check whether the target is | |
8077 | async. | |
8078 | (linux_async_pipe): Use linux_is_async_p. | |
8079 | ||
253828f1 JK |
8080 | 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com> |
8081 | ||
8082 | * NEWS (Changes since GDB 7.9): Add 'thread apply all' option | |
8083 | '-ascending'. | |
8084 | * thread.c (tp_array_compar_ascending, tp_array_compar): New. | |
8085 | (thread_apply_all_command): Parse CMD for tp_array_compar_ascending. | |
8086 | Sort tp_array using tp_array_compar. | |
8087 | (_initialize_thread): Extend thread_apply_all_command help. | |
8088 | ||
f0e8c4c5 JK |
8089 | 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com> |
8090 | ||
8091 | * corelow.c (core_open): Call also thread_command. | |
8092 | * gdbthread.h (thread_command): New prototype moved from ... | |
8093 | * thread.c (thread_command): ... here. | |
8094 | (thread_command): Make it global. | |
8095 | ||
03b79603 PA |
8096 | 2015-01-22 Pedro Alves <palves@redhat.com> |
8097 | ||
8098 | * configure.ac [*mingw32*]: Check $curses_found instead of | |
8099 | $prefer_curses. | |
8100 | * configure: Regenerate. | |
8101 | * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and | |
8102 | HAVE_NCURSES_NCURSES_H checks. | |
8103 | ||
6b8a872f EZ |
8104 | 2015-01-22 Eli Zaretskii <eliz@gnu.org> |
8105 | ||
bbbbffbb | 8106 | * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm' |
6b8a872f EZ |
8107 | fails with the 1st arg NULL, try again with "unknown". Don't test |
8108 | the "cup" capability: it isn't supported by the Windows port of | |
8109 | ncurses, but the Windows console driver is still capable of | |
8110 | supporting TUI. | |
8111 | ||
4b62a76e JK |
8112 | 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com> |
8113 | ||
8114 | * compile/compile.c (_initialize_compile): Use -fPIE for compile_args. | |
8115 | ||
82a864f9 EZ |
8116 | 2015-01-22 Eli Zaretskii <eliz@gnu.org> |
8117 | ||
8118 | * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h. | |
8119 | (ALLDEPFILES): Remove irix5-nat.c. These two are part of the | |
8120 | reason that "make TAGS" is broken. | |
8121 | ||
b35018fd CG |
8122 | 2015-01-22 Chen Gang <gang.chen.5i5j@gmail.com> |
8123 | ||
8124 | * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues | |
8125 | and check additional store instructions. | |
8126 | ||
ffbc4646 WW |
8127 | 2015-01-21 Wei-cheng Wang <cole945@gmail.com> |
8128 | ||
8129 | * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang". | |
8130 | ||
ddeca1df WW |
8131 | 2015-01-21 Wei-cheng Wang <cole945@gmail.com> |
8132 | ||
8133 | * ppc-linux-tdep.c (ppc_skip_trampoline_code, | |
8134 | ppc_canonicalize_syscall, ppc_linux_syscall_record, | |
8135 | ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments. | |
8136 | * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise. | |
8137 | * rs6000-tdep.c (rs6000_epilogue_frame_cache, | |
8138 | rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register, | |
8139 | rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4, | |
8140 | ppc_process_record_op19, ppc_process_record_op31, | |
8141 | ppc_process_record_op59, ppc_process_record_op60, | |
8142 | ppc_process_record_op63): Likewise. | |
8143 | ||
049bb5de JB |
8144 | 2015-01-20 Joel Brobecker <brobecker@adacore.com> |
8145 | ||
8146 | * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string) | |
8147 | (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of | |
8148 | strerror. | |
8149 | ||
42b87c63 | 8150 | 2015-01-20 Wei-cheng Wang <cole945@gmail.com> |
810c1026 WW |
8151 | |
8152 | * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19, | |
8153 | ppc_process_record_op31, ppc_process_record_op59, | |
8154 | ppc_process_record_op60, ppc_process_record_op63, | |
8155 | ppc_process_record): Fix -Wformat warning. | |
8156 | * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60): | |
8157 | Remove unused variables. | |
8158 | ||
569340fc CG |
8159 | 2015-01-20 Chen Gang <gang.chen.5i5j@gmail.com> |
8160 | ||
8161 | * MAINTAINERS (Write After Approval): Add "Chen Gang". | |
8162 | ||
63413d85 EZ |
8163 | 2015-01-19 Eli Zaretskii <eliz@gnu.org> |
8164 | ||
8165 | * configure.ac [*mingw32*]: Only add windows-termcap.o to | |
8166 | CONFIG_OBS if not building with a curses library. | |
8167 | * configure: Regenerate. | |
8168 | ||
8169 | * windows-termcap.c: Include defs.h. Make the whole body empty if | |
8170 | either one of HAVE_CURSES_H or HAVE_NCURSES_H or | |
8171 | HAVE_NCURSES_NCURSES_H is defined. | |
8172 | ||
16d8013c JB |
8173 | 2015-01-19 Joel Brobecker <brobecker@adacore.com> |
8174 | ||
8175 | * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator | |
8176 | from end of line to start of next line. | |
8177 | ||
cf90fd9a WW |
8178 | 2015-01-17 Wei-cheng Wang <cole945@gmail.com> |
8179 | ||
8180 | * ppc-linux-tdep.c (ppc_skip_trampoline_code): | |
8181 | Scan PLT stub backward for reverse debugging. | |
8182 | * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise. | |
8183 | ||
b4cdae6f WW |
8184 | 2015-01-17 Wei-cheng Wang <cole945@gmail.com> |
8185 | Ulrich Weigand <uweigand@de.ibm.com> | |
8186 | ||
8187 | * configure.tgt (powerpc*-*-linux): Add linux-record.o to | |
8188 | gdb_target_obs. | |
8189 | (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall | |
8190 | record. | |
8191 | (ppc_canonicalize_syscall, ppc_linux_syscall_record, | |
8192 | ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions. | |
8193 | (ppc_linux_init_abi): Set process_record, process_record_signal. | |
8194 | * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and | |
8195 | ppc_linux_record_tdep to gdbarch_tdep. | |
8196 | (ppc_process_record): New declaration. | |
8197 | * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4, | |
8198 | ppc_process_record_op19, ppc_process_record_op31, | |
8199 | ppc_process_record_op59, ppc_process_record_op60, | |
8200 | ppc_process_record_op63, ppc_process_record): New functions. | |
8201 | ||
2608dbf8 WW |
8202 | 2015-01-17 Wei-cheng Wang <cole945@gmail.com> |
8203 | ||
8204 | * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to | |
8205 | rs6000_in_function_epilogue_frame_p and add an argument | |
8206 | for frame_info. | |
8207 | (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id, | |
8208 | rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer): | |
8209 | New functions. | |
8210 | (rs6000_epilogue_frame_unwind): New. | |
8211 | (rs6000_gdbarch_init): Append epilogue unwinder. | |
8212 | ||
4c347be6 SDJ |
8213 | 2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com> |
8214 | ||
8215 | * nat/linux-personality.c: Replace "#ifndef | |
8216 | HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if | |
8217 | !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5 | |
8218 | systems. | |
8219 | ||
9f2850ba EZ |
8220 | 2015-01-16 Eli Zaretskii <eliz@gnu.org> |
8221 | ||
6cdb25f4 EZ |
8222 | * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New |
8223 | functions. | |
8224 | (_initialize_tui_win) <border-kind, border-mode>: | |
8225 | <active-border-mode>: Use tui_set_var_cmd as the "set" function. | |
c54da50d EZ |
8226 | (tui_set_tab_width_command): Fix the commentary. |
8227 | ||
6cdb25f4 EZ |
8228 | * tui/tui-win.h: Add prototype for tui_rehighlight_all. |
8229 | ||
bf555842 EZ |
8230 | * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command): |
8231 | Doc fix. | |
cb86fcc1 EZ |
8232 | (tui_set_tab_width_command): Delete and recreate the source and |
8233 | the disassembly windows, to show the effect of the changed tab | |
8234 | size immediately. | |
bf555842 | 8235 | |
9f2850ba EZ |
8236 | * tui/tui-data.h (LINE_PREFIX): Make shorter |
8237 | (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for | |
8238 | "Thread NNNNN.XXXX" thread ID notation on Windows. | |
8239 | ||
95761b2d JK |
8240 | 2015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
8241 | ||
8242 | Fix gcc-5 compilation. | |
8243 | * hppa-tdep.c (inst_saves_gr): Fix parentheses typo. | |
8244 | ||
8cc73a39 SDJ |
8245 | 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com> |
8246 | ||
8247 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h. | |
8248 | (linux-personality.o): New rule. | |
8249 | * common/common-defs.h: Include <stdint.h>. | |
8250 | * config/aarch64/linux.mh (NATDEPFILES): Include | |
8251 | linux-personality.o. | |
8252 | * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise. | |
8253 | * config/arm/linux.mh (NATDEPFILES): Likewise. | |
8254 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
8255 | * config/i386/linux.mh (NATDEPFILES): Likewise. | |
8256 | * config/ia64/linux.mh (NATDEPFILES): Likewise. | |
8257 | * config/m32r/linux.mh (NATDEPFILES): Likewise. | |
8258 | * config/m68k/linux.mh (NATDEPFILES): Likewise. | |
8259 | * config/mips/linux.mh (NATDEPFILES): Likewise. | |
8260 | * config/pa/linux.mh (NATDEPFILES): Likewise. | |
8261 | * config/powerpc/linux.mh (NATDEPFILES): Likewise. | |
8262 | * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise. | |
8263 | * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise. | |
8264 | * config/s390/linux.mh (NATDEPFILES): Likewise. | |
8265 | * config/sparc/linux64.mh (NATDEPFILES): Likewise. | |
8266 | * config/sparc/linux.mh (NATDEPFILES): Likewise. | |
8267 | * config/tilegx/linux.mh (NATDEPFILES): Likewise. | |
8268 | * config/xtensa/linux.mh (NATDEPFILES): Likewise. | |
8269 | * defs.h: Remove #include <stdint.h> (moved to | |
8270 | common/common-defs.h). | |
8271 | * linux-nat.c: Include nat/linux-personality.h. Remove #include | |
8272 | <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to | |
8273 | nat/linux-personality.c). | |
8274 | (linux_nat_create_inferior): Remove code to disable address space | |
8275 | randomization (moved to nat/linux-personality.c). Create cleanup | |
8276 | to disable address space randomization. | |
8277 | * nat/linux-personality.c: New file. | |
8278 | * nat/linux-personality.h: Likewise. | |
8279 | ||
fb23d554 SDJ |
8280 | 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com> |
8281 | ||
8282 | * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and | |
8283 | common/posix-strerror.c. | |
8284 | (posix-strerror.o): New rule. | |
8285 | (mingw-strerror.o): Likewise. | |
8286 | * common/common-utils.h (safe_strerror): Move prototype to here, | |
8287 | from utils.h. | |
8288 | * common/common.host: New file. | |
8289 | * common/mingw-strerror.c: Likewise. | |
8290 | * common/posix-strerror.c: Likewise. | |
8291 | * configure: Regenerated. | |
8292 | * configure.ac: Source common/common.host. Add variable | |
8293 | common_host_obs to gdb_host_obs. | |
8294 | * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and | |
8295 | gdb/common/posix-strerror.c when warning about the use of | |
8296 | strerror. | |
8297 | * mingw-hdep.c (safe_strerror): Remove definition; move it to | |
8298 | common/mingw-strerror.c. | |
8299 | * posix-hdep.c (safe_strerror): Remove definition; move it to | |
8300 | common/posix-hdep.c. | |
8301 | * utils.h (safe_strerror): Remove prototype; move to | |
8302 | common/common-utils.h. | |
8303 | ||
3af8af43 JB |
8304 | 2015-01-15 Joel Brobecker <brobecker@adacore.com> |
8305 | ||
8306 | GDB 7.8.2 released. | |
8307 | ||
bafffb51 JB |
8308 | 2015-01-15 Joel Brobecker <brobecker@adacore.com> |
8309 | ||
8310 | * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel | |
8311 | ___XA type if the array has already been fixed. | |
8312 | ||
cdf43629 YQ |
8313 | 2015-01-14 Yao Qi <yao@codesourcery.com> |
8314 | ||
8315 | * Makefile.in (ppc-linux.o): New rule. | |
8316 | * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o. | |
8317 | * configure.ac: AC_CHECK_FUNCS(getauxval). | |
8318 | * config.in: Re-generated. | |
8319 | * configure: Re-generated. | |
8320 | * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p): | |
8321 | Declare. | |
8322 | * nat/ppc-linux.c: New file. | |
8323 | * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]: | |
8324 | Call ppc64_64bit_inferior_p. | |
8325 | ||
514c5338 YQ |
8326 | 2015-01-14 Yao Qi <yao@codesourcery.com> |
8327 | ||
8328 | * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to | |
8329 | nat/ppc-linux.h. | |
8330 | (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise. | |
8331 | (PPC_FEATURE_HAS_DFP): Likewise. | |
8332 | (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise. | |
8333 | (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise. | |
8334 | (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise. | |
8335 | Include "nat/ppc-linux.h". | |
8336 | * nat/ppc-linux.h: New file. | |
8337 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h. | |
8338 | ||
5589af0e PA |
8339 | 2015-01-14 Pedro Alves <palves@redhat.com> |
8340 | ||
8341 | PR gdb/17525 | |
8342 | * breakpoint.c: Include "interps.h". | |
8343 | (bpstat_do_actions_1): Also check whether the interpreter is | |
8344 | async. | |
8345 | ||
6c400b59 PA |
8346 | 2015-01-14 Pedro Alves <palves@redhat.com> |
8347 | ||
8348 | PR cli/17828 | |
8349 | * infrun.c (reinstall_readline_callback_handler_cleanup): Don't | |
8350 | reinstall if the interpreter is sync. | |
8351 | ||
e02c96a7 DE |
8352 | 2015-01-13 Doug Evans <dje@google.com> |
8353 | ||
8354 | * objfiles.c (objfile_filename): New function. | |
8355 | * objfiles.h (objfile_filename): Declare it. | |
8356 | (objfile_name): Add function comment. | |
8357 | * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the | |
8358 | bfd file name (which may be realpath'd), and the original name. | |
8359 | ||
3b2f13ff JB |
8360 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
8361 | ||
8362 | * NEWS: Create a new section for the next release branch. | |
8363 | Rename the section of the current branch, now that it has | |
8364 | been cut. | |
8365 | ||
b4cfe7f8 JB |
8366 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
8367 | ||
8368 | GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37): | |
8369 | * version.in: Bump version to 7.9.50.DATE-cvs. | |
8370 | ||
92fc2e69 JB |
8371 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
8372 | ||
8373 | * nat/linux-procfs.c (linux_proc_attach_tgid_threads): | |
8374 | Remove trailing new-line in argument of call to warning. | |
8375 | ||
f71f0b0d JB |
8376 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
8377 | ||
8378 | * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing | |
8379 | new-line in argument of call to "warning". | |
8380 | ||
04dccad0 JB |
8381 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
8382 | ||
8383 | * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found | |
8384 | in static block, then try searching for primitive types. | |
8385 | ||
08b13bdd PP |
8386 | 2015-01-12 Patrick Palka <patrick@parcs.ath.cx> |
8387 | ||
8388 | * top.h (gdb_add_history): Declare. | |
8389 | * top.c (command_count): New variable. | |
8390 | (gdb_add_history): New function. | |
8391 | (gdb_safe_append_history): New static function. | |
8392 | (quit_force): Call it. | |
8393 | (command_line_input): Use gdb_add_history instead of | |
8394 | add_history. | |
8395 | * event-top.c (command_line_handler): Likewise. | |
8396 | ||
4ac15b59 JC |
8397 | 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch) |
8398 | ||
8399 | PR gdb/17046 | |
8400 | * darwin-nat.c: Replace <machine/setjmp.h> #include by | |
8401 | <setjmp.h> #include. | |
8402 | ||
005e54bb DE |
8403 | 2015-01-11 Doug Evans <xdje42@gmail.com> |
8404 | ||
8405 | * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME. | |
8406 | ||
439250fb DE |
8407 | 2015-01-11 Doug Evans <xdje42@gmail.com> |
8408 | ||
8409 | PR gdb/15830 | |
8410 | * NEWS: The "maint demangle" command is renamed as "demangle". | |
8411 | * demangle.c: #include cli/cli-utils.h, language.h. | |
8412 | (demangle_command): New function. | |
8413 | (_initialize_demangle): Add new command "demangle". | |
8414 | * maint.c (maintenance_demangle): Stub out. | |
8415 | (_initialize_maint_cmds): Update help text for "maint demangle", | |
8416 | and mark as deprecated. | |
8417 | ||
ebf3aa72 MK |
8418 | 2015-01-11 Mark Kettenis <kettenis@gnu.org> |
8419 | ||
8420 | * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that | |
8421 | inferior_thread is a function. | |
8422 | ||
6bf045cd PP |
8423 | 2015-01-09 Patrick Palka <patrick@parcs.ath.cx> |
8424 | ||
8425 | * Makefile.in (.y.c): Don't munge yacc's #line | |
8426 | directives. | |
8427 | ||
588dcc3e PP |
8428 | 2015-01-09 Patrick Palka <patrick@parcs.ath.cx> |
8429 | ||
8430 | * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper | |
8431 | to prompt for input. | |
8432 | * tui/tui-hooks.c (tui_query_hook): Remove. | |
8433 | (tui_install_hooks): Don't set deprecated_query_hook. | |
8434 | * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in | |
8435 | height calculation. Always update the command window's cur_line. | |
8436 | ||
9c02b525 PA |
8437 | 2015-01-09 Pedro Alves <palves@redhat.com> |
8438 | ||
8439 | * breakpoint.c (hardware_breakpoint_inserted_here_p): New | |
8440 | function. | |
8441 | * breakpoint.h (hardware_breakpoint_inserted_here_p): New | |
8442 | declaration. | |
8443 | * linux-nat.c (linux_nat_status_is_event): Move higher up in file. | |
8444 | (linux_resume_one_lwp): Store the thread's PC. Adjust to clear | |
8445 | stop_reason. | |
8446 | (check_stopped_by_watchpoint): New function. | |
8447 | (save_sigtrap): Reimplement. | |
8448 | (linux_nat_stopped_by_watchpoint): Adjust. | |
8449 | (linux_nat_lp_status_is_event): Delete. | |
8450 | (stop_wait_callback): Only call save_sigtrap after storing the | |
8451 | pending status. | |
8452 | (status_callback): If the thread had been stopped for a breakpoint | |
8453 | that has since been removed, discard the event and resume the LWP. | |
8454 | (count_events_callback, select_event_lwp_callback): Use | |
8455 | lwp_status_pending_p instead of linux_nat_lp_status_is_event. | |
8456 | (cancel_breakpoint): Rename to ... | |
8457 | (check_stopped_by_breakpoint): ... this. Record whether the LWP | |
8458 | stopped for a software breakpoint or hardware breakpoint. | |
8459 | (select_event_lwp): Only give preference to the stepping LWP in | |
8460 | all-stop mode. Adjust comments. | |
8461 | (stop_and_resume_callback): Remove references to new_pending_p. | |
8462 | (linux_nat_filter_event): Likewise. Leave exit events of the | |
8463 | leader thread pending here. Handle signal short circuiting here. | |
8464 | Only call save_sigtrap after storing the pending waitstatus. | |
8465 | (linux_nat_wait_1): Remove 'retry' label. Remove references to | |
8466 | new_pending. Don't handle leaving events the caller is not | |
8467 | interested in pending here, nor handle signal short-circuiting | |
8468 | here. Also give equal priority to all LWPs that have had events | |
8469 | in non-stop mode. If reporting a software breakpoint event, | |
8470 | unadjust the LWP's PC. | |
8471 | * linux-nat.h (enum lwp_stop_reason): New. | |
8472 | (struct lwp_info) <stop_pc>: New field. | |
8473 | (struct lwp_info) <stopped_by_watchpoint>: Delete field. | |
8474 | (struct lwp_info) <stop_reason>: New field. | |
8475 | * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust. | |
8476 | ||
8af756ef PA |
8477 | 2015-01-09 Pedro Alves <palves@redhat.com> |
8478 | ||
8479 | * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>: | |
8480 | Set the LWP's 'resumed' flag. | |
8481 | ||
8a99810d PA |
8482 | 2015-01-09 Pedro Alves <palves@redhat.com> |
8483 | ||
8484 | * linux-nat.c (linux_resume_one_lwp): New function. | |
8485 | (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp. | |
8486 | (linux_nat_resume): Use lwp_status_pending_p and | |
8487 | linux_resume_one_lwp. | |
8488 | (linux_handle_syscall_trap): Use linux_resume_one_lwp. | |
8489 | (linux_handle_extended_wait): Use linux_resume_one_lwp. | |
8490 | (status_callback, running_callback): Use lwp_status_pending_p. | |
8491 | (lwp_status_pending_p): New function. | |
8492 | (stop_and_resume_callback): Use lwp_status_pending_p. | |
8493 | (linux_nat_filter_event): Use linux_resume_one_lwp. | |
8494 | (linux_nat_wait_1): Always use status_callback to look for an LWP | |
8495 | with a pending status. Use linux_resume_one_lwp. | |
8496 | (resume_stopped_resumed_lwps): Use lwp_status_pending_p and | |
8497 | linux_resume_one_lwp. | |
8498 | ||
f7ce857f PA |
8499 | 2015-01-09 Pedro Alves <palves@redhat.com> |
8500 | ||
8501 | * breakpoint.c (bp_location_inserted_here_p): New function, | |
8502 | factored out from ... | |
8503 | (breakpoint_inserted_here_p): ... here. Use | |
8504 | ALL_BP_LOCATIONS_AT_ADDR. | |
8505 | (software_breakpoint_inserted_here_p): Use | |
8506 | bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR. | |
8507 | ||
c1a747c1 PA |
8508 | 2014-01-09 Pedro Alves <palves@redhat.com> |
8509 | ||
8510 | Skip enabling event reporting if the kernel supports | |
8511 | PTRACE_EVENT_CLONE. | |
8512 | * linux-thread-db.c: Include "nat/linux-ptrace.h". | |
8513 | (thread_db_use_events): New function. | |
8514 | (try_thread_db_load_1): Check thread_db_use_events before enabling | |
8515 | event reporting. | |
8516 | (update_thread_state): New function. | |
8517 | (attach_thread): Use it. Check thread_db_use_events before | |
8518 | enabling event reporting. | |
8519 | (thread_db_detach): Check thread_db_use_events before disabling | |
8520 | event reporting. | |
8521 | (find_new_threads_callback): Check thread_db_use_events before | |
8522 | enabling event reporting. Update the thread's state if not using | |
8523 | libthread_db events. | |
8524 | ||
a33e3959 PA |
8525 | 2015-01-09 Pedro Alves <palves@redhat.com> |
8526 | ||
8527 | * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're | |
8528 | about to wait for is > 0. | |
8529 | * linux-thread-db.c (find_new_threads_callback): Ignore thread if | |
8530 | the kernel thread ID is -1. | |
8531 | ||
8784d563 PA |
8532 | 2015-01-09 Pedro Alves <palves@redhat.com> |
8533 | ||
8534 | * linux-nat.c (attach_proc_task_lwp_callback): New function. | |
8535 | (linux_nat_attach): Use linux_proc_attach_tgid_threads. | |
8536 | (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's | |
8537 | ptrace option flags. | |
8538 | * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New | |
8539 | field. | |
8540 | * nat/linux-procfs.c: Include <dirent.h>. | |
8541 | (linux_proc_get_int): New parameter "warn". Handle it. | |
8542 | (linux_proc_get_tgid): Adjust. | |
8543 | (linux_proc_get_tracerpid): Rename to ... | |
8544 | (linux_proc_get_tracerpid_nowarn): ... this. | |
8545 | (linux_proc_pid_get_state): New function, factored out from | |
8546 | (linux_proc_pid_has_state): ... this. Add new parameter "warn" | |
8547 | and handle it. | |
8548 | (linux_proc_pid_is_gone): New function. | |
8549 | (linux_proc_pid_is_stopped): Adjust. | |
8550 | (linux_proc_pid_is_zombie_maybe_warn) | |
8551 | (linux_proc_pid_is_zombie_nowarn): New functions. | |
8552 | (linux_proc_pid_is_zombie): Use | |
8553 | linux_proc_pid_is_zombie_maybe_warn. | |
8554 | (linux_proc_attach_tgid_threads): New function. | |
8555 | * nat/linux-procfs.h (linux_proc_get_tgid): Update comment. | |
8556 | (linux_proc_get_tracerpid): Rename to ... | |
8557 | (linux_proc_get_tracerpid_nowarn): ... this, and update comment. | |
8558 | (linux_proc_pid_is_gone): New declaration. | |
8559 | (linux_proc_pid_is_zombie): Update comment. | |
8560 | (linux_proc_pid_is_zombie_nowarn): New declaration. | |
8561 | (linux_proc_attach_lwp_func): New typedef. | |
8562 | (linux_proc_attach_tgid_threads): New declaration. | |
8563 | * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to | |
8564 | use nowarn functions. | |
8565 | (linux_ptrace_attach_fail_reason_string): Move here from | |
8566 | gdbserver/linux-low.c and rename. | |
8567 | (ptrace_supports_feature): If the current ptrace options are not | |
8568 | known yet, check them now, instead of asserting. | |
8569 | * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string): | |
8570 | Declare. | |
8571 | ||
883ed13e PA |
8572 | 2015-01-09 Pedro Alves <palves@redhat.com> |
8573 | ||
8574 | * linux-thread-db.c (thread_db_find_new_threads_silently) | |
8575 | (try_thread_db_load_1, try_thread_db_load, thread_db_load_search) | |
8576 | (find_new_threads_once): Print debug output on gdb_stdlog. | |
8577 | ||
1710aab8 CG |
8578 | 2015-01-09 Chen Gang <gang.chen.5i5j@gmail.com> |
8579 | Pedro Alves <palves@redhat.com> | |
8580 | ||
8581 | * compile/compile.c: Include "gdb_wait.h". | |
8582 | (do_rmdir): Check return value, and free 'zap'. | |
8583 | ||
b597c318 YQ |
8584 | 2015-01-08 Pedro Alves <palves@redhat.com> |
8585 | Yao Qi <yao@codesourcery.com> | |
8586 | ||
8587 | * dwarf2loc.c (indirect_pieced_value): Don't call | |
8588 | gdb_sign_extend. Call extract_signed_integer instead. | |
8589 | * utils.c (gdb_sign_extend): Remove. | |
8590 | * utils.h (gdb_sign_extend): Remove declaration. | |
8591 | ||
025ac414 PM |
8592 | 2015-01-07 Pierre Muller <muller@sourceware.org> |
8593 | ||
8594 | PR symtab/17811 | |
8595 | * stabsread.c (define_symbol): Set language for C++ special symbols. | |
8596 | ||
fa5af12a PP |
8597 | 2015-01-07 Patrick Palka <patrick@parcs.ath.cx> |
8598 | ||
8599 | * inflow.c (initial_gdb_ttystate): Tweak comment. | |
8600 | ||
ea42d6f8 JB |
8601 | 2015-01-07 Joel Brobecker <brobecker@adacore.com> |
8602 | ||
8603 | * inflow.c (set_initial_gdb_ttystate): Add empty line after | |
8604 | comment documenting function. | |
8605 | ||
6a06d660 PP |
8606 | 2015-01-07 Patrick Palka <patrick@parcs.ath.cx> |
8607 | ||
8608 | * terminal.h (set_initial_gdb_ttystate): Declare. | |
8609 | * inflow.c (initial_gdb_ttystate): New static variable. | |
8610 | (set_initial_gdb_ttystate): New setter. | |
8611 | (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate | |
8612 | instead of our current terminal state. | |
8613 | * top.c (gdb_init): Call set_initial_gdb_ttystate. | |
8614 | ||
e810d75b JB |
8615 | 2015-01-07 Joel Brobecker <brobecker@adacore.com> |
8616 | ||
8617 | * guile/scm-type.c (tyscm_array_1): Add comment. | |
8618 | * python/py-type.c (typy_array_1): Add comment. | |
8619 | ||
fce10a84 JB |
8620 | 2015-01-06 Joel Brobecker <brobecker@adacore.com> |
8621 | ||
8622 | * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range | |
8623 | error if N2 is equal to N1 - 1. | |
8624 | ||
8503d6e1 JB |
8625 | 2015-01-06 Joel Brobecker <brobecker@adacore.com> |
8626 | ||
8627 | * python/py-type.c (typy_array_1): Do not raise negative-length | |
8628 | exception if N2 is equal to N1 - 1. | |
8629 | ||
4d29c0a8 DE |
8630 | 2015-01-03 Doug Evans <xdje42@gmail.com> |
8631 | ||
8632 | * c-exp.y: Whitespace cleanup. | |
8633 | (classify_inner_name): Remove extra ;. | |
8634 | ||
eaa6a9a4 MR |
8635 | 2015-01-02 Maciej W. Rozycki <macro@codesourcery.com> |
8636 | ||
8637 | * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack | |
8638 | offset signed. | |
8639 | ||
02fe9972 DE |
8640 | 2015-01-02 Doug Evans <dje@google.com> |
8641 | ||
8642 | * dwarf2read.c (setup_type_unit_groups): Remove outdated comment. | |
8643 | ||
e2ada9cb DE |
8644 | 2015-01-02 Doug Evans <dje@google.com> |
8645 | ||
8646 | * symtab.h (struct symbol): Fix typo in comment. | |
8647 | ||
32d0add0 JB |
8648 | 2015-01-01 Joel Brobecker <brobecker@adacore.com> |
8649 | ||
8650 | Update year range in copyright notice of all files. | |
8651 | ||
76f2b779 JB |
8652 | 2015-01-01 Joel Brobecker <brobecker@adacore.com> |
8653 | ||
8654 | * top.c (print_gdb_version): Update copyright year to 2015. | |
8655 | ||
077309e2 | 8656 | 2015-01-01 Joel Brobecker <brobecker@adacore.com> |
6bf6fd09 | 8657 | |
077309e2 | 8658 | * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014. |
6bf6fd09 | 8659 | |
077309e2 | 8660 | For older changes see ChangeLog-2014. |
c906108c SS |
8661 | \f |
8662 | Local Variables: | |
8663 | mode: change-log | |
8664 | left-margin: 8 | |
8665 | fill-column: 74 | |
8666 | version-control: never | |
57da7796 | 8667 | coding: utf-8 |
c906108c | 8668 | End: |