const char *p;
/* Pull in the current default source line if necessary. */
- if (arg == NULL || ((arg[0] == '+' || arg[0] == '-') && arg[1] == '\0'))
+ if (arg == NULL || ((arg[0] == '+' || arg[0] == '-' || arg[0] == '.') && arg[1] == '\0'))
{
set_default_source_symtab_and_line ();
symtab_and_line cursal = get_current_source_symtab_and_line ();
/* If this is the first "list" since we've set the current
source line, center the listing around that line. */
- if (get_first_line_listed () == 0)
+ if (get_first_line_listed () == 0 && (arg == nullptr || arg[0] != '.'))
{
list_around_line (arg, cursal);
}
print_source_lines (cursal.symtab, range, 0);
}
+ /* "l ." lists the default location again. */
+ else if (arg[0] == '.')
+ {
+ try
+ {
+ /* Find the current line by getting the PC of the currently
+ selected frame, and finding the line associated to it. */
+ frame_info_ptr frame = get_selected_frame (nullptr);
+ CORE_ADDR curr_pc = get_frame_pc (frame);
+ cursal = find_pc_line (curr_pc, 0);
+ }
+ catch (const gdb_exception &e)
+ {
+ /* If there was an exception above, it means the inferior
+ is not running, so reset the current source location to
+ the default. */
+ clear_current_source_symtab_and_line ();
+ set_default_source_symtab_and_line ();
+ cursal = get_current_source_symtab_and_line ();
+ }
+ list_around_line (arg, cursal);
+ /* Advance argument so just pressing "enter" after using "list ."
+ will print the following lines instead of the same lines again. */
+ arg++;
+ }
+
return;
}
= add_com ("list", class_files, list_command, _("\
List specified function or line.\n\
With no argument, lists ten more lines after or around previous listing.\n\
+\"list .\" lists ten lines arond where the inferior is stopped.\n\
\"list -\" lists the ten lines before a previous ten-line listing.\n\
One argument specifies a line, and ten lines are listed around that line.\n\
Two arguments with comma between specify starting and ending lines to list.\n\
"second use of \"list +INVALID\""
}
+proc test_list_current_location {} {
+ global binfile
+ # If the first "list" command that GDB runs is "list ." GDB may be
+ # unable to recognize that the inferior isn't running, so we should
+ # reload the inferior to test that condition.
+ clean_restart
+ gdb_file_cmd ${binfile}
+
+ # Ensure that we are printing 10 lines
+ if {![set_listsize 10]} {
+ return
+ }
+
+ # First guarantee that GDB prints around the main function correctly
+ gdb_test "list ." \
+ "1.*\r\n2\[ \t\]+\r\n3\[ \t\]+int main \[)(\]+.*5\[ \t\]+int x;.*" \
+ "list . with inferior not running"
+
+ if {![runto_main]} {
+ warning "couldn't start inferior"
+ return
+ }
+
+ # Walk forward some lines
+ gdb_test "until 15" ".*15.*foo.*"
+
+ # Test that the correct location is printed and that
+ # using just "list" will print the following lines.
+ gdb_test "list ." ".*" "list current line after starting"
+ gdb_test "list" ".*" "confirm we are printing the following lines"
+
+ # Test that list . will reset to current location
+ gdb_test "list ." ".*" "list around current line again"
+ gdb_test " " ".*" "testing repeated invocations with GDB's auto-repeat"
+}
+
clean_restart
gdb_file_cmd ${binfile}
# the current line.
test_list "list -" 10 1 "7" "6"
+# Test printing the location where the inferior is stopped.
+test_list_current_location
+
remote_exec build "rm -f list0.h"