This invention relates generally to computers and more particularly to compilers that support dynamic memory allocation.
A portion of the disclosure of this patent document contains material that is subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all copyright rights whatsoever. The following notice applies to the software and data as described below and in the drawings hereto: Copyright © Intel, Incorporated, 2000. All Rights Reserved.
A computer operates under the control of programs consisting of coded instructions called object code that execute on the computer. But, object code is not readily understood by humans, so a human programmer typically writes programs in a high-level programming language, such as BASIC, PASCAL, C, C++, or the like, which is easier to understand. High-level languages generally have a precise syntax that defines certain permitted structures for statements in the language and their meaning. A compiler, which is itself a program, translates the high-level language statements, called “source code” into object code. Thus, the terms “source code” and “object code” describe the form of a program prior to and after translation, respectively. Accordingly, the term “source code” generally refers to a program in its high-level programming language form. “Object code,” on the other hand, generally refers to the program in the form of the coded instructions generated by the compiler that are executable on a computer.
In modern microprocessors, compilers play a significant role in obtaining good performance of the object code. In particular, the compiler's ability to extract instruction-level parallelism (ILP) in a program quite often holds the key to improved performance. For memory references, ILP can effectively hide the latency of performance-critical load operations by executing the loads before earlier store operations.
Without accurate data-dependence information, the efficiency of ILP to reorder memory operations suffers significantly. This accuracy of data-dependence information critically depends on the compiler's ability to distinguish memory accesses to different locations, a process called memory disambiguation. When two memory accesses cannot be disambiguated, they may be “aliased”, i.e., they may refer to the same memory location.
In many programming languages, programs can be written to dynamically allocate and create multi-dimensional arrays. Here “dynamic allocation” refers to obtaining storage at runtime as opposed to determining storage at compile time. In C programs, for example, multi-dimensional arrays are allocated and formed dynamically through the function-call “malloc” defined in the C language. The program then performs various computations on these arrays and finally deallocates them using another C language defined function-call “free”. In such programs, the compiler must disambiguate between references to dynamically-allocated multi-dimensional arrays in order to improve instruction-level parallelism. But, current techniques are inadequate to disambiguate between references to a dynamically-allocated multi-dimensional array. Therefore, performance of such programs can be severely affected when key loops cannot be parallelized due to false data dependencies that cannot be eliminated since the compiler was unable to disambiguate the dynamic-array accesses.
What is needed is a mechanism to disambiguate real data dependencies from false data dependencies, so that more loops can take advantage of instruction-level parallelism and performance of the resulting object code can be increased.
In the following detailed description of exemplary embodiments of the invention, reference is made to the accompanying drawings (where like numbers represent like elements), which form a part hereof, and in which is shown by way of illustration specific exemplary embodiments in which the invention may be practiced. These embodiments are described in sufficient detail to enable those skilled in the art to practice the invention, but other embodiments may be utilized and logical, mechanical, electrical, and other changes may be made without departing from the scope of the present invention. The following detailed description is, therefore, not to be taken in a limiting sense, and the scope of the present invention is defined only by the appended claims.
In the following description, numerous specific details are set forth to provide a thorough understanding of the invention. But, it is understood that the invention may be practiced without these specific details. In other instances, well-known circuits, structures and techniques have not been shown in detail in order not to obscure the invention.
Processor 105 represents a central processing unit of any type of architecture, such as a CISC, RISC, VLIW, or a hybrid architecture, although any appropriate processor can be used. Processor 105 executes instructions and includes that portion of computer 100 that controls the operation of the entire computer, including executing the arithmetical and logical functions contained in a particular computer program. Although not depicted in
Storage device 110 represents one or more mechanisms for storing data. For example, storage device 110 can include read only memory (ROM), random access memory (RAM), magnetic disk storage mediums, optical storage mediums, flash memory devices, and/or other machine-readable mediums. Although only one storage device 110 is shown, multiple storage devices and multiple types of storage devices can be present. Further, although computer 100 is drawn to contain storage device 110, the storage device can be distributed across other computers.
Bus 115 represents one or more busses (e.g., PCI, ISA, X-Bus, EISA, VESA, or any other appropriate bus) and bridges (also termed bus controllers).
Keyboard 120 is that part of computer 100 that resembles a typewriter keyboard and that enables a user to control particular aspects of the computer.
Display device 127 is the visual output of computer 100. Display device 127 can be a cathode-ray tube (CRT) based video display well known in the art of computer hardware. But, with a portable or notebook-based computer, display device 127 can be replaced with a liquid crystal display (LCD) based or gas, plasma-based, flat-panel display. In still other embodiments, any appropriate display device can be used.
Network adapter 130 facilitates communication between computer 100 and an unillustrated network. Network adapter 130 provides a user of computer 100 with a means of electronically communicating information, such as packets, with a remote computer or a network logical-storage device. In addition, in another embodiment, network adapter 130 supports distributed processing, which enables computer 100 to share a task with other computer systems linked to the network. Although network adapter 130 is shown as part of computer 100, in another embodiment they are packaged separately.
Computer 100 can be implemented using any suitable computer, such as a personal computer available from a number of vendors. Portable computers, laptop computers, mainframe computers, handheld devices, and network computers or Internet appliances are examples of other possible configurations. The hardware and software depicted in
As will be described in detail below, aspects of an embodiment pertain to specific apparatus and method elements implementable on computers. In another embodiment, the invention can be implemented as a computer program product for use with a computer system. The programs defining the functions of this embodiment can be delivered to a computer via a variety of signal-bearing media, which include, but are not limited to:
Such signal-bearing media, when carrying computer-readable instructions that direct the functions of the present invention, represent embodiments of the present invention.
Compiler 135 uses an alias-free test to determine whether the internal pointers used to reference elements of array A are defined once in each call to malloc and then never aliased in the program. (See
b also shows another statement 265, which alters the intermediate pointers used to access array A. Statements that alter the internal pointers used to access dynamically-allocated arrays cannot be optimized and will cause the alias-free test of compiler 135 to return a failure indication.
Dynamically-allocated array A in this example has a first dimension of “N” elements (0 to N−1), a second dimension of 3 elements (0 to 2), and a third dimension of “M” elements (0 to M−1). The values of “N” and “M” are determined at runtime and can be any integers. The second dimension is defined to be 3 in this example, for ease of drawing the figure, but any number can be used for the second dimension. Also, the dimensions can be any combination of statically-allocated and dynamically-allocated dimensions, and in other embodiments all or only some of the dimensions of the array are dynamically allocated. Also, the invention is not limited to arrays of three dimensions, and the number of dimensions can be one, two, three, or any number.
Control then continues to block 510 where compiler 135 determines whether all assignments in source code 140 have been processed. Block 510 is the beginning of a loop represented by blocks 510, 515, 520, and 522, which will process all assignment statements within source code 140.
When the determination at block 510 is false, control then continues to block 515 where compiler 135 determines the malloc location to which the left-hand side of the current assignment is aliased. That is, compiler 135 determines which statement (e.g., 205, 210, or 215) in source code 140 created the malloc location associated with the assignee (the left-hand side of an assignment statement) in the current assignment statement. Using the examples of
Referring again to
Referring again to
When the determination at block 510 is true, then all assignments within source code 140 have been processed, so control then continues to block 599 where the preprocessing phase concludes and the function returns.
If the determination at block 630 is false, then control continues to block 640 where compiler 135 determines whether the malloc location corresponding to the current level of internal pointers is marked as having been modified. If the determination at block 640 is false, then control continues to block 645 where compiler 135 moves to the next level of internal pointers. Control then returns to block 630, as previously described above.
If the determination at block 640 is true, then control then continues to block 650 where compiler 135 indicates that the alias-free test failed for this query on a dynamic-array reference, so this query must be treated as query on a dynamic array. An example of such an assignment that causes the alias-free test to fail is statement 265 in
Referring again to
Code that dynamically allocates memory is optimized. An alias-free test analyzes the aliasing behavior of internal pointers of dynamically-allocated arrays and uses the analysis to disambiguate memory accesses and to eliminate false data dependencies. When a dynamically-allocated array behaves like a statically-allocated array throughout the entire program execution, the alias-free test allows better instruction scheduling, which yields better performance.
Number | Name | Date | Kind |
---|---|---|---|
5103393 | Harris et al. | Apr 1992 | A |
5161216 | Reps et al. | Nov 1992 | A |
5590329 | Goodnow et al. | Dec 1996 | A |
5768596 | Chow et al. | Jun 1998 | A |
5819088 | Reinders | Oct 1998 | A |
5842019 | Kolawa et al. | Nov 1998 | A |
5872990 | Luick et al. | Feb 1999 | A |
5974470 | Hammond | Oct 1999 | A |
6047369 | Colwell et al. | Apr 2000 | A |
6128627 | Mattis et al. | Oct 2000 | A |
6138231 | Deosaran et al. | Oct 2000 | A |
6209003 | Mattis et al. | Mar 2001 | B1 |
6209020 | Angle et al. | Mar 2001 | B1 |
6237079 | Stoney | May 2001 | B1 |
6272516 | Angle et al. | Aug 2001 | B1 |
6292880 | Mattis et al. | Sep 2001 | B1 |
6311327 | O'Brien et al. | Oct 2001 | B1 |
6401181 | Franaszek et al. | Jun 2002 | B1 |
6427234 | Chambers et al. | Jul 2002 | B1 |
6434577 | Garthwaite | Aug 2002 | B1 |
6453319 | Mattis et al. | Sep 2002 | B1 |
6463582 | Lethin et al. | Oct 2002 | B1 |
6467075 | Sato et al. | Oct 2002 | B1 |
6594749 | Czajkowski | Jul 2003 | B1 |
6647547 | Kanamaru et al. | Nov 2003 | B1 |
6658559 | Arora et al. | Dec 2003 | B1 |
6665787 | Franaszek et al. | Dec 2003 | B2 |
6665865 | Ruf | Dec 2003 | B1 |
6678807 | Boatright et al. | Jan 2004 | B2 |
6684393 | Loen et al. | Jan 2004 | B1 |
6701420 | Hamilton et al. | Mar 2004 | B1 |
6718485 | Reiser | Apr 2004 | B1 |
6718542 | Kosche et al. | Apr 2004 | B1 |
6721943 | Krishnaiyer et al. | Apr 2004 | B2 |
6804763 | Stockdale et al. | Oct 2004 | B1 |
Number | Date | Country | |
---|---|---|---|
20030005420 A1 | Jan 2003 | US |