USRE36422E - Debugging system wherein multiple code views are simultaneously managed - Google Patents

Debugging system wherein multiple code views are simultaneously managed Download PDF

Info

Publication number
USRE36422E
USRE36422E US08/663,346 US66334696A USRE36422E US RE36422 E USRE36422 E US RE36422E US 66334696 A US66334696 A US 66334696A US RE36422 E USRE36422 E US RE36422E
Authority
US
United States
Prior art keywords
view
type
file
listing
code
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Fee Related
Application number
US08/663,346
Inventor
Donald P. Pazel
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US08/663,346 priority Critical patent/USRE36422E/en
Application granted granted Critical
Publication of USRE36422E publication Critical patent/USRE36422E/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3664Environments for testing or debugging software
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/10Requirements analysis; Specification techniques
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99941Database schema or data structure
    • Y10S707/99944Object-oriented database structure
    • Y10S707/99945Object-oriented database structure processing
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99941Database schema or data structure
    • Y10S707/99948Application of database or data structure, e.g. distributed, multimedia, or image

Definitions

  • This invention relates to methods and systems in the field of software programing development, and more particularly, to a debugging system which provides the user with an ability to display and correct software programs.
  • a programmer develops and tests a software program for a computer by producing and entering source code into files through the use of an editor program.
  • the computer then creates an executable program by translating the source code listing into machine code by running a series of programs which typically include various preprocessors, a compiler, a linker, etc.
  • intermediate code listings may be created, e.g. a disassembly code describing subtasks within tasks defined by lines of source code; a mixed source/disassembly listing wherein both source lines and disassembly lines are sequentially listed, and other types of intermediate code structures.
  • Editors are programs which are used to enter or change source code and must, therefore, have the capability to display the source code for the user.
  • line of code will be used hereinafter and refers to (approximately) a complete instruction in the particular code language.
  • a line of code will generally display as one line on a user display device.
  • a debugging system is a combination of computer hardware and debugger software which executes a user's program in a controlled manner. Debuggers aid a user in identifying and correcting mistakes in an authored program and allow the program to be executed in small segments until specified machine addresses (breakpoints) are encountered or until certain events occur (exception events).
  • breakpoints machine addresses
  • exception events events
  • the executing code listing is displayed, with the active line of code highlighted or otherwise indicated.
  • the "active" line of code in this instance, refers to a line of code which executes its defined function when the user steps to a next line of code.
  • Vanek et al. describes a debugging system wherein the user is enabled to view displayed code listings. All views disclosed by Vanek et al. have identical display characteristics. Each view can contain a subset of lines of the original source program and may show only declarations, only statements at or above a given level of syntactic nesting, all statements that assign a value to a given variable etc. New views may be inserted by logical operators.
  • the EDSA system is tied to the program being analyzed since it must have access to the complete details of the program which it, in turn, represents as a syntax tree and which it stores in a file.
  • MultiScope debugging system includes both run-time and post-mortem debuggers which employ either a presentation manager or text mode interface.
  • MultiScope has two windows to show program codes.
  • One window is called the Source window, and the other is called the Assembler window.
  • the Source window shows the current code line in a high level language,and the assembler window shows it in one of several possible variants of a disassembly view. As one steps through execution, the current line shows highlighted in both views and moves with execution.
  • the contents of the Source window can be changed to show other file/views in the appropriate higher level language. If the higher level view does not exist, an error message is placed in the Source window.
  • the Assembler window can, as well, be reset to show a disassembly view of another source file.
  • Codeview a debugger marketed by the Microsoft Corporation, Redmond, Wash., runs in a character mode within an OS/2 session window.
  • Codeview has two windows to show program code. From either window, one may see different files in different views (source, assembler, etc.). However, only one of the windows will show the current line, i.e. the "active" window. So, if some file/view has the current line of execution, and it is showing in the active window, the appropriate line will be highlighted. But if the same view is in the other window, the current line is not highlighted. In both windows, the user may change the window contents to show different file/views.
  • Both MultiScope and Codeview handle the window, per se, as a separate object, independent of the code view displayed therein. Thus, if the user "closes" a window, there is no retention of the window and its contents as an object. When a user wishes to resurrect the window, both the file to be displayed and the code lines to be shown must be remembered and specified. Otherwise the window displays the initial lines of the code listing, rather than the code listing that was last shown. Furthermore, both MultiScope and Codeview are limited to two windows, and have no capability for further views.
  • a computer-implemented method for displaying on a screen, a plurality of views of a software code listing.
  • the method includes the steps of displaying a first view-type of at least a portion of the software code listing and selecting and displaying additional view-types of the software code listing.
  • the system includes a prioritized listing of view-types, each view-type providing a different presentation of a code listing.
  • a program listing in one file presents a call to another file
  • the system automatically presents a window including the called code listing, with the view-type automatically selected in accordance with the preestablished priority listing.
  • Windows/code views are handled as objects, and are thus immediately recallable using a graphical interface.
  • FIG. 1 is a high level block diagram of a data processing system wherein the debugging invention herein described may be employed.
  • FIG. 2 illustrates a Debug Frame presented to the viewer that enables selection of a particular file and its view-type.
  • FIG. 3 shows a view of a source code listing.
  • FIG. 4 shows a pull-down menu illustrating various Run selections.
  • FIG. 5 shows a pull-down menu illustrating Options available which enable a display priority order to be identified and changed.
  • FIG. 6 illustrates a view of a source code listing from a file other than that shown in FIG. 3.
  • FIG. 7 illustrates the display of a plurality of source listings and further indicates the various additional types of code view-types which can be simultaneously displayed.
  • FIG. 8 is a high level flow diagram of the debug invention wherein multiple views may be simultaneously presented for a code listing appearing in a single file.
  • FIG. 9 is a high level flow diagram of the debug invention wherein multiple views may be simultaneously presented for code listings appearing in plural files.
  • a “view” of a program listing may be either a sequence of lines of text depicting the program listing, a graphical representation of a portion of the program listing, or a combination of the two.
  • a “view-type” of a program is a view wherein the program listing is shown as either a source code listing; a disassembled source code listing; a mixture of source and disassembled source code; a control flow graph; or a compressed program view.
  • a source view-type is the highest level language that is translated to machine language before the program can be run. It will generally be presented as a series of lines of source code statements, each line being sequentially numbered.
  • a disassembled source code view-type is one wherein various subtasks within a task (as defined by a source line) are shown in an intermediate language in lieu of the source line.
  • a mixed source/disassembly view-type is one wherein both source lines and disassembled source lines are shown together.
  • a control flow graph is a view-type wherein the software program is depicted as a graphical flow-diagram.
  • a compressed program view-type is one wherein the program listing is shown as though viewed from a long distance away, wherein individual lines of text cannot be discerned. The view, however, shows the overall arrangement of the lines of text, indentations, spaces etc. and may, in addition, indicate a box showing where, in the overall code sequence, a particular active line of code exists.
  • FIG. 1 a high level block diagram is shown of a data processing system that is adapted to operate the multi-view debugging system of this invention.
  • An arithmetic logic unit 10 communicates via a bus 12 with a read only memory (ROM) 14, random access memory (RAM) 16 and a display 18.
  • ROM read only memory
  • RAM random access memory
  • RAM 16 contains both the program being debugged, its various view-types, and a software listing of the debug program.
  • the debug program is initially operated by a user to compile in RAM 16 a table that lists the source code files/modules in the program to be debugged. If no source listing is available, the debug program can construct a disassembly set of source statements from an object code listing. Thus, while a disassembly listing will always be available, source code listings may not be. For instance, many programs contain files produced in response to a source code listing but, in themselves, have no controlling source code statements. They are internally produced within the machine for use as an invisible "utility" or for another similar function.
  • the user views the program on display 18 and steps from line of code to line of code to determine where a crash (or crashes) occur. It is often the case that the user wishes to view a code listing other than a source listing and further, wishes to have multiple, simultaneous views of the executing software, at various levels. Such views potentially enable faster troubleshooting and rapid debugging of the software.
  • FIG. 2 a view is shown of a Debug Frame wherein menus appear that enable function and presentation view-type to be user-selected.
  • the Debug Frame is a window in the debugger software which acts as the master control for the debugger.
  • Window 30 in the Debug Frame provides a listing of files in the program to be debugged.
  • a highlight line 32 may be stepped down the listing of files to enable selection of one for debugging.
  • Window 33 enables the user to select one of five listed view-types that are available in the system (as defined above). If the user chooses a source listing and such is not available, the system automatically provides the next lower priority listing, i.e. disassembly.
  • the view-types are listed in priority order, however, it is to be understood that any priority can be arbitrarily assigned by the system user. The user's choice of view-type for the highlighted file in window 30 is only applicable to that file and to no others.
  • a further window 34 is contained within the Debug Frame and contains three additional user choice fields, i.e., Keep, Discard, and Icon. These fields come into use when one program listing in a file calls a line of code in a program listing in another file.
  • a selection of the "Keep” field results in a displayed view-type being retained on the screen, while a new code listing view is simultaneously displayed.
  • a "Discard” selection causes the current view-type on the screen to be removed and discarded.
  • a selection of the "Icon” indication causes the view-type on the screen to be removed from the screen and replaced by an icon. At that time, a further view-type can be displayed and the "iconized" view-type is again displayable on the screen simply by a selection of the icon (by a mouse or other indicator).
  • each file has an associated window (or windows), which, in combination with its current view, is maintained as an object.
  • window or windows
  • the scroll position, window size, window position, and other display attributes are stored.
  • FIG. 3 a representative source code listing in file 2 is illustrated.
  • a selection bar 40 runs across the top of the screen and contains a plurality of selection items, each one of which results in the display of a pull-down window (see FIGS. 4 and 5).
  • Subroutine Q is not present in file 2. It is to be noted that line 30 (wherein the call to subroutine Q is indicated) is highlighted as shown at 42, but the functions called for by the statement there indicated have not yet been executed. That execution only occurs when the user steps the source listing to line 31.
  • a selection of the "run” indication in selection bar 40 of FIG. 3 causes a pull-down menu to appear that designates a number of options available to the user to increment through the code listing.
  • the "step” indication 43 has been selected (by the highlight).
  • This indication enables the user to increment one line of code under control of simultaneous actuation of two keyboard keys (control and S).
  • a pull-down is shown which results when the options indication is chosen on selection bar 40.
  • the pull-down shows that a "display order" select function 45 is available. The selection of this line enables the priority order shown at window 33 in FIG. 2 to be revised.
  • the invention enables the source listing for file n to be viewed; and/or for a disassembly listing of file n to be viewed, and/or for a mixed source/assembly listing to be viewed, and/or for compressed-view or flow graph versions of file n to also be viewed.
  • source file 2 is the only view-type on the screen
  • the user can call one of the other view-types of file 2 to be simultaneously displayed, thereby providing two different code listings for the program contained within file 2.
  • as many windows as desired can be displayed to provide further debugging capabilities.
  • FIG. 8 a flow diagram is shown which presents the method for managing simultaneous presentation of a pair of view-types from a single file on a screen.
  • the screen displays the current file view-type (Box 50) for user interaction.
  • the procedure selects the highest priority view-type available for the file (Box 54).
  • the procedure determines whether the user-selected new view-type is already on the screen (Box 58). If so, the subroutine exits (and the user must specify a new view type). Otherwise, stored attributes (or default attributes) are accessed (Box 58) and the selected view-type is displayed in window format (Box 59).
  • FIG. 9 a procedure is shown where a debug action is in process and plural files are involved.
  • a current file view-type (or types) is (are) displayed on the screen (Box 60).
  • the user then steps a code line causing a new code line to be highlighted.
  • the procedure determines whether the new code line calls for a new file (decision box 62) and if yes, it proceeds to select one of the three functions indicated in box 64. If Keep is selected, nothing occurs and the procedure continues.
  • Icon has been selected, the current file view-type window and its contents are saved, including the current scroll position, window size and its position on the screen. The window is removed and a small Icon is placed on the screen instead. If Discard is selected, the window is saved as with the Icon selection, and the window is removed from the screen.
  • the procedure determines whether such a view is already present on the screen (decision box 66). If such a view is found on the screen, the procedure moves to box 68 where the new file view is updated by scrolling (if necessary) to bring the currently active code line into the window and the active line is highlighted.
  • the program proceeds to select the highest priority view-type available for the new file. Generally, this will either be a source code listing or an assembly code listing.
  • the stored attributes of the highest priority view-type are now retrieved and the code lines are scrolled, if necessary, to the currently active line, which line is then highlighted.
  • the selected view-type window is then displayed (box 74). In this manner, the view-type window displays are managed, with a minimum of user-interaction, with automatic selection of prioritized view-types and with window recall ability that automatically re-displays the window as it last appeared.

Abstract

A computer-implemented method is described for displaying on a screen, a plurality of views of a software code listing. The method includes the steps of displaying a first view-type of at least a portion of the software code listing and selecting and displaying additional view-types of the software code listing. The system includes a prioritized listing of view-types, each view-type providing a different presentation of a code listing. When a program listing in one file presents a call to another file, the system automatically presents a window including the called code listing, with the view-type automatically selected in accordance with the preestablished priority listing. Windows/code views are handled as objects, and are thus immediately recallable using a graphical interface.

Description

FIELD OF THE INVENTION
This invention relates to methods and systems in the field of software programing development, and more particularly, to a debugging system which provides the user with an ability to display and correct software programs.
BACKGROUND OF THE INVENTION
Typically, a programmer develops and tests a software program for a computer by producing and entering source code into files through the use of an editor program. The computer then creates an executable program by translating the source code listing into machine code by running a series of programs which typically include various preprocessors, a compiler, a linker, etc. During the conversion of the source code listing to machine code, intermediate code listings may be created, e.g. a disassembly code describing subtasks within tasks defined by lines of source code; a mixed source/disassembly listing wherein both source lines and disassembly lines are sequentially listed, and other types of intermediate code structures.
Editors are programs which are used to enter or change source code and must, therefore, have the capability to display the source code for the user.
The term "line of code" will be used hereinafter and refers to (approximately) a complete instruction in the particular code language. A line of code will generally display as one line on a user display device.
A debugging system is a combination of computer hardware and debugger software which executes a user's program in a controlled manner. Debuggers aid a user in identifying and correcting mistakes in an authored program and allow the program to be executed in small segments until specified machine addresses (breakpoints) are encountered or until certain events occur (exception events). During operation of a debugger, the executing code listing is displayed, with the active line of code highlighted or otherwise indicated. The "active" line of code, in this instance, refers to a line of code which executes its defined function when the user steps to a next line of code.
Debugging software systems exist in the prior art. One such debugging system is described by Vanek et al. in "Static Analysis of Program Source Code Using EDSA", Proceedings of Conference on Software Maintenance, pages 192-199, October, 1989. Vanek et al. describe a debugging system wherein the user is enabled to view displayed code listings. All views disclosed by Vanek et al. have identical display characteristics. Each view can contain a subset of lines of the original source program and may show only declarations, only statements at or above a given level of syntactic nesting, all statements that assign a value to a given variable etc. New views may be inserted by logical operators. The EDSA system, further, is tied to the program being analyzed since it must have access to the complete details of the program which it, in turn, represents as a syntax tree and which it stores in a file.
Logitech Inc., 1235 Pear Avenue, No. 111 Mountain View, Calif. 94043 markets a window-based debugging program entitled "MultiScope" for debugging the programs written to operate in the OS/2 system program environment. The MultiScope debugging system includes both run-time and post-mortem debuggers which employ either a presentation manager or text mode interface.
MultiScope has two windows to show program codes. One window is called the Source window, and the other is called the Assembler window. The Source window shows the current code line in a high level language,and the assembler window shows it in one of several possible variants of a disassembly view. As one steps through execution, the current line shows highlighted in both views and moves with execution. The contents of the Source window can be changed to show other file/views in the appropriate higher level language. If the higher level view does not exist, an error message is placed in the Source window. The Assembler window can, as well, be reset to show a disassembly view of another source file.
Codeview, a debugger marketed by the Microsoft Corporation, Redmond, Wash., runs in a character mode within an OS/2 session window. Codeview has two windows to show program code. From either window, one may see different files in different views (source, assembler, etc.). However, only one of the windows will show the current line, i.e. the "active" window. So, if some file/view has the current line of execution, and it is showing in the active window, the appropriate line will be highlighted. But if the same view is in the other window, the current line is not highlighted. In both windows, the user may change the window contents to show different file/views.
Both MultiScope and Codeview handle the window, per se, as a separate object, independent of the code view displayed therein. Thus, if the user "closes" a window, there is no retention of the window and its contents as an object. When a user wishes to resurrect the window, both the file to be displayed and the code lines to be shown must be remembered and specified. Otherwise the window displays the initial lines of the code listing, rather than the code listing that was last shown. Furthermore, both MultiScope and Codeview are limited to two windows, and have no capability for further views.
Accordingly, it is an object of this invention to provide an improved debugging system which enables plural code listings to be simultaneously viewed, closed and recalled.
It is another object of this invention to provide an improved debugging system which enables simultaneous viewing and view management of different language manifestations of a code listing.
SUMMARY OF THE INVENTION
A computer-implemented method is described for displaying on a screen, a plurality of views of a software code listing. The method includes the steps of displaying a first view-type of at least a portion of the software code listing and selecting and displaying additional view-types of the software code listing. The system includes a prioritized listing of view-types, each view-type providing a different presentation of a code listing. When a program listing in one file presents a call to another file, the system automatically presents a window including the called code listing, with the view-type automatically selected in accordance with the preestablished priority listing. Windows/code views are handled as objects, and are thus immediately recallable using a graphical interface.
DESCRIPTION OF THE DRAWINGS
FIG. 1 is a high level block diagram of a data processing system wherein the debugging invention herein described may be employed.
FIG. 2 illustrates a Debug Frame presented to the viewer that enables selection of a particular file and its view-type.
FIG. 3 shows a view of a source code listing.
FIG. 4 shows a pull-down menu illustrating various Run selections.
FIG. 5 shows a pull-down menu illustrating Options available which enable a display priority order to be identified and changed.
FIG. 6 illustrates a view of a source code listing from a file other than that shown in FIG. 3.
FIG. 7 illustrates the display of a plurality of source listings and further indicates the various additional types of code view-types which can be simultaneously displayed.
FIG. 8 is a high level flow diagram of the debug invention wherein multiple views may be simultaneously presented for a code listing appearing in a single file.
FIG. 9 is a high level flow diagram of the debug invention wherein multiple views may be simultaneously presented for code listings appearing in plural files.
DETAILED DESCRIPTION OF THE INVENTION
In this description the terms "view" and "view-type" will be employed. A "view" of a program listing may be either a sequence of lines of text depicting the program listing, a graphical representation of a portion of the program listing, or a combination of the two. A "view-type" of a program is a view wherein the program listing is shown as either a source code listing; a disassembled source code listing; a mixture of source and disassembled source code; a control flow graph; or a compressed program view.
A source view-type is the highest level language that is translated to machine language before the program can be run. It will generally be presented as a series of lines of source code statements, each line being sequentially numbered. A disassembled source code view-type is one wherein various subtasks within a task (as defined by a source line) are shown in an intermediate language in lieu of the source line. A mixed source/disassembly view-type is one wherein both source lines and disassembled source lines are shown together. A control flow graph is a view-type wherein the software program is depicted as a graphical flow-diagram. A compressed program view-type is one wherein the program listing is shown as though viewed from a long distance away, wherein individual lines of text cannot be discerned. The view, however, shows the overall arrangement of the lines of text, indentations, spaces etc. and may, in addition, indicate a box showing where, in the overall code sequence, a particular active line of code exists.
Referring now to FIG. 1, a high level block diagram is shown of a data processing system that is adapted to operate the multi-view debugging system of this invention. An arithmetic logic unit 10 communicates via a bus 12 with a read only memory (ROM) 14, random access memory (RAM) 16 and a display 18. RAM 16 contains both the program being debugged, its various view-types, and a software listing of the debug program.
The debug program is initially operated by a user to compile in RAM 16 a table that lists the source code files/modules in the program to be debugged. If no source listing is available, the debug program can construct a disassembly set of source statements from an object code listing. Thus, while a disassembly listing will always be available, source code listings may not be. For instance, many programs contain files produced in response to a source code listing but, in themselves, have no controlling source code statements. They are internally produced within the machine for use as an invisible "utility" or for another similar function.
In the process of debugging, the user views the program on display 18 and steps from line of code to line of code to determine where a crash (or crashes) occur. It is often the case that the user wishes to view a code listing other than a source listing and further, wishes to have multiple, simultaneous views of the executing software, at various levels. Such views potentially enable faster troubleshooting and rapid debugging of the software.
In FIG. 2, a view is shown of a Debug Frame wherein menus appear that enable function and presentation view-type to be user-selected. The Debug Frame is a window in the debugger software which acts as the master control for the debugger.
Window 30 in the Debug Frame provides a listing of files in the program to be debugged. A highlight line 32 may be stepped down the listing of files to enable selection of one for debugging. Window 33 enables the user to select one of five listed view-types that are available in the system (as defined above). If the user chooses a source listing and such is not available, the system automatically provides the next lower priority listing, i.e. disassembly. In window 33, the view-types are listed in priority order, however, it is to be understood that any priority can be arbitrarily assigned by the system user. The user's choice of view-type for the highlighted file in window 30 is only applicable to that file and to no others. Thus, as will be seen hereafter, if a source code listing for a portion of file 2 presents a call for a code listing in another file, the system automatically chooses the highest priority view-type available for the called listing, irrespective of the view-type chosen for file 2.
A further window 34 is contained within the Debug Frame and contains three additional user choice fields, i.e., Keep, Discard, and Icon. These fields come into use when one program listing in a file calls a line of code in a program listing in another file. A selection of the "Keep" field results in a displayed view-type being retained on the screen, while a new code listing view is simultaneously displayed. A "Discard" selection causes the current view-type on the screen to be removed and discarded. A selection of the "Icon" indication causes the view-type on the screen to be removed from the screen and replaced by an icon. At that time, a further view-type can be displayed and the "iconized" view-type is again displayable on the screen simply by a selection of the icon (by a mouse or other indicator).
As above indicated, views may and will be replaced, discarded, etc. by the user from the screen. It is often the case, however, that the user wishes to retrace steps and to resurrect discarded views. In contrast to the prior art, this invention enables the user to accomplish this without requiring detailed record-keeping on the part of the user. In this system, each file has an associated window (or windows), which, in combination with its current view, is maintained as an object. Thus, when a window is removed from the screen, its scroll position, window size, window position, and other display attributes are stored. By simply recalling the window associated with a file, the "saved" window and its contents are displayed, without further user intervention. No user-initiated editing is required to reestablish a previous window's contents.
Turning now to FIG. 3, a representative source code listing in file 2 is illustrated. A selection bar 40 runs across the top of the screen and contains a plurality of selection items, each one of which results in the display of a pull-down window (see FIGS. 4 and 5). A plurality of source code lines are shown on the screen, with lines 29 and 30 illustrating a simple function (A=B+C), followed by a conditional call to a subroutine "Q" if A=B. Subroutine Q is not present in file 2. It is to be noted that line 30 (wherein the call to subroutine Q is indicated) is highlighted as shown at 42, but the functions called for by the statement there indicated have not yet been executed. That execution only occurs when the user steps the source listing to line 31.
As shown in FIG. 4, a selection of the "run" indication in selection bar 40 of FIG. 3 causes a pull-down menu to appear that designates a number of options available to the user to increment through the code listing. In this instance, it is assumed that the "step" indication 43 has been selected (by the highlight). This indication enables the user to increment one line of code under control of simultaneous actuation of two keyboard keys (control and S). At FIG. 5, a pull-down is shown which results when the options indication is chosen on selection bar 40. The pull-down shows that a "display order" select function 45 is available. The selection of this line enables the priority order shown at window 33 in FIG. 2 to be revised.
Referring now back to FIG. 3, it is assumed that the user steps highlight bar 42 from line 30 to line 31. This immediately results in a new file view, i.e., "file n" (FIG. 6) being displayed on the screen. Subroutine Q appears at line 9 and its initial code line is highlighted, followed by its subsidiary source code statements. At this stage, line 9 in FIG. 6 is the "active" code line and will be executed if the highlight bar is stepped to line 10. If there is no source listing for "file n", then a disassembly view-type is presented instead.
The above description, at a high level, indicates the views which are presented to a user as lines of code are stepped in a code listing of a program. It is often important for the user to have available, alternative presentations of the code listing for both comparison and fault analysis purposes. It is advantageous if those presentations can be simultaneously viewed on a screen so as to enable side-by-side comparison of code sequences. A screen presentation is shown in FIG. 7 wherein source code listings shown in FIGS. 3 and 6 are simultaneously presented for viewing by the user. As will be hereinafter understood, the invention enables the source listing for file n to be viewed; and/or for a disassembly listing of file n to be viewed, and/or for a mixed source/assembly listing to be viewed, and/or for compressed-view or flow graph versions of file n to also be viewed. In addition, in lieu of displaying file n, if source file 2 is the only view-type on the screen, the user can call one of the other view-types of file 2 to be simultaneously displayed, thereby providing two different code listings for the program contained within file 2. Furthermore, as many windows as desired can be displayed to provide further debugging capabilities.
Referring to FIG. 8, a flow diagram is shown which presents the method for managing simultaneous presentation of a pair of view-types from a single file on a screen. Initially, the screen displays the current file view-type (Box 50) for user interaction. Subsequently, if the user requests another view (Box 52) but does not specify the view-type, the procedure selects the highest priority view-type available for the file (Box 54).
At this point, the procedure determines whether the user-selected new view-type is already on the screen (Box 58). If so, the subroutine exits (and the user must specify a new view type). Otherwise, stored attributes (or default attributes) are accessed (Box 58) and the selected view-type is displayed in window format (Box 59).
Turning to FIG. 9, a procedure is shown where a debug action is in process and plural files are involved. Initially, a current file view-type (or types) is (are) displayed on the screen (Box 60). The user then steps a code line causing a new code line to be highlighted. The procedure determines whether the new code line calls for a new file (decision box 62) and if yes, it proceeds to select one of the three functions indicated in box 64. If Keep is selected, nothing occurs and the procedure continues. If Icon has been selected, the current file view-type window and its contents are saved, including the current scroll position, window size and its position on the screen. The window is removed and a small Icon is placed on the screen instead. If Discard is selected, the window is saved as with the Icon selection, and the window is removed from the screen.
Before placing a new file view on the screen, the procedure determines whether such a view is already present on the screen (decision box 66). If such a view is found on the screen, the procedure moves to box 68 where the new file view is updated by scrolling (if necessary) to bring the currently active code line into the window and the active line is highlighted.
If the new file view is found not to be present on the screen, then the program proceeds to select the highest priority view-type available for the new file. Generally, this will either be a source code listing or an assembly code listing. The stored attributes of the highest priority view-type are now retrieved and the code lines are scrolled, if necessary, to the currently active line, which line is then highlighted. The selected view-type window is then displayed (box 74). In this manner, the view-type window displays are managed, with a minimum of user-interaction, with automatic selection of prioritized view-types and with window recall ability that automatically re-displays the window as it last appeared.
It should be understood that the foregoing description is only illustrative of the invention. Various alternatives and modifications can be devised by those skilled in the art without departing from the invention. Accordingly, the present invention is intended to embrace all such alternatives, modifications and variances which fall within the scope of the appended claims.

Claims (17)

I claim:
1. A computer system for performing a method for displaying, on a screen, a plurality of views of software code listings, said computer system including a prioritized listing of view-types, each said view-type providing a different presentation of a code listing, said method comprising the steps of:
displaying a first view-type of at least a portion of a software code listing in a first file;
stepping through code lines in said portion of said software code listing;
when a call is found in said first file for a code listing in another file, displaying a highest priority view-type available in said computer system of said code listing in said another file where said highest priority view-type of said another file is independent of highest priority view-type of said first file; and
upon a determination that a view-type is to be removed from said screen, and saving a window in which said view-type is displayed and its contents as an object, whereby said removed window and its contents are recallable as said object and when so recalled are displayed on said screen.
2. The method as defined in claim 1 wherein said view-type of said code listing from said another file is simultaneously displayed with said first view-type of said software code listing of said fist file.
3. The method as recited in claim 2 comprising the step of:
determining if said highest priority view-type from said another file is already displayed on said screen, and if so, updating said displayed highest priority view-type to show a currently active code line.
4. The method of claim 3 wherein said prioritized listing of said view-types includes a source code listing as the highest priority.
5. The method of claim 4 wherein a view-type having a lower prioritization is a disassembly code listing.
6. The method of claim 5 wherein another said prioritized view-type includes both source code and disassembly code combined.
7. The method of claim 6 wherein another said prioritized view-type includes a compressed image of said source code listing.
8. The method of claim 7 wherein another said view-type includes a flow graph of said source code, which graphically illustrates said source code.
9. The method of claim 1, wherein the steps of the method are performed under the control of a debugging program.
10. A computer system for performing a method for displaying, on a screen, a plurality of views of a software code listing, said computer system including a prioritized listing of view-types, each said view-type providing a different presentation of a code listing, said method comprising the steps of:
displaying a first view-type of at least a portion of a software code listing in a first file;
stepping through code lines in said portion of said software code listing;
when a call is found in said first file for a code listing in another file, displaying a highest priority view-type available in said computer system of said code listing in said another file where said highest priority view-type of said another file is independent of highest priority view-type of said first file; and
upon a determination that said first view-type is to be i) kept on the screen, ii) removed from the screen and replaced by an icon, or iii) discarded from the screen, and if said first view-type is to be replaced by an icon or discarded,
saving as an object, a window in which said first view-type is displayed and its contents by recording said software code listing's scroll position, size of the window and position of the window on the screen, whereby, in case it is discarded, said window and its contents may be recalled by reference to the file and an indication of view-type or in case said window is replaced by an icon, said window may be recalled by selecting said icon.
11. The method as recited in claim 10 comprising the step of:
determining if said highest priority view-type from said another file is already displayed on said screen, and if so, updating said displayed highest priority view-type to show a currently active code line. .Iadd.
12. A computer program product for use with a computer system, comprising:
a computer usable medium having computer readable program code means embodied in said medium for displaying, on a screen, a plurality of views of software code listings, said computer program product including a prioritized listing of view-types, each said view-type providing a different presentation of a code listing, said computer usable medium comprising:
first means for displaying a first view-type of at least a portion of a software code listing in a first file;
second means for stepping through code lines in said portion of said software code listing;
third means for displaying a highest priority view-type available of a code listing in another file when a call is found in said first file for said code listing in another file, where said highest priority view-type of said another file is independent of highest priority view-type of said first file; and
fourth means for determining that a view-type is to be removed from said screen, and saving a window in which said view-type is displayed and its contents as an object, whereby said removed window and its contents are recallable as said object and when so recalled are displayed on said screen..Iaddend..Iadd.13. A computer program product according to claim 12, wherein said view-type of said code listing from said another file of said third means is simultaneously displayed with said first view-type of said software code listing of said first file..Iaddend..Iadd.14. A computer program product according to claim 13, further comprising fifth means for determining if said highest priority view-type from said another file is already displayed on said screen, and if so, updating said displayed highest priority view-type to show a currently active code line..Iaddend..Iadd.15. A computer program product according to claim 14, wherein said prioritized listing of said view-types includes a source code listing as the highest priority..Iaddend..Iadd.16. A computer program product according to claim 15, wherein a view-type having a lower prioritization is a disassembly code listing..Iaddend..Iadd.17. A computer program product according to claim 16, wherein another said prioritized view-type includes both source code and disassembly code combined..Iaddend..Iadd.18. A computer program product according to claim 17, wherein another said prioritized view-type includes a compressed image
of said source code listing..Iaddend..Iadd.19. A computer program product according to claim 18, wherein said view-type includes a flow graph of said source code, which graphically illustrates said source code..Iaddend..Iadd.20. A computer program product according to claim 12, wherein said computer program product operates under the control of a debugging program..Iaddend..Iadd.21. A computer program product for use with a computer system, comprising:
a computer usable medium having computer readable program code means embodied in said medium for displaying, on a screen, a plurality of views of software code listings, said computer program product including a prioritized listing of view-types, each said view-type providing a different presentation of a code listing, said computer usable medium comprising:
first means for displaying a first view-type of at least a portion of a software code listing in a first file;
second means for stepping through code lines in said portion of said software code listing;
third means for displaying a highest priority view-type available of a code listing in another file when a call is found in said first file for said code listing in another file, where said highest priority view-type of said another file is independent of highest priority view-type of said first file; and
fourth means for determining that said first view-type is to be (i) kept on the screen, (ii) removed from the screen and replaced by an icon, or (iii) discarded from the screen, and if said first view-type is to be replaced by an icon or discarded, saving as an object a window in which said first view-type is displayed and its contents by recording said software code listing's scroll position, size of the window and position of the window on the screen, whereby, in case it is discarded, said window and its contents may be recalled by reference to the file and an indication of view-type or in case said window is replaced by an icon, said window may
be recalled by selecting said icon..Iaddend..Iadd.22. A computer program product according to claim 21, further comprising fifth means for determining if said highest priority view-type from said another file is already displayed on said screen, and if so, updating said displayed highest priority view-type to show a currently active code line..Iaddend..Iadd.23. A program storage device readable by a machine, tangibly embodying a program of instructions executable by the machine to perform method steps of displaying, on a screen, a plurality of views of software code listings, said program storage device including a prioritized listing of view-types, each said view-type providing a different presentation of a code listing, said method steps comprising:
displaying a first view-type of at least a portion of a software code listing in a first file;
stepping through code lines in said portion of said software code listing;
displaying a highest priority view-type available of a code listing in another file when a call is found in said first file for said code listing in another file, where said highest priority view-type of said another file is independent of highest priority view-type of said first file; and
determining that a view-type is to be removed from said screen and saving a window in which said view-type is displayed and its contents as an object, whereby said removed window and its contents are recallable as said object
and when so recalled are displayed on said screen..Iaddend..Iadd.24. A program storage device according to claim 23, wherein said view-type of said code listing from said another file is simultaneously displayed with said first view-type of said software code listing of said first file..Iaddend..Iadd.25. A program storage device according to claim 24, further comprising the step of determining if said highest priority view-type from said another file is already displayed on said screen and if so, updating said displayed highest priority view-type to show a currently active code line..Iaddend..Iadd.26. A program storage device according to claim 25, wherein said prioritized listing of said view-types includes a source code listing as the highest priority..Iaddend..Iadd.27. A program storage device according to claim 26, wherein a view-type having a lower prioritization is a disassembly code listing..Iaddend..Iadd.28. A program storage device according to claim 27, wherein another said prioritized view-type includes both source code and disassembly code combined..Iaddend..Iadd.29. A program storage device according to claim 28, wherein another said prioritized view-type includes a compressed image of said source code listing..Iaddend..Iadd.30. A program storage device according to claim 29, wherein said view-type includes a flow graph of said source code, which graphically illustrates said source code..Iaddend..Iadd.31. A program storage device according to claim 23, wherein said method steps are performed under the control of a debugging
program..Iaddend..Iadd.32. A program storage device for use with a computer system, tangibly embodying a program of instructions executable by the machine to perform method steps of displaying, on a screen, a plurality of views of software code listings, said program storage device including a prioritized listing of view-types, each said view-type providing a different presentation of a code listing, said method steps comprising: comprising:
displaying a first view-type of at least a portion of a software code listing in a first file;
stepping through code lines in said portion of said software code listing;
displaying a highest priority view-type available of a code listing in another file when a call is found in said first file for said code listing in another file, where said highest priority view-type of said another file is independent of highest priority view-type of said first file; and
determining that said first view-type is to be (i) kept on the screen, (ii) removed from the screen and replaced by an icon, or (iii) discarded from the screen, and if said first view-type is to be replaced by an icon or discarded, saving as an object a window in which said first view-type is displayed and its contents by recording said software code listing's scroll position, size of the window and position of the window on the screen, whereby, in case it is discarded, said window and its contents may be recalled by reference to the file and an indication of view-type or in case said window is replaced by an icon, said window may be recalled by
selecting said icon..Iaddend..Iadd.33. A program storage device according to claim 32, further comprising the step of determining if said highest priority view-type from said another file is already displayed on said screen, and if so, updating said displayed highest priority view-type to show a currently active code line..Iaddend.
US08/663,346 1991-08-30 1996-06-13 Debugging system wherein multiple code views are simultaneously managed Expired - Fee Related USRE36422E (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US08/663,346 USRE36422E (en) 1991-08-30 1996-06-13 Debugging system wherein multiple code views are simultaneously managed

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US07/753,358 US5410648A (en) 1991-08-30 1991-08-30 Debugging system wherein multiple code views are simultaneously managed
US08/663,346 USRE36422E (en) 1991-08-30 1996-06-13 Debugging system wherein multiple code views are simultaneously managed

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US07/753,358 Reissue US5410648A (en) 1991-08-30 1991-08-30 Debugging system wherein multiple code views are simultaneously managed

Publications (1)

Publication Number Publication Date
USRE36422E true USRE36422E (en) 1999-11-30

Family

ID=25030302

Family Applications (2)

Application Number Title Priority Date Filing Date
US07/753,358 Ceased US5410648A (en) 1991-08-30 1991-08-30 Debugging system wherein multiple code views are simultaneously managed
US08/663,346 Expired - Fee Related USRE36422E (en) 1991-08-30 1996-06-13 Debugging system wherein multiple code views are simultaneously managed

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US07/753,358 Ceased US5410648A (en) 1991-08-30 1991-08-30 Debugging system wherein multiple code views are simultaneously managed

Country Status (2)

Country Link
US (2) US5410648A (en)
CA (1) CA2075426A1 (en)

Cited By (23)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6122643A (en) 1997-08-25 2000-09-19 Synopsys, Inc. Method and system for electronic article submission
US6247020B1 (en) * 1997-12-17 2001-06-12 Borland Software Corporation Development system with application browser user interface
US20030004836A1 (en) * 2001-06-01 2003-01-02 Wolfgang Otter Defining form formats with layout items that present data of business application
US6593940B1 (en) * 1998-12-23 2003-07-15 Intel Corporation Method for finding errors in multithreaded applications
US6604103B1 (en) 1994-09-02 2003-08-05 Mark A. Wolfe System and method for information retrieval employing a preloading procedure
US6681343B1 (en) * 1999-08-24 2004-01-20 Nec Electronics Corporation Debugging device and method as well as storage medium
US20040237028A1 (en) * 2000-04-26 2004-11-25 Microsoft Corporation Method and apparatus for displaying computer program errors as hypertext
US20050066308A1 (en) * 2003-09-18 2005-03-24 Han Min-Ja Application program verification system and method using separate debugging information files
US20050097399A1 (en) * 2003-11-03 2005-05-05 Microsoft Corporation Techniques for managed code debugging
US20060070076A1 (en) * 2004-09-29 2006-03-30 Zhiqiang Ma Detecting lock acquisition hierarchy violations in multithreaded programs
US7043526B1 (en) * 1996-10-08 2006-05-09 Wolfe Mark A System and method for communicating information relating to a network resource
US7234105B2 (en) 2001-09-20 2007-06-19 Sap Ag Methods and systems for providing a document with interactive elements to retrieve information for processing by business applications
US20070168932A1 (en) * 2005-12-29 2007-07-19 Seeger Frank E Support of a platform-independent model including descriptions of modeling language entities
US7257604B1 (en) 1997-11-17 2007-08-14 Wolfe Mark A System and method for communicating information relating to a network resource
US7302638B1 (en) 1995-06-07 2007-11-27 Wolfe Mark A Efficiently displaying and researching information about the interrelationships between documents
US20080162888A1 (en) * 2006-12-28 2008-07-03 Krauss Kirk J Differential comparison system and method
US20080195929A1 (en) * 2007-02-13 2008-08-14 Oracle International Corporation Simplifying Understanding of Procedure Dependencies in a Form Definition
US20090138853A1 (en) * 2007-11-28 2009-05-28 International Business Machines Corporation System and method for debugging
US20110154121A1 (en) * 2009-12-18 2011-06-23 Microsoft Corporation Concurrency test effictiveness via mutation testing and dynamic lock elision
US8626763B1 (en) 1997-05-22 2014-01-07 Google Inc. Server-side suggestion of preload operations
US8639694B1 (en) 1994-09-02 2014-01-28 Google Inc. Client-side processing of preload operations
US20170139685A1 (en) * 2014-06-25 2017-05-18 Chengdu Puzhong Software Limted Company Visual software modeling method to construct software views based on a software meta view
US9740593B2 (en) 2015-01-08 2017-08-22 International Business Machines Corporation Comparative program execution through control of two or more debug sessions to automatically determine execution differences

Families Citing this family (69)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CA2082848C (en) * 1991-12-06 2000-12-19 Stephen G. Eick Apparatus for selective simultaneous display of information about a plurality of events
US5485615A (en) * 1992-06-10 1996-01-16 Telefonaktiebolaget L M Ericsson System and method of interactively developing desired computer programs by using plurality of tools within a process described in graphical language
EP0690378A1 (en) * 1994-06-30 1996-01-03 Tandem Computers Incorporated Tool and method for diagnosing and correcting errors in a computer programm
US5794046A (en) * 1994-09-29 1998-08-11 International Business Machines Corporation Method and system for debugging parallel and distributed applications
US5794047A (en) * 1994-09-29 1998-08-11 International Business Machines Corporation Method of walking-up a call stack for a client/server program that uses remote procedure call
US5862372A (en) * 1994-11-16 1999-01-19 Morris; Robert M. Visually oriented computer implemented application development system utilizing standardized objects and multiple views
US6216143B1 (en) * 1994-12-05 2001-04-10 International Business Machines Corporation Apparatus and method for generating animated color coded software traces
US5590330A (en) * 1994-12-13 1996-12-31 International Business Machines Corporation Method and system for providing a testing facility in a program development tool
US6131185A (en) * 1994-12-13 2000-10-10 International Business Machines Corporation Method and system for visually debugging on object in an object oriented system
US5652899A (en) * 1995-03-03 1997-07-29 International Business Machines Corporation Software understanding aid for generating and displaying simiplified code flow paths with respect to target code statements
US6678880B1 (en) * 1995-05-08 2004-01-13 Apple Computer, Inc. System for iteratively designing an object heterarchy in an object-oriented computing environment
US5664185A (en) * 1995-05-22 1997-09-02 Sterling Commerce, Inc. Nameserver administration system and method
US5809248A (en) * 1995-07-05 1998-09-15 Sun Microsystems, Inc. Method and apparatus for front end navigator and network architecture for performing functions on distributed files in a computer network
US6026362A (en) * 1995-09-11 2000-02-15 Compaq Computer Corporation Tool and method for diagnosing and correcting errors in a computer program
US6016474A (en) * 1995-09-11 2000-01-18 Compaq Computer Corporation Tool and method for diagnosing and correcting errors in a computer program
US6816914B1 (en) * 1995-12-29 2004-11-09 Agilent Technologies, Inc. Callable graphical programming language
US6324683B1 (en) 1996-02-23 2001-11-27 International Business Machines Corporation System, method and program for debugging external programs in client/server-based relational database management systems
US6058393A (en) * 1996-02-23 2000-05-02 International Business Machines Corporation Dynamic connection to a remote tool in a distributed processing system environment used for debugging
US6065035A (en) * 1996-06-13 2000-05-16 Microsoft Corporation Method and system for procedure boundary detection
US6513154B1 (en) 1996-10-21 2003-01-28 John R. Porterfield System and method for testing of computer programs in programming effort
US6061517A (en) 1997-03-31 2000-05-09 International Business Machines Corporation Multi-tier debugging
US5926176A (en) * 1997-07-31 1999-07-20 Think & Do Software, Inc. Control program tracking and display system
US6275223B1 (en) * 1998-07-08 2001-08-14 Nortel Networks Limited Interactive on line code inspection process and tool
US6269447B1 (en) 1998-07-21 2001-07-31 Raytheon Company Information security analysis system
US7047423B1 (en) 1998-07-21 2006-05-16 Computer Associates Think, Inc. Information security analysis system
US6304262B1 (en) 1998-07-21 2001-10-16 Raytheon Company Information security analysis system
US6253337B1 (en) * 1998-07-21 2001-06-26 Raytheon Company Information security analysis system
CA2255023C (en) * 1998-11-30 2004-04-13 Siu Chung Yuen A method and system for monitoring the execution of hybrid source code
CA2255050C (en) * 1998-11-30 2007-06-19 Ibm Canada Limited-Ibm Canada Limitee A method and system for debugging hybrid source code
JP3522141B2 (en) * 1999-01-28 2004-04-26 富士通株式会社 Automatic generation method of program inheriting correction program, automatic program generation device, and recording medium recording program for automatically generating program inheriting correction program
US6429860B1 (en) * 1999-06-15 2002-08-06 Visicomp, Inc. Method and system for run-time visualization of the function and operation of a computer program
US7055131B2 (en) * 1999-10-05 2006-05-30 Borland Software Corporation Methods and systems for animating the interaction of objects in an object oriented program
US6983446B2 (en) * 1999-10-05 2006-01-03 Borland Software Corporation Methods and systems for finding specific line of source code
US6748584B1 (en) * 1999-12-29 2004-06-08 Veritas Operating Corporation Method for determining the degree to which changed code has been exercised
DE10140124A1 (en) * 2001-08-16 2003-03-06 Daimler Chrysler Ag Method for representing the architecture of a software system
US7152226B2 (en) * 2001-09-04 2006-12-19 James Pangburn Flexible horizontal stack display and editor
US7392313B2 (en) * 2001-10-18 2008-06-24 International Business Machines Corporation Method and apparatus for partitioned environment for web application servers
US20040088195A1 (en) * 2002-10-31 2004-05-06 Childress Allen B. Method of modifying a business rule
US7689442B2 (en) * 2002-10-31 2010-03-30 Computer Science Corporation Method of generating a graphical display of a business rule with a translation
US7676387B2 (en) * 2002-10-31 2010-03-09 Computer Sciences Corporation Graphical display of business rules
US7185315B2 (en) * 2003-02-25 2007-02-27 Sheet Dynamics, Ltd. Graphical feedback of disparities in target designs in graphical development environment
US20040215494A1 (en) * 2003-04-24 2004-10-28 Wahlbin Stefan L. Method and system for determining monetary amounts in an insurance processing system
US7895064B2 (en) * 2003-09-02 2011-02-22 Computer Sciences Corporation Graphical input display in an insurance processing system
SE0303532D0 (en) * 2003-12-23 2003-12-23 Amersham Biosciences Ab Purification of immunoglobulins
US8448069B2 (en) * 2004-04-23 2013-05-21 International Business Machines Corporation Object set property viewer
JP4774237B2 (en) * 2005-05-02 2011-09-14 株式会社リコー Program development support apparatus, program operation comparison method, and semiconductor integrated circuit manufacturing method
US7516445B2 (en) * 2005-06-30 2009-04-07 Microsoft Corporation Locating source code when stopping in a debugger
US20070180049A1 (en) * 2006-01-31 2007-08-02 Microsoft Corporation Code hyperlinks
US7900089B2 (en) * 2006-06-12 2011-03-01 International Business Machines Corporation Method for creating error tolerant and adaptive graphical user interface test automation
JP5133973B2 (en) * 2007-01-18 2013-01-30 パナソニック株式会社 Obfuscation support device, obfuscation support method, program, and integrated circuit
US8201150B2 (en) * 2007-03-20 2012-06-12 International Business Machines Corporation Evaluating software test coverage
US8010389B2 (en) * 2007-06-04 2011-08-30 Computer Sciences Corporation Multiple policy claims processing
US8010390B2 (en) * 2007-06-04 2011-08-30 Computer Sciences Corporation Claims processing of information requirements
US8010391B2 (en) 2007-06-29 2011-08-30 Computer Sciences Corporation Claims processing hierarchy for insured
US8000986B2 (en) 2007-06-04 2011-08-16 Computer Sciences Corporation Claims processing hierarchy for designee
US20090037881A1 (en) * 2007-07-31 2009-02-05 Caterpillar Inc. Systems and methods for testing the functionality of a web-based application
US20090187428A1 (en) * 2008-01-18 2009-07-23 Frank Scalet Evaluating effectiveness of claims evaluation, assessment, and settlement processes
US8887089B2 (en) * 2008-02-12 2014-11-11 Oracle International Corporation System and method for generating a file peek ahead user interface
US8869109B2 (en) * 2008-03-17 2014-10-21 Microsoft Corporation Disassembling an executable binary
CA2675692C (en) * 2009-08-28 2012-03-13 Ibm Canada Limited - Ibm Canada Limitee Compiler-assisted program source code filter
US8484619B2 (en) * 2009-11-05 2013-07-09 Microsoft Corporation Multi-view debugging
US8732667B2 (en) * 2009-11-13 2014-05-20 Microsoft Corporation Debugging services for domain specific languages
US9645869B2 (en) * 2010-12-01 2017-05-09 Ncr Corporation Using exception information
US8572438B2 (en) 2011-06-24 2013-10-29 Microsoft Corporation N-way runtime interoperative debugging
US20130191809A1 (en) * 2012-01-25 2013-07-25 Microsoft Corporation Graphical representation of an order of operations
US8935673B1 (en) * 2012-11-30 2015-01-13 Cadence Design Systems, Inc. System and method for debugging computer program based on execution history
CN105227608B (en) * 2014-06-27 2018-07-27 国际商业机器公司 Method and apparatus for developing abundant the Internet, applications
WO2016018062A1 (en) * 2014-07-31 2016-02-04 Samsung Electronics Co., Ltd. Method and device for providing content
US9946701B2 (en) * 2015-02-11 2018-04-17 International Business Machines Corporation Selectively pinning sections of displayed content

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5175856A (en) * 1990-06-11 1992-12-29 Supercomputer Systems Limited Partnership Computer with integrated hierarchical representation (ihr) of program wherein ihr file is available for debugging and optimizing during target execution
US5179702A (en) * 1989-12-29 1993-01-12 Supercomputer Systems Limited Partnership System and method for controlling a highly parallel multiprocessor using an anarchy based scheduler for parallel execution thread scheduling
US5548717A (en) * 1991-03-07 1996-08-20 Digital Equipment Corporation Software debugging system and method especially adapted for code debugging within a multi-architecture environment
US5560009A (en) * 1990-09-21 1996-09-24 Hewlett-Packard Company Generating symbolic debug information by merging translation and compiler debug information

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5179702A (en) * 1989-12-29 1993-01-12 Supercomputer Systems Limited Partnership System and method for controlling a highly parallel multiprocessor using an anarchy based scheduler for parallel execution thread scheduling
US5175856A (en) * 1990-06-11 1992-12-29 Supercomputer Systems Limited Partnership Computer with integrated hierarchical representation (ihr) of program wherein ihr file is available for debugging and optimizing during target execution
US5560009A (en) * 1990-09-21 1996-09-24 Hewlett-Packard Company Generating symbolic debug information by merging translation and compiler debug information
US5548717A (en) * 1991-03-07 1996-08-20 Digital Equipment Corporation Software debugging system and method especially adapted for code debugging within a multi-architecture environment

Non-Patent Citations (10)

* Cited by examiner, † Cited by third party
Title
Ambler et al., "Influence of Visual Technology On the Evolution of Language Environments", Computer, Oct. 1989, pp. 19-22.
Ambler et al., Influence of Visual Technology On the Evolution of Language Environments , Computer, Oct. 1989, pp. 19 22. *
Leonard I. Vanek et al., Static Analysis of Program Source Code Using EDSA, Array Systems Computing (Canada, 1989) pp. 192 199, Jan. 1989. *
Leonard I. Vanek et al., Static Analysis of Program Source Code Using EDSA, Array Systems Computing (Canada, 1989) pp. 192-199, Jan. 1989.
Logitech Inc. "Multiscope Debugger User's Manual", Jul. 1989, pp. 1-8, 23-82.
Logitech Inc. Multiscope Debugger User s Manual , Jul. 1989, pp. 1 8, 23 82. *
Microsoft Corporation, Advanced Programming Techniques, pp. 185 205, Jan. 1990. *
Microsoft Corporation, Advanced Programming Techniques, pp. 185-205, Jan. 1990.
Parker, Tim, "C Development Environments"<Computer Language, vol. 7, No. 5, May, 1990, pp. 97-110.
Parker, Tim, C Development Environments Computer Language, vol. 7, No. 5, May, 1990, pp. 97 110. *

Cited By (34)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8639694B1 (en) 1994-09-02 2014-01-28 Google Inc. Client-side processing of preload operations
US6604103B1 (en) 1994-09-02 2003-08-05 Mark A. Wolfe System and method for information retrieval employing a preloading procedure
US7302638B1 (en) 1995-06-07 2007-11-27 Wolfe Mark A Efficiently displaying and researching information about the interrelationships between documents
US7043526B1 (en) * 1996-10-08 2006-05-09 Wolfe Mark A System and method for communicating information relating to a network resource
US8849982B2 (en) 1996-10-08 2014-09-30 Google, Inc. Communicating information relating to a network resource
US8626763B1 (en) 1997-05-22 2014-01-07 Google Inc. Server-side suggestion of preload operations
US6122643A (en) 1997-08-25 2000-09-19 Synopsys, Inc. Method and system for electronic article submission
US9934516B1 (en) 1997-11-17 2018-04-03 Google Llc Communicating information relating to a network resource
US7257604B1 (en) 1997-11-17 2007-08-14 Wolfe Mark A System and method for communicating information relating to a network resource
US6247020B1 (en) * 1997-12-17 2001-06-12 Borland Software Corporation Development system with application browser user interface
US6593940B1 (en) * 1998-12-23 2003-07-15 Intel Corporation Method for finding errors in multithreaded applications
US6681343B1 (en) * 1999-08-24 2004-01-20 Nec Electronics Corporation Debugging device and method as well as storage medium
US20040237028A1 (en) * 2000-04-26 2004-11-25 Microsoft Corporation Method and apparatus for displaying computer program errors as hypertext
US7395525B2 (en) * 2000-04-26 2008-07-01 Microsoft Corporation Method and apparatus for displaying computer program errors as hypertext
US7475333B2 (en) * 2001-06-01 2009-01-06 Sap Ag Defining form formats with layout items that present data of business application
US20030004836A1 (en) * 2001-06-01 2003-01-02 Wolfgang Otter Defining form formats with layout items that present data of business application
US7234105B2 (en) 2001-09-20 2007-06-19 Sap Ag Methods and systems for providing a document with interactive elements to retrieve information for processing by business applications
US20050066308A1 (en) * 2003-09-18 2005-03-24 Han Min-Ja Application program verification system and method using separate debugging information files
US20050097399A1 (en) * 2003-11-03 2005-05-05 Microsoft Corporation Techniques for managed code debugging
US7150006B2 (en) * 2003-11-03 2006-12-12 Microsoft Corporation Techniques for managed code debugging
US20060070076A1 (en) * 2004-09-29 2006-03-30 Zhiqiang Ma Detecting lock acquisition hierarchy violations in multithreaded programs
US7657894B2 (en) * 2004-09-29 2010-02-02 Intel Corporation Detecting lock acquisition hierarchy violations in multithreaded programs
US20070168932A1 (en) * 2005-12-29 2007-07-19 Seeger Frank E Support of a platform-independent model including descriptions of modeling language entities
US7840936B2 (en) * 2005-12-29 2010-11-23 Sap Ag Support of a platform-independent model including descriptions of modeling language entities
US8418149B2 (en) 2006-12-28 2013-04-09 International Business Machines Corporation Differential comparison system and method
US20080162888A1 (en) * 2006-12-28 2008-07-03 Krauss Kirk J Differential comparison system and method
US20080195929A1 (en) * 2007-02-13 2008-08-14 Oracle International Corporation Simplifying Understanding of Procedure Dependencies in a Form Definition
US10635455B2 (en) * 2007-02-13 2020-04-28 Oracle International Corporation Simplifying understanding of procedure dependencies in a form definition
US8683438B2 (en) * 2007-11-28 2014-03-25 International Business Machines Corporation System, computer program product and method for comparative debugging
US20090138853A1 (en) * 2007-11-28 2009-05-28 International Business Machines Corporation System and method for debugging
US8276021B2 (en) 2009-12-18 2012-09-25 Microsoft Corporation Concurrency test effectiveness via mutation testing and dynamic lock elision
US20110154121A1 (en) * 2009-12-18 2011-06-23 Microsoft Corporation Concurrency test effictiveness via mutation testing and dynamic lock elision
US20170139685A1 (en) * 2014-06-25 2017-05-18 Chengdu Puzhong Software Limted Company Visual software modeling method to construct software views based on a software meta view
US9740593B2 (en) 2015-01-08 2017-08-22 International Business Machines Corporation Comparative program execution through control of two or more debug sessions to automatically determine execution differences

Also Published As

Publication number Publication date
US5410648A (en) 1995-04-25
CA2075426A1 (en) 1993-03-01

Similar Documents

Publication Publication Date Title
USRE36422E (en) Debugging system wherein multiple code views are simultaneously managed
CA2211478C (en) Systems, methods and apparatus for generating and controlling display of medical images
US6593940B1 (en) Method for finding errors in multithreaded applications
US5157779A (en) User extensible testing system
US7269797B1 (en) Mechanism to organize windows in a graphic application
CA1313419C (en) Valuator menu for use as a graphical user interface tool
US6026362A (en) Tool and method for diagnosing and correcting errors in a computer program
US6117184A (en) Program generation method
US6239800B1 (en) Method and apparatus for leading a user through a software installation procedure via interaction with displayed graphs
US8250537B2 (en) Flexible horizontal stack display and editor
CA2211373C (en) Learn mode script generation in a medical imaging system
US5450539A (en) Apparatus and method of dynamically displaying a graphic button on a monitor
US8429613B2 (en) Stepping and application state viewing between points
EP3338179B1 (en) Graphical representation of data in a program code editor
US6707469B1 (en) Synchronous execution in a medical imaging system
US8336032B2 (en) Implementing enhanced template debug
US20060206856A1 (en) System and method for software application development in a portal environment
US8386919B2 (en) System for displaying an annotated programming file
US8135572B2 (en) Integrated debugger simulator
US5831612A (en) Cell overlap detection and correction in a medical imaging system
JPH07168710A (en) System and method for constitution of program
JPH08137646A (en) Method and system for displaying dialogue box
EP0712080B1 (en) A method and a system for controlling functions of a target application using controllable objects
Liu et al. Exploring developer preferences for visualizing external information within source code editors
CA2447163A1 (en) A visual debugging interface

Legal Events

Date Code Title Description
REMI Maintenance fee reminder mailed
LAPS Lapse for failure to pay maintenance fees