Field of the Invention
This invention relates to compiler programs and, more particularly, to a compiler program which includes an optimizing procedure which, through use of loop interchanges and loop distributions, improves a sequence of memory addressing actions of an application program being compiled.
Background of the Invention
Loop interchange is a program transformation that re-orders loop inclusions or "nests". A loop interchange is illustrated by the following example:
To paraphrase the above steps in the "before" code: step a) indicates that the value of I should be calculated for each of the values stored in an I.times.J memory matrix at I positions 0-9; step b) indicates that the value of J should be calculated, for every value of I, for each of the values stored in the I.times.J memory matrix at J positions 0-9; and step c) indicates that A(I,J) should be initialized to zero at the start. One skilled in the art will realize that an interchange of the loops of Example 1 may help performance, since the memory accesses will become more sequential.
This can be understood by reference to FIG. 1, wherein a 10.times.10 memory matrix is schematically illustrated. If the above-noted Before code listing is executed, the following I,J addresses are accessed in sequence: 0,0; 0,1; 0,2; 0,3 . . . Note that this addressing requires memory positions 0, 10, 20, 30, etc to be sequentially accessed, requiring multi-memory position increment for each address action.
By performing a loop interchange between the I loop and the J loop to reach the "After" code listing in Example 1, the resulting JxI addressing accesses memory positions 0-30 . . . in sequence, thus achieving a single step or "stride one" incrementing of address positions (i.e., a more efficient and faster executing procedure).
A loop interchange requires perfect loop nests, that is, no code is present within the body of the outer loop other than one or more inner loop(s). A set of loops which comprise other than a perfect loop nest is referred to as an imperfect loop nest. One strategy for interchanging imperfect loop nests is first to apply an "enabling" transformation, such as loop distribution, which takes an outer loop that surrounds multiple components, and converts the outer loop into multiple loops around each individual component. For example:
The loop distribution illustrated in the "After" code of Example 2 splits the DO I outer loop into two loops and allows isolation of the imperfection (i.e., X(I)=3). Thereafter, the second loop nest can be interchanged, as shown in Example 1. Further examples of both loop interchange and loop distribution can be found in Zima and Chapman, Supercompilers for Parallel and Vector Computers, ACM Press, 1991.
The practical difficulties of such program manipulations are: (i) neither a loop interchange nor a loop distribution are always legal, and (ii) loop distribution, by itself, may be a detrimental transformation, as it raises loop overhead, and more importantly, may lower memory reuse. Accordingly, an algorithm is needed that achieves the distribution-enabled interchanges as above, only when legal, and avoids detrimental distributions when no subsequent interchange is enabled.
For simple cases, such manipulations have been achieved, essentially by speculatively distributing loops; seeing if profitable loop interchanges result; and if not, abandoning the distribution and restoring the original code. See: McKinley et al., "Improving Data Locality with Loop Transformations", ACM Transactions on Programming Languages and Systems, July 1996, Vol. 18, Num. 4.
To summarize, the prior art recognizes that loop interchanges, standing alone may improve program performance by improving a sequence of memory accesses. Further, it is known that by starting with a loop distribution, that a subsequent loop interchange may be enabled which will improve program execution. However, to Applicant's knowledge, it has not been realized that where a potential loop distribution is illegal, that an enabling loop interchange may open a route for further program code improvements.
Summary of the Invention
A compiler optimizing procedure improves a sequence of memory addressing actions of a program, wherein the program includes a plurality of do loops. The procedure includes the steps of: performing an interchange of do loops, within a set of nested loops, to move at least one loop of the set to a position of an outer loop, wherein the one loop manifests a condition which prevents application of a distribution action thereto; attempting distribution of a next outermost loops so as to isolate a code segment in the program from remaining interior loops of the set of nested loops; and if the distribution is performed, determining for each remaining interior loop if an interchange with another interior loop will improve an efficiency of execution of the program and if yes, performing the loop interchange.
Brief Description of the Drawings
FIG. 1 is a schematic illustration of a 10.times.10 memory matrix that is useful in describing the actions of the prior art.
FIG. 2 is a block diagram of a computer system that is adapted to perform the invention hereof.
FIG. 3 is a logical flow diagram illustrating the procedure of the invention.
Detailed Description of the Invention
Referring to FIG. 2, a computer 10 includes an input/output module 12 for receiving a program to be compiled and a central processing unit (CPU) 14 for performing compile actions on the program. The received program is stored on a disk drive 18, prior to and after being subjected to the compile action of a compiler procedure 20 which is stored in memory 22.
Compiler procedure 20 includes a code optimizer procedure 24 which further comprises a set of subprocedures that are utilized to perform the optimizing actions. Those subprocedures include a loop interchange procedure 26, a loop distribution procedure 28, a legality procedure 30 (for determining if either a loop interchange or loop distribution is "legal" or "illegal"), and a "profitability" procedure (for determining whether a program manipulation results in improved performance or is detrimental to performance).
While it is to be hereafter assumed that the procedures and subprocedures for performing the method of the invention have already been loaded into memory 22, the controlling programs and subroutines may be present on a memory disk 34, or other memory media, which is loaded directly into CPU 14 to control the action thereof to perform the invention.
Turning to FIG. 3, the procedures employed by the invention to improve the execution of a program will be described. It is initially to be understood that profitability procedure 32, when executed, determines if the execution time of a revised code sequence is improved over a previous non-revised version. If it turns out that the execution sequence of revised code is less efficient, then profitability procedure 32 indicates such fact. More precisely, the result of an optimization action may be to be worsen a sequence of memory addressing actions and thus degrade program performance. In such case, the optimization action is counter-productive and is reversed.
Legality procedure 30 determines if a code transformation will result in an identical calculated result as the pre-transformed code. More specifically, it determines if required data dependencies are maintained in the transformed code. If not, the code transformation is termed "illegal".
As shown in FIG. 3, code optimizer 24 initially determines if a perfect loop nest is present in the program listing, i.e., there is no code in the body of an outer loop other than an inner loop or loops (decision box 50). If it is determined that the loop nest is perfect, then it is next determined whether a loop interchange is both legal and profitable (decision box 52). If the answer is yes, a loop interchange is performed (box 54) and the procedure is at an end. If the interchange is found to be either illegal or not profitable, the procedure is at an end.
Assume now that the loop nest is found to be imperfect (decision box 50). In such case, it is next determined whether a distribution of the loops within the loop nest will improve program performance (i.e., the program performance is more "profitable") (decision box 56). If a distribution action results in the less efficient program operation, the procedure is at an end. By contrast, if it is determined that a distribution action will render a more efficient program performance, then it is next determined whether the distribution action is legal (decision box 58).
For example, a distribution will often be found illegal if data dependencies are violated by the distribution action. Such a case may occur where a data dependency resides in an inner loop of a loop nest, making a loop interchange illegal. Nevertheless, if such an inner loop can be moved so as to become an outer loop and thereby isolate the data dependency to the outer loop, a subsequent interchange of further inner loops may be enabled.
Returning to decision box 58, if it is found that the distribution action is legal, then the procedure moves to box 60 wherein a distribution action is performed, followed by a loop interchange. If, however, the distribution action is found to be illegal (decision box 58), then the procedure moves to decision box 62 wherein it is determined if at least two loops are present in the outer perfect nest of loops. If no, an interchange cannot be performed and the procedure is at an end. Otherwise, an interchange of loops is performed (box 64) which may remove the data dependency to an outer loop (so as to enable a subsequent distribution action).
Thereafter, a second outermost loop is found (box 66) and the procedure recycles to decision box 50. If the second outermost loop (and further loops) are found not to constitute a perfect nest of loops, then the procedure moves to decision boxes 56 and 58 to determine if a distribution will be both profitable and legal. If yes, then the distribution action is performed, enabling a subsequent interchange which is then performed. Accordingly, the initial interchange (box 64) enables a distribution action which, in turn, enables a subsequent interchange action to improve code performance.
The key to achieving the transformation illustrated in FIG. 3 above, is choosing a legal loop interchange that enables a legal distribution that, in turn, enables a profitable and legal interchange. The code listing which implements the above-described procedure is as follows:
The statement "Attempt.sub.-- Distribution.sub.-- 2 (loop)" refers to the extra step of trying an enabling distribution and interchange along the lines described above in box 60. For a loop nest to be worth interchanging to enable distribution, its dependencies, which constrain legal transformations, must have a particular form. In the dependence distance vector notation, for instance, distance vectors with zero in the first row are preferred, with some positive number in inner rows, so that the interchanged loop will carry the dependency in the resulting outer loop, making an inner distribution legal. If this condition obtains, the interchange can be executed, with the optimizing procedure applied recursively to the resulting inner loop nests.
In a two-deep nest, there is only one possible interchange. In deeper nests, there may be more legal interchanges which yield inner loops of the appropriate form, all of which may be worth trying. The dependency condition mentioned above helps minimize the number of transformations attempted.
Given the recursion and potential backtracking of the invention, the procedure needs a way of backing out of tentative or speculative transformations. This can be done by reversing the transformation. It may be more efficient to execute the transformations on an auxiliary data structure, which can be simply abandoned if the transformation is found unprofitable, or used as a template to modify the fundamental representation if the transformation is ultimately accepted.
The following is a further detailed example of an application of the invention to a test program sequence. The benchmark code 093. nasa 7/CHOLKSY contains this loop:
The desired end-result is to interchange the I loop to innermost, to achieve "stride-one" memory accesses. This requires first distributing the I loop, which is obviously legal. This leaves two nests, each of which looks like:
Now there is a double-nest at the top-level. The goal is to get I innermost in the deepest (second) nest. Unfortunately, it is illegal to distribute the I-K loop nest over the L and JJ-L nests. However, if the I-K loop nest is first interchanged, the resulting I loop can be distributed over the two inner loops. This results in:
Now it is legal and profitable to exchange the I loop innermost. Accordingly, the above described loop distribution and loop interchange procedure can apply sequences of distribution and interchange in order to perform a profitable and legal interchange. Further, the procedure avoids doing enabling, and possibly detrimental transformations, unless a profitable transformation results.
It should be understood that the foregoing description is only illustrative of the invention. Various alternatives and modifications can be devised by those skilled in the art without departing from the invention. Accordingly, the present invention is intended to embrace all such alternatives, modifications and variances which fall within the scope of the appended claims.