* tuiWin.c, tuiWin.h, tui.c, tui.h, tuiCommand.c: Add FSF copyright.
tuiCommand.h, tuiIO.c, tuiIO.h, tuiData.h, tuiData.c: Likewise.
tuiDataWin.c, tuiDataWin.h, tuiDisassem.c, tuiDisassem.h: Likewise.
tuiGeneralWin.c, tuiGeneralWin.h, tuiLayout.c, tuiLayout.h: Likewise.
tuiRegs.c, tuiRegs.h, tuiSource.c, tuiSource.h: Likewise.
tuiSouceWin.c, tuiSourceWin.h, tuiStack.c, tuiStack.h: Likewise.
2001-07-15 03:01:25 +08:00
|
|
|
/* TUI display source/assembly window.
|
|
|
|
Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
|
|
|
Contributed by Hewlett-Packard Company.
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "frame.h"
|
|
|
|
#include "breakpoint.h"
|
|
|
|
|
|
|
|
#include "tui.h"
|
|
|
|
#include "tuiData.h"
|
|
|
|
#include "tuiStack.h"
|
2001-07-19 04:59:00 +08:00
|
|
|
#include "tuiWin.h"
|
|
|
|
#include "tuiGeneralWin.h"
|
1999-04-16 09:35:26 +08:00
|
|
|
#include "tuiSourceWin.h"
|
|
|
|
#include "tuiSource.h"
|
|
|
|
#include "tuiDisassem.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** EXTERNAL FUNCTION DECLS **
|
|
|
|
******************************************/
|
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** EXTERNAL DATA DECLS **
|
|
|
|
******************************************/
|
|
|
|
extern int current_source_line;
|
|
|
|
extern struct symtab *current_source_symtab;
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** STATIC LOCAL FUNCTIONS FORWARD DECLS **
|
|
|
|
******************************************/
|
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** STATIC LOCAL DATA **
|
|
|
|
******************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** PUBLIC FUNCTIONS **
|
|
|
|
******************************************/
|
|
|
|
|
|
|
|
/*********************************
|
|
|
|
** SOURCE/DISASSEM FUNCTIONS **
|
|
|
|
*********************************/
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiSrcWinIsDisplayed().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
int
|
|
|
|
tuiSrcWinIsDisplayed (void)
|
|
|
|
{
|
|
|
|
return (m_winPtrNotNull (srcWin) && srcWin->generic.isVisible);
|
|
|
|
} /* tuiSrcWinIsDisplayed */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiAsmWinIsDisplayed().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
int
|
|
|
|
tuiAsmWinIsDisplayed (void)
|
|
|
|
{
|
|
|
|
return (m_winPtrNotNull (disassemWin) && disassemWin->generic.isVisible);
|
|
|
|
} /* tuiAsmWinIsDisplayed */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiDisplayMainFunction().
|
|
|
|
** Function to display the "main" routine"
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
|
|
|
tuiDisplayMainFunction (void)
|
|
|
|
{
|
|
|
|
if ((sourceWindows ())->count > 0)
|
|
|
|
{
|
|
|
|
CORE_ADDR addr;
|
|
|
|
|
|
|
|
addr = parse_and_eval_address ("main");
|
2001-07-19 04:59:00 +08:00
|
|
|
if (addr == (CORE_ADDR) 0)
|
1999-04-16 09:35:26 +08:00
|
|
|
addr = parse_and_eval_address ("MAIN");
|
2001-07-19 04:59:00 +08:00
|
|
|
if (addr != (CORE_ADDR) 0)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
struct symtab_and_line sal;
|
|
|
|
|
2001-07-19 04:59:00 +08:00
|
|
|
tuiUpdateSourceWindowsWithAddr (addr);
|
1999-04-16 09:35:26 +08:00
|
|
|
sal = find_pc_line (addr, 0);
|
|
|
|
tuiSwitchFilename (sal.symtab->filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiDisplayMainFunction */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiUpdateSourceWindow().
|
|
|
|
** Function to display source in the source window. This function
|
|
|
|
** initializes the horizontal scroll to 0.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiUpdateSourceWindow (TuiWinInfoPtr winInfo, struct symtab *s,
|
|
|
|
Opaque lineOrAddr, int noerror)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
winInfo->detail.sourceInfo.horizontalOffset = 0;
|
|
|
|
tuiUpdateSourceWindowAsIs (winInfo, s, lineOrAddr, noerror);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiUpdateSourceWindow */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiUpdateSourceWindowAsIs().
|
|
|
|
** Function to display source in the source/asm window. This
|
|
|
|
** function shows the source as specified by the horizontal offset.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiUpdateSourceWindowAsIs (TuiWinInfoPtr winInfo, struct symtab *s,
|
|
|
|
Opaque lineOrAddr, int noerror)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
TuiStatus ret;
|
|
|
|
|
|
|
|
if (winInfo->generic.type == SRC_WIN)
|
|
|
|
ret = tuiSetSourceContent (s, (int) lineOrAddr, noerror);
|
|
|
|
else
|
|
|
|
ret = tuiSetDisassemContent (s, (Opaque) lineOrAddr);
|
|
|
|
|
|
|
|
if (ret == TUI_FAILURE)
|
|
|
|
{
|
|
|
|
tuiClearSourceContent (winInfo, EMPTY_SOURCE_PROMPT);
|
|
|
|
tuiClearExecInfoContent (winInfo);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tuiEraseSourceContent (winInfo, NO_EMPTY_SOURCE_PROMPT);
|
|
|
|
tuiShowSourceContent (winInfo);
|
|
|
|
tuiUpdateExecInfo (winInfo);
|
|
|
|
if (winInfo->generic.type == SRC_WIN)
|
|
|
|
{
|
|
|
|
current_source_line = (int) lineOrAddr +
|
|
|
|
(winInfo->generic.contentSize - 2);
|
|
|
|
current_source_symtab = s;
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** If the focus was in the asm win, put it in the src
|
|
|
|
** win if we don't have a split layout
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
if (tuiWinWithFocus () == disassemWin &&
|
|
|
|
currentLayout () != SRC_DISASSEM_COMMAND)
|
|
|
|
tuiSetWinFocusTo (srcWin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiUpdateSourceWindowAsIs */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiUpdateSourceWindowsWithAddr().
|
|
|
|
** Function to ensure that the source and/or disassemly windows
|
|
|
|
** reflect the input address.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-19 04:59:00 +08:00
|
|
|
tuiUpdateSourceWindowsWithAddr (CORE_ADDR addr)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
2001-07-19 04:59:00 +08:00
|
|
|
if (addr != 0)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
struct symtab_and_line sal;
|
|
|
|
|
|
|
|
switch (currentLayout ())
|
|
|
|
{
|
|
|
|
case DISASSEM_COMMAND:
|
|
|
|
case DISASSEM_DATA_COMMAND:
|
|
|
|
tuiShowDisassem (addr);
|
|
|
|
break;
|
|
|
|
case SRC_DISASSEM_COMMAND:
|
|
|
|
tuiShowDisassemAndUpdateSource (addr);
|
|
|
|
break;
|
|
|
|
default:
|
2001-07-19 04:59:00 +08:00
|
|
|
sal = find_pc_line (addr, 0);
|
|
|
|
tuiShowSource (sal.symtab, sal.line, FALSE);
|
1999-04-16 09:35:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
{
|
|
|
|
TuiWinInfoPtr winInfo = (TuiWinInfoPtr) (sourceWindows ())->list[i];
|
|
|
|
|
|
|
|
tuiClearSourceContent (winInfo, EMPTY_SOURCE_PROMPT);
|
|
|
|
tuiClearExecInfoContent (winInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiUpdateSourceWindowsWithAddr */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tui_vUpdateSourceWindowsWithAddr()
|
|
|
|
** Update the source window with the address in a va_list
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tui_vUpdateSourceWindowsWithAddr (va_list args)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
Opaque addr = va_arg (args, Opaque);
|
|
|
|
|
|
|
|
tuiUpdateSourceWindowsWithAddr (addr);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tui_vUpdateSourceWindowsWithAddr */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiUpdateSourceWindowsWithLine().
|
|
|
|
** Function to ensure that the source and/or disassemly windows
|
|
|
|
** reflect the input address.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiUpdateSourceWindowsWithLine (struct symtab *s, int line)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
2001-07-18 06:22:40 +08:00
|
|
|
CORE_ADDR pc;
|
|
|
|
|
1999-04-16 09:35:26 +08:00
|
|
|
switch (currentLayout ())
|
|
|
|
{
|
|
|
|
case DISASSEM_COMMAND:
|
|
|
|
case DISASSEM_DATA_COMMAND:
|
2001-07-18 06:22:40 +08:00
|
|
|
find_line_pc (s, line, &pc);
|
2001-07-19 04:59:00 +08:00
|
|
|
tuiUpdateSourceWindowsWithAddr (pc);
|
1999-04-16 09:35:26 +08:00
|
|
|
break;
|
|
|
|
default:
|
2001-07-19 04:59:00 +08:00
|
|
|
tuiShowSource (s, line, FALSE);
|
1999-04-16 09:35:26 +08:00
|
|
|
if (currentLayout () == SRC_DISASSEM_COMMAND)
|
2001-07-18 06:22:40 +08:00
|
|
|
{
|
|
|
|
find_line_pc (s, line, &pc);
|
2001-07-19 04:59:00 +08:00
|
|
|
tuiShowDisassem (pc);
|
2001-07-18 06:22:40 +08:00
|
|
|
}
|
1999-04-16 09:35:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiUpdateSourceWindowsWithLine */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tui_vUpdateSourceWindowsWithLine()
|
|
|
|
** Update the source window with the line number in a va_list
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tui_vUpdateSourceWindowsWithLine (va_list args)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
struct symtab *s = va_arg (args, struct symtab *);
|
|
|
|
int line = va_arg (args, int);
|
|
|
|
|
|
|
|
tuiUpdateSourceWindowsWithLine (s, line);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tui_vUpdateSourceWindowsWithLine */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiClearSourceContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiClearSourceContent (TuiWinInfoPtr winInfo, int displayPrompt)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
if (m_winPtrNotNull (winInfo))
|
|
|
|
{
|
|
|
|
register int i;
|
|
|
|
|
|
|
|
winInfo->generic.contentInUse = FALSE;
|
|
|
|
tuiEraseSourceContent (winInfo, displayPrompt);
|
|
|
|
for (i = 0; i < winInfo->generic.contentSize; i++)
|
|
|
|
{
|
|
|
|
TuiWinElementPtr element =
|
|
|
|
(TuiWinElementPtr) winInfo->generic.content[i];
|
|
|
|
element->whichElement.source.hasBreak = FALSE;
|
|
|
|
element->whichElement.source.isExecPoint = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiClearSourceContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiClearAllSourceWinsContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiClearAllSourceWinsContent (int displayPrompt)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiClearSourceContent ((TuiWinInfoPtr) (sourceWindows ())->list[i],
|
|
|
|
displayPrompt);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiClearAllSourceWinsContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiEraseSourceContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiEraseSourceContent (TuiWinInfoPtr winInfo, int displayPrompt)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int xPos;
|
|
|
|
int halfWidth = (winInfo->generic.width - 2) / 2;
|
|
|
|
|
|
|
|
if (winInfo->generic.handle != (WINDOW *) NULL)
|
|
|
|
{
|
|
|
|
werase (winInfo->generic.handle);
|
|
|
|
checkAndDisplayHighlightIfNeeded (winInfo);
|
|
|
|
if (displayPrompt == EMPTY_SOURCE_PROMPT)
|
|
|
|
{
|
|
|
|
char *noSrcStr;
|
|
|
|
|
|
|
|
if (winInfo->generic.type == SRC_WIN)
|
|
|
|
noSrcStr = NO_SRC_STRING;
|
|
|
|
else
|
|
|
|
noSrcStr = NO_DISASSEM_STRING;
|
|
|
|
if (strlen (noSrcStr) >= halfWidth)
|
|
|
|
xPos = 1;
|
|
|
|
else
|
|
|
|
xPos = halfWidth - strlen (noSrcStr);
|
|
|
|
mvwaddstr (winInfo->generic.handle,
|
|
|
|
(winInfo->generic.height / 2),
|
|
|
|
xPos,
|
|
|
|
noSrcStr);
|
|
|
|
|
|
|
|
/* elz: added this function call to set the real contents of
|
1999-07-08 04:19:36 +08:00
|
|
|
the window to what is on the screen, so that later calls
|
|
|
|
to refresh, do display
|
|
|
|
the correct stuff, and not the old image */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
tuiSetSourceContentNil (winInfo, noSrcStr);
|
|
|
|
}
|
|
|
|
tuiRefreshWin (&winInfo->generic);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} /* tuiEraseSourceContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiEraseAllSourceContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiEraseAllSourceWinsContent (int displayPrompt)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiEraseSourceContent ((TuiWinInfoPtr) (sourceWindows ())->list[i],
|
|
|
|
displayPrompt);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiEraseAllSourceWinsContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiShowSourceContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiShowSourceContent (TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int curLine, i, curX;
|
|
|
|
|
|
|
|
tuiEraseSourceContent (winInfo, (winInfo->generic.contentSize <= 0));
|
|
|
|
if (winInfo->generic.contentSize > 0)
|
|
|
|
{
|
|
|
|
char *line;
|
|
|
|
|
|
|
|
for (curLine = 1; (curLine <= winInfo->generic.contentSize); curLine++)
|
|
|
|
mvwaddstr (
|
|
|
|
winInfo->generic.handle,
|
|
|
|
curLine,
|
|
|
|
1,
|
|
|
|
((TuiWinElementPtr)
|
|
|
|
winInfo->generic.content[curLine - 1])->whichElement.source.line);
|
|
|
|
}
|
|
|
|
checkAndDisplayHighlightIfNeeded (winInfo);
|
|
|
|
tuiRefreshWin (&winInfo->generic);
|
|
|
|
winInfo->generic.contentInUse = TRUE;
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiShowSourceContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiShowAllSourceWinsContent()
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
|
|
|
tuiShowAllSourceWinsContent (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiShowSourceContent ((TuiWinInfoPtr) (sourceWindows ())->list[i]);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiShowAllSourceWinsContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiHorizontalSourceScroll().
|
|
|
|
** Scroll the source forward or backward horizontally
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiHorizontalSourceScroll (TuiWinInfoPtr winInfo,
|
|
|
|
TuiScrollDirection direction,
|
|
|
|
int numToScroll)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
if (winInfo->generic.content != (OpaquePtr) NULL)
|
|
|
|
{
|
|
|
|
int offset;
|
|
|
|
struct symtab *s;
|
|
|
|
|
|
|
|
if (current_source_symtab == (struct symtab *) NULL)
|
|
|
|
s = find_pc_symtab (selected_frame->pc);
|
|
|
|
else
|
|
|
|
s = current_source_symtab;
|
|
|
|
|
|
|
|
if (direction == LEFT_SCROLL)
|
|
|
|
offset = winInfo->detail.sourceInfo.horizontalOffset + numToScroll;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((offset =
|
|
|
|
winInfo->detail.sourceInfo.horizontalOffset - numToScroll) < 0)
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
winInfo->detail.sourceInfo.horizontalOffset = offset;
|
|
|
|
tuiUpdateSourceWindowAsIs (
|
|
|
|
winInfo,
|
|
|
|
s,
|
|
|
|
((winInfo == srcWin) ?
|
|
|
|
(Opaque) ((TuiWinElementPtr)
|
|
|
|
winInfo->generic.content[0])->whichElement.source.lineOrAddr.lineNo :
|
|
|
|
(Opaque) ((TuiWinElementPtr)
|
|
|
|
winInfo->generic.content[0])->whichElement.source.lineOrAddr.addr),
|
|
|
|
(int) FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiHorizontalSourceScroll */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiSetHasExecPointAt().
|
|
|
|
** Set or clear the hasBreak flag in the line whose line is lineNo.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiSetIsExecPointAt (Opaque lineOrAddr, TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
TuiWinContent content = (TuiWinContent) winInfo->generic.content;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < winInfo->generic.contentSize)
|
|
|
|
{
|
|
|
|
if (content[i]->whichElement.source.lineOrAddr.addr == lineOrAddr)
|
|
|
|
content[i]->whichElement.source.isExecPoint = TRUE;
|
|
|
|
else
|
|
|
|
content[i]->whichElement.source.isExecPoint = FALSE;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiSetIsExecPointAt */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiSetHasBreakAt().
|
|
|
|
** Set or clear the hasBreak flag in the line whose line is lineNo.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiSetHasBreakAt (struct breakpoint *bp, TuiWinInfoPtr winInfo, int hasBreak)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
TuiWinContent content = (TuiWinContent) winInfo->generic.content;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < winInfo->generic.contentSize)
|
|
|
|
{
|
|
|
|
int gotIt;
|
|
|
|
TuiGenWinInfoPtr locator = locatorWinInfoPtr ();
|
|
|
|
|
|
|
|
if (winInfo == srcWin)
|
|
|
|
{
|
|
|
|
char *fileNameDisplayed = (char *) NULL;
|
|
|
|
|
|
|
|
if (((TuiWinElementPtr)
|
|
|
|
locator->content[0])->whichElement.locator.fileName !=
|
|
|
|
(char *) NULL)
|
|
|
|
fileNameDisplayed = ((TuiWinElementPtr)
|
|
|
|
locator->content[0])->whichElement.locator.fileName;
|
|
|
|
else if (current_source_symtab != (struct symtab *) NULL)
|
|
|
|
fileNameDisplayed = current_source_symtab->filename;
|
|
|
|
|
|
|
|
gotIt = (fileNameDisplayed != (char *) NULL &&
|
2001-07-18 06:22:40 +08:00
|
|
|
bp->source_file != NULL &&
|
1999-04-16 09:35:26 +08:00
|
|
|
(strcmp (bp->source_file, fileNameDisplayed) == 0) &&
|
|
|
|
content[i]->whichElement.source.lineOrAddr.lineNo ==
|
|
|
|
bp->line_number);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gotIt = (content[i]->whichElement.source.lineOrAddr.addr
|
2001-07-19 04:59:00 +08:00
|
|
|
== bp->address);
|
1999-04-16 09:35:26 +08:00
|
|
|
if (gotIt)
|
|
|
|
{
|
|
|
|
content[i]->whichElement.source.hasBreak = hasBreak;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiSetHasBreakAt */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiAllSetHasBreakAt().
|
|
|
|
** Set or clear the hasBreak flag in all displayed source windows.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiAllSetHasBreakAt (struct breakpoint *bp, int hasBreak)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiSetHasBreakAt (bp,
|
|
|
|
(TuiWinInfoPtr) (sourceWindows ())->list[i], hasBreak);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiAllSetHasBreakAt */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tui_vAllSetHasBreakAt()
|
|
|
|
** Set or clear the hasBreak flag in all displayed source windows,
|
|
|
|
** with params in a va_list
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tui_vAllSetHasBreakAt (va_list args)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
struct breakpoint *bp = va_arg (args, struct breakpoint *);
|
|
|
|
int hasBreak = va_arg (args, int);
|
|
|
|
|
|
|
|
tuiAllSetHasBreakAt (bp, hasBreak);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tui_vAllSetHasBreakAt */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************
|
|
|
|
** EXECUTION INFO FUNCTIONS **
|
|
|
|
*********************************/
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiSetExecInfoContent().
|
|
|
|
** Function to initialize the content of the execution info window,
|
|
|
|
** based upon the input window which is either the source or
|
|
|
|
** disassembly window.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
TuiStatus
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiSetExecInfoContent (TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
TuiStatus ret = TUI_SUCCESS;
|
|
|
|
|
|
|
|
if (winInfo->detail.sourceInfo.executionInfo != (TuiGenWinInfoPtr) NULL)
|
|
|
|
{
|
|
|
|
TuiGenWinInfoPtr execInfoPtr = winInfo->detail.sourceInfo.executionInfo;
|
|
|
|
|
|
|
|
if (execInfoPtr->content == (OpaquePtr) NULL)
|
|
|
|
execInfoPtr->content =
|
|
|
|
(OpaquePtr) allocContent (winInfo->generic.height,
|
|
|
|
execInfoPtr->type);
|
|
|
|
if (execInfoPtr->content != (OpaquePtr) NULL)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < winInfo->generic.contentSize; i++)
|
|
|
|
{
|
|
|
|
TuiWinElementPtr element;
|
|
|
|
TuiWinElementPtr srcElement;
|
|
|
|
|
|
|
|
element = (TuiWinElementPtr) execInfoPtr->content[i];
|
|
|
|
srcElement = (TuiWinElementPtr) winInfo->generic.content[i];
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** First check to see if we have a breakpoint that is
|
|
|
|
** temporary. If so, and this is our current execution point,
|
|
|
|
** then clear the break indicator.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
if (srcElement->whichElement.source.hasBreak &&
|
|
|
|
srcElement->whichElement.source.isExecPoint)
|
|
|
|
{
|
|
|
|
struct breakpoint *bp;
|
|
|
|
int found = FALSE;
|
|
|
|
extern struct breakpoint *breakpoint_chain;
|
|
|
|
|
|
|
|
for (bp = breakpoint_chain;
|
|
|
|
(bp != (struct breakpoint *) NULL && !found);
|
|
|
|
bp = bp->next)
|
|
|
|
{
|
|
|
|
found =
|
|
|
|
(winInfo == srcWin &&
|
|
|
|
bp->line_number ==
|
|
|
|
srcElement->whichElement.source.lineOrAddr.lineNo) ||
|
|
|
|
(winInfo == disassemWin &&
|
|
|
|
bp->address == (CORE_ADDR)
|
|
|
|
srcElement->whichElement.source.lineOrAddr.addr);
|
|
|
|
if (found)
|
|
|
|
srcElement->whichElement.source.hasBreak =
|
|
|
|
(bp->disposition != del || bp->hit_count <= 0);
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
srcElement->whichElement.source.hasBreak = FALSE;
|
|
|
|
}
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** Now update the exec info content based upon the state
|
|
|
|
** of each line as indicated by the source content.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
if (srcElement->whichElement.source.hasBreak &&
|
|
|
|
srcElement->whichElement.source.isExecPoint)
|
|
|
|
element->whichElement.simpleString = breakLocationStr ();
|
|
|
|
else if (srcElement->whichElement.source.hasBreak)
|
|
|
|
element->whichElement.simpleString = breakStr ();
|
|
|
|
else if (srcElement->whichElement.source.isExecPoint)
|
|
|
|
element->whichElement.simpleString = locationStr ();
|
|
|
|
else
|
|
|
|
element->whichElement.simpleString = blankStr ();
|
|
|
|
}
|
|
|
|
execInfoPtr->contentSize = winInfo->generic.contentSize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = TUI_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
} /* tuiSetExecInfoContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiShowExecInfoContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiShowExecInfoContent (TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
TuiGenWinInfoPtr execInfo = winInfo->detail.sourceInfo.executionInfo;
|
|
|
|
int curLine;
|
|
|
|
|
|
|
|
werase (execInfo->handle);
|
|
|
|
tuiRefreshWin (execInfo);
|
|
|
|
for (curLine = 1; (curLine <= execInfo->contentSize); curLine++)
|
|
|
|
mvwaddstr (execInfo->handle,
|
|
|
|
curLine,
|
|
|
|
0,
|
|
|
|
((TuiWinElementPtr)
|
|
|
|
execInfo->content[curLine - 1])->whichElement.simpleString);
|
|
|
|
tuiRefreshWin (execInfo);
|
|
|
|
execInfo->contentInUse = TRUE;
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiShowExecInfoContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiShowAllExecInfosContent()
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
|
|
|
tuiShowAllExecInfosContent (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiShowExecInfoContent ((TuiWinInfoPtr) (sourceWindows ())->list[i]);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiShowAllExecInfosContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiEraseExecInfoContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiEraseExecInfoContent (TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
TuiGenWinInfoPtr execInfo = winInfo->detail.sourceInfo.executionInfo;
|
|
|
|
|
|
|
|
werase (execInfo->handle);
|
|
|
|
tuiRefreshWin (execInfo);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiEraseExecInfoContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiEraseAllExecInfosContent()
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
|
|
|
tuiEraseAllExecInfosContent (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiEraseExecInfoContent ((TuiWinInfoPtr) (sourceWindows ())->list[i]);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiEraseAllExecInfosContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiClearExecInfoContent().
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiClearExecInfoContent (TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
winInfo->detail.sourceInfo.executionInfo->contentInUse = FALSE;
|
|
|
|
tuiEraseExecInfoContent (winInfo);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiClearExecInfoContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiClearAllExecInfosContent()
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
|
|
|
tuiClearAllExecInfosContent (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiClearExecInfoContent ((TuiWinInfoPtr) (sourceWindows ())->list[i]);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiClearAllExecInfosContent */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiUpdateExecInfo().
|
|
|
|
** Function to update the execution info window
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiUpdateExecInfo (TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
tuiSetExecInfoContent (winInfo);
|
|
|
|
tuiShowExecInfoContent (winInfo);
|
|
|
|
} /* tuiUpdateExecInfo
|
|
|
|
|
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
/*
|
|
|
|
** tuiUpdateAllExecInfos()
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
|
|
|
tuiUpdateAllExecInfos (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
tuiUpdateExecInfo ((TuiWinInfoPtr) (sourceWindows ())->list[i]);
|
|
|
|
|
|
|
|
return;
|
1999-07-08 04:19:36 +08:00
|
|
|
} /* tuiUpdateAllExecInfos */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* tuiUpdateOnEnd()
|
1999-07-08 04:19:36 +08:00
|
|
|
** elz: This function clears the execution info from the source windows
|
|
|
|
** and resets the locator to display no line info, procedure info, pc
|
|
|
|
** info. It is called by stack_publish_stopped_with_no_frame, which
|
|
|
|
** is called then the target terminates execution
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
void
|
|
|
|
tuiUpdateOnEnd (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
TuiGenWinInfoPtr locator;
|
|
|
|
char *filename;
|
|
|
|
TuiWinInfoPtr winInfo;
|
|
|
|
|
|
|
|
locator = locatorWinInfoPtr ();
|
|
|
|
|
|
|
|
/* for all the windows (src, asm) */
|
|
|
|
for (i = 0; i < (sourceWindows ())->count; i++)
|
|
|
|
{
|
|
|
|
winInfo = (TuiWinInfoPtr) (sourceWindows ())->list[i];
|
|
|
|
|
|
|
|
tuiSetIsExecPointAt ((Opaque) - 1, winInfo); /* the target is'n running */
|
|
|
|
/* -1 should not match any line number or pc */
|
1999-07-08 04:19:36 +08:00
|
|
|
tuiSetExecInfoContent (winInfo); /*set winInfo so that > is'n displayed */
|
|
|
|
tuiShowExecInfoContent (winInfo); /* display the new contents */
|
1999-04-16 09:35:26 +08:00
|
|
|
}
|
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
/*now update the locator */
|
1999-04-16 09:35:26 +08:00
|
|
|
tuiClearLocatorDisplay ();
|
|
|
|
tuiGetLocatorFilename (locator, &filename);
|
|
|
|
tuiSetLocatorInfo (
|
|
|
|
filename,
|
|
|
|
(char *) NULL,
|
|
|
|
0,
|
|
|
|
(Opaque) NULL,
|
|
|
|
&((TuiWinElementPtr) locator->content[0])->whichElement.locator);
|
|
|
|
tuiShowLocatorContent ();
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiUpdateOnEnd */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TuiStatus
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiAllocSourceBuffer (TuiWinInfoPtr winInfo)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
register char *srcLine, *srcLineBuf;
|
|
|
|
register int i, lineWidth, c, maxLines;
|
|
|
|
TuiStatus ret = TUI_FAILURE;
|
|
|
|
|
|
|
|
maxLines = winInfo->generic.height; /* less the highlight box */
|
|
|
|
lineWidth = winInfo->generic.width - 1;
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** Allocate the buffer for the source lines. Do this only once 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.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
if (winInfo->generic.content == (OpaquePtr) NULL)
|
|
|
|
{
|
|
|
|
srcLineBuf = (char *) xmalloc ((maxLines * lineWidth) * sizeof (char));
|
|
|
|
if (srcLineBuf == (char *) NULL)
|
|
|
|
fputs_unfiltered (
|
|
|
|
"Unable to Allocate Memory for Source or Disassembly Display.\n",
|
|
|
|
gdb_stderr);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* allocate the content list */
|
|
|
|
if ((winInfo->generic.content =
|
|
|
|
(OpaquePtr) allocContent (maxLines, SRC_WIN)) == (OpaquePtr) NULL)
|
|
|
|
{
|
|
|
|
tuiFree (srcLineBuf);
|
|
|
|
srcLineBuf = (char *) NULL;
|
|
|
|
fputs_unfiltered (
|
|
|
|
"Unable to Allocate Memory for Source or Disassembly Display.\n",
|
|
|
|
gdb_stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i < maxLines; i++)
|
|
|
|
((TuiWinElementPtr)
|
|
|
|
winInfo->generic.content[i])->whichElement.source.line =
|
|
|
|
srcLineBuf + (lineWidth * i);
|
|
|
|
ret = TUI_SUCCESS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = TUI_SUCCESS;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
} /* tuiAllocSourceBuffer */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-08 04:19:36 +08:00
|
|
|
** tuiLineIsDisplayed().
|
|
|
|
** Answer whether the a particular line number or address is displayed
|
|
|
|
** in the current source window.
|
|
|
|
*/
|
1999-04-16 09:35:26 +08:00
|
|
|
int
|
2001-07-15 03:31:09 +08:00
|
|
|
tuiLineIsDisplayed (Opaque lineNoOrAddr, TuiWinInfoPtr winInfo,
|
|
|
|
int checkThreshold)
|
1999-04-16 09:35:26 +08:00
|
|
|
{
|
|
|
|
int isDisplayed = FALSE;
|
|
|
|
int i, threshold;
|
|
|
|
|
|
|
|
if (checkThreshold)
|
|
|
|
threshold = SCROLL_THRESHOLD;
|
|
|
|
else
|
|
|
|
threshold = 0;
|
|
|
|
i = 0;
|
|
|
|
while (i < winInfo->generic.contentSize - threshold && !isDisplayed)
|
|
|
|
{
|
|
|
|
if (winInfo == srcWin)
|
|
|
|
isDisplayed = (((TuiWinElementPtr)
|
|
|
|
winInfo->generic.content[i])->whichElement.source.lineOrAddr.lineNo
|
|
|
|
== (int) lineNoOrAddr);
|
|
|
|
else
|
|
|
|
isDisplayed = (((TuiWinElementPtr)
|
|
|
|
winInfo->generic.content[i])->whichElement.source.lineOrAddr.addr
|
|
|
|
== lineNoOrAddr);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return isDisplayed;
|
|
|
|
} /* tuiLineIsDisplayed */
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** STATIC LOCAL FUNCTIONS **
|
|
|
|
******************************************/
|