EP1423792A2 - Outil interactif de debogage comprenant un systeme de base de donnees de debogage - Google Patents

Outil interactif de debogage comprenant un systeme de base de donnees de debogage

Info

Publication number
EP1423792A2
EP1423792A2 EP98957409A EP98957409A EP1423792A2 EP 1423792 A2 EP1423792 A2 EP 1423792A2 EP 98957409 A EP98957409 A EP 98957409A EP 98957409 A EP98957409 A EP 98957409A EP 1423792 A2 EP1423792 A2 EP 1423792A2
Authority
EP
European Patent Office
Prior art keywords
debugging
information
program
memory
set forth
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.)
Withdrawn
Application number
EP98957409A
Other languages
German (de)
English (en)
Other versions
EP1423792A4 (fr
Inventor
Michael P. Spertus
Charles Fiterman
Gustavo Geodesic Systems Inc. RODRIGUEZ RIVERA
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.)
Symantec Operating Corp
Original Assignee
Geodesic Systems Inc
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 Geodesic Systems Inc filed Critical Geodesic Systems Inc
Publication of EP1423792A2 publication Critical patent/EP1423792A2/fr
Publication of EP1423792A4 publication Critical patent/EP1423792A4/fr
Withdrawn legal-status Critical Current

Links

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
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/362Software debugging
    • G06F11/3636Software debugging by tracing the execution of the program
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/0223User address space allocation, e.g. contiguous or non contiguous base addressing
    • G06F12/023Free address space management
    • G06F12/0253Garbage collection, i.e. reclamation of unreferenced memory

Definitions

  • the invention concerns interactive programming tools generally and more specifically concerns interactive program debuggers.
  • Debuggers are tools used by programmers to determine what is going on when a program is executed.
  • a debugger typically permits a programmer to start and stop the program's execution and to examine the state of the memory (including hardware registers) being used by the program.
  • Modern debuggers are interactive: that is, a programmer can input a command to the debugger and see the effects of the command within a relatively short period of time.
  • Modern debuggers can further relate what the programmer does and sees to the source code for the program being debugged. Thus, if the programmer wants to examine the contents of a certain variable, he or she can select the variable by name and the debugger will show the programmer the contents in a form that corresponds to the type of the variable.
  • BoundsCheckerTM manufactured by Compuware Corporation
  • Purify manufactured by Rational Software. Further information about BoundsChecker may be found at www . numega . com/library/doc . shtml, which in October, 1998 contained the complete documentation for the debugger. Further information about Purify could be found in October, 1998 at www . rational . com/support/techpapers .
  • the Purify debugger is the subject matter of U.S.
  • debuggers While any modern debugger is useful, debuggers would be more useful if they offered more flexible user interfaces.
  • debuggers have two ways of providing the user with information: by means of a proprietary interactive user interface which communicates directly with the debugger as it executes the program and by means of a log file, that is, a text file which contains a list of the interactions between the user and the debugger.
  • Problems with this arrangement include first, that the interactive user interface can only be used to analyze the current execution of the program; information about past executions is contained in the log file, and that requires other tools to read it.
  • a second problem is that the proprietary user interface requires that the user interacting with the debugger have the interface software and also limits the user to the kind of interaction dictated by the proprietary user interface. As for the log files, nothing can be done with the log file beyond what is usually done with text files.
  • debuggers have not taken advantage of the standard graphical user interfaces that have lately evolved.
  • they have not been adapted to work with Web browsers, and that in turn means not only that the programmer must use a less-convenient user interface than that provided by the his or her Web browser, but also that a programmer who wants to debug a program that is running on a remote machine cannot use the Web browser and the Internet to do the debugging, but must instead have a special connection to the remote machine which permits the programmer to use the proprietary interface.
  • a debugger which may be easily adapted to a number of different kinds of user interfaces, including the user interface provided by Web browsers and that works as well to analyze information about past executions of a program as it does to analyze information about a current execution. It is an object of the present invention to provide such a debugger.
  • a debugging system in which a source of debugging information from an executing program performs update queries to a debug data base system containing debugging information the source receives as a result of the execution of the program and an interactive interface responds to user inputs by performing a read query on the debug data base which reads the debug information placed there by the source and then formatting the results of the read query as required by the user.
  • the information in the data base is persistent, and consequently, the interactive interface can be used not only with debug information from a current execution of the program but also with debug information from past executions of the program.
  • the debug data base effectively isolates the debugging information source and the interactive interface from each other; consequently, changes in either which do not affect what is written to or read from the data base do not affect the other.
  • a variety of different interactive interfaces may read from the debug data base and a variety of different debug information sources may write to the debug data base.
  • a Web server interactive interface that may be used with the debug data base is one that is adapted to be used with a standard World Wide Web browser.
  • a Web server interactive interface has a URI (universal resource indicator) and responds to a message containing its URI by formatting and sending a HTML page to the browser.
  • the response also involves performing a read query on the debug database and returning an HTML page that contains the results of the query. Since the Web server interactive interface works with any Web browser, regardless of the browser's location in the Internet, debugging may be done equally easily either on the system where the Web server interactive interface is located or on a remote system.
  • One species of debugging systems of the type described above employs a source of debugging information which provides memory debugging information such as memory allocations, memory leaks, and current heap size.
  • FIG. 1 is an overview of a debugging system which employs the invention
  • FIG. 2 is a block diagram of a presently-preferred embodiment of the invention.
  • FIG. 3 provides an overview of the debugger database of the preferred embodiment
  • FIG. 4 shows a display generated from the HTML page by means of which the user selects a debugging report
  • FIG. 5 shows a display generated from the HTML page by means of which the user views leak information
  • FIG. 6 shows a display generated from the HTML page by means of which the user views heap allocation
  • FIG. 7 shows a display generated from the HTML page by means of which the user views heap statistics
  • FIG. 8 shows the display used to update debugger settings in a preferred embodiment
  • FIG. 9 shows how buckets for objects are organized
  • FIG. 10 shows free list defragmentation and footprint reduction
  • FIG. 11 shows how object buckets are organized in a preferred embodiment.
  • debugging system that includes the invention, will then show how the invention may be used to provide multiple user interfaces, including a Web browser user interface, for an existing debugging system, and will then present details of the debug database and the Web browser interface in a preferred embodiment.
  • the source of the debugging information in a preferred embodiment is an automatic memory management system, and the Detailed Description also includes details of the automatic memory management system.
  • FIG. 1 Overview of a debugging system constructed according to the invention: FIG. 1
  • FIG. 1 is a conceptual block diagram of a debugging system 101 that is constructed according to the invention.
  • the major components of debugging system 101 are debugging data base system 107, debugger client 102, and one or more user interface (UI) clients 111.
  • Debugging data base system 107 contains a database 110 with persistent debugging information 109(a..n) for a variety of executions of programs.
  • the term persistent is used herein to mean that the debugging information remains available in the database after execution of the program has ceased.
  • Database 110 is managed by debug database server 106, which responds to queries from the other components of debugging system 101 by writing to or reading from debug info 109 as required by the query (arrow 108).
  • debug data base server 106 has two sets of clients: debugger client 102, which provides update queries 105 containing debug information 109 to database 110, and one or more user interface clients 111, which provide queries that read selected, debug information 109 from data base 110.
  • Debug data base system 107 may be specially implemented for system 101, or it may be one of the many commercial data base systems.
  • debug database server 106 One of the functions of debug database server 106 is to coordinate reads and writes of database 110. In some debugger systems 101, it will be enough simply to ensure that a read query never attempts to read data which is not yet available in database 110; in others, it may be necessary to ensure that what is read is the last complete write done by debugger client 102.
  • One method of coordinating reads and writes is to treat each read and write as a transaction and to use standard database transaction processing techniques; where consistency requirements are less stringent, the overhead of transaction processing can be avoided and sufficient coordination of reads and writes may be achieved by ordering the writes such that information which a given record in the data base depends on is written to the database before the record itself is written, thereby ensuring that all the information needed to respond to a query for which the given record is a result is in the database by the time the record itself can be queried.
  • Debugger client 102 is a debugger which is executing a program being debugged 104 in debugger process 103.
  • a debugger client 102 may be any entity which executes a computer program in such a fashion that information about the execution which would not normally be available to a user of the program becomes available.
  • debugger client 102 may be implemented expressly for system 101 or it may be any kind of existing interactive debugger.
  • Debugger client 102 may have access to both the source code 117 and object code 119 for program 104.
  • Debugger client 102 may interpret source code 117, but more generally, it will execute object code 119 and use source code 117 to make debug info 109 more understandable to the user of the debugger.
  • Debug info 109 obtained from source code 117 and by means of execution of object code 119 is written to debug database 110 by means of update queries to debug database server 106.
  • Each user interface client 1 11 receives inputs 125 from a user, responds to some inputs by making a read query (Rquery) 113 for debug data base server 106, and responds to the results of Rquery 113 by formatting the results and providing the formatted results to the user as formatted output 127.
  • the forms of the inputs received and the outputs provided by a given interface client 111 depends on the kind of interactive interface employed by the user. Again, the interactive interface may be any presently existing or future interactive interface.
  • Debugger client 101 and the user interface clients 1 1 1 further communicate with each other by means of control channel 121, which may be any arrangement which permits transfer of messages between debugger client 102 and a user interface client 111.
  • User interface client 111 uses control channel 121 to transfer debugger commands to debugger client 101, while debugger client 102 uses control channel 121 to transfer debugger event messages to user interface client 111.
  • a first debugger command may instruct the debugger concerning the kinds of information it is to output, while another may instruct the debugger to stop execution of program 104 at a predetermined point.
  • a debugger event may inform interface client 1 11 that the predetermined point has been reached and that the debugger has stopped execution of the program.
  • Possible implementations of control channel 121 include among others inter-process communications, events and callbacks, shared memory, and a shared database.
  • debugger client 102 As debugger client 102 is executing program 104, it outputs debugger information 109 to debug database server 106 by means of update queries 105. While doing this, debugger client 102 also responds to commands received on control channel 120 and where required, sends event messages via control channel 120 to user interface client 111. Debug data base server 106 updates debug info 109 for the execution of program 104 being performed by debugger client 102 in response to the update queries 105. While this is going on, user interface client 111 is responding to event messages from debugger client 102 and responding to user inputs 125.
  • the response may involve a command to debugger client 102 and/or a read query 113 to debug database server 106.
  • Debug database server 106 responds to read query 113 by sending a result to user interface client 111, which then formats the result as required by the interactive user interface being used by the user and sends the formatted result to the user. The user may respond to the formatted result with another input 125, beginning the process again.
  • Coordination between database server 106 and client 111 may be done in many ways. In some cases, client 11 1 may initiate all actions; in others, client 111 may respond to changes in database 110. In those cases, client 111 may simply repeatedly poll database 1 10 until a change occurs or data base system 107 may include a mechanism for sending an event message to user interface client 1 11 indicating that a change has taken place.
  • debug database system 107 isolates debugger client 102 and UI clients 111 from each other.
  • the builders of debugger client 102 need know nothing about the forms taken by user input 125 and formatted output 127 in a given user interface client 11 l(i); all they need to know is the query interface to debug data base system 107.
  • the builders of user interface client 11 1 ( ⁇ ) need know nothing about the form taken by debugger information in debugger client 102; they, too, need to know only the query interface to debug data base system 107.
  • debugger client 102 and user interface clients 111 are isolated from each other, modifying a user interface client 111 (i) or adding a new user interface client 111 (x) to debugging system 101 requires no changes whatever to debugger client 102. Similarly, modifications of debugger client 102 or additions of new debugger clients requires changes to the user interface clients 111 only to the extent that the changes in debugger client 102 involve the addition of new kinds of information to database system 107. If control channel 120 is implemented in debug data base system 107, there is no direct communication between debugger client 102 and a UI client 111 (i) and the isolation is complete.
  • FIG. 2 A memory debugging system incorporating the invention: FIG. 2
  • a memory debugger is a debugger which is used to analyze how the program explicitly allocates and frees memory.
  • Memory explicitly allocated by a program resides on the program's heap.
  • One problem detected by a memory debugger is memory "leaks", which occur when a program contains code that allocates memory, but does not contain code that frees the allocated memory when it is no longer being used by the program. Leaks of course always waste memory; with serious leaks, all of the heap memory available to the program may be occupied by leaks, and in that case, the program will fail when a new allocation is attempted.
  • Another problem detected by a memory debugger is data structures that continue to grow until they occupy all of the available heap memory.
  • the memory debugger in the preferred embodiment is the Great CircleTM automatic memory management system, manufactured by Geodesic Systems, Inc.
  • the main function of the Great Circle system is to provide automatic memory management for programs written in languages such as C or C++, which have no provision for automatic memory management.
  • Great Circle does automatic memory management by periodically collecting garbage, that is, memory which was once allocated but is no longer being used by the program, and freeing the garbage memory for reuse. From the point of view of memory debugging, of course, garbage is the result of leaks.
  • garbage is the result of leaks.
  • the information required to do garbage collection can also be used for memory debugging, and consequently, the Great Circle system has a debugging mode as well as a memory management mode.
  • the Great Circle system prior to its modification as required for it to be a component of a debugging system of the type shown in FIG. 1 is described in detail in the manual, Great Circle Automatic Memory Management System for C and C++, version 1.0, Geodesic Systems, Inc., 1995, which is hereby incorporated by reference into this Detailed Description.
  • FIG. 2 shows a presently-preferred embodiment of the invention in which debugger client 203 is implemented by means of Great Circle process 205 which is executing a program 208 whose object code 200 has been linked at the beginning of execution to a set of dynamically-linked libraries (DLLs) 211 which include code that performs Great Circle's memory management and debugging functions.
  • DLLs dynamically-linked libraries
  • code 213, 215, and 217 responds to debugger commands and makes update queries containing debugger information to shared database system 226.
  • Shared data base system 226 implements the debug data base system and control channel 120 in the preferred embodiment.
  • shared data base system 226 the components of shared data base system 226 are a debug data base server 225 and a data base 229.
  • shared data base system 226 is implemented in memory that is shared between Great Circle process 205 and a user interface process 224 that implements UI clients 111.
  • Debug data base server 225 is a set of database management routines in the shared memory that may be directly executed by either Great Circle process 205 or user interface process 224.
  • Database 229 in the preferred embodiment consists of files which have been memory mapped into the shared memory.
  • the preferred embodiment has two user interface clients: one, web server client 243 responds to inputs from and produces outputs to a Web browser 249 which communicates with web server client 243 by means of Internet 259.
  • Use of Internet 259 means that Web browser 249 may be operating on the computer system upon which Web server client 243 is executing or on any other computer system that has access via Internet 259 to the computer system upon which server client 243 is executing.
  • the other user interface client is CLI client 251, which offers a standard CLI interface to system 201.
  • Inputs 253 are received from the device stdin, usually the keyboard, and outputs 255 go to the device stdout, usually the display.
  • both Web server client 243 and CLI client 251 are implemented by means of code that is executed in user interface process 224, and thus both have access to shared database system 226.
  • Data base 229 contains three broad classes of information:
  • control information 231 • control information 231 ; • per-pro gram information 233; and
  • Control information 231 is the portion of the database that implements control channel
  • debugger client 203 executes code in ALLOC 215 that performs a COMR query 221 on control information 231 prior to allocating new storage for the execution of program 208 Similarly, when an event occurs which is of interest to a user interface client, debugger client 203 does an update query EVU 219 to control information 231. In the preferred embodiment, the user interface client repeatedly does event read queries 237 on control info 231 to determine whether the event has occurred.
  • Per-program information 231 is information which is peculiar to a given program that has been executed by the debugger but which is the same for all executions of the program.
  • Debugger client 203 performs update queries 223 that write per-program information 231 for a given program when it initializes itself for the first execution of the program.
  • the update queries are done by code in EMIT 213.
  • Per-execution information 235 is information that is accumulated on each execution of a program by debugger client 203.
  • the update queries that provide per-execution information 235 to data base 229 are done by code in ALLOC 215 that is executed whenever memory is allocated during execution of a program and code in COLLECT 217 that is executed whenever a garbage collection is done during execution of a program.
  • Per-program info 233 and per-execution info 235 are read by read queries (RQUERY) 239 made by the user interface client that needs the information.
  • FIG. 3 shows details of the contents of database 229 in the preferred embodiment of FIG. 2.
  • database 229 is implemented as a set of database files 301 which has been mapped into address space 303 for Great Circle process 205 and address space 305 for process 224 which executes the user interface clients in the preferred embodiment.
  • control information 231 There are three kinds of information in control information 231 : a queue of commands 307 for debugger client 203, a queue of events 309 for the user interface process, and debugger settings 311, which are current control and status settings for debugger client 203.
  • the control settings are set by the user interface clients and read by debugger client 203 and the status settings are set by debugger client 203 and read by the user interface clients.
  • debugger client 203 responds to the following commands:
  • restart restart execution of the program 208 being currently executed by debugger client 203.
  • the first is used by both web server client 243 and CLI client 251, but the second and third are used only by CLI client 251.
  • only CLI client 251 responds to a debugger event.
  • the event is the detection of a memory leak.
  • CLI client 251 responds by querying database system 226 and to obtain the information about the leak that was written there by debugger client 203.
  • the control and status settings 311 will be explained in more detail in the following description of the user interface for web browser 249.
  • Per-program information 233 in the preferred embodiment is a symbol table for each program that debugger client 203 has executed.
  • Debugger client 203 makes the symbol table and writes it to database 229 as part of the initialization it performs when it executes a program for which there is no symbol table in database 220.
  • the symbol table contains the information which is required to relate information about the execution of a program 208 to names and locations in source code 207 for the program.
  • Per-execution information 235 in the preferred embodiment includes information concerning the execution of program 208 which debugger client 203 is currently performing and information from executions of programs which debugger client 203 has performed in the past.
  • the information for the current execution includes current heap statistics 315, which shows the space currently occupied by storage in the program's heap, and execution information 317 for the current execution.
  • Execution information 317 includes allocation statistics 319, indicating how much memory has been allocated, garbage collection statistics 321, indicating the memory leaks, and stack trace 323, showing the calls and returns made by the program during the program execution.
  • execution information 317 shows the state of the program as of the most recent memory allocations and garbage collections.
  • execution information 317(ij) for execution j of program i shows the state of execution(j) as of the conclusion of execution.
  • allocation statistics 319 will show all memory allocated
  • collection statistics 321 will show all leaked memory
  • stack trace 323 will show the stack trace for the entire execution(j).
  • a user interface client can still access execution information 317 (i,j) for any program(i) and execution (j) for which the information is present in data base 229.
  • the user interface client first queries database system 226 to obtain a list of the programs and executions, which it displays to the user, and then responds to a user selection of a program and execution by displaying execution information 317 (i,j) together with information from the relevant symbol table 313. What information is displayed is determined from further user inputs.
  • the user To analyze an execution of a program that is presently taking place with debugging system 201, the user first begins an execution of the program in which the Great Circle DLLs 211 have been linked to the program.
  • the programs in the DLLs 211 cause debugger client 203 to check control information 231 for commands and settings each time it allocates memory, to write the current program pointer to stack trace 323, and to write statistics concerning the allocation to allocation statistics 319.
  • the resulting query to database system 226 selects and returns the information currently in execution info 317(l,m).
  • the query to execution info 317(l,m) is repeated each time the user of an interface client desires a different view of the information in execution info 317(l,m).
  • the user can explicitly request the interface client to perform a new query to obtain the current state of execution info 317(l,m).
  • the debug database may provide an event message to the interface client when execution info 317(l,m) changes and the interface client may respond thereto by making a new query.
  • debugger client 203 further responds to collect, stop, and restart commands from the interface client.
  • debugger client 203 does garbage collection at predetermined intervals; execution info 317(l,m) reflects the most recent garbage collection.
  • execution info 317(l,m) reflects the most recent garbage collection.
  • debugger client 203 responds by making the collection the next time it does a memory allocation operation and outputting the new collection statistics to collection statistics 321.
  • the user waits until he or she believes that a memory allocation operation has taken place and makes a new query to obtain the current state of execution info (l,m). The results of the new query reflect the garbage collection.
  • garbage collection may be done by a background thread that runs in response to the command and the update query containing the collection statistics may cause an event to be generated to the user interface client, which would then respond by making a new query.
  • the stop command simply stops execution of program 208(1); the restart command restarts the execution of program 208(1).
  • debugging system 201 avoids the overhead of transaction processing by ordering the writes in such a fashion that all of the information required for a read query is available by the time the read query can be made.
  • the information about a memory leak that is output to the user includes the stack trace for the leak; in performing update queries on data base system 226, debugger client 102 performs the update query that writes the stack trace before it performs the update query that writes the leak information; consequently, if a read query can return leak information for a leak, it can also always return the stack trace for the leak.
  • debugger client 102 performs the update query that writes the stack trace before it performs the update query that writes the leak information; consequently, if a read query can return leak information for a leak, it can also always return the stack trace for the leak.
  • other coordination techniques including transaction processing, may be used.
  • Web server client 243 receives inputs from and provides outputs to any standard Web browser 249. The inputs and outputs are transferred via Internet 259. From the point of view of Web browser 249, Web server client 243 is a standard Web server, that is, it receives a universal resource locator (URL) which specifies the server and in many cases attached data and responds to the URL by providing a page in HTML format to web browser 249. The attached data is used at the location specified by the URL. If the specified location has access to a data base, the specified location may use the attached data to form a query to the data base and return the result of the query in the HTML page. Details about all of this may be found for example in A Beginner 's Guide to HTML, published by NCSA and available at pubs@ncsa .
  • URL universal resource locator
  • the URL specifies a Web server by means of a port number in the system on which the Web server is running and an Internet Protocol (IP) address for the system in the Internet.
  • IP Internet Protocol
  • the URL for web server client 243 specifies port number 50565.
  • the IP address for the system in the URL depends on whether Web browser 249 is running on the same system as Web server client 243. If it is, the IP address is the IP loop-back address, normally
  • IP address of Web server client 243 is the IP address of the system on which it is running and the messages pass between browser 249 and client 243 via Internet 259 external to the systems upon which browser
  • Web browser 249 begins the interaction by specifying the URL of Web server client 243 to Web browser 249 then sends the URL .
  • server 243 receives the URL, it sends an HTML page which, when displayed by browser 249, has the appearance shown in FIG. 4.
  • Page 401 is the select program page, so called because it permits the user of browser 249 to select which execution of a program he wants to view a debugging report for. The execution is selected by clicking on the program's pathname in execution listing 413.
  • Execution listing 413 also shows the time the debugging information for the program was recorded at 417, the amount of leaked memory at 419, and a file 421 which contains the debugging report for the execution.
  • This file is one of the ones that is mapped into memory to provide debug data base 229.
  • Box 407 indicates the directory in which debugging reports may currently be found. The user can change the directory, and future debugging reports will be saved in the indicated directory. Box 409 indicates how many reports for the program will be saved; the user can of course change that value as well. If the selected program is currently being executed by debugger client 203, the user can click on update display button 411. In response thereto, web browser 249 sends a form together with Web server client 243 's URL.
  • the form indicates the program's pathname and the current settings in fields 407 and 409, and Web server client 243 responds to the form by performing a query on the information for the current execution of the program in shared database system 226 and making a new select page 401 in which execution listing 413 is updated to reflect the most recent updates of database 229 by debugger client 203. Further, the directory for the debugging reports and the number of reports saved will be changed as indicated in boxes 407 and 409.
  • HTML page is selected by selecting one of the tabs 403.
  • web browser 249 responds by sending the URL of client 243 together with a form which contains an indication of the tab that has been selected, the pathname of the program, and an indication of which execution listing was selected.
  • Web server client 243 responds to the information in the form by performing a query on data base 229 which obtains the information for the selected program that is required to make the selected HTML page and returning the page with the information to browser 249. If the selected execution is a current execution, the selection of a new HTML page will cause a new query of database 229 for information about the current execution, and consequently, selection of a new HTML page has the same effect as clicking on Update Display button 411.
  • FIG. 5 shows leak information page 501.
  • This page shows detailed leak information for the program execution selected by the user from select page 401.
  • the page has the same general format as page 401; information specific to the page is contained in area 502.
  • Area 502 has two main parts: control panel 504 and leak information display 525.
  • the settings of control panel 504 determine what information appears in leak information display 525.
  • Control panel 504 contains update display button 411 and a collect now button 503.
  • collect now button 503 When the user clicks on collect now button 503, the form transmitted with the URL to web server client 243 indicates that client 243 is to send a collect command to debugger client 203, so that debugger client 203 will perform a garbage collection in the near future.
  • the control panel further contains field 507, which permits the user to filter the leak information, field 509, which specifies a sort mode, and an indication of how much of the information is to be displayed.
  • field 507 which permits the user to filter the leak information
  • field 509 which specifies a sort mode
  • Leak information display 525 contains a leak listing 527 for each leak.
  • the listings 527 are ordered by leak size.
  • Each listing 527 contains leak statistics 513 and a leak stack trace 529.
  • Leak statistics 513 specify the amount allocated and the amount leaked in terms of both bytes and objects.
  • Leak stack trace 529 indicates the execution path that resulted in the leak.
  • the execution path has columns for program counters (523), line numbers (521 ), file names (519), function names (517), and module names (515). It thus relates the leak to program counter positions in modules and relates the program counter positions to the functions the program counters are in, the files that contain the source code for the functions, and the line number in the source code corresponding to the program counter position.
  • the information for columns 515, 519, and 521 is of course obtained from symbol table 313 for the program.
  • FIG. 6 shows allocation profiler page 601.
  • This HTML page shows allocations of memory on the heap during execution of the program.
  • the page has in general the same form as page 501, with the changes that correspond to its function.
  • the sort 603 is now by live memory
  • area 605 displays live and allocated memory in terms of bytes and objects
  • stack trace 529 gives the execution paths for the allocation events.
  • the queries that produce the information on form 601 of course are directed to allocation information rather than leak information.
  • Fig. 7 shows heap statistics page 701. This page contains valid information only when debugger client 203 is currently executing a program. Page 701 displays a running total of leaked memory recovered by Great Circle and of memory that has been unmapped by explicit user calls to free ( ) or delete made by the program. It also breaks down the total current heap, which is memory actually still in use, into several categories: • Live memory, shown at 703, includes all data structures that are currently being used (or at least explicitly pointed to) by program 208.
  • Debug info shown at 709
  • Free lists shown at 711, are structures that Great Circle, like any memory allocation function, stockpiles in order to perform future allocations rapidly and efficiently, without inducing excessive memory fragmentation.
  • Waste shown at 713, unlike free lists, is memory that is temporarily unavailable for future allocations because of fragmentation.
  • the sum of these categories is the current heap size, shown at 717.
  • the current heap size is the actual current footprint in memory of program 208 that debugger client 203 is currently executing. Since Great Circle attempts to reduce the footprint whenever it can, Heap Statistics page 701 also shows the maximum heap at 719.
  • the maximum heap is the high-water mark of heap usage over the life of program 208.
  • HTML pages which the user may select include a settings page, which permits the user to set and read a number of parameters that control the operation of debugger client 205, a log file page which permits the user to view an ASCII log file produced by debugger client 203, a page whose selection causes a URL to be sent to Geodesic Systems' Web site, and a page whose selection causes a page in the help system for the debugging system to be displayed.
  • HTML pages 501 and 501 also include help buttons for help that is particularly relevant to those pages.
  • the settings page and the log file page will be discussed in greater detail.
  • FIG. 8 shows the buttons 801 of the settings page.
  • Each button shows the current setting of the parameter specified by the button, and in the case of the writeable parameters indicated at 805, 807, 809, 811, 813, 821, 823, 825, and 827, debugger client 203 responds to the new parameter value in real time when the user changes the parameter and then clicks on update settings button 803.
  • Clicking on button 803 causes web browser 249 to send a form to Web server client 243 that contains the new parameter settings and Web server client 243 responds to the form by making an update query with the settings that updates the relevant parameters in debugger settings 311.
  • debugger client 102 queries database 226 to obtain the current values of settings 311 as part of each allocate operation, and on reading the settings, it updates its parameter values and begins to operate according to the updated parameters. Changes made via the settings page affect only the program execution during which they are set. Default values for the settings may be supplied when debugger client 203 is configured.
  • the log file page displays the log file, gc . log, that was generated by Great Circle for this program run. This file, unlike the files that make up database 229, is in a plain ASCII format that is well suited for piping through custom scripts provided by the user of debugger system 201.
  • the HTML pages produced by Web server client 243 in response to inputs from Web browser 249 provide a user interface to debugger client which is clear and easy to use and can be employed on any system which has a standard Web browser and a connection to Internet 259.
  • the interface further permits the user to view the results of past executions of programs by debugger client 203 and to view the results of a current execution as it happens. While viewing results being produced by a current execution, the user may send a collect command and/or new parameter settings to debugger client 203, and debugger client 203 will respond in real time to the collect command and parameter settings.
  • the memory debugger of the preferred embodiment is a mode of operation of the Great Circle memory management system.
  • two improvements in memory allocation and program footprint management that are employed in the version of the Great Circle memory management system which is used in the preferred embodiment of the debugging system are described in detail.
  • the first technique is intended to reduce internal fragmentation in allocators that use a BiBoP scheme (Big-Bag-of-Pages)
  • a BiBoP allocator allocates objects that are smaller than a memory page from a free list in which the objects are takes from page-size containers. All of the objects allocated from a given free list have the same size. Thus, when the allocator is given the size of the object it is to allocate, it allocates from the free list into whose objects the object to be allocated fits most closely. For details, see Hans-Juergen Boehm and Mark Wieser, "Garbage collection in an uncooperative environment", Software Practice and Experience, 18(9): 807-820, September 1988.
  • the second technique is intended to reduce external fragmentation and uses virtual memory primitives that can be found in most modern operating systems.
  • Allocators such as the one described in the Boehm paper cited above have a number of free lists for allocating objects of a size such that more than one will fit onto a memory page and a single free list for allocating objects that are larger than that.
  • Objects of a size such that more than one will fit onto a memory page are termed small objects, and those that are larger than that are termed large objects. With all of the small object free lists, the container size is 1 page.
  • the first technique introduces free lists for allocating objects that do not fit compactly into a single-page container but that do fit compactly into a container made of a number of consecutive pages.
  • the objects on these free lists are termed herein medium objects.
  • medium objects there are a number of free lists for medium objects, with the medium objects on a given free list all having the same size, and the allocator takes a medium object from the free list into whose objects the object being allocated fits most closely.
  • the container size for all objects which are smaller than or equal to a page is a page; for all objects which are larger than a page, the container is the minimum number of pages required to contain the object.
  • An important drawback of this approach is that the internal fragmentation with small objects that do not fit well into a single page or large objects that do not fit well into a multiple of pages can be very large. For example, if a small object is a little larger than half a page size, almost half of the page which contains it will be wasted, and if a large object is a little larger than a page, almost the entire second page will be wasted.
  • medium objects can be seen from the following example: let us assume that there is a request to allocate an object of 2050 bytes in a system that has a page size of 4096.
  • an object of such a size is a small object, but only one such small object will fit in a single page, and consequently, the allocator will return an object of 4096 bytes because the page cannot be subdivided into any smaller equal-size portions that will contain the object to be allocated.
  • An allocator that uses medium objects can divide a container made up of two consecutive pages into 3 objects of size 2730 bytes (plus 2 spare bytes that cannot be divided), and return one of these objects. In the first case, 2046 bytes are wasted, and in the second case only 680 bytes are wasted.
  • the internal fragmentation is the percentage of wasted space for a given object size. It can be computed by subtracting the requested object size from the real size of the object returned by the allocator and dividing the result by the real size.
  • the fragmentation for objects with sizes around the size of the page approaches 50%. Especially at sizes 2049 and 4097 bytes (one byte after half the page size and one byte after the page size) the fragmentation reaches 50%. With medium objects however, the internal fragmentation for these sizes may be bounded to lower levels, with the bounds depending on the fit between the sizes of small and medium objects and their containers.
  • the memory allocator of Great Circle allocates objects out of three kinds of containers: small objects are allocated out of single-page containers. Medium objects are allocated out of containers that are made of consecutive pages. Large objects are objects for which more than one page is allocated.
  • the small and medium object allocators have a separate bucket for each of the sizes of objects that they allocate. Each of the buckets is what is termed a segregated free list. See Paul R. Wilson, Mark S. Johnstone. Michael Neely, and David Boles, Dynamic Storage Allocation: A survey and Critical Review, available for anonymous FTP from cs.utexas.edu in /pub/garbage/ in October, 1998.
  • FIG. 9 shows the structure of a bucket 901.
  • Each bucket 901 is made up of a page information structure 907 which includes information 904 indicating the size of the objects that will be allocated from the bucket and a free list pointer 906 indicating the head of the list of unallocated objects 911 contained in bucket 901.
  • the objects 911 are stored in one or more containers 917, which are made up of one or more contiguous logical pages 905.
  • the size of the container is the number of logical pages 905 which reduces waste 910 to a minimum for the size of object 911 stored in the bucket.
  • Each object 911 (i) which has not yet been allocated has an object free list pointer 913 pointing to the next unallocated object 911.
  • the free list pointer 913 is overwritten by data and free list pointer 906 is set to point to the next unallocated object 911 in the list.
  • the allocator to which the bucket belongs links the freed object in at the head of the free list. This has the advantage that an object that has been used tends to be reused before it is removed from the caches in the machine that the program that uses the object is executing on.
  • the allocator that uses the bucket obtains an additional container 917 for the bucket from the large object allocator.
  • FIG. 11 shows small object buckets, medium object buckets, and large object free list as they may be employed in a memory allocation system that employs small and medium objects.
  • There is a set of small object buckets 1107 for small objects 1 104 that is objects that have sizes such that they fit into a 1-page container 1105 with little waste.
  • Each small object bucket 1103 contains small objects of a single size.
  • each medium object bucket 1109 contains medium objects of a single size, and the size of multi-page container 111 is chosen to minimize waste for the size of medium object in bucket 1109.
  • Large object free list 115 can be seen as a free list in which each large object to be allocated has its own bucket that contains the number of pages required to allocate the large object.
  • Large object free list 115 is a list of free logical pages that is ordered by address. Ordering by address permits coalescing of objects that are returned to the large object free list. The allocator satisfies a request for a large object by returning the first block of pages in the free list that is large enough to accommodate the large object.
  • a preferred embodiment sets up buckets 1107 and 1 113 as required by the page sizes and data granularities of the system that the allocator is allocating memory for.
  • the algorithm first sets up small object buckets for single-word objects and objects containing 1 to 8 double words; then the algorithm sets up buckets for objects of increasing size up to 1 page. For each size, the algorithm determines how much waste will results if a small object bucket 1107 is made for the size, and if the waste is above a threshold, the algorithm determines the size of container required for a medium object bucket for the object and sets up the medium object bucket. It should be noted here that medium objects need not be less than a page in size. For example, if objects of a size of 1 1/3 pages were common, it might be worthwhile to set up a medium object bucket that had a container size of four pages. Free list defragmentation and footprint reduction: FIG. 10
  • the second technique reduces fragmentation in free list 1115 of large objects. Notice that the small and medium object buckets 1107 and 1113 are relatively unaffected by external fragmentation, because the free elements in a small or medium object bucket are always large enough to satisfy an allocation request where the object being allocated is taken from the bucket. In addition, the technique can also uncommit physical memory pages to which logical memory pages in the free list are mapped, allowing long-running programs to reduce their swap space requirements when their memory requirements decrease.
  • Free list defragmentation is based on the observation that moving collectors make the free memory space contiguous by moving the live data. However, the free memory space by definition contains no live data; consequently, it can be made contiguous simply by committing the physical pages corresponding to the free memory space to a different portion of the virtual address space where the free memory space will have contiguous virtual addresses. This provides a major defragmentation benefit of moving collection without the complexity, restrictions, or expense of moving data and updating pointers.
  • Fig. 10 shows how defragmentation works.
  • On the left side there is a representation 1005 of the heap in virtual memory and in physical memory prior to footprint reduction.
  • the heap is part of an arena 1006 which is a range of contiguous virtual addresses.
  • Arena 1006 is subdivided into logical pages 905, some of which have physical pages 1002 committed to them in the swap space.
  • seven logical pages 905 Prior to defragmentation, seven logical pages 905 have physical pages 1002 committed to them; four of the pages, indicated by L, contain live data; three of the pages, indicated by F, are free: three pages with free objects, and three pages, indicated by the fact that they are blank, are uncommitted, i.e., do not have swap space assigned.
  • the three free logical pages 905 do not occupy consecutive locations in the virtual address space, and therefore a request to the allocator for a three- page object cannot be satisfied with the available free logical pages.
  • Defragmentation de- commits the physical pages 1002 from the three free non-consecutive logical pages 905 to which they are committed in representation 1005, making them available to be committed to consecutive logical pages 905, as shown at 1009 in representation 1007.
  • the large object can thus be allocated from the pages at 1009 without increasing the swap space.
  • the pages of the heap are represented by an array of bytes called page-flags, where each byte represents a page. Every bit in a byte represents a different characteristic of the page.
  • page-flags every bit in a byte represents a different characteristic of the page.
  • the array is shown at 1011. There is a page flag entry 1011 for each logical page 905 in arena 1006; the relevant flags appear as committed bit 1015, free bit 1017, and recently-used bit 1019.
  • Committed bit 1015 is used in the garbage collector's decommit barrier. Before the garbage collector references a logical page 905, it checks committed bit 1015 in the logical page's page flag entry and makes the reference only if the committed bit is set.
  • the allocator creates arena 1006 by mapping a large sequence of logical pages 905.
  • This mapping operation reserves the virtual address space required for the logical pages, but does not commit swap space to any of the pages. Since the arena has been mapped, no other memory map operation will return a page in this range. However, since no swap space is reserved, a memory read/write operation to a word in this range of pages at this point in the execution of the program may result in a segmentation violation. Finally, all of the flags in the PFEs 1013 for logical pages 905 are cleared.
  • the allocator will do the following. It will search in page- flags 1011 for a set of free logical pages 905 in arena 1006 which are at contiguous locations in the virtual address space and which are together large enough to satisfy the request or some larger amount if the requested size is too small. Then it will call a virtual memory operation to commit swap space for this range of pages.
  • the swap space of course includes the earlier decommitted physical pages 1002. The reason a larger amount is committed if the requested size is too small is to amortize the cost of the virtual memory operation.
  • Footprint reduction is done using recently-used bits 1019. Whenever a group of logical pages 905 is returned to the free-list, the corresponding recently used-bits and the free- bits are set. The recently used-bits tell the allocator that the corresponding page has been recently used and that it is not a good candidate for footprint reduction. During a footprint reduction, the physical pages 1002 corresponding to logical pages 905 whose recently-used bits 1019 are cleared are uncommitted from those logical pages 905, i.e., committed bits 1015 for the logical pages 905 are cleared and the swap space represented by the physical pages 1002 is returned to the operating system. When the execution of the program terminates, the recently used-bit is cleared for all of the logical pages 905 in its arena 1006.
  • the frequency with which footprint reduction is executed is linked to the activity of the allocator.
  • a footprint reduction is performed after a pre-specified number of garbage collections. If a logical page 905 has remained on free list 901 during this pre-specified number of garbage collections, its physical page 1002 is uncommitted and returned to the operating system. Programs that explicitly manage their memory will run a footprint reduction after a pre-specified number of bytes have been explicitly returned to the free-list. Alternatively Great Circle supplies a footprint reduction procedure that the program can explicitly call after periods of heavy allocation.
  • Alternatives to the commit uncommit operations are the map/unmap operations. The difference is that the uncommit memory operations return the associated swap space to the operating system, however the address space range is kept.
  • the unmap operation returns both the address space and the swap space to the operating system.
  • the map operation can return memory mappings that are not contiguous, resulting in a heap whose virtual address space has holes.
  • Another modification for footprint reduction is that during the allocation of large objects every search in free list 1115 always starts from the first block in the list. This will result in reusing the same large objects most of the time and leaving the least used objects at the end of the list. If a new search started where the previous one ended it would reuse all the objects in the list and would not give the opportunity for footprint reduction.
  • debugger is a memory debugger and the interfaces employed by the users include a CLI interface and a Web browser interface. It will, however, be immediately apparent to those skilled in the relevant arts that debugging systems of the type described herein may be made using any type of interactive debugger and any type of user interface.
  • the database may be implemented using a commercially-available database system, as well as one designed specifically for the debugging system.
  • the manner in which the debugger, the debugging system, and the user interface components interact will of course depend on the requirements of the debugging system and the capacities of the database system.
  • the process architecture of the debugging system may similarly vary between one extreme in which all components execute in a single process and another extreme in which each component consists of one or more processes.
  • the Detailed Description has further included details of the HTML pages used in a preferred embodiment; however, what is on an HTML page in a system that is built according to the principles disclosed herein and that employs a Web browser as a user interface will depend on the nature of the debugging being done and the taste of the designer of the HTML pages.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Debugging And Monitoring (AREA)

Abstract

L'invention concerne un outil interactif de débogage de programmes dans lequel un système de base de données permanentes répond, d'une part, à des demandes de mise à jour contenant des informations de débogage provenant d'une source d'informations de débogage et, d'autre part, à des demandes de lecture d'informations de débogage provenant d'une interface interactive. Cette interface produit les demandes de lecture en réponse à des entrées utilisateur, et formate les résultats des demandes de lecture, selon la demande de l'utilisateur. Une source d'entrées est constituée par un navigateur classique du Web pour lequel l'interface interactive fonctionne en tant que serveur du Web. Ce système comprend également une voie de commande via laquelle la source d'informations de débogage reçoit les commandes provenant de l'interface interactive. Dans un mode de réalisation, la voie de commande est implémentée dans la base de données. Dans une implémentation décrite, la source d'informations de débogage fournit des informations de débogage de mémoire. L'invention concerne également des techniques d'utilisation d'un système de gestion automatique de la mémoire, afin de réduire la fragmentation de la mémoire et la dimension de l'encombrement du tas.
EP98957409A 1997-10-29 1998-10-28 Outil interactif de debogage comprenant un systeme de base de donnees de debogage Withdrawn EP1423792A4 (fr)

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
US6399297P 1997-10-29 1997-10-29
US63992 1997-10-29
PCT/US1998/022923 WO1999022288A2 (fr) 1997-10-29 1998-10-28 Outil interactif de debogage comprenant un systeme de base de donnees de debogage

Publications (2)

Publication Number Publication Date
EP1423792A2 true EP1423792A2 (fr) 2004-06-02
EP1423792A4 EP1423792A4 (fr) 2009-05-27

Family

ID=22052835

Family Applications (1)

Application Number Title Priority Date Filing Date
EP98957409A Withdrawn EP1423792A4 (fr) 1997-10-29 1998-10-28 Outil interactif de debogage comprenant un systeme de base de donnees de debogage

Country Status (3)

Country Link
EP (1) EP1423792A4 (fr)
CA (1) CA2307297C (fr)
WO (1) WO1999022288A2 (fr)

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7039691B1 (en) * 2000-06-02 2006-05-02 Sun Microsystems, Inc. Java virtual machine configurable to perform as a web server
US7685569B2 (en) * 2001-03-01 2010-03-23 International Business Machines Corporation Navigation in computer software applications developed in a procedural language
US8239820B1 (en) 2005-07-18 2012-08-07 Progress Software Corporation Compliance method and system for XML-based applications
US8301720B1 (en) 2005-07-18 2012-10-30 Progress Software Corporation Method and system to collect and communicate problem context in XML-based distributed applications
WO2009037106A2 (fr) * 2007-09-20 2009-03-26 Telefonaktiebolaget L M Ericsson (Publ) Procédé et appareil de débogage de code de téléphone mobile
US8060866B2 (en) 2007-10-19 2011-11-15 GE Intelligent Platforms, Inc Systems and methods for debugging multiple workflow instances

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4589068A (en) * 1983-10-03 1986-05-13 Digital Equipment Corporation Segmented debugger
US5408650A (en) * 1993-06-29 1995-04-18 Digital Equipment Corporation Memory analysis system for dynamically displaying memory allocation and de-allocation events associated with an application program
US5535329A (en) * 1991-06-21 1996-07-09 Pure Software, Inc. Method and apparatus for modifying relocatable object code files and monitoring programs
EP0729097A1 (fr) * 1995-02-07 1996-08-28 Sun Microsystems, Inc. Méthode et appareil de contrÔle d'accès à la mémoire pendant l'exécution d'un programme à fils multiples
US5553235A (en) * 1992-10-23 1996-09-03 International Business Machines Corporation System and method for maintaining performance data in a data processing system

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH05233326A (ja) * 1991-12-19 1993-09-10 Internatl Business Mach Corp <Ibm> コンピュータシステムにおいて事象を取り扱う方法及びシステム
US5644709A (en) * 1994-04-21 1997-07-01 Wisconsin Alumni Research Foundation Method for detecting computer memory access errors
US5812850A (en) * 1995-11-13 1998-09-22 Object Technology Licensing Corp. Object-oriented symbolic debugger using a compiler driven database and state modeling to control program execution
US5778230A (en) * 1995-11-13 1998-07-07 Object Technology Licensing Corp. Goal directed object-oriented debugging system
US5901315A (en) * 1997-06-13 1999-05-04 International Business Machines Corporation Method for debugging a Java application having native method dynamic load libraries

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4589068A (en) * 1983-10-03 1986-05-13 Digital Equipment Corporation Segmented debugger
US5535329A (en) * 1991-06-21 1996-07-09 Pure Software, Inc. Method and apparatus for modifying relocatable object code files and monitoring programs
US5553235A (en) * 1992-10-23 1996-09-03 International Business Machines Corporation System and method for maintaining performance data in a data processing system
US5408650A (en) * 1993-06-29 1995-04-18 Digital Equipment Corporation Memory analysis system for dynamically displaying memory allocation and de-allocation events associated with an application program
EP0729097A1 (fr) * 1995-02-07 1996-08-28 Sun Microsystems, Inc. Méthode et appareil de contrÔle d'accès à la mémoire pendant l'exécution d'un programme à fils multiples

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
SCHOLTEN J ET AL: "Monitoring multimedia systems" DISTRIBUTED COMPUTING SYSTEMS, 1992., PROCEEDINGS OF THE THIRD WORKSHO P ON FUTURE TRENDS OF TAIPEI, TAIWAN 14-16 APRIL 1992, LOS ALAMITOS, CA, USA,IEEE COMPUT. SOC, US, 14 April 1992 (1992-04-14), pages 377-380, XP010028253 ISBN: 978-0-8186-2755-2 *
See also references of WO9922288A2 *

Also Published As

Publication number Publication date
WO1999022288A3 (fr) 2004-03-18
CA2307297C (fr) 2009-07-21
WO1999022288A2 (fr) 1999-05-06
EP1423792A4 (fr) 2009-05-27
CA2307297A1 (fr) 1999-05-06

Similar Documents

Publication Publication Date Title
US6938245B1 (en) Interactive debugging system with debug data base system
US6460126B1 (en) Computer resource management system
US6658651B2 (en) Method and apparatus for analyzing software in a language-independent manner
EP0444315B1 (fr) Système et procédé pour recueillir des évènements d&#39;applications de logiciel
US7310718B1 (en) Method for enabling comprehensive profiling of garbage-collected memory systems
US5748878A (en) Method and apparatus for analyzing software executed in embedded systems
US5293614A (en) System and method for hard real-time garbage collection requiring a write barrier but no read barrier
US6769116B1 (en) Diagnostic technique for debugging memory corruption
EP0959409B1 (fr) Récupération dynamique de mémoire sans assistance de compilateur ou d&#39;éditeur de liens
CA1266533A (fr) Methode pour accroitre automatiquement la taille des segments d&#39;un fichier dans un systeme de traitement de donnees a memoire virtuelle segmentee en pages
EP1172729B1 (fr) Appareil et méthode de catalogage de données symboliques pour l&#39;utilisation dans l&#39;analyse de performance de programmes d&#39;ordinateur
US5613063A (en) Method and apparatus for checking validity of memory operations
US6434575B1 (en) Method of instrumenting garbage collection generating a trace file making a single pass analysis of object heap
US6429860B1 (en) Method and system for run-time visualization of the function and operation of a computer program
US5274811A (en) Method for quickly acquiring and using very long traces of mixed system and user memory references
US20030056199A1 (en) Hyperbolic tree space display of computer system monitoring and analysis data
US6754891B1 (en) Debugger system using tracepoints for computer software
TWI397814B (zh) 用於稽核記憶體之系統與方法
JPH06290084A (ja) 記号定義を再構成する方法と装置及びそれらに使用するコンピュータシステム
KR20010043785A (ko) 메모리 복구 방법
US20080163176A1 (en) Using Memory Tracking Data to Inform a Memory Map Tool
US20040111707A1 (en) Debugger for multiple processors and multiple debugging types
CA2307297C (fr) Outil interactif de debogage comprenant un systeme de base de donnees de debogage
US9110790B1 (en) Managing memory in displaying data storage system information
WO1998010346A1 (fr) Segment de memoire permanent pour objets-images dynamiques

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20000519

AK Designated contracting states

Kind code of ref document: A2

Designated state(s): DE FR GB

RAP1 Party data changed (applicant data changed or rights of an application transferred)

Owner name: VERITAS OPERATING CORPORATION

RAP1 Party data changed (applicant data changed or rights of an application transferred)

Owner name: SYMANTEC OPERATING CORPORATION

RAP1 Party data changed (applicant data changed or rights of an application transferred)

Owner name: SYMANTEC OPERATING CORPORATION

RIC1 Information provided on ipc code assigned before grant

Ipc: G06F 11/30 20060101AFI20090331BHEP

A4 Supplementary search report drawn up and despatched

Effective date: 20090423

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION IS DEEMED TO BE WITHDRAWN

18D Application deemed to be withdrawn

Effective date: 20090723