Meta garbage collection for functional code

Abstract
An execution environment for functional code may treat application segments as individual programs for memory management. A larger program of application may be segmented into functional blocks that receive an input and return a value, but operate without changing state of other memory objects. The program segments may have memory pages allocated to the segments by the operating system as other full programs, and may deallocate memory pages when the segments finish operating. Functional programming languages and imperative programming languages may define program segments explicitly or implicitly, and the program segments may be identified at compile time or runtime.
Description
BACKGROUND

Functional programming languages operate without having mutable state. Examples of functional programming languages include Haskell, Erlang, F#, and others. In some cases, imperative or other languages may be used to create programs that operate in a similar fashion, even though other languages may not enforce the same constraints as functional languages.


A concept within functional programs is that the code may operate by sending an argument to a function, which returns a result. While evaluating the argument, the function may not change the state of any other items.


SUMMARY

An execution environment for functional code may treat application segments as individual programs for memory management. A larger program of application may be segmented into functional blocks that receive an input and return a value, but operate without changing state of other memory objects. The program segments may have memory pages allocated to the segments by the operating system as other full programs, and may deallocate memory pages when the segments finish operating. Functional programming languages and imperative programming languages may define program segments explicitly or implicitly, and the program segments may be identified at compile time or runtime.


This Summary is 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 to limit the scope of the claimed subject matter.





BRIEF DESCRIPTION OF THE DRAWINGS

In the drawings,



FIG. 1 is a diagram illustration of an embodiment showing a system with an execution environment which may launch functional blocks as separate programs.



FIG. 2 is a diagram illustration of an embodiment showing an execution system for functional blocks.



FIG. 3 is a flowchart illustration of an embodiment showing a method for creating functional blocks.



FIG. 4 is a flowchart illustration of an embodiment showing a method for executing an application with functional blocks.





DETAILED DESCRIPTION

An execution environment for functional code may treat program segments as separate programs for memory allocation and memory management from an operating system. Each program segment may be allocated one or more pages of memory, and when the program segment has completed executing, the program segment may be flushed from the operating system, thereby freeing up the memory allocated to the program segment.


Functional languages and programs written in a functional language style may operate with functional blocks that receive an input, process the input, and produce a result. Because programs that operate in a functional language style operate without mutable state, functional blocks may not change the state of any other memory object during processing. Hence, the functional blocks may be executed independently of other portions of an application. During execution, a functional block may create temporary memory objects that may consume memory, and when the functional block exits, those temporary memory objects are no longer used and therefore can be discarded.


The execution environment may treat each functional block as a separate, independent program from the operating system's point of view, which can result in efficient memory management and garbage collection. Each functional block may be executed in the operating system so that the operating system may allocate pages of memory to the functional block, then reallocate the memory after the functional block has completed.


A characteristic of functional languages and programs written in functional language style is that only the input and result will persist after a functional block has executed, and that no other object in memory will be affected by the execution. Therefore any other memory object created by the functional block will be discarded after execution. Based on this characteristic, an execution environment may treat functional blocks as individual programs that receive an input and return a result.


Many operating systems treat programs by allocating memory to the program during execution, then repurposed after the program has finished. Operating systems typically have mechanisms to allocate memory in pages, and a program that fills its current memory allotment may be allocated additional pages. When a program is terminated within the operating system, the memory may be allocated to other programs.


By treating functional blocks as separate, independent programs from the operating system's standpoint, garbage collection for functional blocks may occur when the functional block terminates and the operating system reallocates the assigned memory. An execution environment may therefore not incorporate a separate garbage collection mechanism for the functional blocks and may use the operating system's inherent capabilities of allocating and deallocating memory as a garbage collection mechanism.


Some functional languages may create large numbers of functional blocks, which may lead to inefficient memory usage if all of the functional blocks were treated as separate, independent programs. Inefficient memory usage may occur, for example, when a functional block uses only a small fraction of a memory page, yet the memory page may be the smallest portion that an operating system may be capable of allocating. In such cases, larger functional blocks may be created by combining several functional blocks or individual functional elements into larger functional blocks. The larger functional blocks may lead to smaller numbers of independent programs and more efficient memory usage.


Throughout this specification, like reference numbers signify the same elements throughout the description of the figures.


When elements are referred to as being “connected” or “coupled,” the elements can be directly connected or coupled together or one or more intervening elements may also be present. In contrast, when elements are referred to as being “directly connected” or “directly coupled,” there are no intervening elements present.


The subject matter may be embodied as devices, systems, methods, and/or computer program products. Accordingly, some or all of the subject matter may be embodied in hardware and/or in software (including firmware, resident software, micro-code, state machines, gate arrays, etc.) Furthermore, the subject matter may take the form of a computer program product on a computer-usable or computer-readable storage medium having computer-usable or computer-readable program code embodied in the medium for use by or in connection with an instruction execution system. In the context of this document, a computer-usable or computer-readable medium may be any medium that can contain, store, communicate, propagate, or transport the program for use by or in connection with the instruction execution system, apparatus, or device.


The computer-usable or computer-readable medium may be, for example but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, device, or propagation medium. By way of example, and not limitation, computer readable media may comprise computer storage media and communication media.


Computer storage media includes volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data. Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can accessed by an instruction execution system. Note that the computer-usable or computer-readable medium could be paper or another suitable medium upon which the program is printed, as the program can be electronically captured, via, for instance, optical scanning of the paper or other medium, then compiled, interpreted, of otherwise processed in a suitable manner, if necessary, and then stored in a computer memory.


When the subject matter is embodied in the general context of computer-executable instructions, the embodiment may comprise program modules, executed by one or more systems, computers, or other devices. Generally, program modules include routines, programs, objects, components, data structures, etc. that perform particular tasks or implement particular abstract data types. Typically, the functionality of the program modules may be combined or distributed as desired in various embodiments.



FIG. 1 is a diagram of an embodiment 100 showing a system that may operate functional blocks of a larger program as separate programs from the operating system's standpoint. Embodiment 100 is a simplified example of the various software and hardware components that may be used an execution environment for applications with functional blocks.


The diagram of FIG. 1 illustrates functional components of a system. In some cases, the component may be a hardware component, a software component, or a combination of hardware and software. Some of the components may be application level software, while other components may be operating system level components. In some cases, the connection of one component to another may be a close connection where two or more components are operating on a single hardware platform. In other cases, the connections may be made over network connections spanning long distances. Each embodiment may use different hardware, software, and interconnection architectures to achieve the functions described.


Embodiment 100 illustrates a computer system 102 that may treat portions of an application as independent programs. As the applications are created, independent functional blocks may be identified, and those functional blocks may be executed within an operating system as independent programs.


By treating functional blocks of an application as independent programs, the garbage collection operations that often accompany declarative or other languages may be avoided for those functional blocks. In embodiments where an entire application is written in a functional language or with functional language characteristics, garbage collection may be avoided.


Garbage collection is a form of automatic memory management. Objects that are created in memory but are no longer used by an application or program may be reclaimed or collected and reused. Applications that create large numbers of memory objects often use garbage collection to manage memory.


When an application is written using functional language techniques, whether or not the application is written in a functional language, the application may be broken into smaller segments. Within each segment, the segment may operate by operating on a set of input parameters and returning a set of result parameters, but without accessing or returning any other state. In this manner, the program segment may operate using functional language characteristics.


The device 102 is illustrated having hardware components 104 and software components 106. The device 102 as illustrated represents a conventional computing device, although other embodiments may have different configurations, architectures, or components.


In many embodiments, the device 102 may be a server computer. In some embodiments, the device 102 may still also be a desktop computer, laptop computer, netbook computer, tablet or slate computer, wireless handset, cellular telephone, game console or any other type of computing device.


The hardware components 104 may include a processor 108, random access memory 110, and nonvolatile storage 112. The hardware components 104 may also include a user interface 114 and network interface 116. The processor 108 may be made up of several processors or processor cores in some embodiments. The random access memory 110 may be memory that may be readily accessible to and addressable by the processor 108. The nonvolatile storage 112 may be storage that persists after the device 102 is shut down. The nonvolatile storage 112 may be any type of storage device, including hard disk, solid state memory devices, magnetic tape, optical storage, or other type of storage. The nonvolatile storage 112 may be read only or read/write capable.


The user interface 114 may be any type of hardware capable of displaying output and receiving input from a user. In many cases, the output display may be a graphical display monitor, although output devices may include lights and other visual output, audio output, kinetic actuator output, as well as other output devices. Conventional input devices may include keyboards and pointing devices such as a mouse, stylus, trackball, or other pointing device. Other input devices may include various sensors, including biometric input devices, audio and video input devices, and other sensors.


The network interface 116 may be any type of connection to another computer. In many embodiments, the network interface 116 may be a wired Ethernet connection. Other embodiments may include wired or wireless connections over various communication protocols.


The software components 106 may include an operating system 118 on which various applications and services may operate. An operating system may provide an abstraction layer between executing routines and the hardware components 104, and may include various routines and functions that communicate directly with various hardware components.


The operating system 118 may include a memory page table 120 and a virtual memory manager 122. A memory page table 120 may keep track of which pages of memory are allocated to different programs, while the virtual memory manager 122 may create a large pool of memory that may be swapped in and out of physical memory.


The memory page table 120 may be a table that includes information for each page or portion of memory. The operating system 118 may allocate memory to various programs as those programs are executed, and each allocation may be placed in the memory page table 120. In many embodiments, the memory page table 120 may include information on each page of memory, which program has access to the page, and a state of the page. The page state may be in use, unallocated, or some other state.


The virtual memory manager 122 may be a memory management mechanism that may allocate more memory than may be physically present. Pages that may be allocated to a program but may not be in use may be copied to a hard disk or other storage. When that page may be accessed, a page fault may be created and the virtual memory manager 122 may retrieve the page from disk and place it in memory.


The memory page table 120 may operate in conjunction with a virtual memory manager 122 to manage memory for various applications that may execute on the computer system 102.


An execution environment 124 may execute an application 128. In some embodiments, an execution environment 124 may be referred to as a ‘virtual machine’ or other abstraction layer that may manage execution of the application 128. In some embodiments, the execution environment 124 may have a just-in-time compiler 140, a runtime linker 126, or other components that may prepare an application for execution.


A just-in-time compiler 140 may compile an application at runtime. In some such embodiments, a programming environment 132 may have a compiler 136 that generates intermediate code which may be further complied by a just-in-time compiler 140 into machine language. Some such embodiments may create intermediate code that is machine-independent, and the just-in-time compiler 140 may create machine-specific code.


A runtime linker 126 may link different sections of compiled code together into the application being executed. A runtime linker 126 may perform some of the code linking at runtime, as opposed to a linker that may operate at compile time.


An application 128 may be created with several functional blocks 130. The functional blocks 130 may be pieces of the application 128 that may operate in a functional manner, meaning that the functional blocks may operate only on a set of input parameters without changing state of any other memory objects. In applications where the entire program may be written in a functional language, all of the program may consist of functional blocks 130. In other embodiments, only portions of an application may be considered a functional block.


A programming environment 132 may be an application or group of applications that a programmer may use to create, test, and deploy an application. The programming environment 132 may include an editor 134, compiler 136, and code analyzer 138. The editor 134 may be used to create, edit, and modify program source code, which may be compiled using the compiler 136.


The functional blocks 130 may be identified by the compiler 136. In some embodiments, a code analyzer 138 may identify the functional blocks 130. The code analyzer 138 may identify functional blocks 130 by analyzing source code. In such an embodiment, the code analyzer 138 may be executed prior to the compiler 136. In other embodiments, the code analyzer 138 may analyze compiled code, in which case the code analyzer 138 may execute after the compiler 136.


In some situations, a functional block may be too large for executing as independent programs. In such cases, an execution environment 124 may manage execution of that portion of an application and may have a garbage collector 142 that may manage the memory elements consumed by the application.



FIG. 2 is a diagram illustration showing an example embodiment 200 of an execution system for functional blocks. Embodiment 200 is a simplified example of how an operating system may allocate memory, then return memory once a functional block has completed operation.


Embodiment 200 illustrates how an operating system's inherent capabilities of memory management may be used with functional blocks to perform garbage collection. Such an embodiment may limit or eliminate garbage collection for languages that can be defined in functional blocks.


Embodiment 200 illustrates an operating system 202 that may execute an application 204 that has several functional blocks 206. An execution environment 208 may deploy each functional block as a separate program 210, 212, and 214.


A first functional block may be deployed as program 210. The execution environment 208 may spawn the program 210. In response, the operating system 202 may allocate memory 218 to the program 210. As the program 210 requests more memory, additional memory may be allocated to the program 210. When the program 210 finishes execution, the program 210 may exit 220 and pass messages or other information to the execution environment 208. As the program exits, the memory allocated to the program 210 may be returned 222 to the operating system 202.


Similarly, a second functional block may be deployed as program 212. It may be spawned 224 and allocated memory 226. When the program 212 exits 228, the memory may be returned 230 to the operating system 202


A third functional block may be deployed as program 214. Program 214 may be spawned 232 and have memory allocated 234. At exit 236, the memory may be returned 238.


In the example of embodiment 200, the execution environment 208 may spawn various functional blocks as separate programs. The execution environment 208 may send and receive messages to each of the executing programs 210, 212, and 214, and may facilitate communication from one executing program to another.


In many embodiments, an operating system may allocate memory in defined portions. Some operating systems call these portions ‘pages’.



FIG. 3 is a flowchart illustration of an embodiment 300 showing a method for creating functional blocks. Embodiment 300 is a simplified example of a sequence for creating a functional block that is properly sized for a particular operating system.


Other embodiments may use different sequencing, additional or fewer steps, and different nomenclature or terminology to accomplish similar functions. In some embodiments, various operations or set of operations may be performed in parallel with other operations, either in a synchronous or asynchronous manner. The steps selected here were chosen to illustrate some principles of operations in a simplified form.


Embodiment 300 illustrates a mechanism for creating functional blocks that have an appropriate size for operating as independent programs. Functional blocks that are too small may use only small amounts of memory but may be allocated an entire page of memory. Such functional blocks may be very inefficient.


On the other end of the spectrum, functional blocks that are very large may not efficiently use the operating system's memory allocator to manage memory items. In such cases, large functional blocks may be executed in an environment that has a garbage collection system or other memory managers.


The operations of embodiment 300 may be performed by a compiler, code analysis engine, or some other automated system prior to executing an application. Embodiment 300 may use a static analysis to identify functional blocks, where the static analysis may be performed prior to executing.


A program to be executed may be received in block 302. In some embodiments, the program may be in a functional language and the analysis may be performed using source code. In other embodiments, the program may be received in an intermediate language after compilation and before further compilation that may occur at runtime. In still other embodiments, the program may be received as machine code for analysis.


In block 304, the program may be analyzed to identify functional elements. In programming languages or paradigms where message passing may communicate output from one function to the input of another function, the message passing events may be used to separately identify each function element. Some functional programming languages may use a notion of functions, and each function may be considered a functional element.


For each functional element in block 306, an approximate size of the memory consumed by the functional element may be determined in block 308. In some cases, the memory consumed by a functional element may not be accurately determined. For example, a function that may receive a specific, defined type and perform an action on the data type may be accurately estimated. In another example, a function that may receive and process a list of items may not be estimated accurately, because the list may be unbounded.


After determining the approximate memory usage of each functional element, a beginning element may be selected in block 310.


The element may be analyzed in block 312 to determine if the element is too big for a functional block. In many embodiments, a range of memory sizes may be established for functional blocks. The range may define the smallest and largest acceptable sizes for functional blocks.


While each embodiment may have different ranges of memory sizes, memory ranges from one, two, three, four, five, or even ten pages of memory may be considered on the lower end. Memory ranges of two, three, five, ten, twenty, fifty, or more memory pages may be considered the lower end.


If the element is too big in block 312, the element may not be marked as a functional block in block 314. Such an element may be a candidate for operation within an execution environment that has a garbage collection mechanism.


After marking the functional element in block 314, if more functional elements are unanalyzed, the process may return to block 310. If no more functional elements are unanalyzed, the process may end in block 316 with the application ready for execution.


If the element is not too big in block 312, the method may try to create a functional block that is within the target size by combining functional elements together to create a large enough block.


In block 320, if the functional element consumes the approximate target memory size, the functional element may be marked as a functional block in block 322.


In many embodiments the operations of block 322 may also package the function to operate as a separate program. The packaging may include external message transport that allow the function to communicate with an execution environment, as well as information and metadata that may be communicated to an operating system so that the functional block may operate as a standalone program.


If the functional element does not consume the desired amount of memory in block 320, a determination may be made in block 322 as to whether or not a next functional element may be added to the current functional element. Such a determination may be made when two elements are linked together in some fashion.


Determining whether or not two functional elements may be added together may involve analyzing the linkages or connections between the elements. In the case where the output of one function may be the input of a second function, there may be a determination that the functions can be combined in a functional block. In the case where the output of one function may go to many other functions or to one of many other functions, the determination may be made that the functions cannot be combined.


When the functions cannot be combined, the functions may not be marked as a functional block. Even though the initial functional element may be smaller than the upper range of memory sizes, the functional element may be considered too small and may have a high likelihood of using memory inefficiently.


When the next functional element may be added to the current functional element, the two elements may be added together in block 328 and the set of functional elements may be examined in block 320. The process may cycle several times, adding functional elements together into a larger functional block that contains a set of functional elements.



FIG. 4 is a flowchart illustration of an embodiment 400 showing a method for executing an application using functional blocks. Embodiment 400 illustrates the operations of an execution environment 402 on the left hand column, an operating system 404 in the center column, and the operations of a functional block 406 in the right hand column


Other embodiments may use different sequencing, additional or fewer steps, and different nomenclature or terminology to accomplish similar functions. In some embodiments, various operations or set of operations may be performed in parallel with other operations, either in a synchronous or asynchronous manner. The steps selected here were chosen to illustrate some principles of operations in a simplified form.


Embodiment 400 shows the simplified interactions between various components that may execute an application. Some of the application may be executed within an execution environment 402, while other parts of the application may be executed as functional blocks that operate as separate, standalone applications. As separate applications, the functional blocks may operate without garbage collection.


In block 408, a program may be received for execution, which may begin in block 410.


As part of the execution, a functional block may be launched in block 412.


The operating system 404 may receive the functional block in block 414 and assign memory pages to the functional block in block 416. The functional block may launch as a new program in block 418.


The functional block 406 may begin execution in block 420. The execution environment 402 may transmit input parameters and data in block 422, which may be received in block 424. The functional block 406 may execute in block 426 to produce results. The results may be transmitted in block 428 and received by the execution environment 402 in block 430.


After completing execution, the functional block may end in block 432. The operating system 404 may kill the functional block program in block 434 and return allocated memory in block 436 for use by other applications.


The execution environment 402 may receive results in block 430 and continue execution back to block 412.


The foregoing description of the subject matter has been presented for purposes of illustration and description. It is not intended to be exhaustive or to limit the subject matter to the precise form disclosed, and other modifications and variations may be possible in light of the above teachings. The embodiment was chosen and described in order to best explain the principles of the invention and its practical application to thereby enable others skilled in the art to best utilize the invention in various embodiments and various modifications as are suited to the particular use contemplated. It is intended that the appended claims be construed to include other alternative embodiments except insofar as limited by the prior art.

Claims
  • 1. A method comprising: receiving an application to execute;identifying a plurality of program segments within said application, said program segments having at least one function and receive an input and return an output without changing state to items that are not said input and said output;executing a first program segment, said first program segment calling a second program segment;launching said second program segment within an operating system, said operating system having a memory page table having a page identifier, a process identifier, and a page state for each of a plurality of memory pages;requesting a first memory page from an operating system, said first memory page being allocated to said second program segment;executing said second program segment using said first memory page and passing said input to said second program segment and receiving said output from said second program segment;determining that said second program segment has completed execution and ending said second program in said operating system such that said operating system releases said first memory page.
  • 2. The method of claim 1, said plurality of segments being identified when said application is compiled from a source code.
  • 3. The method of claim 2, said source code comprising source code identifiers identifying a beginning and end to said second program segment.
  • 4. The method of claim 3, said source code identifiers comprising commands in said source code.
  • 5. The method of claim 2, said source code being analyzed by said compiler to identify a beginning and an end to said program segment.
  • 6. The method of claim 1, said source code being written in a functional language.
  • 7. The method of claim 1, said source code being written in an imperative language.
  • 8. The method of claim 1 further comprising: requesting a second memory page from said operating system and allocating said second memory page to said second program segment.
  • 9. The method of claim 1, said plurality of segments being identified when said application is linked after compiling.
  • 10. The method of claim 1, said plurality of segments being identified at runtime.
  • 11. The method of claim 1, said operating system having a range of logical memory addresses larger than a range of physical memory addresses.
  • 12. The method of claim 1, said second program segment being executed within said operating system as a separate program from said first program segment.
  • 13. A system comprising: at least one processor;a functional block analyzer that identifies functional blocks of an application program;an operating system having a memory page table having a page identifier, a process identifier, and a page state for each of a plurality of memory pages, said operating system that further allocates pages to executing code;an operating environment executing on said at least one processor, said operating environment that: receives an application to execute;executes a first program segment, said first program segment calling a first functional block;launches said first functional block within an operating system, causing a first memory page to be allocated from said operating system;executes said first functional block using said first memory page and passing said input to said first functional block and receiving said output from said first functional block;determines that said first functional block has completed execution and ending said first functional block in said operating system such that said operating system releases said first memory page.
  • 14. The system of claim 13, said operating environment that executes said first program segment as a separate program within said operating system from said first functional block.
  • 15. The system of claim 13, said operating environment that links said first program segment to said first functional block at runtime.
  • 16. The system of claim 13, said operating environment that further: identifies a second functional block as part of said application;launches said second functional block within said operating system, said operating system allocating a second memory page to said second functional block;executes said second functional block using said second memory page;determines that said second functional block has completed execution and ending said second functional block in said operating system such that said operating system releases said second memory page.
  • 17. The system of claim 16, said second functional block being called from said first functional block.
  • 18. The system of claim 13, said functional block analyzer identifying said functional blocks at compile time.
  • 19. The system of claim 13, said functional block analyzer identifying said functional blocks at runtime.
  • 20. The system of claim 13, said operating system having no virtual mapping of memory.
  • 21. A method comprising: receiving an application to execute;identifying a plurality of program segments within said application;executing a first program segment, said first program segment calling a second program segment;launching said second program segment within an operating system as an independent application, said operating system having a memory page table having a page identifier, a process identifier, and a page state for each of a plurality of memory pages;requesting a first memory page from an operating system, said first memory page being allocated to said second program segment;executing said second program segment using said first memory page and passing said input to said second program segment and receiving said output from said second program segment;determining that said second program segment has completed execution and ending said second program in said operating system such that said operating system releases said first memory page.
  • 22. A system comprising: an operating system having a memory page table having a page identifier, a process identifier, and a page state for each of a plurality of memory pages, said operating system that further allocates pages to executing code;an operating environment executing on said at least one processor, said operating environment that: receives an application to execute;executes a first program segment, said first program segment calling a first functional block;launches said first functional block within an operating system, causing a first memory page to be allocated from said operating system;executes said first functional block using said first memory page and passing said input to said first functional block and receiving said output from said first functional block;determines that said first functional block has completed execution and ending said first functional block in said operating system such that said operating system releases said first memory page.
US Referenced Citations (171)
Number Name Date Kind
3643227 Smith et al. Feb 1972 A
4631674 Blandy Dec 1986 A
4942512 Kohno Jul 1990 A
5379428 Belo Jan 1995 A
5414848 Sandage et al. May 1995 A
5506987 Abramson et al. Apr 1996 A
5768505 Gilchrist et al. Jun 1998 A
5826081 Zolnowsky Oct 1998 A
5900001 Wolczko et al. May 1999 A
5903900 Knippel et al. May 1999 A
6006235 Macdonald et al. Dec 1999 A
6038572 Schwartz et al. Mar 2000 A
6047295 Endicott et al. Apr 2000 A
6098080 Endicott et al. Aug 2000 A
6104962 Sastry Aug 2000 A
6108683 Kamada et al. Aug 2000 A
6128642 Doraswamy et al. Oct 2000 A
6148324 Ransom et al. Nov 2000 A
6205471 Gilchrist et al. Mar 2001 B1
6230183 Yocom et al. May 2001 B1
6289360 Kolodner et al. Sep 2001 B1
6308319 Bush et al. Oct 2001 B1
6317756 Kolodner et al. Nov 2001 B1
6421704 Waldo et al. Jul 2002 B1
6460068 Novaes Oct 2002 B1
6469968 Van Den et al. Oct 2002 B1
6484188 Kwong et al. Nov 2002 B1
6490599 Kolodner et al. Dec 2002 B2
6490612 Jones et al. Dec 2002 B1
6519615 Wollrath et al. Feb 2003 B1
6542978 Goldstein et al. Apr 2003 B2
6560773 Alexander, III et al. May 2003 B1
6564240 Waldo et al. May 2003 B2
6658449 Brenner et al. Dec 2003 B1
6681220 Kaplan et al. Jan 2004 B1
6735769 Brenner et al. May 2004 B1
6738757 Wynne et al. May 2004 B1
6738875 Wang May 2004 B1
6748593 Brenner et al. Jun 2004 B1
6751711 De Buda Jun 2004 B1
6760736 Waldo et al. Jul 2004 B2
6763520 Seeds Jul 2004 B1
6779182 Zolnowsky Aug 2004 B1
6823515 LiVecchi Nov 2004 B2
6832370 Srinivasan et al. Dec 2004 B1
6868488 Garthwaite Mar 2005 B2
6912554 Yuasa Jun 2005 B2
6918111 Damron et al. Jul 2005 B1
6925642 Commander Aug 2005 B1
6925644 Waldo et al. Aug 2005 B2
6954775 Shanklin et al. Oct 2005 B1
6981258 Takakura Dec 2005 B1
6986140 Brenner et al. Jan 2006 B2
6996625 Kaplan et al. Feb 2006 B2
6999979 Garthwaite Feb 2006 B2
7016923 Garthwaite et al. Mar 2006 B2
7031990 Garthwaite Apr 2006 B2
7035884 Garthwaite Apr 2006 B2
7058670 Garthwaite Jun 2006 B2
7062518 Garthwaite Jun 2006 B2
7062519 Garthwaite Jun 2006 B2
7069279 Rau et al. Jun 2006 B1
7069280 Garthwaite Jun 2006 B2
7069281 Garthwaite Jun 2006 B2
7092978 Garthwaite Aug 2006 B2
7096238 Garthwaite Aug 2006 B2
7136887 Garthwaite et al. Nov 2006 B2
7143124 Garthwaite Nov 2006 B2
7188129 Garthwaite Mar 2007 B2
7209935 Garthwaite Apr 2007 B2
7225439 Garthwaite May 2007 B2
7228541 Gupton et al. Jun 2007 B2
7251815 Donovan et al. Jul 2007 B2
7308466 Houldsworth Dec 2007 B2
7380005 Li et al. May 2008 B1
7395258 Altinel et al. Jul 2008 B2
7404182 Garthwaite et al. Jul 2008 B1
7412580 Garthwaite Aug 2008 B1
7441240 Amano et al. Oct 2008 B2
7487237 Lloyd et al. Feb 2009 B2
7487247 Li et al. Feb 2009 B1
7565386 Joisha Jul 2009 B2
7565499 Garthwaite Jul 2009 B1
7599973 Detlefs et al. Oct 2009 B2
7613753 Cornet et al. Nov 2009 B2
7640544 Flood et al. Dec 2009 B2
7752417 Manczak et al. Jul 2010 B2
7797670 Bumgarner et al. Sep 2010 B2
7840966 Dodge et al. Nov 2010 B2
7865707 Bittlingmayer et al. Jan 2011 B2
7869363 Shamilian et al. Jan 2011 B2
7870554 Dodge et al. Jan 2011 B2
7890712 Bitner et al. Feb 2011 B2
7945577 Altinel et al. May 2011 B2
7984083 Bacon et al. Jul 2011 B2
7996446 Bacon et al. Aug 2011 B2
8010822 Marshall et al. Aug 2011 B2
8028277 Breitgand et al. Sep 2011 B2
8055725 Alam et al. Nov 2011 B2
8108863 Rakvic et al. Jan 2012 B2
8190939 Fields, Jr. et al. May 2012 B2
8195859 Le Moal Jun 2012 B2
20010018701 LiVecchi Aug 2001 A1
20020129340 Tuttle Sep 2002 A1
20030200356 Hue Oct 2003 A1
20030212731 Brenner et al. Nov 2003 A1
20040031035 Shiu et al. Feb 2004 A1
20040158831 Amano et al. Aug 2004 A1
20040194104 Beresnevichiene et al. Sep 2004 A1
20050071847 Bentley et al. Mar 2005 A1
20050144364 Tu et al. Jun 2005 A1
20050210472 Accapadi et al. Sep 2005 A1
20050289252 Kim et al. Dec 2005 A1
20060064313 Steinbarth et al. Mar 2006 A1
20060206881 Dodge et al. Sep 2006 A1
20060212945 Donlin et al. Sep 2006 A1
20060294167 Borman et al. Dec 2006 A1
20070061788 Dodge et al. Mar 2007 A1
20070061809 Dodge et al. Mar 2007 A1
20070226739 Dodge et al. Sep 2007 A1
20070288911 Martin et al. Dec 2007 A1
20080005719 Morris Jan 2008 A1
20080126453 Cornet et al. May 2008 A1
20080139191 Melnyk et al. Jun 2008 A1
20080235701 Danko Sep 2008 A1
20080271030 Herington Oct 2008 A1
20080271032 Twaddle Oct 2008 A1
20090089552 Inchingolo et al. Apr 2009 A1
20090219814 Shamilian et al. Sep 2009 A1
20090235251 Li et al. Sep 2009 A1
20090296573 Shamilian et al. Dec 2009 A1
20100318630 Howell et al. Dec 2010 A1
20100333109 Milnor Dec 2010 A1
20110067030 Isard et al. Mar 2011 A1
20110078699 Donlin et al. Mar 2011 A1
20110107342 Dodge et al. May 2011 A1
20110191783 Le Moal Aug 2011 A1
20120047514 Seo et al. Feb 2012 A1
20120204189 Eichenberger et al. Aug 2012 A1
20120222019 Gounares et al. Aug 2012 A1
20120222043 Gounares et al. Aug 2012 A1
20120227040 Gounares Sep 2012 A1
20120233592 Gounares Sep 2012 A1
20120233601 Gounares et al. Sep 2012 A1
20120284730 Decusatis et al. Nov 2012 A1
20120297163 Breternitz et al. Nov 2012 A1
20120317371 Gounares Dec 2012 A1
20120317389 Gounares Dec 2012 A1
20120317421 Gounares Dec 2012 A1
20120317557 Garrett Dec 2012 A1
20120317577 Garrett Dec 2012 A1
20120317587 Garrett Dec 2012 A1
20120324454 Gounares et al. Dec 2012 A1
20130067445 Gounares et al. Mar 2013 A1
20130073523 Gounares et al. Mar 2013 A1
20130073604 Gounares et al. Mar 2013 A1
20130073829 Gounares et al. Mar 2013 A1
20130073837 Li et al. Mar 2013 A1
20130074049 Gounares et al. Mar 2013 A1
20130074055 Gounares et al. Mar 2013 A1
20130074056 Gounares et al. Mar 2013 A1
20130074057 Gounares et al. Mar 2013 A1
20130074058 Gounares et al. Mar 2013 A1
20130074092 Gounares et al. Mar 2013 A1
20130074093 Gounares et al. Mar 2013 A1
20130080760 Li et al. Mar 2013 A1
20130080761 Garrett et al. Mar 2013 A1
20130081005 Gounares et al. Mar 2013 A1
20130085882 Gounares et al. Apr 2013 A1
20130117753 Gounares et al. May 2013 A1
20130117759 Gounares et al. May 2013 A1
Foreign Referenced Citations (4)
Number Date Country
1912119 Apr 2008 EP
1019990062577 Jul 1999 KR
20010070306 Jul 2001 KR
1020080021491 Mar 2008 KR
Non-Patent Literature Citations (10)
Entry
International Searching Authority, International Search Report and Written Opinion, Jan. 2013, PCT/US2012/041036, Korean Intellectual Property Office, Republic of Korea.
Daniel Lenoski, James Laudon, Kourosh Gharachorloo, Wolf-Dietrich Weber, Anoop Gupta, John Hennessy, Mark Horowitz,and Monica S. Lam, The Stanford Dash Multiprocessor, Mar. 1992, IEEE.
International Searching Authority, Korean Intellectual Property Office, International Search Report and Written Opinion, PCT/US2012/045964, Jan. 24, 2013.
Tong Li, Dan Baumberger, David A. Koufaty, and Scott Hahn, Efficient Operating System Scheduling for Performance-Asymmetric Multi-Core Architectures, Copyright 2007, ACM.
Yang Wang, Paul Lu, Using Dataflow Information to Improve Inter-Workflow Instance Concurrency, 2005, IEEE.
International Search Report, Feb. 27, 2013, Korean Intellectual Property Office, PCT/US2012/056701.
International Search Report, Jan. 29, 2013, Korean Intellectual Property Office, PCT/US2012/043811.
International Searching Authority, International Search Report and Written Opinion, Korean Intellectual Property Office, Feb. 5, 2013, PCT/US2012/056704.
Kistler, Thomas, “Continuous Program Optimization: A Case Study”, ACM Transactions on Programming Languages and Systems, vol. 25, No. 4, Jul. 2003, pp. 500-548.
Kistler, Thomas, “Continuous Program Optimization”, PhD Dissertation, University of California, Irvine, 1999.
Related Publications (1)
Number Date Country
20120233592 A1 Sep 2012 US