WO2000046678A1 - A method for back tracing program execution - Google Patents

A method for back tracing program execution Download PDF

Info

Publication number
WO2000046678A1
WO2000046678A1 PCT/US1999/029231 US9929231W WO0046678A1 WO 2000046678 A1 WO2000046678 A1 WO 2000046678A1 US 9929231 W US9929231 W US 9929231W WO 0046678 A1 WO0046678 A1 WO 0046678A1
Authority
WO
WIPO (PCT)
Prior art keywords
program
block
trace
code
computer memory
Prior art date
Application number
PCT/US1999/029231
Other languages
French (fr)
Inventor
Andrew E. Ayers
Anant Agarwahl
Richard Schooler
Original Assignee
Incert Software Corporation
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 Incert Software Corporation filed Critical Incert Software Corporation
Priority to AU20483/00A priority Critical patent/AU2048300A/en
Publication of WO2000046678A1 publication Critical patent/WO2000046678A1/en

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/362Software debugging
    • G06F11/3624Software debugging by performing operations on the source code, e.g. via a compiler
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/30Monitoring
    • G06F11/34Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment
    • G06F11/3466Performance evaluation by tracing or monitoring
    • 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
    • G06F2201/00Indexing scheme relating to error detection, to error correction, and to monitoring
    • G06F2201/835Timestamp
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2201/00Indexing scheme relating to error detection, to error correction, and to monitoring
    • G06F2201/86Event-based monitoring

Definitions

  • the first step in fixing the problem that causes a crash is to first find the problem. Finding the problem when computer crashes in production is particularly difficult because of the lack of information provided by the computer on the events leading to the crash.
  • tools exist that provide information about (1) the last instruction which executed when the computer crashed, and (2) data stored in registers and memory at the instant the crash occurred. Some of these tools also provide limited information on the sequence of subprogram calls that eventually led to the crash.
  • crash-analysis systems also provide information on the call sequence. In other words, the user can obtain the sequence of inter-program calls preceding the crash.
  • Tracing packages are not concerned with computer crashes to trigger a backtrace sequence. Since their major focus is to collect complete address traces, these techniques are not concerned with the amount of storage space required to store the trace information, for example, in memory or on disk, or in being active in production execution of application programs. Tracing packages also do not provide an integrated mechanism to correlate and display traced addresses with source-level statements to facilitate debugging of computer crashes.
  • Isolating the reason for a crash is somewhat easier when the crash happens during program development because the program can be compiled in debug mode and executed within a debugger. Within a debugger, the program is run slowly and more information is collected than during a normal production run, so that when the program crashes the user has more information with which to diagnose the problem.
  • a user can stop the program at any point during its execution.
  • Debuggers provide information on system state, such as program variable values at the halt point.
  • the user can also obtain the sequence of function calls (if any) that led to the specific function within which the program is halted.
  • the present invention is a method for producing such a sequence of instructions, or a crash instruction trace.
  • a crash instruction trace includes the instruction that crashed and some or all of instructions that preceded it. If the crash instruction trace contains all of the instructions executed from the start of the program to the crash point, then this sequence of instructions is called the complete crash instruction trace.
  • the crash instruction trace can also contain information on the specific times at which each instruction was last executed, in which case the trace is called a time- stamped crash instruction trace.
  • the availability of a crash instruction trace can facilitate isolating the problem that caused a crash, thereby speeding up the process of crash recovery or system stabilization.
  • a complete crash instruction trace can become very large. For example, a computer running 100 million instructions per second will produce a 100 million instructions per second that must be recorded in a complete trace. Therefore, it is sometimes preferable to store a last instruction trace.
  • a last instruction trace is a sequence of instructions sorted by the last time at which an instruction was executed.
  • a last instruction trace contains each instruction at most once. Accordingly, the maximum size of the last instruction trace is bounded by the size of the program itself.
  • a program contains the following eight instructions, each represented as a letter: A,B,C,D,E,F,G,H. Further suppose that during a successful execution of the program the execution sequence is A, B, C, F, G, F, G, F, G, F, G, B, C, F, G, F, G, F, G, F, G, H. For the purpose of the example, assume that the program starts at precisely 1AM and that each instruction executes in 1 microsecond ( ⁇ sec).
  • the trace A, B, C, F, G, F, G, F, G, F, G, B, C, F, G, F, G, F, G, F, G, F, G, F, G is the complete crash instruction trace.
  • B, C, F, G, F, G, F, G, F, G, F, G, F, G is a partial crash instruction trace.
  • the corresponding last crash instruction trace is A, B, C, F, G.
  • the time-stamped crash instruction trace is:
  • the last time-stamped crash instruction trace is:
  • traces such as a first instruction trace
  • the first instruction trace contains only one reference to each instruction. However, unlike the last instruction trace, it stores the sequence of instructions in the order in which they were first referenced.
  • Instruction traces can be important for purposes other than crash recovery, such as performance tuning and debugging, in which case some system event or program event or termination condition can trigger the writing out of an instruction trace.
  • the present invention applies to all of these event types.
  • the instruction trace preceding the trace triggering event is called the pre- trigger instruction trace. If the trigger is a crash then the pre-trigger instruction trace is simply the crash instruction trace.
  • a method of back- tracing execution of a computer program comprises identifying the blocks of the computer program, and instrumenting an original version of the program by adding instrumentation code to some or all of the blocks to form an instrumented program.
  • the instrumentation code records execution sequence information upon execution of the corresponding instrumented block to create a trace record of the executed program.
  • the sequence information can be recorded, for example, in memory, or to a disk file.
  • the execution sequence information for each block comprises a block identifier which identifies the corresponding block.
  • the identifier may be, for example, a starting or ending program counter of the corresponding block, or some other assigned identifier, possibly using Huffman coding to allocate the block identifiers .
  • a detailed back-trace is generated, after the program has executed, by replacing each recorded block identifier with program counters associated with each instruction in the corresponding block.
  • a block identifier is recorded in a condensed representation.
  • a few bits can be used to encode the direction taken by the program at each branch, e.g., one bit for each two- way branch.
  • the condensed representation can hold a plurality of block identifiers.
  • the condensed representation can be stored, for example, in a register which reduces the number of instructions added for each block. The register value is stored into memory when no more values can be written to it.
  • the condensed representation is then expanded by a post-processing step by storing the individual block identifiers contained therein into the trace record.
  • the trace record is stored in a circular buffer, in a region of memory separate from where the program is stored, and the buffer size is dynamically set.
  • each region is associated with a program or subprogram or a set of programs or subprograms and stores therein part of the trace record corresponding to the associated set of programs or subprograms, and the trace records themselves may be of different types.
  • Instrumentation preferably occurs at the binary level, but alternatively takes place at, for example, the source code level or at link time.
  • the trace record recorded is preferably presented to a user.
  • This can be in the form of assembly code, or more preferably, is in the form of source level code.
  • this is accomplished by maintaining, for each binary- level instruction, a pointer to a line of source code from which the binary-level instruction was generated.
  • the pointer is preferably determined from a compiler listing file.
  • repeat source level instructions due for example to one line of source code leading to several lines of binary-level instructions, are filtered out.
  • the program name corresponding to an instruction trace entry is preferably displayed.
  • a summary of the trace record recorded during execution of an instrumented program is presented to a user.
  • This can include the basic block lines identified in the trace record, as well as procedure calls identified in the trace record.
  • the summary can also include, for example, inter-module or inter-program calls identified in the trace record.
  • a table is maintained. Each entry in the table corresponds to a program block, and is preferably addressed by a hash of its corresponding block's program counter. This table can be used to produce a last instruction trace by recording a sequence indicator when recording the block identifier, or a first instruction trace by recording a sequence indicator for a corresponding block only the first time the block is executed.
  • the sequence indicator can be a time-stamp, and can be recorded, for example, upon either entry or exit into the corresponding block.
  • the sequence indicator can be a counter value, which, for example, increments its value after its value is recorded.
  • a time-stamp is recorded in place of the counter value.
  • a separate counter can optionally be maintained for each module, subprogram or procedure.
  • sequence indicators are store only when a specified event, which is preferably selected by a user, is detected by the instrumentation code.
  • Fig. 1 is a block diagram providing an example a sequence of program basic blocks.
  • Fig. 2 is a control flow diagram corresponding to the example of Fig. 1.
  • Fig. 3 is a schematic drawing showing how, in the present invention, instrumented code writes to a sequence record.
  • Fig. 4 is a flowchart of an embodiment of the present invention in which binary code is instrumented.
  • Fig. 5 is a flowchart of an embodiment of the present invention in which source code is instrumented.
  • Figs. 6A and 6B are block diagrams providing an example using of an optimization of the present invention used to eliminate instrumentation in many blocks.
  • Fig. 7 is a schematic drawing showing an optimized embodiment of the present invention in which identifiers are temporarily stored, in a condensed format, in a register or memory location.
  • Fig. 8 is a sample trace listing presenting source code.
  • Fig. 9 is a sample trace listing presenting source code from multiple subprograms.
  • Figs. 10A - IOC are schematic diagrams illustrating embodiments of the present invention create a last instruction trace (Fig. 10B) and a first instruction trace (Fig. IOC) for the control flow shown in Fig. 10A.
  • Fig. 11 is a schematic drawing showing how a preferred embodiment of the present invention operates with multiple programs, each having its own buffer.
  • Fig. 1 shows an example instruction sequence as the instructions reside in memory.
  • the instructions are grouped into identified blocks 31-35, where a block is a sequence of consecutive program instructions in which flow of control enters only at the beginning and leaves only at the end without halt or possibility of branching except at the end. (Aho, Sethi, and Ullman, "Compilers, Principals, Techniques and Tools," p. 528).
  • Fig. 2 shows a control flow graph representation of the instruction sequence of Fig. 1.
  • block 32 can be followed either by block 33 or by block 34.
  • block 34 the static locations of blocks within the stored program as shown if Fig. 1, often do not reflect the sequence in which the blocks are executed.
  • the goal of traceback is to provide the exact sequence in which the blocks were actually executed during an execution of the program.
  • Fig. 3 demonstrates a simple embodiment of the present invention, which inserts instrumentation code, shown as thick lines, e.g., reference 50, into each block.
  • the instrumentation code comprises one or more instructions into each block.
  • Blocks 51-55 are the instrumented versions of blocks 31-35, respectively, of Fig. 2.
  • the instrumentation code 50 in each executing block writes out an identifier of the corresponding block into a memory region explicitly created by this or other instrumentation code.
  • the identifier may, for example, be the address of the first instruction of its block, or it may comprise some other form of identification.
  • Huffman coding may be used to allocate compact identifiers for each block with a program or within a subprogram.
  • the identifiers are 1, 2, 4 and 5, corresponding to blocks 51, 52, 54 and 55 respectively.
  • This sequence of block identifiers comprises the sequence record 57.
  • the memory region is organized as a circular buffer, which is visible to the entire program.
  • the basic block's instrumentation code obtains the address of the first instruction of the basic block.
  • a unique identifier may be assigned to each block via a table or some other means, and the instrumentation code obtains the identifier. The address or identifier is then written into the circular buffer.
  • the buffer size limits the amount of traceback history that the program can achieve. Preferably, this limit can be set dynamically by the user.
  • Fig. 4 illustrates a preferred embodiment of the present invention.
  • original source code 301 is available, it is compiled at step 311.
  • the compiler typically provides an executable binary or object program 303, and a compiler listing 321, which provides a map from source code lines to the binary code.
  • step 311 is skipped and no compiler listing 321 is available.
  • the binary image 303 is instrumented at step 313, which produces an instrumented binary 305.
  • the instrumented binary 305 includes the added instrumentation code in each block, two of which 304 are shown. Adding instrumentation to an original program at the binary level, is described in U.S. Application Serial No. 08/985.052, "Test, Protection, and Repair Through Binary-Code Augmentation,” filed December 4, 1997, which is incorporated by reference herein.
  • the instrumentation code 304 records, or writes out, into a separate region of memory a sequence record 307 comprising sequence information, e.g., corresponding block identifiers, as indicated by arrows 306.
  • sequence record 307 is post-processed at step 317 such that each entry representing a basic block is replaced with the set of program counters (PCs) in the block, thereby producing the desired trace record 309.
  • PCs program counters
  • a presenter 319 then presents the trace record 309 to a user, for example, by presentation on a monitor 103, or sending the record to a printer 101 or to a disk file 105 for later analysis. If the compiler listing 321 is available, source code corresponding to the PCs can be displayed.
  • Fig. 5 shows, if source code 201 is available, then alternatively, the instrumentation can be made at the source-level, at step 211. In this case, source level recording statements are added to the program, for example, in C or Cobol.
  • the resulting instrumented source program 203 is then compiled at step 213, producing both a compiler listing 221 and an instrumented binary 205.
  • the instrumented binary 205 is executed 215, producing both normal program results 223 and a sequence record 207 written, as indicated by arrows 206, by the instrumentation code 205.
  • the post process step 217, trace record 209, presenter 219, monitor 103, printer 101 and disk storage 105 correspond to the same features of Fig. 4.
  • the post processor 217 (Fig. 5), 317 (Fig. 4) is preferably triggered by some event such as a crash, or some other user-defined event.
  • instrumentation inserted into the program detects some designated condition defining an event, e.g., a negative value in a register when a positive value is expected.
  • Binary code instrumentation can be viewed as an enabler of crash instruction trace technology because it adds little overhead to the code and does not require the availability of the program sources. Not surprisingly, it is the preferred method for the current invention, because the low overhead enables trace instrumentation to be introduced in a production environment.
  • binary code instrumentation is the assumed means of inserting the recording instructions.
  • source-level instrumentation or link-level instrumentation can be used to achieve the same goal if desired.
  • the instrumentation code creates or allocates a memory region in which to store the trace or sequence information.
  • the instrumentation preferably creates a memory region for each program or subprogram in which each program or subprogram respectively stores its corresponding trace information. In this manner, the traces of each program or subprogram remain untangled.
  • Figs. 6A and 6B provide such an example using blocks 52-55.
  • execution of a block 52 may be followed by execution of either block 53 or block 54. Both blocks 53 and 54 are always followed by block 55. Only one of blocks 53 or 54 need be instrumented. Here, for example, blocks 52, 53 and 55 are instrumented, while block 54 is not instrumented. If, in Fig. 6A, block 53 executes as indicated by the heavy lines, the sequence record 57 written by the instrumented blocks will contain the identifiers 2, 3, 5 corresponding to blocks 52, 53 and 55.
  • Fig. 7 demonstrates another optimization, which uses path encoding, in which a condensed representation of a sub-sequence is maintained in a register or memory location 413.
  • the program control flow graph is first split up into a preferably minimal set of unique single-entry multiple-exit DAGs (directed acyclic graphs), using standard techniques, for example, by using depth first search and marking to identify backedges, and then using each backedge in addition to the graph entry points as DAG headers.
  • Each DAG is assigned a unique code word or identifier.
  • the instrumented code of each block within a DAG can perform a quick operation on a register or memory location such as appending or adding its identifier. If a register is used, then after several such operations, the accumulated encoding can be written out to the trace record in memory. For example, assume that the sequence record during some execution is currently as shown at 411 A. Suppose also that register 413, which in this example comprises four bytes, is clear. Referring to the control flow diagram of Fig. 3, assume the sequence of executed blocks is: 51, 52, 53, 55.
  • the instrumentation code shifts or ORs the corresponding identifier into the register 413, resulting in the sequential configurations, or path codes, shown at 413A-413D for blocks 51, 52, 53 and 55 respectively.
  • the instrumentation code sees that the register 413 is full, it stores all the contents of the register 413, i.e., the four identifiers, into the sequence record, so that the sequence record is as shown at 41 IB.
  • An alternate encoding scheme assigns an integer weight to each block or control-flow edge between blocks, so that each possible path within the DAG produces a unique sum, as described by Ball and Larus, in "Efficient Path Profiling," Proceedings of Micro-29, 1996.
  • the instrumentation for each block or edge adds in its weight.
  • a preferred implementation of this scheme chooses power-of-two weights, so that adding in a weight is accomplished by setting a single bit, for example with a single logical-OR instruction.
  • a few bits can be used to encode the direction taken by the program at each branch, for example, one bit for a two-way branch, or two bits for a three- or four-way branch
  • the size of the identifiers, and the method used, e.g., shifting, adding, etc., the number of identifiers temporarily stored in the register or memory may be different.
  • the register and the unique DAG code is stored to memory at each exit point of the DAG. Together, the DAG code and the path code within the DAG uniquely identify the dynamic program flow. If the path code word is maintained in memory, an OR immediate instruction, if available, can be used to maintain the path code directly in memory, thereby avoiding having to store the register in memory when the DAG is exited.
  • the trace record can be presented to a user as a sequence of binary instructions or their assembly language representations, or mnemonics.
  • an instruction trace can also be presented to the user in source form to facilitate debugging by a user.
  • Fig. 8 shows a sample source code trace listing 401 A, comprising three columns.
  • the first column 403 shows the name of the program, sub-program or subroutine.
  • the second column 405 shows the line number of the corresponding code, and the third column shows the actual source code from which the binary code was produced.
  • Fig. 9 illustrates a similar sample source code trace listing 402, produced by a preferred embodiment which is useful when multiple programs are running, i.e. where an application comprises several programs. If buffers are allocated to each subprogram and to each program, using either time-stamps or sequence numbers or both, then the postprocessor displays a crash or event instruction trace which includes three pieces of information per line of code: the program name, the line number, and the specific source.
  • Fig. 9 the traces of two programs (subprograms), AGYTCOR and CASHBAL are shown.
  • the first part 401 A corresponds to the trace 401 A of Fig. 8 and corresponds to the program AGYTCOR.
  • the second part 40 IB shows the trace for the program CASHBAL.
  • Source code to the user is accomplished, for example, by maintaining for each binary/assembly instruction, a pointer to the source line that produced the instruction. There are many ways in which this information can be obtained. Most commonly, compilers produce such information. Compiler listing files also commonly contain the source code lines and the corresponding binary code lines. Prior to displaying the trace to a user, a post-processing step can convert each line of binary code or assembly code to the corresponding source statement.
  • a further optimized embodiment of the present invention therefore filters out repeat source level instructions, for example, by replacing multiple identical source lines in the trace display with a single line.
  • a preferred embodiment optionally presents summary trace information to the user.
  • Such summary information may comprise, for example, basic block lines, procedure calls or inter module/program calls.
  • the present invention can produce other types of traces, as now discussed.
  • Figs. 10A - IOC demonstrate how alternative embodiments of the present invention can create a variety of traces such as a "last instruction trace” and a "first instruction trace.”
  • the control flow graph of Fig. 10A corresponds to that of Fig. 3.
  • Fig. 10B and IOC assume the control flow indicated by the heavy line 59.
  • the order of execution of the blocks is: 51, 52, 53, 55, 51, 52, 54, 55.
  • Fig. 10B illustrates a preferred manner of creating a last instruction trace.
  • a table 71 is maintained wherein each entry 51A-55A is associated with a specific corresponding block 51-55, respectively.
  • a time-stamp is recorded in the memory buffer at the corresponding location.
  • each entry is marked with an X to indicate the corresponding block has not yet executed.
  • the timestamp here a 1
  • the timestamps are stored into the corresponding location 51 A, as indicated at 71 A.
  • timestamps indicating the respective times of execution here 2 and 3, are stored in the corresponding locations 52A and 53 A, as indicated at 7 IB and 71 C respectively.
  • 71 A - 71H show the changes to the table 71 as each block is executed. Note that, for example, at 7 IE, when block 51 executes a second time, the new timestamp, here a 5, overwrites the old timestamp.
  • the post-processor After execution of the program, or upon some triggering event such as a system crash, the post-processor writes out the sequence record 73.
  • the blocks By ordering the timestamps in reverse order, the blocks are ordered by last execution, and only the last execution of each block is shown. Thus, this is a last instruction trace.
  • the blocks could also be ordered from first to last, however this is still a last instruction trace.
  • hashing techniques can be used in combination with the block addresses to identify corresponding locations within the table.
  • each writing of the time-stamp writes over the previous value stored in the entry corresponding to the block, although in other types of traces may not be desired.
  • Fig. IOC demonstrates an alternative embodiment which produces a "first instruction trace,” in which the first execution of a block is recorded.
  • a buffer 75 is allocated, having an entry 51B-55B corresponding to each block 51-55 in the program .
  • Each entry is initialized to some known value such as -1.
  • a time-stamp is recorded only if the current value in the record is -1. Otherwise no value is recorded.
  • 75A-75H depict the state of the table 75 as each block is executed.
  • the blocks are ordered into a sequence record 77 by time-stamps. Because only first execution times are recorded, the resulting trace is a first instruction trace.
  • any or all of a crash instruction trace, a first instruction trace and a last instruction trace can be stored
  • the circular buffer approach can be combined with other trace methods, such as the first or last instruction trace. This combination is valuable when, for example, the user wants a very long instruction trace.
  • a small loop in one of the program modules, subprograms, or procedures can completely fill up the buffer. Instead, it is preferable to store sequences related to each program module in a separate buffer such that memory is allocated as and when each module executed.
  • a circular buffer 64, 66 is allocated to each module, ProgA and ProgB respectively.
  • Instrumentation at the beginning of a module creates the module-specific buffer.
  • the instrumentation code records the current time.
  • the instrumentation code of block 51 records time-stamp Tl.
  • the block instructions or identifiers 1 and 2 corresponding to blocks 51 and 52, are recorded.
  • blocks 61 and 62 from module ProgB are called and executed before block 54.
  • the instrumentation code from block 61 writes a time-stamp T2 into ProgB's buffer 66, and then blocks 61 and 62 write their identifiers 1 and 2 into the buffer 66.
  • time-stamps can be stored upon each exit, or on both entry and exit. Time-stamps can also be written by the runtime system.
  • sequence records 64, 66 need not be the same type.
  • record 64 may record every execution of every block of ProgA, while record 66 may be a last instruction trace.
  • a circular buffer represents only module entries and/or exits.
  • the instrumentation writes the module identifier into this module-level circular buffer.
  • a record of the executed module sequence is thus recorded.
  • the complete history is then obtained by combining the module-level trace with the intra-module traces obtained within the circular buffer.
  • a global sequence number or counter is maintained in a register or in memory. Each time the value of the counter is written into the sequence record, the counter is incremented.
  • Alternative embodiments can also have counters allocated for program modules, subprograms, and procedures.
  • a preferred method is to resort to using a time-stamp when a counter reaches a preset high limit.
  • a buffer is written out or displayed when the instrumentation detects some event.
  • the event is chosen by the user and special instrumentation instructions are inserted to check for the user specified condition. When the condition is met, the buffer is written out. Different events can be assigned to trigger different buffers.

Abstract

A method of back-tracing execution of a computer program, where the computer program comnprises a plurality of blocks, comprises instrumenting an original version of the program by adding instrumentation code to some or all of the blocks to form an instrumented program. Instrumentation can be added at the binary or source level, or at link time. The instrumentation code records execution sequence information upon execution of the corresponding instrumented block to create a trace record of the executed program. The execution sequence information for each block comprises a block identifier which identifies the corresponding block. A detailed back-trace is generated, after the program has executed, by replacing each recorded block identifier with program counters associated with each instruction in the corresponding block. The application may comprise several programs or subprograms, in which case separate regions of memory can be maintained. Each region is associated with a program or subprogram or set of programs or subprograms and stores therein part of the trace record corresponding to the associated set of programs or subprograms. The trace records themselves may be of different types. After execution, the trace record is presented to a user, in the form of assembly code, or more preferably, in the form of source level code. In an alternative embodiment, a summary of the trace record recorded during execution of an instrumented program is presented to a user. Various types of traces can be produced, including a last instruction trace and a first instruction trace.

Description

A METHOD FOR BACK TRACING PROGRAM EXECUTION
BACKGROUND OF THE INVENTION
Computers are known to terminate abnormally, or crash, during program execution for many reasons, including accessing invalid memory locations, going into an infinite loop, running out of memory, accessing an invalid device, and so on. Although modern software engineering methodologies attempt to minimize the possibility of crashes, they have not been able to eliminate them.
When a computer runs an important aspect of a business, it is critical that the system be able to recover from a crash as quickly as possible, and that the cause of the crash be identified and fixed to prevent further crash occurrences, and even more importantly, to prevent the problem that caused the crash from causing other damage such as data corruption.
The first step in fixing the problem that causes a crash is to first find the problem. Finding the problem when computer crashes in production is particularly difficult because of the lack of information provided by the computer on the events leading to the crash. In modern mainframe computer environments, for example, tools exist that provide information about (1) the last instruction which executed when the computer crashed, and (2) data stored in registers and memory at the instant the crash occurred. Some of these tools also provide limited information on the sequence of subprogram calls that eventually led to the crash.
Systems such as Abend- Aid (tm) from Compuware Corp. provide only the last instruction before a crash. Abend- Aid also provides information on the state of the system when it crashed. The state includes the final values of registers and memory locations.
Where multiple programs run on a computer system and call each other, some crash-analysis systems also provide information on the call sequence. In other words, the user can obtain the sequence of inter-program calls preceding the crash.
Several packages have existed for nearly two decades that provide address traces of programs. For example, Henry, "Tracer- Address and Instruction Tracing for the VAX Architecture, "Unpublished Memo, University of California, Berkeley, November, 1984, or Agarwal, Sites, and Horowitz, "ATUM: A New Technique for Capturing Address Traces Using Microcode," In Proceedings of the 13th Annual Symposium on Computer Architecture, Pages 119-127, June 1986, or Ball and Larus, "Optimally Profiling and Tracing Programs," TR #1031, September 1991, Computer Sciences Department, University of Wisconsin-Madison. These address tracing packages focus on creating address traces of complete program runs or of sampled intervals of program runs.
These tracing packages are not concerned with computer crashes to trigger a backtrace sequence. Since their major focus is to collect complete address traces, these techniques are not concerned with the amount of storage space required to store the trace information, for example, in memory or on disk, or in being active in production execution of application programs. Tracing packages also do not provide an integrated mechanism to correlate and display traced addresses with source-level statements to facilitate debugging of computer crashes.
Isolating the reason for a crash is somewhat easier when the crash happens during program development because the program can be compiled in debug mode and executed within a debugger. Within a debugger, the program is run slowly and more information is collected than during a normal production run, so that when the program crashes the user has more information with which to diagnose the problem.
Unfortunately, it is often difficult to reproduce a crash in debug mode, because of the difficulty of faithfully reproducing within a debug environment the set of events that led to a production run crash.
Within a debugger such as "gdb," a user can stop the program at any point during its execution. Debuggers provide information on system state, such as program variable values at the halt point. By asking for a stack dump, the user can also obtain the sequence of function calls (if any) that led to the specific function within which the program is halted.
SUMMARY OF THE INVENTION
Unfortunately, existing technologies do not provide information on the specific sequence of instructions that were executed prior to the instruction that crashed or faulted. Discovering the exact sequence of instructions that executed prior to a crash is a difficult problem, made even harder when a program crashes in a production environment, because execution speed cannot be reduced significantly.
The present invention is a method for producing such a sequence of instructions, or a crash instruction trace. A crash instruction trace includes the instruction that crashed and some or all of instructions that preceded it. If the crash instruction trace contains all of the instructions executed from the start of the program to the crash point, then this sequence of instructions is called the complete crash instruction trace.
The crash instruction trace can also contain information on the specific times at which each instruction was last executed, in which case the trace is called a time- stamped crash instruction trace. The availability of a crash instruction trace can facilitate isolating the problem that caused a crash, thereby speeding up the process of crash recovery or system stabilization.
A complete crash instruction trace can become very large. For example, a computer running 100 million instructions per second will produce a 100 million instructions per second that must be recorded in a complete trace. Therefore, it is sometimes preferable to store a last instruction trace.
A last instruction trace is a sequence of instructions sorted by the last time at which an instruction was executed. A last instruction trace contains each instruction at most once. Accordingly, the maximum size of the last instruction trace is bounded by the size of the program itself.
As an example, suppose a program contains the following eight instructions, each represented as a letter: A,B,C,D,E,F,G,H. Further suppose that during a successful execution of the program the execution sequence is A, B, C, F, G, F, G, F, G, F, G, B, C, F, G, F, G, F, G, F, G, H. For the purpose of the example, assume that the program starts at precisely 1AM and that each instruction executes in 1 microsecond (μsec).
Now, suppose the program crashes at the last execution of the statement G. Then, the trace A, B, C, F, G, F, G, F, G, F, G, B, C, F, G, F, G, F, G, F, G is the complete crash instruction trace. B, C, F, G, F, G, F, G, F, G is a partial crash instruction trace. The corresponding last crash instruction trace is A, B, C, F, G. The time-stamped crash instruction trace is:
Inst: Timestamp:
A 1AM
B 1AM +1 μsec
C 1AM +2 μsecs
F 1AM +3 μsecs
G 1AM +4 μsecs
F 1AM +5 μsecs
G 1AM +6 μsecs
F 1AM +7 μsecs
G 1AM +8 μsecs
F 1AM +9 μsecs
G 1AM +10 μsecs
B 1AM +11 μsecs
C 1AM +12 μsecs
F 1AM +13 μsecs
G 1AM +14 μsecs
F 1AM +15 μsecs
G 1AM +16 μsecs
F 1AM +17 μsecs
G 1AM +18 μsecs
F 1AM +19 μsecs
G 1AM +20 μsecs
The last time-stamped crash instruction trace is:
Inst: Timestamp:
A 1AM
B 1AM +11 μsecs
C 1AM +12 μsecs
F 1AM +19 μsecs
G 1AM +20 μsecs
Other types of traces, such as a first instruction trace, can also be stored. Like the last instruction trace, the first instruction trace contains only one reference to each instruction. However, unlike the last instruction trace, it stores the sequence of instructions in the order in which they were first referenced.
Instruction traces can be important for purposes other than crash recovery, such as performance tuning and debugging, in which case some system event or program event or termination condition can trigger the writing out of an instruction trace. The present invention applies to all of these event types. In this more general case, the instruction trace preceding the trace triggering event is called the pre- trigger instruction trace. If the trigger is a crash then the pre-trigger instruction trace is simply the crash instruction trace.
In accordance with the present invention, a method of back- tracing execution of a computer program, where the computer program comprises a plurality of blocks, comprises identifying the blocks of the computer program, and instrumenting an original version of the program by adding instrumentation code to some or all of the blocks to form an instrumented program. The instrumentation code records execution sequence information upon execution of the corresponding instrumented block to create a trace record of the executed program. The sequence information can be recorded, for example, in memory, or to a disk file.
Preferably, the execution sequence information for each block comprises a block identifier which identifies the corresponding block. The identifier may be, for example, a starting or ending program counter of the corresponding block, or some other assigned identifier, possibly using Huffman coding to allocate the block identifiers .
In a preferred embodiment, a detailed back-trace is generated, after the program has executed, by replacing each recorded block identifier with program counters associated with each instruction in the corresponding block.
In an optimized embodiment using path encoding, a block identifier is recorded in a condensed representation. Alternatively, a few bits can be used to encode the direction taken by the program at each branch, e.g., one bit for each two- way branch. The condensed representation can hold a plurality of block identifiers. The condensed representation can be stored, for example, in a register which reduces the number of instructions added for each block. The register value is stored into memory when no more values can be written to it. The condensed representation is then expanded by a post-processing step by storing the individual block identifiers contained therein into the trace record.
Preferably, the trace record is stored in a circular buffer, in a region of memory separate from where the program is stored, and the buffer size is dynamically set.
If the program comprises several programs or subprograms, separate regions of memory can be maintained. Each region is associated with a program or subprogram or a set of programs or subprograms and stores therein part of the trace record corresponding to the associated set of programs or subprograms, and the trace records themselves may be of different types.
Instrumentation preferably occurs at the binary level, but alternatively takes place at, for example, the source code level or at link time.
The trace record recorded is preferably presented to a user. This can be in the form of assembly code, or more preferably, is in the form of source level code. In a preferred embodiment, this is accomplished by maintaining, for each binary- level instruction, a pointer to a line of source code from which the binary-level instruction was generated. The pointer is preferably determined from a compiler listing file. In a preferred embodiment, repeat source level instructions, due for example to one line of source code leading to several lines of binary-level instructions, are filtered out. Where an application comprises many programs, the program name corresponding to an instruction trace entry is preferably displayed.
In an alternative embodiment, a summary of the trace record recorded during execution of an instrumented program is presented to a user. This can include the basic block lines identified in the trace record, as well as procedure calls identified in the trace record. The summary can also include, for example, inter-module or inter-program calls identified in the trace record.
In another preferred embodiment, a table is maintained. Each entry in the table corresponds to a program block, and is preferably addressed by a hash of its corresponding block's program counter. This table can be used to produce a last instruction trace by recording a sequence indicator when recording the block identifier, or a first instruction trace by recording a sequence indicator for a corresponding block only the first time the block is executed.
The sequence indicator can be a time-stamp, and can be recorded, for example, upon either entry or exit into the corresponding block. Alternatively, the sequence indicator can be a counter value, which, for example, increments its value after its value is recorded. In a further embodiment, when the counter value reaches a preset limit, a time-stamp is recorded in place of the counter value. A separate counter can optionally be maintained for each module, subprogram or procedure. In another embodiment, sequence indicators are store only when a specified event, which is preferably selected by a user, is detected by the instrumentation code.
BRIEF DESCRIPTION OF THE DRAWINGS
The foregoing and other objects, features and advantages of the invention will be apparent from the following more particular description of preferred embodiments of the invention, as illustrated in the accompanying drawings in which like reference characters refer to the same parts throughout the different views. The drawings are not necessarily to scale, emphasis instead being placed upon illustrating the principles of the invention.
Fig. 1 is a block diagram providing an example a sequence of program basic blocks.
Fig. 2 is a control flow diagram corresponding to the example of Fig. 1.
Fig. 3 is a schematic drawing showing how, in the present invention, instrumented code writes to a sequence record.
Fig. 4 is a flowchart of an embodiment of the present invention in which binary code is instrumented.
Fig. 5 is a flowchart of an embodiment of the present invention in which source code is instrumented.
Figs. 6A and 6B are block diagrams providing an example using of an optimization of the present invention used to eliminate instrumentation in many blocks.
Fig. 7 is a schematic drawing showing an optimized embodiment of the present invention in which identifiers are temporarily stored, in a condensed format, in a register or memory location.
Fig. 8 is a sample trace listing presenting source code.
Fig. 9 is a sample trace listing presenting source code from multiple subprograms.
Figs. 10A - IOC are schematic diagrams illustrating embodiments of the present invention create a last instruction trace (Fig. 10B) and a first instruction trace (Fig. IOC) for the control flow shown in Fig. 10A. Fig. 11 is a schematic drawing showing how a preferred embodiment of the present invention operates with multiple programs, each having its own buffer.
DETAILED DESCRIPTION OF THE INVENTION
Fig. 1 shows an example instruction sequence as the instructions reside in memory. The instructions are grouped into identified blocks 31-35, where a block is a sequence of consecutive program instructions in which flow of control enters only at the beginning and leaves only at the end without halt or possibility of branching except at the end. (Aho, Sethi, and Ullman, "Compilers, Principals, Techniques and Tools," p. 528).
Fig. 2 shows a control flow graph representation of the instruction sequence of Fig. 1. For example, during execution, block 32 can be followed either by block 33 or by block 34. Thus, the static locations of blocks within the stored program as shown if Fig. 1, often do not reflect the sequence in which the blocks are executed. The goal of traceback is to provide the exact sequence in which the blocks were actually executed during an execution of the program.
Fig. 3 demonstrates a simple embodiment of the present invention, which inserts instrumentation code, shown as thick lines, e.g., reference 50, into each block. The instrumentation code comprises one or more instructions into each block. Blocks 51-55 are the instrumented versions of blocks 31-35, respectively, of Fig. 2.
If the actual execution sequence of blocks is 51, 52, 54, 55, then as each block executes, the instrumentation code 50 in each executing block writes out an identifier of the corresponding block into a memory region explicitly created by this or other instrumentation code. The identifier may, for example, be the address of the first instruction of its block, or it may comprise some other form of identification. For example, Huffman coding may be used to allocate compact identifiers for each block with a program or within a subprogram.
In the current example, the identifiers are 1, 2, 4 and 5, corresponding to blocks 51, 52, 54 and 55 respectively. This sequence of block identifiers comprises the sequence record 57. In a preferred embodiment, the memory region is organized as a circular buffer, which is visible to the entire program. Upon entering a basic block, the basic block's instrumentation code obtains the address of the first instruction of the basic block. Alternatively, a unique identifier may be assigned to each block via a table or some other means, and the instrumentation code obtains the identifier. The address or identifier is then written into the circular buffer.
The buffer size limits the amount of traceback history that the program can achieve. Preferably, this limit can be set dynamically by the user.
Fig. 4 illustrates a preferred embodiment of the present invention. Generally, if original source code 301 is available, it is compiled at step 311. The compiler typically provides an executable binary or object program 303, and a compiler listing 321, which provides a map from source code lines to the binary code. Obviously, if the source program is not available, step 311 is skipped and no compiler listing 321 is available.
Whether the source program is available or not, the binary image 303 is instrumented at step 313, which produces an instrumented binary 305. The instrumented binary 305 includes the added instrumentation code in each block, two of which 304 are shown. Adding instrumentation to an original program at the binary level, is described in U.S. Application Serial No. 08/985.052, "Test, Protection, and Repair Through Binary-Code Augmentation," filed December 4, 1997, which is incorporated by reference herein.
When the instrumented binary program 305 is executed at step 315, the same results 323 are produced as would be with an uninstrumented program. In addition, as the program executes, the instrumentation code 304 records, or writes out, into a separate region of memory a sequence record 307 comprising sequence information, e.g., corresponding block identifiers, as indicated by arrows 306.
In a preferred embodiment, the sequence record 307 is post-processed at step 317 such that each entry representing a basic block is replaced with the set of program counters (PCs) in the block, thereby producing the desired trace record 309.
A presenter 319 then presents the trace record 309 to a user, for example, by presentation on a monitor 103, or sending the record to a printer 101 or to a disk file 105 for later analysis. If the compiler listing 321 is available, source code corresponding to the PCs can be displayed.
As Fig. 5 shows, if source code 201 is available, then alternatively, the instrumentation can be made at the source-level, at step 211. In this case, source level recording statements are added to the program, for example, in C or Cobol. The resulting instrumented source program 203 is then compiled at step 213, producing both a compiler listing 221 and an instrumented binary 205. As in Fig. 4, the instrumented binary 205 is executed 215, producing both normal program results 223 and a sequence record 207 written, as indicated by arrows 206, by the instrumentation code 205. The post process step 217, trace record 209, presenter 219, monitor 103, printer 101 and disk storage 105 correspond to the same features of Fig. 4.
The post processor 217 (Fig. 5), 317 (Fig. 4) is preferably triggered by some event such as a crash, or some other user-defined event. Alternatively, instrumentation inserted into the program detects some designated condition defining an event, e.g., a negative value in a register when a positive value is expected.
Other instrumentation methods such as link-time instrumentation may alternatively be used.
Binary code instrumentation can be viewed as an enabler of crash instruction trace technology because it adds little overhead to the code and does not require the availability of the program sources. Not surprisingly, it is the preferred method for the current invention, because the low overhead enables trace instrumentation to be introduced in a production environment.
Therefore, in the following discussion of the traceback technology, binary code instrumentation is the assumed means of inserting the recording instructions. However, it is understood that source-level instrumentation or link-level instrumentation can be used to achieve the same goal if desired.
In a preferred embodiment, the instrumentation code creates or allocates a memory region in which to store the trace or sequence information. Where an application comprises more than one program or subprogram, the instrumentation preferably creates a memory region for each program or subprogram in which each program or subprogram respectively stores its corresponding trace information. In this manner, the traces of each program or subprogram remain untangled.
In optimizations of the present invention, it is not necessary to insert instrumentation into each block. Optimization methods followed by post processing can be used to eliminate instrumentation in many blocks.
Figs. 6A and 6B provide such an example using blocks 52-55. Here, execution of a block 52 may be followed by execution of either block 53 or block 54. Both blocks 53 and 54 are always followed by block 55. Only one of blocks 53 or 54 need be instrumented. Here, for example, blocks 52, 53 and 55 are instrumented, while block 54 is not instrumented. If, in Fig. 6A, block 53 executes as indicated by the heavy lines, the sequence record 57 written by the instrumented blocks will contain the identifiers 2, 3, 5 corresponding to blocks 52, 53 and 55.
On the other hand, if block 54 executes as in Fig. 6B, because block 54 is not instrumented, the sequence record 57 will contain only the identifiers 2, 3. Because block 53 is not seen to follow block 52 in the sequence record 57, block 54 must have executed, implying a sequence record as shown at 57A which includes the identifier 4 corresponding to block 54, although the sequence 57A is never actually stored. If the instrumentation program knows that the sequence 52, 54, 55 is more common, then it will choose to instrument block 53 and not 54.
Fig. 7 demonstrates another optimization, which uses path encoding, in which a condensed representation of a sub-sequence is maintained in a register or memory location 413.
The program control flow graph is first split up into a preferably minimal set of unique single-entry multiple-exit DAGs (directed acyclic graphs), using standard techniques, for example, by using depth first search and marking to identify backedges, and then using each backedge in addition to the graph entry points as DAG headers. Each DAG is assigned a unique code word or identifier.
The instrumented code of each block within a DAG can perform a quick operation on a register or memory location such as appending or adding its identifier. If a register is used, then after several such operations, the accumulated encoding can be written out to the trace record in memory. For example, assume that the sequence record during some execution is currently as shown at 411 A. Suppose also that register 413, which in this example comprises four bytes, is clear. Referring to the control flow diagram of Fig. 3, assume the sequence of executed blocks is: 51, 52, 53, 55. As each block is executed, the instrumentation code shifts or ORs the corresponding identifier into the register 413, resulting in the sequential configurations, or path codes, shown at 413A-413D for blocks 51, 52, 53 and 55 respectively. When the instrumentation code sees that the register 413 is full, it stores all the contents of the register 413, i.e., the four identifiers, into the sequence record, so that the sequence record is as shown at 41 IB.
An alternate encoding scheme assigns an integer weight to each block or control-flow edge between blocks, so that each possible path within the DAG produces a unique sum, as described by Ball and Larus, in "Efficient Path Profiling," Proceedings of Micro-29, 1996. The instrumentation for each block or edge adds in its weight. A preferred implementation of this scheme chooses power-of-two weights, so that adding in a weight is accomplished by setting a single bit, for example with a single logical-OR instruction.
Alternatively, a few bits can be used to encode the direction taken by the program at each branch, for example, one bit for a two-way branch, or two bits for a three- or four-way branch
Of course, depending on the size of the register or memory location, the size of the identifiers, and the method used, e.g., shifting, adding, etc., the number of identifiers temporarily stored in the register or memory may be different.
The register and the unique DAG code is stored to memory at each exit point of the DAG. Together, the DAG code and the path code within the DAG uniquely identify the dynamic program flow. If the path code word is maintained in memory, an OR immediate instruction, if available, can be used to maintain the path code directly in memory, thereby avoiding having to store the register in memory when the DAG is exited.
As discussed with reference to Figs. 3 and 4, the trace record can be presented to a user as a sequence of binary instructions or their assembly language representations, or mnemonics. However, since each source program line of code is converted by a compiler to one or more lines of binary code, an instruction trace can also be presented to the user in source form to facilitate debugging by a user.
Fig. 8 shows a sample source code trace listing 401 A, comprising three columns. The first column 403 shows the name of the program, sub-program or subroutine. The second column 405 shows the line number of the corresponding code, and the third column shows the actual source code from which the binary code was produced.
Fig. 9 illustrates a similar sample source code trace listing 402, produced by a preferred embodiment which is useful when multiple programs are running, i.e. where an application comprises several programs. If buffers are allocated to each subprogram and to each program, using either time-stamps or sequence numbers or both, then the postprocessor displays a crash or event instruction trace which includes three pieces of information per line of code: the program name, the line number, and the specific source.
In the example of Fig. 9, the traces of two programs (subprograms), AGYTCOR and CASHBAL are shown. The first part 401 A, corresponds to the trace 401 A of Fig. 8 and corresponds to the program AGYTCOR. The second part 40 IB shows the trace for the program CASHBAL.
Presentation of source code to the user is accomplished, for example, by maintaining for each binary/assembly instruction, a pointer to the source line that produced the instruction. There are many ways in which this information can be obtained. Most commonly, compilers produce such information. Compiler listing files also commonly contain the source code lines and the corresponding binary code lines. Prior to displaying the trace to a user, a post-processing step can convert each line of binary code or assembly code to the corresponding source statement.
Typically, multiple assembly instructions map to a single source statement. Thus, the source level trace may show the same source instruction repeated. A further optimized embodiment of the present invention therefore filters out repeat source level instructions, for example, by replacing multiple identical source lines in the trace display with a single line. In addition to assembly or source code line traces, a preferred embodiment optionally presents summary trace information to the user. Such summary information may comprise, for example, basic block lines, procedure calls or inter module/program calls.
With small modifications, the present invention can produce other types of traces, as now discussed.
Figs. 10A - IOC demonstrate how alternative embodiments of the present invention can create a variety of traces such as a "last instruction trace" and a "first instruction trace." The control flow graph of Fig. 10A corresponds to that of Fig. 3. For the examples of Fig. 10B and IOC, assume the control flow indicated by the heavy line 59. Thus, the order of execution of the blocks is: 51, 52, 53, 55, 51, 52, 54, 55.
Fig. 10B illustrates a preferred manner of creating a last instruction trace. For example, a table 71 is maintained wherein each entry 51A-55A is associated with a specific corresponding block 51-55, respectively. When a block is executed, a time-stamp is recorded in the memory buffer at the corresponding location.
At the start of the program, each entry is marked with an X to indicate the corresponding block has not yet executed. After block 51 executes, the timestamp, here a 1, is stored into the corresponding location 51 A, as indicated at 71 A. Similarly, after blocks 52 and 53 execute, timestamps indicating the respective times of execution, here 2 and 3, are stored in the corresponding locations 52A and 53 A, as indicated at 7 IB and 71 C respectively.
71 A - 71H show the changes to the table 71 as each block is executed. Note that, for example, at 7 IE, when block 51 executes a second time, the new timestamp, here a 5, overwrites the old timestamp.
After execution of the program, or upon some triggering event such as a system crash, the post-processor writes out the sequence record 73. By ordering the timestamps in reverse order, the blocks are ordered by last execution, and only the last execution of each block is shown. Thus, this is a last instruction trace. Of course, the blocks could also be ordered from first to last, however this is still a last instruction trace. In an improved embodiment, hashing techniques can be used in combination with the block addresses to identify corresponding locations within the table.
There are many ways in which a time-stamp can be obtained, one being the use of a system call to retrieve the value in the system clock. In a preferred embodiment, each writing of the time-stamp writes over the previous value stored in the entry corresponding to the block, although in other types of traces may not be desired.
Fig. IOC demonstrates an alternative embodiment which produces a "first instruction trace," in which the first execution of a block is recorded. A buffer 75 is allocated, having an entry 51B-55B corresponding to each block 51-55 in the program . Each entry is initialized to some known value such as -1. When a block is executed, a time-stamp is recorded only if the current value in the record is -1. Otherwise no value is recorded.
As with Fig. 10B, 75A-75H depict the state of the table 75 as each block is executed. After the program runs, the blocks are ordered into a sequence record 77 by time-stamps. Because only first execution times are recorded, the resulting trace is a first instruction trace.
In a preferred embodiment, any or all of a crash instruction trace, a first instruction trace and a last instruction trace can be stored
The circular buffer approach can be combined with other trace methods, such as the first or last instruction trace. This combination is valuable when, for example, the user wants a very long instruction trace. A small loop in one of the program modules, subprograms, or procedures can completely fill up the buffer. Instead, it is preferable to store sequences related to each program module in a separate buffer such that memory is allocated as and when each module executed.
Preferably, as Fig. 11 illustrates, a circular buffer 64, 66 is allocated to each module, ProgA and ProgB respectively. Instrumentation at the beginning of a module creates the module-specific buffer. At the start of the module execution, the instrumentation code records the current time. For example, the instrumentation code of block 51 records time-stamp Tl. Then, as before, the block instructions or identifiers 1 and 2, corresponding to blocks 51 and 52, are recorded. Now blocks 61 and 62 from module ProgB are called and executed before block 54. The instrumentation code from block 61 writes a time-stamp T2 into ProgB's buffer 66, and then blocks 61 and 62 write their identifiers 1 and 2 into the buffer 66. After block 62, control returns to block 54 in ProgA, which writes a new time-stamp T3 into ProgA' s buffer 64. Alternatively, time-stamps can be stored upon each exit, or on both entry and exit. Time-stamps can also be written by the runtime system.
Note that the sequence records 64, 66 need not be the same type. For example, record 64 may record every execution of every block of ProgA, while record 66 may be a last instruction trace.
In an another alternative embodiment, a circular buffer represents only module entries and/or exits. Thus, when a module is entered and/or exited, corresponding, for example, to a call and/or return, the instrumentation writes the module identifier into this module-level circular buffer. A record of the executed module sequence is thus recorded. The complete history is then obtained by combining the module-level trace with the intra-module traces obtained within the circular buffer.
Alternatively, rather than using clock functions which may be expensive in terms of time or other resources, a global sequence number or counter is maintained in a register or in memory. Each time the value of the counter is written into the sequence record, the counter is incremented. Alternative embodiments can also have counters allocated for program modules, subprograms, and procedures.
If such a counter is incremented frequently, it may overflow. Of course, overflows can be handled in many ways. A preferred method is to resort to using a time-stamp when a counter reaches a preset high limit.
Preferably, a buffer is written out or displayed when the instrumentation detects some event. The event is chosen by the user and special instrumentation instructions are inserted to check for the user specified condition. When the condition is met, the buffer is written out. Different events can be assigned to trigger different buffers.
While this invention has been particularly shown and described with references to preferred embodiments thereof, it will be understood by those skilled in the art that various changes in form and details may be made therein without departing from the spirit and scope of the invention as defined by the appended claims.

Claims

CLAIMSWhat is claimed is:
1. A method of back-tracing execution of a computer program, said computer program comprising a plurality of blocks, said method comprising: identifying the blocks of the computer program; instrumenting an original version of the program by adding instrumentation code to each of the identified blocks to form an instrumented program, the instrumentation code, recording execution sequence information upon execution of the corresponding instrumented block, such that the cumulative stored sequence information recorded during execution of the program forms a trace record.
2. The method of Claim 1 further comprising: creating a trace record of the program by executing the instrumented program such that the instrumentation code in each block as it executes records its sequence information into the trace record.
3. The method of Claim 2 wherein the execution sequence information for each block comprises a block identifier which identifies the corresponding block.
4. The method of Claim 3 wherein a block identifier is a starting program counter of the corresponding block.
5. The method of Claim 3 wherein every block is instrumented.
6. The method of Claim 3 further comprising:
- generating, after the program has executed, a detailed back-trace by replacing each recorded block identifier with program counters associated with each instruction in the corresponding block.
7. The method of Claim 3 further comprising: using Huffman coding to allocate block identifiers.
8. The method of Claim 2, further comprising: recording a block identifier in a condensed representation, wherein the condensed representation holds a plurality of block identifiers.
9. The method of Claim 8, wherein the condensed representation is stored in a register.
10. The method of Claim 8, wherein the condensed representation is stored in a memory location.
11. The method of Claim 8, wherein the condensed representation uses logn2 bits to encode a path for each n-way branch in the program.
12. The method of Claim 8, wherein the size of the condensed representation for any path makes use of an expected frequency with which that path is taken.
13. The method of Claim 8, wherein the condensed representation uses path encoding.
14. The method of Claim 8, further comprising: expanding the condensed representation by storing the individual block identifiers contained therein into the trace record.
15. The method of Claim 2, wherein recording the sequence information into the trace record comprises storing the sequence information in memory.
16. The method of Claim 15, wherein the trace record is stored in a region of memory separate from where the program is stored.
17. The method of Claim 15, wherein the trace record is stored in a circular buffer.
18. The method of Claim 17, wherein the buffer size is dynamically set.
19. The method of Claim 15, wherein the program may comprise several programs or subprograms, and wherein separate regions of memory are maintained, each region being associated with a program or subprogram for storing therein part of the trace record corresponding to the associated program or subprogram.
20. The method of Claim 2, wherein recording the sequence information into the trace record comprises storing the sequence information to a file.
21. The method of Claim 2 wherein the program' s source code is instrumented.
22. The method of Claim 2 wherein instrumenting the program occurs at a link level.
23. The method of Claim 2 wherein the program's binary code is instrumented.
24. The method of Claim 2, further comprising: presenting a trace record recorded during execution of an instrumented program to a user.
25. The method of Claim 24, wherein the trace record is presented in the form of assembly code.
26. The method of Claim 24, wherein the trace record is presented in the form of source level code.
27. The method of Claim 26 further comprising: maintaining, for each binary-level instruction, a pointer to a line of source code from which the binary-level instruction was generated.
28. The method of Claim 27, wherein the pointer is determined from a compiler listing file.
29. The method of Claim 27, further comprising: filtering out repeat source level instructions.
30. The method of Claim 2, further comprising: presenting a summary of the trace record recorded during execution of an instrumented program to a user.
31. The method of Claim 30, wherein presenting a summary further comprises: presenting basic block lines identified in the trace record.
32. The method of Claim 30, wherein presenting a summary further comprises: presenting procedure calls identified in the trace record.
33. The method of Claim 30, wherein presenting a summary further comprises: presenting inter-module or inter-program calls identified in the trace record.
34. The method of Claim 2, further comprising: maintaining a table, the table comprising a plurality of entries, each entry coπesponding to a program block.
35. The method of Claim 34, wherein each entry is addressed by a hash of its corresponding block's program counter.
36. The method of Claim 34, wherein the instrumentation code produces a last instruction trace by recording a sequence indicator when recording the block identifier.
37. The method of Claim 36, wherein the sequence indicator is a time-stamp.
38. The method of Claim 37, wherein the time-stamp is recorded upon entry into the corresponding block.
39. The method of Claim 37, wherein the time-stamp is recorded upon exit from the corresponding block.
40. The method of Claim 36, wherein the sequence indicator is a counter value, further comprising: incrementing the counter value after recording its value.
41. The method of Claim 40, further comprising: maintaining a separate counter for each module, subprogram or procedure.
42. The method of Claim 40, wherein when the counter value reaches a preset limit, a time-stamp is recorded in place of the counter value.
43. The method of Claim 36, wherein the instrumentation code produces a first instruction trace by recording a sequence indicator for a corresponding block only the first time the block is executed.
44. The method of Claim 2, wherein sequence indicators are stored only when a specified event is detected by the instrumentation code.
45. The method of Claim 44, wherein the specified event is selected by a user.
46. The method of Claim 2, wherein the application comprises multiple programs, wherein presenting the instruction trace to a user further comprises: displaying a program name corresponding to an instruction trace entry.
47. The method of Claim 2, further comprising: storing any or all of a crash instruction trace, a first instruction trace, and a last instruction trace.
48. A computer memory configured for back- tracing execution of a computer program, said computer program comprising a plurality of blocks, comprising: a trace record instrumenter for instrumenting an original version of the program by adding instrumentation code to each of the plurality of blocks to form an instrumented program, the instrumentation code recording execution sequence information upon execution of the corresponding instrumented block; a post-processor for transforming the cumulative stored sequence information recorded during execution of the program into a trace record; and a trace record presenter for presenting the trace record.
49. The computer memory of Claim 48, wherein the execution sequence information for each block comprises a block identifier which identifies the corresponding block.
50. The computer memory of Claim 49, wherein a block identifier is a starting program counter of the corresponding block.
51. The computer memory of Claim 49, wherein the post-processor generates a detailed trace record by replacing each recorded block identifier with program counters associated with each instruction in the corresponding block.
52. The computer memory of Claim 49, further comprising: recording a block identifier in a condensed representation, wherein the condensed representation holds a plurality of block identifiers.
53. The computer memory of Claim 49, wherein the program may comprise several programs or subprograms, and wherein separate regions of memory are maintained, each region being associated with a program or subprogram for storing therein sequence information corresponding to the associated program or subprogram.
54. The computer memory of Claim 48, wherein the trace record instrumenter instruments the program's source code.
55. The computer memory of Claim 48, wherein the trace record instrumenter instruments the program's binary code.
56. The computer memory of Claim 48, wherein the trace record presenter presents the trace record in the form of assembly code.
57. The computer memory of Claim 48, wherein the trace record presenter presents the trace record in the form of source level code.
58. The computer memory of Claim 57, further comprising: for each binary-level instruction, a pointer to a line of source code from which the binary-level instruction was generated.
59. The computer memory of Claim 58, wherein each pointer is determined from a compiler listing file.
60. The computer memory of Claim 48, wherein the trace record presenter presents a summary of the sequence information.
61. The computer memory of Claim 60, wherein the summary comprises procedure calls identified in the sequence information.
62. The computer memory of Claim 60, wherein the summary comprises intermodule or inter-program calls identified in the sequence information.
63. The computer memory of Claim 48, further comprising: a table comprising a plurality of entries, each entry corresponding to a program block.
64. The computer memory of Claim 63, wherein the instrumented code produces a last instruction trace by recording a sequence indicator when recording the block identifier.
65. The computer memory of Claim 64, wherein the sequence indicator is a time-stamp.
66. The computer memory of Claim 65, wherein the time-stamp is recorded upon entry into the coπesponding block.
67. The computer memory of Claim 64, further comprising: a counter whose current value is taken as the sequence indicator, wherein the counter is incremented after its value is recorded.
68. The computer memory of Claim 67, further comprising: a separate counter for each module, subprogram or procedure.
69. The computer memory of Claim 67, wherein when the counter value reaches a preset limit, a time-stamp is recorded in place of the counter's value.
70. The computer memory of Claim 63, wherein the instrumented code produces a first instruction trace by recording a sequence indicator for a coπesponding block only the first time the block is executed.
71. The computer memory of Claim 48, wherein sequence indicators are stored only when a specified event is detected by the instrumented code.
72. The computer memory of Claim 48, wherein an application comprises multiple programs, such that, for each line displayed, the trace record presenter presents a program name corresponding to an instruction trace entry.
73. The computer memory of Claim 48, wherein the post-processor is triggered by a specified event.
74. The computer memory of Claim 73, wherein the specified event occurs when the instrumented code detects a designated condition.
PCT/US1999/029231 1999-02-08 1999-12-09 A method for back tracing program execution WO2000046678A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU20483/00A AU2048300A (en) 1999-02-08 1999-12-09 A method for back tracing program execution

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/246,619 1999-02-08
US09/246,619 US6353924B1 (en) 1999-02-08 1999-02-08 Method for back tracing program execution

Publications (1)

Publication Number Publication Date
WO2000046678A1 true WO2000046678A1 (en) 2000-08-10

Family

ID=22931446

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1999/029231 WO2000046678A1 (en) 1999-02-08 1999-12-09 A method for back tracing program execution

Country Status (3)

Country Link
US (1) US6353924B1 (en)
AU (1) AU2048300A (en)
WO (1) WO2000046678A1 (en)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2366879A (en) * 2000-09-16 2002-03-20 Ibm Tracing a computer program execution path
CN1296819C (en) * 2001-11-16 2007-01-24 德国捷德有限公司 Controlled program execution by a portable data carrier
WO2007118271A1 (en) * 2006-04-13 2007-10-25 Todaycom Pty Ltd A method and system and product for conditioning software
WO2008080780A1 (en) * 2007-01-05 2008-07-10 International Business Machines Corporation Recording execution information for a software application
CN103250112A (en) * 2010-09-30 2013-08-14 施耐德电气美国股份有限公司 Power monitoring device simulation using a database profile generated from real time-value data
EP2759940A1 (en) * 2013-01-23 2014-07-30 Giesecke & Devrient GmbH Method for executing a program via a microprocessor on a security module
CN113704097A (en) * 2015-12-21 2021-11-26 英特尔公司 Method and apparatus for data flow analysis using compiler type information in processor trace logs

Families Citing this family (85)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6546548B1 (en) * 1997-12-12 2003-04-08 International Business Machines Corporation Method and system for compensating for output overhead in trace data using initial calibration information
US6954923B1 (en) * 1999-01-28 2005-10-11 Ati International Srl Recording classification of instructions executed by a computer
US7111290B1 (en) 1999-01-28 2006-09-19 Ati International Srl Profiling program execution to identify frequently-executed portions and to assist binary translation
US8121828B2 (en) * 1999-01-28 2012-02-21 Ati Technologies Ulc Detecting conditions for transfer of execution from one computer instruction stream to another and executing transfer on satisfaction of the conditions
US7941647B2 (en) 1999-01-28 2011-05-10 Ati Technologies Ulc Computer for executing two instruction sets and adds a macroinstruction end marker for performing iterations after loop termination
US6826748B1 (en) 1999-01-28 2004-11-30 Ati International Srl Profiling program execution into registers of a computer
US8074055B1 (en) 1999-01-28 2011-12-06 Ati Technologies Ulc Altering data storage conventions of a processor when execution flows from first architecture code to second architecture code
US8127121B2 (en) * 1999-01-28 2012-02-28 Ati Technologies Ulc Apparatus for executing programs for a first computer architechture on a computer of a second architechture
US6779107B1 (en) 1999-05-28 2004-08-17 Ati International Srl Computer execution by opportunistic adaptation
JP2000347894A (en) * 1999-06-09 2000-12-15 Fujitsu Ltd Source program check device and program recording medium therefor
US6604210B1 (en) * 1999-09-09 2003-08-05 International Business Machines Corporation Method and system for detecting and recovering from in trace data
US6951011B1 (en) * 1999-10-21 2005-09-27 Oracle International Corp. Diagnostic method and article for identifying significant events
US6804814B1 (en) * 1999-12-29 2004-10-12 Veritas Operating Corporation Method for simulating back program execution from a traceback sequence
DE19963832A1 (en) * 1999-12-30 2001-07-05 Ericsson Telefon Ab L M Program profiling
US7735072B1 (en) * 2000-08-11 2010-06-08 International Business Machines Corporation Method and apparatus for profiling computer program execution
US20040205718A1 (en) * 2000-12-11 2004-10-14 Sun Microsystems, Inc. Self-tuning object libraries
US7287147B1 (en) 2000-12-29 2007-10-23 Mips Technologies, Inc. Configurable co-processor interface
US7237090B1 (en) 2000-12-29 2007-06-26 Mips Technologies, Inc. Configurable out-of-order data transfer in a coprocessor interface
TW542969B (en) * 2001-04-06 2003-07-21 Penbex Data Systems Inc Software diagnostic system and method
DE10118502C1 (en) * 2001-04-12 2002-08-08 Siemens Ag Process for the acquisition and recording of system information and processes in distributed concurrent component-based software systems
US7185234B1 (en) 2001-04-30 2007-02-27 Mips Technologies, Inc. Trace control from hardware and software
US7134116B1 (en) 2001-04-30 2006-11-07 Mips Technologies, Inc. External trace synchronization via periodic sampling
US7124072B1 (en) 2001-04-30 2006-10-17 Mips Technologies, Inc. Program counter and data tracing from a multi-issue processor
US7069544B1 (en) * 2001-04-30 2006-06-27 Mips Technologies, Inc. Dynamic selection of a compression algorithm for trace data
US7178133B1 (en) 2001-04-30 2007-02-13 Mips Technologies, Inc. Trace control based on a characteristic of a processor's operating state
US7181728B1 (en) * 2001-04-30 2007-02-20 Mips Technologies, Inc. User controlled trace records
US7168066B1 (en) 2001-04-30 2007-01-23 Mips Technologies, Inc. Tracing out-of order load data
US7065675B1 (en) 2001-05-08 2006-06-20 Mips Technologies, Inc. System and method for speeding up EJTAG block data transfers
US7376937B1 (en) 2001-05-31 2008-05-20 Oracle International Corporation Method and mechanism for using a meta-language to define and analyze traces
US7380239B1 (en) * 2001-05-31 2008-05-27 Oracle International Corporation Method and mechanism for diagnosing computer applications using traces
US7043668B1 (en) 2001-06-29 2006-05-09 Mips Technologies, Inc. Optimized external trace formats
US7231551B1 (en) 2001-06-29 2007-06-12 Mips Technologies, Inc. Distributed tap controller
US6934942B1 (en) * 2001-08-24 2005-08-23 Microsoft Corporation System and method for using data address sequences of a program in a software development tool
US7454603B2 (en) * 2002-02-11 2008-11-18 Intel Corporation Method and system for linking firmware modules in a pre-memory execution environment
US7080358B2 (en) * 2002-04-10 2006-07-18 Sun Microsystems, Inc. Mechanism for generating an execution log and coverage data for a set of computer code
US20040013250A1 (en) * 2002-07-22 2004-01-22 Sreekrishna Kotnur System and method of tracking component object requests
US7165190B1 (en) 2002-07-29 2007-01-16 Oracle International Corporation Method and mechanism for managing traces within a computer system
US7200588B1 (en) 2002-07-29 2007-04-03 Oracle International Corporation Method and mechanism for analyzing trace data using a database management system
US7512954B2 (en) * 2002-07-29 2009-03-31 Oracle International Corporation Method and mechanism for debugging a series of related events within a computer system
US8418145B2 (en) * 2002-11-07 2013-04-09 Ca, Inc. Simple method optimization
GB2396451B (en) * 2002-11-18 2005-12-07 Advanced Risc Mach Ltd Delivering data processing requests to a suspended operating system
GB0310689D0 (en) * 2003-05-09 2003-06-11 Ibm Monitoring operational data in data processing systems
US7159101B1 (en) 2003-05-28 2007-01-02 Mips Technologies, Inc. System and method to trace high performance multi-issue processors
US7146606B2 (en) * 2003-06-26 2006-12-05 Microsoft Corporation General purpose intermediate representation of software for software development tools
US7305666B2 (en) * 2003-07-23 2007-12-04 Microsoft Corporation Description language for an extensible compiler and tools infrastructure
US7120898B2 (en) 2003-06-26 2006-10-10 Microsoft Corporation Intermediate representation for multiple exception handling models
US7685581B2 (en) * 2003-06-27 2010-03-23 Microsoft Corporation Type system for representing and checking consistency of heterogeneous program components during the process of compilation
US7707566B2 (en) 2003-06-26 2010-04-27 Microsoft Corporation Software development infrastructure
US7086041B2 (en) * 2003-06-27 2006-08-01 Microsoft Corporation Extensible type system for representing and checking consistency of program components during the process of compilation
US7559050B2 (en) * 2003-06-30 2009-07-07 Microsoft Corporation Generating software development tools via target architecture specification
US7788652B2 (en) * 2003-06-27 2010-08-31 Microsoft Corporation Representing type information in a compiler and programming tools framework
US6925928B2 (en) * 2003-09-18 2005-08-09 Anthony Fox Trash compactor for fast food restaurant waste
US20050223367A1 (en) * 2004-03-30 2005-10-06 Tonic Solutions, Inc. System and methods for instrumenting applications
US20050251791A1 (en) * 2004-04-14 2005-11-10 Robert Hundt Systems and methods for branch profiling loops of an executable program
US20050251790A1 (en) * 2004-04-14 2005-11-10 Robert Hundt Systems and methods for instrumenting loops of an executable program
US8015552B1 (en) 2004-07-23 2011-09-06 Green Hills Software, Inc. Post-execution software debugger with coverage display
US8136096B1 (en) 2004-07-23 2012-03-13 Green Hills Software, Inc. Backward post-execution software debugger
US8132159B1 (en) 2004-07-23 2012-03-06 Green Hills Software, Inc. Post-execution software debugger with event display
US8271955B1 (en) 2004-07-23 2012-09-18 Green Hille Software, Inc. Forward post-execution software debugger
US7653899B1 (en) 2004-07-23 2010-01-26 Green Hills Software, Inc. Post-execution software debugger with performance display
US7343523B2 (en) * 2005-02-14 2008-03-11 Aristoga, Inc. Web-based analysis of defective computer programs
US7934202B2 (en) * 2005-04-28 2011-04-26 Microsoft Corporation Active execution tracing
US7516252B2 (en) * 2005-06-08 2009-04-07 Intel Corporation Port binding scheme to create virtual host bus adapter in a virtualized multi-operating system platform environment
US7526758B2 (en) * 2005-06-30 2009-04-28 Microsoft Corporation Execution failure investigation using static analysis
US7949673B2 (en) * 2005-12-15 2011-05-24 Computer Associates Think, Inc. Correlating cross process and cross thread execution flows in an application manager
US8341605B2 (en) 2005-12-15 2012-12-25 Ca, Inc. Use of execution flow shape to allow aggregate data reporting with full context in an application manager
US8316354B2 (en) * 2005-12-15 2012-11-20 Ca, Inc. Execution flow shape compression for aggregate data reporting in an application manager
US8069439B2 (en) * 2006-03-30 2011-11-29 Microsoft Corporation Framework for modeling continuations in workflows
US8104022B2 (en) * 2006-11-06 2012-01-24 International Business Machines Corporation Automated method for historical analysis of a memory state
US8135572B2 (en) * 2007-01-23 2012-03-13 Microsoft Corporation Integrated debugger simulator
JP4796185B2 (en) * 2007-05-25 2011-10-19 富士通株式会社 Business flow diagram generation program, business flow diagram generation device, and business flow diagram generation method
US7739553B2 (en) * 2007-05-31 2010-06-15 Microsoft Corporation System crash analysis using path tracing technologies
US20100125834A1 (en) * 2008-11-19 2010-05-20 Sap Ag Dynamic Tracing on Java Exceptions
US9632909B2 (en) * 2008-12-16 2017-04-25 Microsoft Technology Licensing, Llc Transforming user script code for debugging
DE102009014698A1 (en) * 2009-03-27 2010-10-07 Abb Ag System and method for automatic testing of a program for safety-related automation systems
US8978018B2 (en) * 2010-12-02 2015-03-10 International Business Machines Corporation Reversibly instrumenting a computer software application
US9003379B2 (en) * 2011-12-12 2015-04-07 Zynga Inc. Methods and systems for generating test information from a source code
CN103207829B (en) * 2012-01-12 2015-11-25 百度在线网络技术(北京)有限公司 The method of testing of asynchronous system and device
US8887138B2 (en) * 2012-05-25 2014-11-11 Telefonaktiebolaget L M Ericsson (Publ) Debugging in a dataflow programming environment
US9213622B1 (en) * 2013-03-14 2015-12-15 Square, Inc. System for exception notification and analysis
US9535815B2 (en) * 2014-06-04 2017-01-03 Nvidia Corporation System, method, and computer program product for collecting execution statistics for graphics processing unit workloads
US9996354B2 (en) * 2015-01-09 2018-06-12 International Business Machines Corporation Instruction stream tracing of multi-threaded processors
US10209962B2 (en) * 2017-02-06 2019-02-19 International Business Machines Corporation Reconstructing a high level compilable program from an instruction trace
US10365987B2 (en) * 2017-03-29 2019-07-30 Google Llc Synchronous hardware event collection
US9875167B1 (en) * 2017-03-29 2018-01-23 Google Inc. Distributed hardware tracing

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0286361A2 (en) * 1987-04-08 1988-10-12 Westinghouse Electric Corporation Method of verifying computer software
US5146586A (en) * 1989-02-17 1992-09-08 Nec Corporation Arrangement for storing an execution history in an information processing unit
US5265254A (en) * 1991-08-14 1993-11-23 Hewlett-Packard Company System of debugging software through use of code markers inserted into spaces in the source code during and after compilation
US5732273A (en) * 1995-08-11 1998-03-24 Digital Equipment Corporation System for monitoring compute system performance
US5790858A (en) * 1994-06-30 1998-08-04 Microsoft Corporation Method and system for selecting instrumentation points in a computer program

Family Cites Families (23)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3940619A (en) * 1974-05-30 1976-02-24 Iowa State University Research Foundation, Inc. Method for producing three-dimensional real image using radiographic perspective views of an object
US4667290A (en) 1984-09-10 1987-05-19 501 Philon, Inc. Compilers using a universal intermediate language
US4951195A (en) 1988-02-01 1990-08-21 International Business Machines Corporation Condition code graph analysis for simulating a CPU processor
US5241678A (en) 1988-04-15 1993-08-31 Hitachi, Ltd. Program translation based on generalized partial computation
WO1990001738A1 (en) 1988-07-29 1990-02-22 Hunter Systems Software, Inc. Machine process for translating programs in binary machine language into another binary machine language
US5313614A (en) 1988-12-06 1994-05-17 At&T Bell Laboratories Method and apparatus for direct conversion of programs in object code form between different hardware architecture computer systems
US5488714A (en) 1990-05-23 1996-01-30 Unisys Corporation Computer program analyzer for adapting computer programs to different architectures
US5428786A (en) 1991-03-07 1995-06-27 Digital Equipment Corporation Branch resolution via backward symbolic execution
US5321828A (en) 1991-06-07 1994-06-14 Step Engineering High speed microcomputer in-circuit emulator
WO1994020952A1 (en) * 1993-03-12 1994-09-15 Sri International Method and apparatus for voice-interactive language instruction
US5546586A (en) 1993-05-06 1996-08-13 Apple Computer, Inc. Method and apparatus for vectorizing the contents of a read only memory device without modifying underlying source code
US5675803A (en) 1994-01-28 1997-10-07 Sun Microsystems, Inc. Method and apparatus for a fast debugger fix and continue operation
US5517506A (en) * 1994-03-28 1996-05-14 Motorola, Inc. Method and data processing system for testing circuits using boolean differences
US5615369A (en) 1994-07-25 1997-03-25 Hewlett-Packard Company Automated detection and correction of uninitialized variables
US5701487A (en) * 1995-03-27 1997-12-23 Sun Microsystems, Inc. Method and apparatus for displaying locations of errors detected inside software macro calls
US5764992A (en) 1995-06-06 1998-06-09 Apple Computer, Inc. Method and apparatus for automatic software replacement
US5732275A (en) 1996-01-11 1998-03-24 Apple Computer, Inc. Method and apparatus for managing and automatically updating software programs
US5802373A (en) 1996-01-29 1998-09-01 Digital Equipment Corporation Method for providing a pipeline interpreter for a variable length instruction set
US5812855A (en) 1996-06-03 1998-09-22 Silicon Graphics, Inc. System and method for constaint propagation cloning for unknown edges in IPA
US5870607A (en) 1996-09-11 1999-02-09 Brown University Research Foundation Method and apparatus for selective replay of computer programs
US5978588A (en) 1997-06-30 1999-11-02 Sun Microsystems, Inc. Method and apparatus for profile-based code placement using a minimum cut set of the control flow graph
US6018747A (en) 1997-11-26 2000-01-25 International Business Machines Corporation Method for generating and reconstructing in-place delta files
US5966541A (en) 1997-12-04 1999-10-12 Incert Software Corporation Test protection, and repair through binary-code augmentation

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0286361A2 (en) * 1987-04-08 1988-10-12 Westinghouse Electric Corporation Method of verifying computer software
US5146586A (en) * 1989-02-17 1992-09-08 Nec Corporation Arrangement for storing an execution history in an information processing unit
US5265254A (en) * 1991-08-14 1993-11-23 Hewlett-Packard Company System of debugging software through use of code markers inserted into spaces in the source code during and after compilation
US5790858A (en) * 1994-06-30 1998-08-04 Microsoft Corporation Method and system for selecting instrumentation points in a computer program
US5732273A (en) * 1995-08-11 1998-03-24 Digital Equipment Corporation System for monitoring compute system performance

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
ANONYMOUS: "Instruction Trace Apparatus. February 1978.", IBM TECHNICAL DISCLOSURE BULLETIN, vol. 20, no. 9, 1 February 1978 (1978-02-01), New York, US, pages 3503 - 3506, XP002135187 *

Cited By (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2366879A (en) * 2000-09-16 2002-03-20 Ibm Tracing a computer program execution path
GB2366879B (en) * 2000-09-16 2005-02-16 Ibm Tracing the execution path of a computer program
US7353505B2 (en) 2000-09-16 2008-04-01 International Business Machines Corporation Tracing the execution path of a computer program
US9348731B2 (en) 2000-09-16 2016-05-24 International Business Machines Corporation Tracing the execution path of a computer program
CN1296819C (en) * 2001-11-16 2007-01-24 德国捷德有限公司 Controlled program execution by a portable data carrier
WO2007118271A1 (en) * 2006-04-13 2007-10-25 Todaycom Pty Ltd A method and system and product for conditioning software
WO2008080780A1 (en) * 2007-01-05 2008-07-10 International Business Machines Corporation Recording execution information for a software application
US9146843B2 (en) 2007-01-05 2015-09-29 International Business Machines Corporation Recording execution information
CN103250112A (en) * 2010-09-30 2013-08-14 施耐德电气美国股份有限公司 Power monitoring device simulation using a database profile generated from real time-value data
EP2759940A1 (en) * 2013-01-23 2014-07-30 Giesecke & Devrient GmbH Method for executing a program via a microprocessor on a security module
CN113704097A (en) * 2015-12-21 2021-11-26 英特尔公司 Method and apparatus for data flow analysis using compiler type information in processor trace logs

Also Published As

Publication number Publication date
AU2048300A (en) 2000-08-25
US6353924B1 (en) 2002-03-05

Similar Documents

Publication Publication Date Title
US6353924B1 (en) Method for back tracing program execution
US11494287B2 (en) Scalable execution tracing for large program codebases
US6634020B1 (en) Uninitialized memory watch
US7543279B2 (en) Method for simulating back program execution from a traceback sequence
US9348731B2 (en) Tracing the execution path of a computer program
US8732673B2 (en) Automated debugging system and method
US6728955B1 (en) Processing events during profiling of an instrumented program
US8276127B2 (en) Devices, methods and computer program products for reverse execution of a simulation
US8522176B2 (en) Method of recording and replaying call frames for the testbench
US10592396B2 (en) Memory validity states in time-travel debugging
US20070250820A1 (en) Instruction level execution analysis for debugging software
US7089535B2 (en) Code coverage with an integrated development environment
EP0307075A2 (en) Method and apparatus for measuring program execution
US20080127117A1 (en) Method and apparatus for instrumentation in a multiprocessing environment
US20070150870A1 (en) Method and apparatus for context oriented computer program tracing and visualization
US5950211A (en) Discarded history method for solving streams message block leakages
WO2019209494A1 (en) Visualizing last/next known data values in time travel traces
US10853224B2 (en) Indexing and searching a time-travel trace for arbitrary length/arbitrary alignment values
CN113632067A (en) Emulating non-trace code with recorded execution of trace code
CA2492367C (en) Data processing system
Roberts Implementation and evaluation of data breakpoint schemes in an interactive debugger
SE524799C2 (en) Debugging method for single or multi process real time systems, identifies significant event break off point with unique marker comprising check sum
Eustace et al. ATOM Kernel Instrumentation Guide Version 0.3: Preliminary DRAFT
WO2009093220A2 (en) Sal debugging
Ji et al. Information Query

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AE AL AM AT AU AZ BA BB BG BR BY CA CH CN CR CU CZ DE DK DM EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX NO NZ PL PT RO RU SD SE SG SI SK SL TJ TM TR TT TZ UA UG UZ VN YU ZA ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): GH GM KE LS MW SD SL SZ TZ UG ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE BF BJ CF CG CI CM GA GN GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

122 Ep: pct application non-entry in european phase