OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [tui/] [tui-winsource.c] - Diff between revs 157 and 223

Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 223
/* TUI display source/assembly window.
/* TUI display source/assembly window.
 
 
   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008
   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   Contributed by Hewlett-Packard Company.
   Contributed by Hewlett-Packard Company.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
#include <ctype.h>
#include <ctype.h>
#include "symtab.h"
#include "symtab.h"
#include "frame.h"
#include "frame.h"
#include "breakpoint.h"
#include "breakpoint.h"
#include "value.h"
#include "value.h"
#include "source.h"
#include "source.h"
 
 
#include "tui/tui.h"
#include "tui/tui.h"
#include "tui/tui-data.h"
#include "tui/tui-data.h"
#include "tui/tui-stack.h"
#include "tui/tui-stack.h"
#include "tui/tui-win.h"
#include "tui/tui-win.h"
#include "tui/tui-wingeneral.h"
#include "tui/tui-wingeneral.h"
#include "tui/tui-winsource.h"
#include "tui/tui-winsource.h"
#include "tui/tui-source.h"
#include "tui/tui-source.h"
#include "tui/tui-disasm.h"
#include "tui/tui-disasm.h"
 
 
#include "gdb_string.h"
#include "gdb_string.h"
#include "gdb_curses.h"
#include "gdb_curses.h"
#include "gdb_assert.h"
#include "gdb_assert.h"
 
 
/* Function to display the "main" routine.  */
/* Function to display the "main" routine.  */
void
void
tui_display_main (void)
tui_display_main (void)
{
{
  if ((tui_source_windows ())->count > 0)
  if ((tui_source_windows ())->count > 0)
    {
    {
      CORE_ADDR addr;
      CORE_ADDR addr;
 
 
      addr = tui_get_begin_asm_address ();
      addr = tui_get_begin_asm_address ();
      if (addr != (CORE_ADDR) 0)
      if (addr != (CORE_ADDR) 0)
        {
        {
          struct symtab_and_line sal;
          struct symtab_and_line sal;
 
 
          tui_update_source_windows_with_addr (addr);
          tui_update_source_windows_with_addr (addr);
          sal = find_pc_line (addr, 0);
          sal = find_pc_line (addr, 0);
          if (sal.symtab)
          if (sal.symtab)
             tui_update_locator_filename (sal.symtab->filename);
             tui_update_locator_filename (sal.symtab->filename);
          else
          else
             tui_update_locator_filename ("??");
             tui_update_locator_filename ("??");
        }
        }
    }
    }
}
}
 
 
 
 
 
 
/* Function to display source in the source window.  This function
/* Function to display source in the source window.  This function
   initializes the horizontal scroll to 0.  */
   initializes the horizontal scroll to 0.  */
void
void
tui_update_source_window (struct tui_win_info *win_info,
tui_update_source_window (struct tui_win_info *win_info,
                          struct symtab *s,
                          struct symtab *s,
                          struct tui_line_or_address line_or_addr,
                          struct tui_line_or_address line_or_addr,
                          int noerror)
                          int noerror)
{
{
  win_info->detail.source_info.horizontal_offset = 0;
  win_info->detail.source_info.horizontal_offset = 0;
  tui_update_source_window_as_is (win_info, s, line_or_addr, noerror);
  tui_update_source_window_as_is (win_info, s, line_or_addr, noerror);
 
 
  return;
  return;
}
}
 
 
 
 
/* Function to display source in the source/asm window.  This function
/* Function to display source in the source/asm window.  This function
   shows the source as specified by the horizontal offset.  */
   shows the source as specified by the horizontal offset.  */
void
void
tui_update_source_window_as_is (struct tui_win_info *win_info,
tui_update_source_window_as_is (struct tui_win_info *win_info,
                                struct symtab *s,
                                struct symtab *s,
                                struct tui_line_or_address line_or_addr,
                                struct tui_line_or_address line_or_addr,
                                int noerror)
                                int noerror)
{
{
  enum tui_status ret;
  enum tui_status ret;
 
 
  if (win_info->generic.type == SRC_WIN)
  if (win_info->generic.type == SRC_WIN)
    ret = tui_set_source_content (s, line_or_addr.u.line_no, noerror);
    ret = tui_set_source_content (s, line_or_addr.u.line_no, noerror);
  else
  else
    ret = tui_set_disassem_content (line_or_addr.u.addr);
    ret = tui_set_disassem_content (line_or_addr.u.addr);
 
 
  if (ret == TUI_FAILURE)
  if (ret == TUI_FAILURE)
    {
    {
      tui_clear_source_content (win_info, EMPTY_SOURCE_PROMPT);
      tui_clear_source_content (win_info, EMPTY_SOURCE_PROMPT);
      tui_clear_exec_info_content (win_info);
      tui_clear_exec_info_content (win_info);
    }
    }
  else
  else
    {
    {
      tui_update_breakpoint_info (win_info, 0);
      tui_update_breakpoint_info (win_info, 0);
      tui_show_source_content (win_info);
      tui_show_source_content (win_info);
      tui_update_exec_info (win_info);
      tui_update_exec_info (win_info);
      if (win_info->generic.type == SRC_WIN)
      if (win_info->generic.type == SRC_WIN)
        {
        {
          struct symtab_and_line sal;
          struct symtab_and_line sal;
 
 
          sal.line = line_or_addr.u.line_no +
          sal.line = line_or_addr.u.line_no +
            (win_info->generic.content_size - 2);
            (win_info->generic.content_size - 2);
          sal.symtab = s;
          sal.symtab = s;
          set_current_source_symtab_and_line (&sal);
          set_current_source_symtab_and_line (&sal);
          /* If the focus was in the asm win, put it in the src win if
          /* If the focus was in the asm win, put it in the src win if
             we don't have a split layout.  */
             we don't have a split layout.  */
          if (tui_win_with_focus () == TUI_DISASM_WIN
          if (tui_win_with_focus () == TUI_DISASM_WIN
              && tui_current_layout () != SRC_DISASSEM_COMMAND)
              && tui_current_layout () != SRC_DISASSEM_COMMAND)
            tui_set_win_focus_to (TUI_SRC_WIN);
            tui_set_win_focus_to (TUI_SRC_WIN);
        }
        }
    }
    }
 
 
 
 
  return;
  return;
}
}
 
 
 
 
/* Function to ensure that the source and/or disassemly windows
/* Function to ensure that the source and/or disassemly windows
   reflect the input address.  */
   reflect the input address.  */
void
void
tui_update_source_windows_with_addr (CORE_ADDR addr)
tui_update_source_windows_with_addr (CORE_ADDR addr)
{
{
  if (addr != 0)
  if (addr != 0)
    {
    {
      struct symtab_and_line sal;
      struct symtab_and_line sal;
      struct tui_line_or_address l;
      struct tui_line_or_address l;
 
 
      switch (tui_current_layout ())
      switch (tui_current_layout ())
        {
        {
        case DISASSEM_COMMAND:
        case DISASSEM_COMMAND:
        case DISASSEM_DATA_COMMAND:
        case DISASSEM_DATA_COMMAND:
          tui_show_disassem (addr);
          tui_show_disassem (addr);
          break;
          break;
        case SRC_DISASSEM_COMMAND:
        case SRC_DISASSEM_COMMAND:
          tui_show_disassem_and_update_source (addr);
          tui_show_disassem_and_update_source (addr);
          break;
          break;
        default:
        default:
          sal = find_pc_line (addr, 0);
          sal = find_pc_line (addr, 0);
          l.loa = LOA_LINE;
          l.loa = LOA_LINE;
          l.u.line_no = sal.line;
          l.u.line_no = sal.line;
          tui_show_symtab_source (sal.symtab, l, FALSE);
          tui_show_symtab_source (sal.symtab, l, FALSE);
          break;
          break;
        }
        }
    }
    }
  else
  else
    {
    {
      int i;
      int i;
 
 
      for (i = 0; i < (tui_source_windows ())->count; i++)
      for (i = 0; i < (tui_source_windows ())->count; i++)
        {
        {
          struct tui_win_info *win_info = (tui_source_windows ())->list[i];
          struct tui_win_info *win_info = (tui_source_windows ())->list[i];
 
 
          tui_clear_source_content (win_info, EMPTY_SOURCE_PROMPT);
          tui_clear_source_content (win_info, EMPTY_SOURCE_PROMPT);
          tui_clear_exec_info_content (win_info);
          tui_clear_exec_info_content (win_info);
        }
        }
    }
    }
}
}
 
 
/* Function to ensure that the source and/or disassemly windows
/* Function to ensure that the source and/or disassemly windows
   reflect the input address.  */
   reflect the input address.  */
void
void
tui_update_source_windows_with_line (struct symtab *s, int line)
tui_update_source_windows_with_line (struct symtab *s, int line)
{
{
  CORE_ADDR pc;
  CORE_ADDR pc;
  struct tui_line_or_address l;
  struct tui_line_or_address l;
 
 
  switch (tui_current_layout ())
  switch (tui_current_layout ())
    {
    {
    case DISASSEM_COMMAND:
    case DISASSEM_COMMAND:
    case DISASSEM_DATA_COMMAND:
    case DISASSEM_DATA_COMMAND:
      find_line_pc (s, line, &pc);
      find_line_pc (s, line, &pc);
      tui_update_source_windows_with_addr (pc);
      tui_update_source_windows_with_addr (pc);
      break;
      break;
    default:
    default:
      l.loa = LOA_LINE;
      l.loa = LOA_LINE;
      l.u.line_no = line;
      l.u.line_no = line;
      tui_show_symtab_source (s, l, FALSE);
      tui_show_symtab_source (s, l, FALSE);
      if (tui_current_layout () == SRC_DISASSEM_COMMAND)
      if (tui_current_layout () == SRC_DISASSEM_COMMAND)
        {
        {
          find_line_pc (s, line, &pc);
          find_line_pc (s, line, &pc);
          tui_show_disassem (pc);
          tui_show_disassem (pc);
        }
        }
      break;
      break;
    }
    }
 
 
  return;
  return;
}
}
 
 
void
void
tui_clear_source_content (struct tui_win_info *win_info,
tui_clear_source_content (struct tui_win_info *win_info,
                          int display_prompt)
                          int display_prompt)
{
{
  if (win_info != NULL)
  if (win_info != NULL)
    {
    {
      int i;
      int i;
 
 
      win_info->generic.content_in_use = FALSE;
      win_info->generic.content_in_use = FALSE;
      tui_erase_source_content (win_info, display_prompt);
      tui_erase_source_content (win_info, display_prompt);
      for (i = 0; i < win_info->generic.content_size; i++)
      for (i = 0; i < win_info->generic.content_size; i++)
        {
        {
          struct tui_win_element *element =
          struct tui_win_element *element =
          (struct tui_win_element *) win_info->generic.content[i];
          (struct tui_win_element *) win_info->generic.content[i];
          element->which_element.source.has_break = FALSE;
          element->which_element.source.has_break = FALSE;
          element->which_element.source.is_exec_point = FALSE;
          element->which_element.source.is_exec_point = FALSE;
        }
        }
    }
    }
}
}
 
 
 
 
void
void
tui_erase_source_content (struct tui_win_info *win_info,
tui_erase_source_content (struct tui_win_info *win_info,
                          int display_prompt)
                          int display_prompt)
{
{
  int x_pos;
  int x_pos;
  int half_width = (win_info->generic.width - 2) / 2;
  int half_width = (win_info->generic.width - 2) / 2;
 
 
  if (win_info->generic.handle != (WINDOW *) NULL)
  if (win_info->generic.handle != (WINDOW *) NULL)
    {
    {
      werase (win_info->generic.handle);
      werase (win_info->generic.handle);
      tui_check_and_display_highlight_if_needed (win_info);
      tui_check_and_display_highlight_if_needed (win_info);
      if (display_prompt == EMPTY_SOURCE_PROMPT)
      if (display_prompt == EMPTY_SOURCE_PROMPT)
        {
        {
          char *no_src_str;
          char *no_src_str;
 
 
          if (win_info->generic.type == SRC_WIN)
          if (win_info->generic.type == SRC_WIN)
            no_src_str = NO_SRC_STRING;
            no_src_str = NO_SRC_STRING;
          else
          else
            no_src_str = NO_DISASSEM_STRING;
            no_src_str = NO_DISASSEM_STRING;
          if (strlen (no_src_str) >= half_width)
          if (strlen (no_src_str) >= half_width)
            x_pos = 1;
            x_pos = 1;
          else
          else
            x_pos = half_width - strlen (no_src_str);
            x_pos = half_width - strlen (no_src_str);
          mvwaddstr (win_info->generic.handle,
          mvwaddstr (win_info->generic.handle,
                     (win_info->generic.height / 2),
                     (win_info->generic.height / 2),
                     x_pos,
                     x_pos,
                     no_src_str);
                     no_src_str);
 
 
          /* elz: Added this function call to set the real contents of
          /* elz: Added this function call to set the real contents of
             the window to what is on the screen, so that later calls
             the window to what is on the screen, so that later calls
             to refresh, do display the correct stuff, and not the old
             to refresh, do display the correct stuff, and not the old
             image.  */
             image.  */
 
 
          tui_set_source_content_nil (win_info, no_src_str);
          tui_set_source_content_nil (win_info, no_src_str);
        }
        }
      tui_refresh_win (&win_info->generic);
      tui_refresh_win (&win_info->generic);
    }
    }
}
}
 
 
 
 
/* Redraw the complete line of a source or disassembly window.  */
/* Redraw the complete line of a source or disassembly window.  */
static void
static void
tui_show_source_line (struct tui_win_info *win_info, int lineno)
tui_show_source_line (struct tui_win_info *win_info, int lineno)
{
{
  struct tui_win_element *line;
  struct tui_win_element *line;
  int x, y;
  int x, y;
 
 
  line = (struct tui_win_element *) win_info->generic.content[lineno - 1];
  line = (struct tui_win_element *) win_info->generic.content[lineno - 1];
  if (line->which_element.source.is_exec_point)
  if (line->which_element.source.is_exec_point)
    wattron (win_info->generic.handle, A_STANDOUT);
    wattron (win_info->generic.handle, A_STANDOUT);
 
 
  mvwaddstr (win_info->generic.handle, lineno, 1,
  mvwaddstr (win_info->generic.handle, lineno, 1,
             line->which_element.source.line);
             line->which_element.source.line);
  if (line->which_element.source.is_exec_point)
  if (line->which_element.source.is_exec_point)
    wattroff (win_info->generic.handle, A_STANDOUT);
    wattroff (win_info->generic.handle, A_STANDOUT);
 
 
  /* Clear to end of line but stop before the border.  */
  /* Clear to end of line but stop before the border.  */
  getyx (win_info->generic.handle, y, x);
  getyx (win_info->generic.handle, y, x);
  while (x + 1 < win_info->generic.width)
  while (x + 1 < win_info->generic.width)
    {
    {
      waddch (win_info->generic.handle, ' ');
      waddch (win_info->generic.handle, ' ');
      getyx (win_info->generic.handle, y, x);
      getyx (win_info->generic.handle, y, x);
    }
    }
}
}
 
 
void
void
tui_show_source_content (struct tui_win_info *win_info)
tui_show_source_content (struct tui_win_info *win_info)
{
{
  if (win_info->generic.content_size > 0)
  if (win_info->generic.content_size > 0)
    {
    {
      int lineno;
      int lineno;
 
 
      for (lineno = 1; lineno <= win_info->generic.content_size; lineno++)
      for (lineno = 1; lineno <= win_info->generic.content_size; lineno++)
        tui_show_source_line (win_info, lineno);
        tui_show_source_line (win_info, lineno);
    }
    }
  else
  else
    tui_erase_source_content (win_info, TRUE);
    tui_erase_source_content (win_info, TRUE);
 
 
  tui_check_and_display_highlight_if_needed (win_info);
  tui_check_and_display_highlight_if_needed (win_info);
  tui_refresh_win (&win_info->generic);
  tui_refresh_win (&win_info->generic);
  win_info->generic.content_in_use = TRUE;
  win_info->generic.content_in_use = TRUE;
}
}
 
 
 
 
/* Scroll the source forward or backward horizontally.  */
/* Scroll the source forward or backward horizontally.  */
void
void
tui_horizontal_source_scroll (struct tui_win_info *win_info,
tui_horizontal_source_scroll (struct tui_win_info *win_info,
                              enum tui_scroll_direction direction,
                              enum tui_scroll_direction direction,
                              int num_to_scroll)
                              int num_to_scroll)
{
{
  if (win_info->generic.content != NULL)
  if (win_info->generic.content != NULL)
    {
    {
      int offset;
      int offset;
      struct symtab *s;
      struct symtab *s;
      struct symtab_and_line cursal = get_current_source_symtab_and_line ();
      struct symtab_and_line cursal = get_current_source_symtab_and_line ();
 
 
      if (cursal.symtab == (struct symtab *) NULL)
      if (cursal.symtab == (struct symtab *) NULL)
        s = find_pc_symtab (get_frame_pc (get_selected_frame (NULL)));
        s = find_pc_symtab (get_frame_pc (get_selected_frame (NULL)));
      else
      else
        s = cursal.symtab;
        s = cursal.symtab;
 
 
      if (direction == LEFT_SCROLL)
      if (direction == LEFT_SCROLL)
        offset = win_info->detail.source_info.horizontal_offset + num_to_scroll;
        offset = win_info->detail.source_info.horizontal_offset + num_to_scroll;
      else
      else
        {
        {
          if ((offset =
          if ((offset =
             win_info->detail.source_info.horizontal_offset - num_to_scroll) < 0)
             win_info->detail.source_info.horizontal_offset - num_to_scroll) < 0)
            offset = 0;
            offset = 0;
        }
        }
      win_info->detail.source_info.horizontal_offset = offset;
      win_info->detail.source_info.horizontal_offset = offset;
      tui_update_source_window_as_is (win_info, s,
      tui_update_source_window_as_is (win_info, s,
                                      ((struct tui_win_element *)
                                      ((struct tui_win_element *)
                                       win_info->generic.content[0])->which_element.source.line_or_addr,
                                       win_info->generic.content[0])->which_element.source.line_or_addr,
                                      FALSE);
                                      FALSE);
    }
    }
 
 
  return;
  return;
}
}
 
 
 
 
/* Set or clear the has_break flag in the line whose line is
/* Set or clear the has_break flag in the line whose line is
   line_no.  */
   line_no.  */
 
 
void
void
tui_set_is_exec_point_at (struct tui_line_or_address l,
tui_set_is_exec_point_at (struct tui_line_or_address l,
                          struct tui_win_info *win_info)
                          struct tui_win_info *win_info)
{
{
  int changed = 0;
  int changed = 0;
  int i;
  int i;
  tui_win_content content = (tui_win_content) win_info->generic.content;
  tui_win_content content = (tui_win_content) win_info->generic.content;
 
 
  i = 0;
  i = 0;
  while (i < win_info->generic.content_size)
  while (i < win_info->generic.content_size)
    {
    {
      int new_state;
      int new_state;
      struct tui_line_or_address content_loa =
      struct tui_line_or_address content_loa =
        content[i]->which_element.source.line_or_addr;
        content[i]->which_element.source.line_or_addr;
 
 
      gdb_assert (l.loa == LOA_ADDRESS || l.loa == LOA_LINE);
      gdb_assert (l.loa == LOA_ADDRESS || l.loa == LOA_LINE);
      gdb_assert (content_loa.loa == LOA_LINE
      gdb_assert (content_loa.loa == LOA_LINE
                  || content_loa.loa == LOA_ADDRESS);
                  || content_loa.loa == LOA_ADDRESS);
      if (content_loa.loa == l.loa
      if (content_loa.loa == l.loa
          && ((l.loa == LOA_LINE && content_loa.u.line_no == l.u.line_no)
          && ((l.loa == LOA_LINE && content_loa.u.line_no == l.u.line_no)
              || (content_loa.u.addr == l.u.addr)))
              || (content_loa.u.addr == l.u.addr)))
        new_state = TRUE;
        new_state = TRUE;
      else
      else
        new_state = FALSE;
        new_state = FALSE;
      if (new_state != content[i]->which_element.source.is_exec_point)
      if (new_state != content[i]->which_element.source.is_exec_point)
        {
        {
          changed++;
          changed++;
          content[i]->which_element.source.is_exec_point = new_state;
          content[i]->which_element.source.is_exec_point = new_state;
          tui_show_source_line (win_info, i + 1);
          tui_show_source_line (win_info, i + 1);
        }
        }
      i++;
      i++;
    }
    }
  if (changed)
  if (changed)
    tui_refresh_win (&win_info->generic);
    tui_refresh_win (&win_info->generic);
}
}
 
 
/* Update the execution windows to show the active breakpoints.
/* Update the execution windows to show the active breakpoints.
   This is called whenever a breakpoint is inserted, removed or
   This is called whenever a breakpoint is inserted, removed or
   has its state changed.  */
   has its state changed.  */
void
void
tui_update_all_breakpoint_info (void)
tui_update_all_breakpoint_info (void)
{
{
  struct tui_list *list = tui_source_windows ();
  struct tui_list *list = tui_source_windows ();
  int i;
  int i;
 
 
  for (i = 0; i < list->count; i++)
  for (i = 0; i < list->count; i++)
    {
    {
      struct tui_win_info *win = list->list[i];
      struct tui_win_info *win = list->list[i];
 
 
      if (tui_update_breakpoint_info (win, FALSE))
      if (tui_update_breakpoint_info (win, FALSE))
        {
        {
          tui_update_exec_info (win);
          tui_update_exec_info (win);
        }
        }
    }
    }
}
}
 
 
 
 
/* Scan the source window and the breakpoints to update the has_break
/* Scan the source window and the breakpoints to update the has_break
   information for each line.
   information for each line.
 
 
   Returns 1 if something changed and the execution window must be
   Returns 1 if something changed and the execution window must be
   refreshed.  */
   refreshed.  */
 
 
int
int
tui_update_breakpoint_info (struct tui_win_info *win,
tui_update_breakpoint_info (struct tui_win_info *win,
                            int current_only)
                            int current_only)
{
{
  int i;
  int i;
  int need_refresh = 0;
  int need_refresh = 0;
  struct tui_source_info *src = &win->detail.source_info;
  struct tui_source_info *src = &win->detail.source_info;
 
 
  for (i = 0; i < win->generic.content_size; i++)
  for (i = 0; i < win->generic.content_size; i++)
    {
    {
      struct breakpoint *bp;
      struct breakpoint *bp;
      extern struct breakpoint *breakpoint_chain;
      extern struct breakpoint *breakpoint_chain;
      int mode;
      int mode;
      struct tui_source_element *line;
      struct tui_source_element *line;
 
 
      line = &((struct tui_win_element *) win->generic.content[i])->which_element.source;
      line = &((struct tui_win_element *) win->generic.content[i])->which_element.source;
      if (current_only && !line->is_exec_point)
      if (current_only && !line->is_exec_point)
         continue;
         continue;
 
 
      /* Scan each breakpoint to see if the current line has something to
      /* Scan each breakpoint to see if the current line has something to
         do with it.  Identify enable/disabled breakpoints as well as
         do with it.  Identify enable/disabled breakpoints as well as
         those that we already hit.  */
         those that we already hit.  */
      mode = 0;
      mode = 0;
      for (bp = breakpoint_chain;
      for (bp = breakpoint_chain;
           bp != (struct breakpoint *) NULL;
           bp != (struct breakpoint *) NULL;
           bp = bp->next)
           bp = bp->next)
        {
        {
          gdb_assert (line->line_or_addr.loa == LOA_LINE
          gdb_assert (line->line_or_addr.loa == LOA_LINE
                      || line->line_or_addr.loa == LOA_ADDRESS);
                      || line->line_or_addr.loa == LOA_ADDRESS);
          if ((win == TUI_SRC_WIN
          if ((win == TUI_SRC_WIN
               && bp->source_file
               && bp->source_file
               && (strcmp (src->filename, bp->source_file) == 0)
               && (strcmp (src->filename, bp->source_file) == 0)
               && line->line_or_addr.loa == LOA_LINE
               && line->line_or_addr.loa == LOA_LINE
               && bp->line_number == line->line_or_addr.u.line_no)
               && bp->line_number == line->line_or_addr.u.line_no)
              || (win == TUI_DISASM_WIN
              || (win == TUI_DISASM_WIN
                  && line->line_or_addr.loa == LOA_ADDRESS
                  && line->line_or_addr.loa == LOA_ADDRESS
                  && bp->loc->address == line->line_or_addr.u.addr))
                  && bp->loc->address == line->line_or_addr.u.addr))
            {
            {
              if (bp->enable_state == bp_disabled)
              if (bp->enable_state == bp_disabled)
                mode |= TUI_BP_DISABLED;
                mode |= TUI_BP_DISABLED;
              else
              else
                mode |= TUI_BP_ENABLED;
                mode |= TUI_BP_ENABLED;
              if (bp->hit_count)
              if (bp->hit_count)
                mode |= TUI_BP_HIT;
                mode |= TUI_BP_HIT;
              if (bp->loc->cond)
              if (bp->loc->cond)
                mode |= TUI_BP_CONDITIONAL;
                mode |= TUI_BP_CONDITIONAL;
              if (bp->type == bp_hardware_breakpoint)
              if (bp->type == bp_hardware_breakpoint)
                mode |= TUI_BP_HARDWARE;
                mode |= TUI_BP_HARDWARE;
            }
            }
        }
        }
      if (line->has_break != mode)
      if (line->has_break != mode)
        {
        {
          line->has_break = mode;
          line->has_break = mode;
          need_refresh = 1;
          need_refresh = 1;
        }
        }
    }
    }
  return need_refresh;
  return need_refresh;
}
}
 
 
 
 
/* Function to initialize the content of the execution info window,
/* Function to initialize the content of the execution info window,
   based upon the input window which is either the source or
   based upon the input window which is either the source or
   disassembly window.  */
   disassembly window.  */
enum tui_status
enum tui_status
tui_set_exec_info_content (struct tui_win_info *win_info)
tui_set_exec_info_content (struct tui_win_info *win_info)
{
{
  enum tui_status ret = TUI_SUCCESS;
  enum tui_status ret = TUI_SUCCESS;
 
 
  if (win_info->detail.source_info.execution_info != (struct tui_gen_win_info *) NULL)
  if (win_info->detail.source_info.execution_info != (struct tui_gen_win_info *) NULL)
    {
    {
      struct tui_gen_win_info *exec_info_ptr = win_info->detail.source_info.execution_info;
      struct tui_gen_win_info *exec_info_ptr = win_info->detail.source_info.execution_info;
 
 
      if (exec_info_ptr->content == NULL)
      if (exec_info_ptr->content == NULL)
        exec_info_ptr->content =
        exec_info_ptr->content =
          (void **) tui_alloc_content (win_info->generic.height,
          (void **) tui_alloc_content (win_info->generic.height,
                                         exec_info_ptr->type);
                                         exec_info_ptr->type);
      if (exec_info_ptr->content != NULL)
      if (exec_info_ptr->content != NULL)
        {
        {
          int i;
          int i;
 
 
          tui_update_breakpoint_info (win_info, 1);
          tui_update_breakpoint_info (win_info, 1);
          for (i = 0; i < win_info->generic.content_size; i++)
          for (i = 0; i < win_info->generic.content_size; i++)
            {
            {
              struct tui_win_element *element;
              struct tui_win_element *element;
              struct tui_win_element *src_element;
              struct tui_win_element *src_element;
              int mode;
              int mode;
 
 
              element = (struct tui_win_element *) exec_info_ptr->content[i];
              element = (struct tui_win_element *) exec_info_ptr->content[i];
              src_element = (struct tui_win_element *) win_info->generic.content[i];
              src_element = (struct tui_win_element *) win_info->generic.content[i];
 
 
              memset(element->which_element.simple_string, ' ',
              memset(element->which_element.simple_string, ' ',
                     sizeof(element->which_element.simple_string));
                     sizeof(element->which_element.simple_string));
              element->which_element.simple_string[TUI_EXECINFO_SIZE - 1] = 0;
              element->which_element.simple_string[TUI_EXECINFO_SIZE - 1] = 0;
 
 
              /* Now update the exec info content based upon the state
              /* Now update the exec info content based upon the state
                 of each line as indicated by the source content.  */
                 of each line as indicated by the source content.  */
              mode = src_element->which_element.source.has_break;
              mode = src_element->which_element.source.has_break;
              if (mode & TUI_BP_HIT)
              if (mode & TUI_BP_HIT)
                element->which_element.simple_string[TUI_BP_HIT_POS] =
                element->which_element.simple_string[TUI_BP_HIT_POS] =
                  (mode & TUI_BP_HARDWARE) ? 'H' : 'B';
                  (mode & TUI_BP_HARDWARE) ? 'H' : 'B';
              else if (mode & (TUI_BP_ENABLED | TUI_BP_DISABLED))
              else if (mode & (TUI_BP_ENABLED | TUI_BP_DISABLED))
                element->which_element.simple_string[TUI_BP_HIT_POS] =
                element->which_element.simple_string[TUI_BP_HIT_POS] =
                  (mode & TUI_BP_HARDWARE) ? 'h' : 'b';
                  (mode & TUI_BP_HARDWARE) ? 'h' : 'b';
 
 
              if (mode & TUI_BP_ENABLED)
              if (mode & TUI_BP_ENABLED)
                element->which_element.simple_string[TUI_BP_BREAK_POS] = '+';
                element->which_element.simple_string[TUI_BP_BREAK_POS] = '+';
              else if (mode & TUI_BP_DISABLED)
              else if (mode & TUI_BP_DISABLED)
                element->which_element.simple_string[TUI_BP_BREAK_POS] = '-';
                element->which_element.simple_string[TUI_BP_BREAK_POS] = '-';
 
 
              if (src_element->which_element.source.is_exec_point)
              if (src_element->which_element.source.is_exec_point)
                element->which_element.simple_string[TUI_EXEC_POS] = '>';
                element->which_element.simple_string[TUI_EXEC_POS] = '>';
            }
            }
          exec_info_ptr->content_size = win_info->generic.content_size;
          exec_info_ptr->content_size = win_info->generic.content_size;
        }
        }
      else
      else
        ret = TUI_FAILURE;
        ret = TUI_FAILURE;
    }
    }
 
 
  return ret;
  return ret;
}
}
 
 
 
 
void
void
tui_show_exec_info_content (struct tui_win_info *win_info)
tui_show_exec_info_content (struct tui_win_info *win_info)
{
{
  struct tui_gen_win_info *exec_info = win_info->detail.source_info.execution_info;
  struct tui_gen_win_info *exec_info = win_info->detail.source_info.execution_info;
  int cur_line;
  int cur_line;
 
 
  werase (exec_info->handle);
  werase (exec_info->handle);
  tui_refresh_win (exec_info);
  tui_refresh_win (exec_info);
  for (cur_line = 1; (cur_line <= exec_info->content_size); cur_line++)
  for (cur_line = 1; (cur_line <= exec_info->content_size); cur_line++)
    mvwaddstr (exec_info->handle,
    mvwaddstr (exec_info->handle,
               cur_line,
               cur_line,
               0,
               0,
               ((struct tui_win_element *)
               ((struct tui_win_element *)
                exec_info->content[cur_line - 1])->which_element.simple_string);
                exec_info->content[cur_line - 1])->which_element.simple_string);
  tui_refresh_win (exec_info);
  tui_refresh_win (exec_info);
  exec_info->content_in_use = TRUE;
  exec_info->content_in_use = TRUE;
}
}
 
 
 
 
void
void
tui_erase_exec_info_content (struct tui_win_info *win_info)
tui_erase_exec_info_content (struct tui_win_info *win_info)
{
{
  struct tui_gen_win_info *exec_info = win_info->detail.source_info.execution_info;
  struct tui_gen_win_info *exec_info = win_info->detail.source_info.execution_info;
 
 
  werase (exec_info->handle);
  werase (exec_info->handle);
  tui_refresh_win (exec_info);
  tui_refresh_win (exec_info);
}
}
 
 
void
void
tui_clear_exec_info_content (struct tui_win_info *win_info)
tui_clear_exec_info_content (struct tui_win_info *win_info)
{
{
  win_info->detail.source_info.execution_info->content_in_use = FALSE;
  win_info->detail.source_info.execution_info->content_in_use = FALSE;
  tui_erase_exec_info_content (win_info);
  tui_erase_exec_info_content (win_info);
 
 
  return;
  return;
}
}
 
 
/* Function to update the execution info window.  */
/* Function to update the execution info window.  */
void
void
tui_update_exec_info (struct tui_win_info *win_info)
tui_update_exec_info (struct tui_win_info *win_info)
{
{
  tui_set_exec_info_content (win_info);
  tui_set_exec_info_content (win_info);
  tui_show_exec_info_content (win_info);
  tui_show_exec_info_content (win_info);
}
}
 
 
enum tui_status
enum tui_status
tui_alloc_source_buffer (struct tui_win_info *win_info)
tui_alloc_source_buffer (struct tui_win_info *win_info)
{
{
  char *src_line_buf;
  char *src_line_buf;
  int i, line_width, max_lines;
  int i, line_width, max_lines;
 
 
  max_lines = win_info->generic.height; /* Less the highlight box.  */
  max_lines = win_info->generic.height; /* Less the highlight box.  */
  line_width = win_info->generic.width - 1;
  line_width = win_info->generic.width - 1;
  /*
  /*
   * Allocate the buffer for the source lines.  Do this only once
   * Allocate the buffer for the source lines.  Do this only once
   * since they will be re-used for all source displays.  The only
   * since they will be re-used for all source displays.  The only
   * other time this will be done is when a window's size changes.
   * other time this will be done is when a window's size changes.
   */
   */
  if (win_info->generic.content == NULL)
  if (win_info->generic.content == NULL)
    {
    {
      src_line_buf = (char *)
      src_line_buf = (char *)
        xmalloc ((max_lines * line_width) * sizeof (char));
        xmalloc ((max_lines * line_width) * sizeof (char));
      if (src_line_buf == (char *) NULL)
      if (src_line_buf == (char *) NULL)
        {
        {
          fputs_unfiltered ("Unable to Allocate Memory for Source or Disassembly Display.\n",
          fputs_unfiltered ("Unable to Allocate Memory for Source or Disassembly Display.\n",
                            gdb_stderr);
                            gdb_stderr);
          return TUI_FAILURE;
          return TUI_FAILURE;
        }
        }
      /* Allocate the content list.  */
      /* Allocate the content list.  */
      if ((win_info->generic.content =
      if ((win_info->generic.content =
           (void **) tui_alloc_content (max_lines, SRC_WIN)) == NULL)
           (void **) tui_alloc_content (max_lines, SRC_WIN)) == NULL)
        {
        {
          xfree (src_line_buf);
          xfree (src_line_buf);
          fputs_unfiltered ("Unable to Allocate Memory for Source or Disassembly Display.\n",
          fputs_unfiltered ("Unable to Allocate Memory for Source or Disassembly Display.\n",
                            gdb_stderr);
                            gdb_stderr);
          return TUI_FAILURE;
          return TUI_FAILURE;
        }
        }
      for (i = 0; i < max_lines; i++)
      for (i = 0; i < max_lines; i++)
        ((struct tui_win_element *)
        ((struct tui_win_element *)
         win_info->generic.content[i])->which_element.source.line =
         win_info->generic.content[i])->which_element.source.line =
          src_line_buf + (line_width * i);
          src_line_buf + (line_width * i);
    }
    }
 
 
  return TUI_SUCCESS;
  return TUI_SUCCESS;
}
}
 
 
 
 
/* Answer whether the a particular line number or address is displayed
/* Answer whether the a particular line number or address is displayed
   in the current source window.  */
   in the current source window.  */
int
int
tui_line_is_displayed (int line,
tui_line_is_displayed (int line,
                       struct tui_win_info *win_info,
                       struct tui_win_info *win_info,
                       int check_threshold)
                       int check_threshold)
{
{
  int is_displayed = FALSE;
  int is_displayed = FALSE;
  int i, threshold;
  int i, threshold;
 
 
  if (check_threshold)
  if (check_threshold)
    threshold = SCROLL_THRESHOLD;
    threshold = SCROLL_THRESHOLD;
  else
  else
    threshold = 0;
    threshold = 0;
  i = 0;
  i = 0;
  while (i < win_info->generic.content_size - threshold
  while (i < win_info->generic.content_size - threshold
         && !is_displayed)
         && !is_displayed)
    {
    {
      is_displayed = (((struct tui_win_element *)
      is_displayed = (((struct tui_win_element *)
                       win_info->generic.content[i])->which_element.source.line_or_addr.loa
                       win_info->generic.content[i])->which_element.source.line_or_addr.loa
                      == LOA_LINE)
                      == LOA_LINE)
        && (((struct tui_win_element *)
        && (((struct tui_win_element *)
             win_info->generic.content[i])->which_element.source.line_or_addr.u.line_no
             win_info->generic.content[i])->which_element.source.line_or_addr.u.line_no
            == (int) line);
            == (int) line);
      i++;
      i++;
    }
    }
 
 
  return is_displayed;
  return is_displayed;
}
}
 
 
 
 
/* Answer whether the a particular line number or address is displayed
/* Answer whether the a particular line number or address is displayed
   in the current source window.  */
   in the current source window.  */
int
int
tui_addr_is_displayed (CORE_ADDR addr,
tui_addr_is_displayed (CORE_ADDR addr,
                       struct tui_win_info *win_info,
                       struct tui_win_info *win_info,
                       int check_threshold)
                       int check_threshold)
{
{
  int is_displayed = FALSE;
  int is_displayed = FALSE;
  int i, threshold;
  int i, threshold;
 
 
  if (check_threshold)
  if (check_threshold)
    threshold = SCROLL_THRESHOLD;
    threshold = SCROLL_THRESHOLD;
  else
  else
    threshold = 0;
    threshold = 0;
  i = 0;
  i = 0;
  while (i < win_info->generic.content_size - threshold
  while (i < win_info->generic.content_size - threshold
         && !is_displayed)
         && !is_displayed)
    {
    {
      is_displayed = (((struct tui_win_element *)
      is_displayed = (((struct tui_win_element *)
                       win_info->generic.content[i])->which_element.source.line_or_addr.loa
                       win_info->generic.content[i])->which_element.source.line_or_addr.loa
                      == LOA_ADDRESS)
                      == LOA_ADDRESS)
        && (((struct tui_win_element *)
        && (((struct tui_win_element *)
             win_info->generic.content[i])->which_element.source.line_or_addr.u.addr
             win_info->generic.content[i])->which_element.source.line_or_addr.u.addr
            == addr);
            == addr);
      i++;
      i++;
    }
    }
 
 
  return is_displayed;
  return is_displayed;
}
}
 
 
 
 
/*****************************************
/*****************************************
** STATIC LOCAL FUNCTIONS               **
** STATIC LOCAL FUNCTIONS               **
******************************************/
******************************************/
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.