System, method and program product to optimize code during run time

Information

  • Patent Application
  • 20060212862
  • Publication Number
    20060212862
  • Date Filed
    March 15, 2005
    19 years ago
  • Date Published
    September 21, 2006
    17 years ago
Abstract
System, process and program product for optimizing a computer program during run time. During run time, a determination is made whether the computer program calls a method which includes a conditional evaluation of a variable which is fixed and the evaluation of the fixed variable does not result in anything productive being accomplished except to return to execution of the computer program. If so, the call to the method which includes the conditional evaluation is deleted from the computer program for subsequent iterations of the computer program. Consequently, the subsequent execution of the computer program will yield a same result as if the conditional evaluation was executed. If the evaluation of the fixed variable results in something productive being accomplished, the call to the method which includes the conditional evaluation is not deleted from the subsequent execution of the computer program.
Description
BACKGROUND OF THE INVENTION

The invention relates generally to computer systems, and more specifically to a program tool to optimize program code for execution.


Computer programs often include conditional evaluations based on the value of a variable, such as “If X=A, then go to step 10000; otherwise go to step 10010. The condition can be true or false depending on the current value of the variable “X”. For example, a variable “debug” is set to “true” when a program is in a debugging stage. There is a computer program which conditionally evaluates the variable “debug” to determine whether certain data, useful for debugging purposes, should be logged. In other words, the state of the debug variable is used in a decision step to determine whether to log the data. The decision step can be: “If debug=true, then write XYZ data to log; otherwise jump to next step”. Thus, if the debug variable is set to “true”, then the specified data is written to the log. However, if the program is not in the debug stage, for example, the program has already complete debugging, then there is no need to write the specified data to the log. So, after the debugging stage, the program developer uses a known program tool to set the variable “debug” to “false” so the XYZ data will not be written to the log. Also, the program developer will use this tool to declare that the “debug” variable is now fixed (or immutable) as “false”. In Sun Microsystems Java (™) programming language and other runtime languages, this declaration will be entered by the programmer as a command written into the source code. The command means that once the variable is set for the first time to the desired fixed state during execution, it will never be changed. During compilation, the compiler records this declaration, monitors this variable, and returns an error code if the value of this variable is attempted to be changed from its initial value.


U.S. Pat. No. 6,728,952 discloses a computer system for identifying predicates that always are true or always are false (i.e. “vacuous”), and states that if the expression on which an IF statement depends is identified as a vacuous predicate, the code for the IF statement may be optimized. This is because the expression on which the IF statement depends will always be true or will always be false. This patent also states that specialized computer systems already exist which are able to determine whether a predicate is vacuous.


A publication entitled “Fast, Effective Dynamic Compilation”, by Auslander et al., SIGPLAN Notices, vol. 31, no. 5, pages 149-159, May 1996, discloses various run time optimization techniques. For example, run-time constants can become instruction immediates rather than memory loads, constant propagation and folding can be applied to them, conditional branches based on them can be eliminated, and loops they control can be fully unrolled.


A publication entitled “Value Profiling” by Calder et al., Proceedings of 13th Annual IEEE/ACM International Symposium on Micro architecture, pages 259-269. 1997 discloses that identification of variables as invariant or constant at compile-time allows the compiler to perform optimizations including constant folding, code specialization and partial evaluation.


An object of the present invention is to further optimize execution of a program.


SUMMARY

The invention resides in a system, process and program product for optimizing a computer program during run time. During run time, a determination is made whether the computer program calls a method which includes a conditional evaluation of a variable which is fixed and the evaluation of the fixed variable does not result in anything productive being accomplished except to return to execution of the computer program. If so, the call to the method which includes the conditional evaluation is deleted from the computer program for subsequent iterations of the computer program. Consequently, the subsequent execution of the computer program will yield a same result as if the conditional evaluation was executed. If the evaluation of the fixed variable results in something productive being accomplished, the call to the method which includes the conditional evaluation is not deleted from the subsequent execution of the computer program.


According to features of the present invention, the call to the first said method is contained in a second method within the computer program, and the evaluation of the fixed variable results in a direct return to the second method. The conditional evaluation of the fixed variable does not result in a call to another method outside of the computer program, or any computations or other evaluations needed by the computer program. During a first iteration of the computer program, the value of the variable is set to the fixed value and an argument associated with the variable is computed.




BRIEF DESCRIPTION OF THE FIGURES


FIG. 1 is a block diagram of a computer in which the present invention is incorporated.



FIG. 2 is a flow chart of a computer program tool according to the present invention.




DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT

The present invention will now be described in detail with reference to the figures.



FIG. 1 illustrates a computer 10 in which the present invention is incorporated and executed. Computer 10 comprises a known CPU 12, operating system 14, run-time interpreter XX 15, RAM 16, hard disk 17, ROM 18, storage device reader 20 and network adapter card 22. Reader 20 can be a CD ROM reader, DVD reader, floppy disk reader or other reader of a storage medium 23 on which a computer program product embodying the present invention can be input to computer 10. Alternately, network adapter card 20 can read a computer program embodying the present invention from a computer readable network 24 such as the Internet or LAN. Network 24 also includes a propagation media to carry the computer program to computer 10 to be read into the computer 10. Once input to computer 10, computer program tool 30 embodying the present invention is stored in RAM 16 or hard disk 17 for execution on CPU 12. FIG. 1 also illustrates another computer program 32 to be executed by CPU 12 and optimized by computer program tool 30 in accordance with the present invention. The nature or function of computer program 32 is not important to the present invention, nor is the computer language in which computer program 32 was written. Computer program 32 has been compiled by a compiler (now shown) into a run time/object code format for execution in computer 10. By way of example, computer program 32 could have been written in Sun Microsystems JAVA (™) programming language.



FIG. 2 illustrates processing performed by program tool 30 in accordance with the present invention. In step 100, program tool 30 fetches the “next” instruction of program 32 to be optimized and executed. During the first iteration of step 100, this should be the first instruction of program 32, and decision 102 leads to decision 104. (After the last instruction of program 32 is executed, then decision 102 will lead to step 106 which is the end of execution of program 32 and program tool 30.) After decision 102, yes branch, program tool 30 determines if this instruction of program 32 is a command to call/invoke a function such as a “method” (decision 104). A “method” is an object-oriented form of a function, such as to log data, calculate values, write to database, communicate over network or concatenate data strings. If the instruction is not a command to invoke a function (decision 104, no branch), then program tool 30 passes the instruction of program 32 to the run-time interpreter XX 15 for execution (step 110). However, if the instruction is a command to invoke a method (decision 104, yes branch), then program tool 30 invokes the method, i.e. calls it to begin execution (step 112). Then, the called method begins execution. This may involve the called method preparing any arguments that it will subsequently need for its own execution or a call to another method (step 116). By way of example, the arguments can comprise the identity of the user of program 32, calculation factor, data for database, network endpoint address or data strings. When there are such arguments, their preparation may involve computation, conjunction of character strings, fetches of data, etc. After preparing the arguments, the called function executes its operational instructions or statements such as to conditional evaluate variables, calculate results, write to database, connect to endpoint or concatenate data strings (step 120). As each instruction or statement of the called method is passed to the run-time interpreter XX 15 for execution, program tool 30 monitors the nature of program instruction or statement (step 122). During this monitoring, program tool 30 determines if the current program instruction or statement of the called method is to conditionally evaluate and act upon the value of a variable which was previously declared to be fixed (decision 130). All values being conditionally evaluated in this program step are fixed. These declarations would have occurred using another program tool when the program 32 was written in source code, and an indication that these variables were fixed would have been compiled into the object code of program 32. This is figuratively illustrated in FIG. 1 by the reference data in program 32 that the variable “X is fixed and A is C fixed”. The following are examples of such conditional evaluations: “If X=A, then jump to step 10000; otherwise jump to step 10010 C”, “If X=true and A=false, then jump to step 10000, otherwise jump to step 10010 C”, “While X>A, then jump to step 10000; otherwise jump to step 10010 C”. Thus, the determination of decision 130 is performed by looking for any conditional evaluation of these types. This determination is made based upon the modifier keywords in the source code for the variables which are compiled into the object code. A list of forms of such conditional evaluations is stored in memory. If none of the program instructions or statements of the called method(s) is to conditionally evaluate a fixed variable (decision 130, no branch), then program tool 30 loops back to step 100 to get and process the next program instruction or statement in program 32. However, if any of the program instructions or statements of the called method(s) is to conditionally evaluate a fixed variable (decision 130, yes branch), then program tool 30 determines if the conditional evaluation of the fixed variable always results in immediate/direct return to the invoker of the called method without anything productive resulting from the method, for example, without a call to another method, without a useful computation, without expression evaluation, and without statement evaluation (decision 132). Program tool 30 makes this determination by examining the resultant instruction of the aforementioned conditional evaluation to determine if it is a return to invoker. If something productive occurs (such as the resultant instruction is not a return), then program tool 30 proceeds to step 100 to fetch and process the next instruction or statement of program 32. However, if nothing productive results from the conditional evaluation of the fixed variable (except return to the caller) (decision 132, yes branch, then in step 134 program tool 30 would delete the call in the invoking method to the invoked (and thereby avoid execution of the conditional evaluation) and the program instructions in the invoking method needed to compute the argument for the call to the invoked method. The deletions in step 134 optimize subsequent execution of program 32 because there are now fewer instructions to process during the subsequent execution of program 32. Program 30 performs the actual instruction deletion by rewriting the object code. The run-time environment XX 15 contains facilities for modification (deletion) of the currently running object code. Each statement to be deleted is identified by program 30 in the steps described above. Next, program 30 returns from method invocation, i.e. sets the program counter equal to the program instruction resulting from the conditional evaluation (step 148). Then, program 30 proceeds to step 100 to fetch and process this instruction of program 32.


While the operation performed by the method which is called by program 32 or any method called by this method is not important to the present invention, the following is an example. In this example, program 32 defines a class C containing two functional methods. The following is the pseudo code for class C:

Pseudo code for Class CClassBody:  ClassBodyDeclarations:  FieldDeclaration:    PCI Field X  ConstructorDeclaration:    SimpleTypeName:      FormalParameterList:        Empty      ConstructorBody:      Assignment X = True  MethodDeclaration:    Method A  MethodDeclaration:    MethodB


The foregoing definition of Class C indicates in the first three lines of the body that variable “X” is fixed or Post Construction Immutable (“PCI”). The foregoing definition of Class C indicates in the middle six lines of the body that there are no parameters for the constructor for Class C, and the value of the variable “X” is “true”. The foregoing definition of Class indicates in the last four lines of the body that Method A and Method B are contained within Class C.


In this example, the following is the pseudo code for Method A:

Pseudo code for Method AMethod A:  MethodHeader:    MethodModifiers(opt) ResultType MethodDeclarator    Throws(opt)      ResultType:        Void      MethodDeclarator:        Formal ParameterList:          Empty  MethodBody:    Block:      MethodInvocation (Method B)        FormalParameterList:                    Expression:            String1+String2+String3


The foregoing definition of Method A indicates in the method header section that the method returns no value and accepts no arguments. The foregoing definition of Method A indicates in the method body section that the Method A contains a call to invoke Method B. The foregoing definition of Method A indicates in the method body section that the call to invoke Method B requires an argument formed by joining character strings (defining a user of program 32), i.e. joining String1+String2+String3. Before calling Method B, Method A joins the foregoing character strings prior to invoking Method B.


In this example, the following is the pseudo code for Method B:

Pseudo code for Method BMethod B:  MethodHeader:    MethodModifiers(opt) ResultType MethodDeclarator    Throws(opt)      ResultType:        Void      MethodDeclarator:        Formal ParameterList:          String1  MethodBody:    Block:      IfThenElseStatement:        If (X not equal True)          Then:            Expression involving String1          Else:            Return


The foregoing definition of Method B indicates in the method header section that Method B returns no value and accepts one argument of type String labeled “String1”. The foregoing definition of Method B indicates in the method body section that Method B performs a conditional evaluation of variable “X”, i.e. “If X is not equal to True, then perform operation involving String1. If X is equal to True then immediately/directly return to the invoker” (without anything productive happening, for example, without invoking another method, without performing a useful computation, without expression evaluation and without statement evaluation).


During execution of program 32 the run-time interpreter XX produces a new instance of Class C. During creation of this instance of Class C, the run-time interpreter XX records that the variable “X” is fixed (as noted by the compiler), and supplies program 32 with the addressing information for Method A. When program 32 is subsequently invoked and executes, it invokes Method A which begins to execute in step 112. In response, Method A initially computes the argument for calling Method B, by joining String1+String2+String3 in step 116. After computing the argument, Method A invokes Method B in step 120. While Method A and Method B are being executed, program 30 monitors the instruction statements of Method A and Method B in step 122. During this monitoring, program 30 notices that in Method B, a variable “X” is fixed and is being compared to another fixed variable or a fixed value, and the result is an immediate/direct return to the invoker, Method A, with nothing productive occurring (decision 130, yes branch). Consequently, program 30 optimizes program 32 by removing from Method A in program 32 the call to Method B and the associated instructions for computing the argument for the call to Method B. After program 30 optimizes Method A, the following steps enclosed in brackets [ ] are removed from Method A in step 134:

Optimized Pseudo code for Method AMethod A:  MethodHeader:    MethodModifiers(opt) ResultType MethodDeclarator    Throws(opt)      ResultType:        Void      MethodDeclarator:        Formal ParameterList:          Empty  MethodBody:    Block:      [MethodInvocation (Method B)]        [FormalParameterList:]          [X]          [Expression:]            [String1+String2+String3]


Thus, during the next iteration of program 32 the foregoing steps enclosed in brackets [ ] are not executed when program 32 calls Method A. This reduces the processing time of program 32.


Based on the foregoing, a system, method and program product to optimize a computer program during run time have been disclosed. However, numerous modifications and substitutions can be made without deviating from the scope of the present invention. Therefore, the present invention has been disclosed by way of illustration and not limitation, and reference should be made to the following claims to determine the scope of the present invention.

Claims
  • 1. A process for optimizing a computer program during run time, said process comprising the steps of: during run time, determining if said computer program calls a method which includes a conditional evaluation of a variable which is fixed and the evaluation of said fixed variable does not result in anything productive being accomplished except to return to execution of said computer program, and if so, deleting the call to said method which includes said conditional evaluation, from said computer program for subsequent iterations of said computer program, whereby said subsequent execution of said computer program will yield a same result as if said conditional evaluation was executed, and if not, not deleting said call to said method which includes said conditional evaluation from said subsequent execution of said computer program.
  • 2. A process as set forth in claim 1 wherein the call to the first said method is contained in a second method within said computer program, and the evaluation of said fixed variable results in a direct return to said second method.
  • 3. A process as set forth in claim 1 wherein said conditional evaluation of said fixed variable does not result in a call to another method outside of said computer program, or any computations or other evaluations needed by said computer program.
  • 4. A process as set forth in claim 1 wherein during a first iteration of said computer program, the value of said variable is set to the fixed value and an argument associated with said variable is computed.
  • 5. A process as set forth in claim 1 wherein said computer program includes a conditional evaluation of a variable which is fixed and the evaluation of said fixed variable does not result in anything productive being accomplished, and further comprising the step of deleting from said computer program instructions to compute an argument required to proceed if said variable had a value other than said fixed value.
  • 6. A system for optimizing a computer program during run time, said system comprising: means for determining, during run time, if said computer program calls a method which includes a conditional evaluation of a variable which is fixed and the evaluation of said fixed variable does not result in anything productive being accomplished except to return to execution of said computer program, and if so, means for deleting the call to said method which includes said conditional evaluation, from said computer program for subsequent iterations of said computer program, whereby said subsequent execution of said computer program will yield a same result as if said conditional evaluation was executed, and if not, retaining said call to said method which includes said conditional evaluation from said subsequent execution of said computer program.
  • 7. A system as set forth in claim 6 wherein the call to the first said method is contained in a second method within said computer program, and the evaluation of said fixed variable results in a direct return to said second method.
  • 8. A system as set forth in claim 6 wherein said conditional evaluation of said fixed variable does not result in a call to another method outside of said computer program, or any computations or other evaluations needed by said computer program.
  • 9. A system as set forth in claim 6 wherein during a first iteration of said computer program, the value of said variable is set to the fixed value and an argument associated with said variable is computed.
  • 10. A system as set forth in claim 6 wherein said computer program includes a conditional evaluation of a variable which is fixed and the evaluation of said fixed variable does not result in anything productive being accomplished, and further comprising means for deleting from said computer program instructions to compute an argument required to proceed if said variable had a value other than said fixed value.
  • 11. A computer program product for optimizing a computer program during run time, said computer program product comprising: a computer readable medium; first program instructions to determine, during run time, if said computer program calls a method which includes a conditional evaluation of a variable which is fixed and the evaluation of said fixed variable does not result in anything productive being accomplished except to return to execution of said computer program, and if so, second program instructions delete the call to said method which includes said conditional evaluation, from said computer program for subsequent iterations of said computer program, whereby said subsequent execution of said computer program will yield a same result as if said conditional evaluation was executed, and if not, said call to said method which includes said conditional evaluation is not deleted from said subsequent execution of said computer program; and wherein said first and second program instructions are stored on said medium.
  • 12. A computer program product as set forth in claim 11 wherein the call to the first said method is contained in a second method within said computer program, and the evaluation of said fixed variable results in a direct return to said second method.
  • 13. A computer program product as set forth in claim 11 wherein said conditional evaluation of said fixed variable does not result in a call to another method outside of said computer program, or any computations or other evaluations needed by said computer program.
  • 14. A computer program product as set forth in claim 11 wherein during a first iteration of said computer program, the value of said variable is set to the fixed value and an argument associated with said variable is computed.
  • 15. A computer program product as set forth in claim 11 wherein said computer program includes a conditional evaluation of a variable which is fixed and the evaluation of said fixed variable does not result in anything productive being accomplished, and further comprising third program instructions to delete from said computer program instructions to compute an argument required to proceed if said variable had a value other than said fixed value; and wherein said third program instructions are recorded on said medium.
  • 16. A process for optimizing a computer program during run time, said computer program including a call to a first method, said first method including a call to a second method, said process comprising the steps of: during run time, determining if said second method includes a conditional evaluation of a variable which is fixed such that the execution of said second method does not result in anything productive being accomplished except to return to said first method, and if so, deleting in said first method said call to said second method, and if not, not deleting said call in said first method to said second method.
  • 17. A process as set forth in claim 16 wherein said first method also includes instructions to compute an argument required for said call to said second method, and said second method includes a conditional evaluation of a variable which is fixed such that execution of said second method does not result in anything productive being accomplished except to return to said first method, and further comprising the step of deleting from said first method said instructions to compute said argument required for said call to said second method.