A CPU cache is a computer hardware mechanism used by the central processing unit of a computer to reduce the average time to access memory. A cache is a small, fast memory that retains copies of the data from recently used main memory locations. If a subsequent memory access is to a memory address that has been retained in the cache, the memory access is satisfied using the cache memory. Thus, the more accesses that are performed from cached memory locations, the lower the average memory access time, and the faster the application program runs.
Cache memory is subdivided into cache lines. Each cache line has a copy of some fixed-size, contiguous range of bytes of main memory. Each cache line also has an address tag and other state that identifies whether the cache line is presently valid and if so what addressed range of data are retained in the cache line. Cache lines are of a fixed size, typically 32 to 256 bytes, that depends upon the hardware design. When a CPU performs a read or write memory access to a data at a given address in main memory, it also checks whether that address is contained in its cache, in particular, if the cache contains a cache line which is valid and whose address tag matches the memory address of the access. If so, then a cache hit occurs, and the CPU accesses the data in the cache line. Otherwise, a cache miss occurs and the CPU proceeds down the slower path of accessing the data elsewhere, and recording a copy of the data in a cache line in the CPU cache. Since a cache is of fixed size, to retain new data in a cache line, it may be necessary to evict (invalidate) data that may have been previously held in that cache line.
Software application programs execute a sequence of hardware instructions to effect a computation. Such instructions may perform arithmetic operations, may alter the program control flow sequence of subsequent instructions, may read or write (collectively, access) data at specific memory addresses, or perform other operations. When a CPU cache is used with a CPU, its presence, and any information about which addresses are currently cached, and any hardware processes of checking, validating, and invalidating cache lines, is typically invisible and inaccessible to software programs, except that programs usually execute faster.
Modern computers may have a plurality of layers of caches. For example, a small, fast level one cache (L1$) may quickly service most memory accesses; but on an L1$ miss, a larger, slower level two cache (L2$) may be accessed. Only upon a memory access that misses both the L1$ and L2$ would the access be performed to the relatively very slow main memory.
Modern computers may also be multiprocessors, which have a plurality of CPUs. In a shared memory multiprocessor, each CPU may access the same shared memory, so one CPU may write to shared memory and later another CPU may read the data written by the first. Each CPU may have one or more layers of cache for its exclusive use (private cache) as well as one or more layers of caches shared with other CPUs (shared cache). In the presence of multiple CPUs with caches, multiprocessors implement cache coherence to transparently provide the multiple threads of execution in the software program with the illusion that all memory accesses are to a single common shared main memory. Here the simple notion that a given cache line is valid is replaced with more elaborate cache line validity states, state machines, and signaling protocols called cache coherence protocols. Sometimes an access in one CPU (such as a write) must invalidate a cache line in other CPUs.
It is also possible to factor and share hardware resources in a multiprocessor so as to share some, or nearly all, of the duplicated hardware resources between multiple CPUs. In an extreme case, a logical plurality of CPUs can be implemented in hardware in a time multiplexed fashion upon a single CPU core, by providing a plurality of copies of all the processor state and registers, called hardware thread contexts, in a single CPU. This is known as a multithreaded CPU core. For example, a single CPU core with four distinct thread contexts, e.g. four copies of its program counter, general purpose registers, and special purpose registers, nonetheless appears to application software and operating system software as four logical processors (LPs), indistinguishable in behavior, if not performance, from a multiprocessor comprising four separate CPU cores.
Over time, computer hardware has become faster and more powerful. Today's multiprocessors provide multiple CPU cores that can operate in parallel. Programmers would like different pieces of a program to execute in parallel on these multiple cores, to take advantage of the performance improvements that can be achieved. However, parallel programming is quite difficult for the average programmer using the software development techniques of today, and thus system implementers are developing new programming models that can be used to better write parallel programs. Some of these new programming models are following a transactional memory approach, which uses a transaction abstraction to help coordinate parallel threads' access to shared memory. Transactions do not automatically provide parallelism per se, but they do shift some of the burden of coordinating parallel tasks to other parts of the system, such as the compiler or runtime.
Various technologies and techniques are disclosed for providing software accessible metadata in a cache of a central processing unit. The metadata state can include at least some bits of state for each quantum of addressed data, at least some state for each cache line, and at least some state for the cache overall. Additional instructions in the central processing unit are provided for interacting with this metadata. New side effects are introduced into operations of the central processing unit and cache by presence of the metadata and the additional instructions. The metadata can be accessed by at least one software program to facilitate an operation of the software program.
In one implementation, a bounded transactional memory application is provided that accesses cache metadata in a cache of a central processing unit. When performing a transactional read from the bounded transactional memory application, a cache line metadata transaction-read bit is set. When performing a transactional write from the bounded transactional memory application, a cache line metadata transaction-write bit is set and a conditional store is performed. At commit time, if any lines marked with the transaction-read bit or the transaction-write bit were evicted or invalidated, all speculatively written lines are discarded. The application can also interrogate a cache line metadata eviction summary to determine whether a transaction is doomed and then take an appropriate action.
In another implementation, a hardware accelerated software transactional memory (HASTM) application is provided. The software transactional memory application has access to metadata in a cache of a central processing unit that can be used to improve the operation of the STM system, in particular to accelerate some of the most time consuming operations in the software transactional memory operation. For example, open read barrier filtering is provided that uses an opened-for-read bit that is contained in the cache metadata to quickly filter (test and set) whether a given transactional memory datum has already received the expensive software bookkeeping it requires. If so, the redundant ‘open for read’ software bookkeeping is safely skipped. Read log validation is also accelerated using metadata. As a transaction runs, the HASTM software sets a read-set bit in the cache line metadata for each accessed datum, accumulating in the cache a ‘read set’ of metadata state representing the set of data the transaction read. This cache metadata is retained alongside its cached data unless evicted or unless invalidated when some other CPU writes to data in this CPU's read set. At transaction commit time, or earlier, the application may interrogate the cache line metadata eviction summary; if no lines were evicted, the CPU's read set is intact, so software read set validation is unnecessary and can be skipped. This same read-set cache line metadata also accelerates the retry facility of a software transactional memory system. If an application uses a transaction retry statement to roll back its transaction and then await a change in its read set, the HASTM software need only establish a software handler vector to await invalidation of a read-set bit of cache line metadata. Then when another CPU writes some data that is in the application's read set, the corresponding cache line (and hence its read-set bit in its cache line metadata) will be invalidated, triggering a jump to a software handler that concludes the ‘retry’ action and resumes (restarts) the transaction.
This Summary was provided to introduce a selection of concepts in a simplified form that are further described below in the Detailed Description. This Summary is not intended to identify key features or essential features of the claimed subject matter, nor is it intended to be used as an aid in determining the scope of the claimed subject matter.
For the purposes of promoting an understanding of the principles of the invention, reference will now be made to the embodiments illustrated in the drawings and specific language will be used to describe the same. It will nevertheless be understood that no limitation of the scope is thereby intended. Any alterations and further modifications in the described embodiments, and any further applications of the principles as described herein are contemplated as would normally occur to one skilled in the art.
The system may be described in the general context as a system that has a central processing unit that uses cache metadata on the CPU cache for improving the operation of one or more software programs. As shown in
In one implementation, central processing unit(s) 102 include a cache 103 with software accessible metadata 105. These metadata are described in further detail in several other figures herein. One or more hardware assisted software application(s) 150 can access the metadata 105 of the CPU cache 103 to facilitate an operation of the respective software application. A few non-limiting examples of hardware assisted software applications can include, but are not limited to transactional memory systems, garbage collection systems, systems for analyzing the performance or run-time behavior of programs, systems for finding defects in programs, systems for enforcing security constraints on programs, and/or any other types of software applications that can be improved (either in performance or in some other way) by using the metadata 105 on the CPU cache 103. These software applications may directly read and write the metadata as appropriate for the given scenario. Alternatively or additionally, the hardware itself may read and/or modify the metadata as appropriate.
Depending on the exact configuration and type of computing device, memory 104 may be volatile (such as RAM), non-volatile (such as ROM, flash memory, etc.) or some combination of the two. This most basic configuration is illustrated in
Additionally, device 100 may also have additional features/functionality. For example, device 100 may also include additional storage (removable and/or non-removable) including, but not limited to, magnetic or optical disks or tape. Such additional storage is illustrated in
Computing device 100 includes one or more communication connections 114 that allow computing device 100 to communicate with other computers/applications 115. Device 100 may also have input device(s) 112 such as keyboard, mouse, pen, voice input device, touch input device, etc. Output device(s) 111 such as a display, speakers, printer, etc. may also be included. These devices are well known in the art and need not be discussed at length here.
Turning now to
Shown below is a C-language-esque hardware definition pseudocode of the baseline cache state and new cache metadata state hardware state for a four logical processor system that includes the new VAMD, CLMD, and CMD instructions shown in
typedef void* VALUE;
const int VAMDBITS = 4;
typedef bit VAMD[VAMDBITS];
const int VAMDSTRIDE = 8;
const int NVAMDS = LINESIZE/VAMDSTRIDE;
const int CLMDBITS = 8;
typedef bit CLMD[CLMDBITS];
const int CLMD_SPECWRITE = 0;
VAMD vamds[NVAMDS][NLPS];
proc. CLMD clmds[NLPS];
}
struct CMD {
CLMD clmd_evictions;
CLMD clmd_specwritesmask; // subset
of CLMD bits that indicate// speculative writes
CLMD clmd_default;
VAMD vamd_default;
HANDLER clmd_eviction_handler;
CLMD clmd_eviction_handler_mask;
CMD cmds[NLPS];
It should be emphasized that the abstract hardware definition pseudocode used throughout this detailed description is not an executable software program per se. Rather, it denotes in a relatively compact notation the novel cache metadata state and behaviors that a skilled computer designer must then recode into a circuit description or a concrete hardware definition language such as Verilog or VHDL.
In the non-limiting example shown above, for a 4-logical processor example sharing a 64 KB L1 cache, with 1024 64 byte lines, the additional cache metadata storage overhead is: 4 threads*8 bits*2K (lines)+4 threads*4 bits*8K (quadwords)=64 Kbit+128 Kbit=24 KB, or about 37% of the size of the entire cache. As noted previously, numerous other allocations and/or arrangements of CPU cache metadata could be used than shown in this hypothetical example.
Turning now to
The eviction/invalidation operations 258 are designed to run when evicting or invalidating the cache line. Eviction occurs when a memory access from some logical processor on this cache forces some valid cache line to be repurposed to retain the newly accessed data. In that case, the data contents of the cache line are discarded or written back to memory, and the metadata contents are completely discarded. Invalidation occurs when a coherent memory access from another core forces a line to transition from a valid state to invalid in this particular level of the cache in this core. There are instructions for propagating the cache line CLMDs to the cache eviction summary 260 when the CPU determines that it is time to evict or invalidate a cache line. There are also instructions for discarding the CLMD and VAMD bits 262. An example hardware definition pseudocode is shown below for implementing these eviction/invalidation behaviors 258. These are described in further detail in
Core reset instructions 270 can also be included to zero out all of the metadata 272. An example hardware instruction that zeros out all of the metadata is shown below. In the example shown, all cache metadata mode state bits are zeroed and all metadata is zeroed. For example, the CLMD evictions, CLMD speculative writes, the default CLMD value, and the default VAMD value are all set to zero.
Turning now to
In
In one implementation, CMD instructions 330 also include instructions for setting and getting the CLMD speculative writes control register (342 and 344), which sets and gets the control register that determines which CLMD bits that indicate the line has been speculatively written. An example of hardware instruction definition pseudocode that can be used to set and get the speculative writes is shown below.
In one implementation, CMD instructions 330 includes instructions for setting and getting the CLMD evictions summary control register (344 and 346). An example of hardware instruction definition pseudocode that can be used to set and get the CLMD evictions is shown below.
In one implementation, CMD instructions 330 includes instructions for setting and getting the CLMD eviction handler address and handler mask control registers (190). An example of hardware instruction definition pseudocode that can be used to set and get the CLMD evictions is shown below.
In one implementation, CMD instructions 330 can include hardware instructions for conditionally testing evictions with flash clearing and setting CLMD values on all cache lines 348. This can be used in a bounded transactional memory system, or for other purposes, as described in further detail herein. An example of hardware instruction definition pseudocode that can be used to conditionally test evictions with flash clear/set is shown below.
In one implementation, CMD instructions 330 can include hardware instructions for conditionally discarding cache lines 349 based on the CLMD. An example of hardware instruction definition pseudocode that can be used to conditionally discard cache lines is shown below.
CMD instructions can also include instructions for getting the implemented size of certain data, such as getting cache line size 350, getting VAMD bits 352, getting VAMD stride 354, or getting CLMD size 356. An example hardware instruction definition pseudocode that can be used to get these basic metadata value sizes is shown below.
An alternative implementation might provide such implementation specific parameter data via an alternative mechanism such as a general-purpose CPUID instruction.
Turning now to
We introduce a private VAMD helper pseudocode function that (like a read data instruction) takes an address ‘va’ and ensures its data is cached; then returns a reference (which in hardware, might be a control signal bit pattern) to the specific VAMD corresponding to the quadword of bytes at address va.
The VAMD get instruction 376 selects and returns the current value of the particular VAMD that is appropriate for the particular address. The VAMD set instruction 378 stores a VAMD for the particular address. Example hardware definition pseudocode instructions for the get and set instructions are shown below.
The VAMD test instruction 380 fetches the VAMD for the particular address, performs an AND operation with the VAMD and the mask, and compares the result. In most CPU's base instruction set architectures, such comparison results are typically written to condition code registers or to general purpose registers. The VAMD test and set instruction 382 atomically tests and sets the address and then returns what was read before the set occurred. Example hardware instruction definition pseudocode for these two tests are shown below.
The VAMD selective clear instruction 384 selectively clears the VAMD and the VAMD selective set instruction 386 selectively sets the VAMD, as further illustrated in the hardware instructions below.
Alternatively or in addition to the individual instructions 372 for each VAMD cache line, whole cache flash VAMD instructions 388 can be provided. For example, a flash clear (‘AND ALL’) instruction 390 can be provided, along with a flash set (‘OR_ALL’) instruction 392. In the example hardware instruction definition pseudocode shown below, the VAMD_AND_ALL instruction is designed to flash clear designated VAMD bits of all of the VAMDs for each cache line of this logical processor, and the VAMD_OR_ALL instruction is designed to similarly flash set all of the VAMDs for each cache line of this logical processor.
Turning now to
In one implementation, the CLMD conditional store instruction 426 is used for bounded transactional memory systems, or for other purposes, as described in further detail herein. This instruction tests to see if the property that was set earlier is still present, and if so, stores the value and returns true. Otherwise, a false is returned and the value is not stored. In other words, data is stored at the address only if it has the particular CLMD address that is needed. An example of a conditional store set of hardware instruction definition pseudocode is shown below.
Alternatively or additionally to the individual instructions 412 for the CLMD, whole cache flash CLMD instructions 428 can be provided. For example, a flash clear (AND ALL) instruction 430 can be provided, along with a flash set (OR ALL) instruction 432. In the example hardware instruction definition pseudocode shown below, the CLMD_AND_ALL instruction is designed to flash clear all of the CLMDs for each logical processor, and the CLMD_OR_ALL instruction is designed to flash set all of the CLMDs for each logical processor.
Turning now to
Turning now to
Bounded transactional memory application 470 includes program logic 472, which is responsible for carrying out some or all of the techniques described herein. Program logic 472 includes logic for accessing the CMD and CLMD metadata in the CPU cache 474; logic for setting the CLMD transaction read bit on the address when performing a transactional read 476; logic for setting the CLMD transaction write bit on the address and doing a conditional store when performing a transactional write 478; logic for testing whether any lines marked as transactional read and write were evicted or invalidated, and if not, flash clearing all the speculative write bits, thereby committing them all atomically 480; logic for accessing the metadata to determine whether a transaction is doomed 482; and other logic for operating the application 484. In one implementation, program logic 472 is operable to be called programmatically from another program, such as using a single call to a procedure in program logic 472.
This algorithm correctly implements bounded transactional memory for concurrent transactions that that fit in the caches of each logical processor. Since every transactional read of data is explicitly annotated by software with a transaction-read bit on its cache line, and since every speculative transactional write of data is explicitly annotated by software with a transaction-write bit on its cache line, a transaction will only commit if during the time interval of execution, there were no conflicting accesses to data from other logical processors—in particular, if there were no writes (by other logical processors) of data read in the transaction, and if there were no reads (by other logical processors) of data written in the transaction. For if a conflicting access occurs, the behavior of multiprocessor cache coherence is to invalidate this transaction's logical processor's cached copy of the data, an event which due to behavior (258) is manifest as an eviction/invalidation of non-zero CLMD data in the clmd_evictions register in the CMD (190). Furthermore, the algorithm correctly watches for any cache line eviction of the entirety of any transactionally accessed data in the time interval from each first reference up to the transaction commit attempt. If (as occurs during program execution) a cache miss occurs and a cache line must be evicted, and this cache line has CLMD cache metadata with transaction-read or transaction-write bits set, this event is also manifest via (258) as an eviction/invalidation in the clmd_evictions register. In either case, the combination of software and hardware detects either any transaction conflict or capacity problem and thus guarantees correct transactional memory semantics.
Some implementations may prevent recursive invocation of the handler by clearing the eviction_handler mask as the handler is first invoked. Turning now to
In the example software transactional memory system described herein, data's transaction status is described with reference to a transactional memory word (TMW). A TMW describes the transactional synchronization status for associated data that may be accessed in a transaction. For example, the TMW can include a version number, and/or a pointer to a transaction that has the data open for write, and/or a list/count and/or indicator of transactional readers (e.g. pessimistic readers). In one implementation, the list/count and/or indicator of readers can include a count of the number of readers (e.g. pessimistic) accessing the particular value at a given point in time. In another implementation, the list/count and/or indicator of readers can include a list of the particular readers (e.g. pessimistic) accessing the particular value at a given point in time. In yet another implementation, the list/count and/or indicator of readers is simply a flag or other indicator to indicate that there are one or more readers (e.g. pessimistic) accessing the particular value at a given point in time. These are just examples, and the use of the term TMW herein is meant to cover a variety of mechanisms for tracking lock statuses.
Beginning with
As cache metadata state is used to accelerate filtering and bypassing away of various redundant or unnecessary transactional memory barriers and bookkeeping operations, and for other purposes, it is usually helpful to reset all cache metadata to zero between transactions so that one transaction's filter and write watch state does not impact some later transaction's filter and watch logic (577). In one form, all compressed metadata state may be quickly reset with a short sequence of instructions such as CLMD_AND_ALL and VAMD_AND_ALL, issued either before the transaction begins or immediately after it ends.
Although the subject matter has been described in language specific to structural features and/or methodological acts, it is to be understood that the subject matter defined in the appended claims is not necessarily limited to the specific features or acts described above. Rather, the specific features and acts described above are disclosed as example forms of implementing the claims. All equivalents, changes, and modifications that come within the spirit of the implementations as described herein and/or by the following claims are desired to be protected.
For example, a person of ordinary skill in the computer software art will recognize that the client and/or server arrangements, user interface screen content, and/or data layouts as described in the examples discussed herein could be organized differently on one or more computers to include fewer or additional options or features than as portrayed in the examples.
This is a continuation-in-part application of application Ser. No. 11/389,451, filed Mar. 23, 2006, which claims the benefit of U.S. Provisional Application No. 60/748,386, filed Dec. 7, 2005.
Number | Name | Date | Kind |
---|---|---|---|
5428761 | Herlihy et al. | Jun 1995 | A |
5864849 | Bohannon | Jan 1999 | A |
5940838 | Schmuck et al. | Aug 1999 | A |
6081883 | Popelka et al. | Jun 2000 | A |
6230311 | Gerard et al. | May 2001 | B1 |
6266742 | Challenger et al. | Jul 2001 | B1 |
6327175 | Manapat et al. | Dec 2001 | B1 |
6449623 | Bohannon et al. | Sep 2002 | B1 |
6571259 | Zheng et al. | May 2003 | B1 |
6658539 | Arimilli et al. | Dec 2003 | B2 |
6754773 | Ulrich et al. | Jun 2004 | B2 |
6775727 | Moyer | Aug 2004 | B2 |
6880045 | Pong et al. | Apr 2005 | B2 |
7114036 | DeWitt, Jr. et al. | Sep 2006 | B2 |
7181608 | Fallon et al. | Feb 2007 | B2 |
7188216 | Rajkumar et al. | Mar 2007 | B1 |
7206903 | Moir et al. | Apr 2007 | B1 |
7822727 | Shaughnessy | Oct 2010 | B1 |
8001538 | Gray et al. | Aug 2011 | B2 |
8225297 | Gray et al. | Jul 2012 | B2 |
20020083353 | Orenstein et al. | Jun 2002 | A1 |
20020087614 | Kocev et al. | Jul 2002 | A1 |
20020091718 | Bohannon et al. | Jul 2002 | A1 |
20040015642 | Moir et al. | Jan 2004 | A1 |
20040133769 | Chaudhry et al. | Jul 2004 | A1 |
20040162968 | Tremblay et al. | Aug 2004 | A1 |
20040163082 | Tremblay et al. | Aug 2004 | A1 |
20040187116 | Tremblay et al. | Sep 2004 | A1 |
20040187123 | Tremblay et al. | Sep 2004 | A1 |
20050060383 | Lovett et al. | Mar 2005 | A1 |
20050086446 | McKenney et al. | Apr 2005 | A1 |
20050120179 | Akkary et al. | Jun 2005 | A1 |
20050210198 | Dimpsey et al. | Sep 2005 | A1 |
20060010227 | Atluri | Jan 2006 | A1 |
20060085591 | Kumar et al. | Apr 2006 | A1 |
20060161740 | Kottapalli et al. | Jul 2006 | A1 |
20070073528 | Watt et al. | Mar 2007 | A1 |
20070143287 | Adl-tabatabai et al. | Jun 2007 | A1 |
20070186056 | Saha et al. | Aug 2007 | A1 |
20070239942 | Rajwar et al. | Oct 2007 | A1 |
20070245099 | Gray et al. | Oct 2007 | A1 |
20070245128 | Gray et al. | Oct 2007 | A1 |
20070245309 | Gray et al. | Oct 2007 | A1 |
20070260942 | Rajwar et al. | Nov 2007 | A1 |
20080010417 | Zeffer et al. | Jan 2008 | A1 |
20080040551 | Gray et al. | Feb 2008 | A1 |
20080046661 | Saha et al. | Feb 2008 | A1 |
20080162990 | Wang et al. | Jul 2008 | A1 |
20080163220 | Wang et al. | Jul 2008 | A1 |
Number | Date | Country |
---|---|---|
WO 2004042583 | May 2004 | WO |
WO 2007092422 | Aug 2007 | WO |
Entry |
---|
International Search Report and Written Opinion Received for PCT Application No. PCT/US2008/065376, mailed on Dec. 31, 2008, 10 pages. |
Saha, Bratin, et al. “Architectural Support for Software Transactional Memory.” The 39th Annual IEEE/ACM International Symposium on Microarchitecture (MICRO'06). 12 pages. 2006. |
Marathe, Virendra J., et al. “Lowering the Overhead of Nonblocking Sortware Transactional Memory.” 11 pages. May 17, 2006. |
Adl-Tabatabai, Ali-Reza, et al. “Unlocking Concurrency.” ACM Queue.10 pages. Dec./Jan. 2006-2007. |
Moore, Kevin, et al. “LogTM: Log-based Transactional Memory.” 12th Annual International Symposium on High Performance Computer Architecture (HPCA-12). 12 pages. Feb. 2006. |
Harris, Tim, et al. “Optimizing Memory Transactions.” 12 pages. 2006. |
European Search Report dated Sep. 4, 2012, European Patent Application No. 08 769 911.2, 14 pages. |
Moore et al., “LogTM: Log-based Transactional Memory,” The 12th International Symposium on High-Performance Computer Architecture, Jan. 1, 2006, pp. 258-269. |
Chuang et al., “Unbounded Page-Based Transactional Memory,” ASPLOS'06, Oct. 21-25, 2006, San Jose, CA, copyright 2006 ACM 12 pages. |
International Search Report and Written Opinion Received for PCT Application No. PCT/US2008/065370, mailed on Oct. 31, 2008, 6 pages. |
International Search Report and Written Opinion for International Application No. PCT/US2008/065381, Jan. 16, 2009, 11 pages. |
Rajwar, et al., “Virtualizing Transactional Memory,” Proceedings of the 32nd International Symposium on Computer Architecture (ISCA '05), copyright 2005 IEEE, 12 pages (Jun. 2005). |
Search Report for Taiwan issued in Patent Application No. 097117848, dated Oct. 15, 2013, 1 page. |
Shriraman, et al., “Hardware Acceleration of Software Transactional Memory,” The First ACM SIGPLAN 1 Workshop on Languages, Compilers, and Hardware Support for Transactional Computing, held in conjunction with PLDI, Ottawa, Ontario, Canada, Jun. 2006, 10 pages. |
Number | Date | Country | |
---|---|---|---|
20070245099 A1 | Oct 2007 | US |
Number | Date | Country | |
---|---|---|---|
60748386 | Dec 2005 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 11389451 | Mar 2006 | US |
Child | 11811370 | US |