Relationships derived from trace data

Abstract
An analysis system may perform network analysis on data gathered from an executing application. The analysis system may identify relationships between code elements and use tracer data to quantify and classify various code elements. In some cases, the analysis system may operate with only data gathered while tracing an application, while other cases may combine static analysis data with tracing data. The network analysis may identify groups of related code elements through cluster analysis, as well as identify bottlenecks from one to many and many to one relationships. The analysis system may generate visualizations showing the interconnections or relationships within the executing code, along with highlighted elements that may be limiting performance.
Description
BACKGROUND

Increasing performance of a computer software application may have benefits in different scenarios. On one end of the scale, large applications that may execute in parallel on many server computers may benefit from decreased hardware costs when an application executes faster, as fewer instances of the application may be deployed to meet demand. On the other end of the scale, applications that may execute on battery-powered devices, such as mobile telephones or portable computers may consume less energy and give a better user experience when an application executes faster or otherwise has increased performance.


SUMMARY

An analysis system may perform network analysis on data gathered from an executing application. The analysis system may identify relationships between code elements and use tracer data to quantify and classify various code elements. In some cases, the analysis system may operate with only data gathered while tracing an application, while other cases may combine static analysis data with tracing data. The network analysis may identify groups of related code elements through cluster analysis, as well as identify bottlenecks from one to many and many to one relationships. The analysis system may generate visualizations showing the interconnections or relationships within the executing code, along with highlighted elements that may be limiting performance.


A settings optimizer may use data gathered from a tracer to generate optimized settings for executing an application. The optimizer may determine settings that may be applied to the application as a whole, as well as settings for individual code elements, such as functions, methods, and other sections of code. In some cases, the settings may be applied to specific instances of code elements. The settings may include processor related settings, memory related settings, and peripheral related settings such as network settings. The optimized settings may be distributed in the form of a model or function that may be evaluated at runtime by a runtime manager. In some embodiments, the optimized settings may be added to source code either automatically or manually.


A runtime system may use a set of optimized settings to execute an application. The optimized settings may have specific settings for the application, groups of code elements, individual code elements, and, in some cases, specific instances of code elements. The runtime system may detect that a code element is about to be executed, then apply the optimized settings for that code element. In some embodiments, the optimized settings may be determined by some calculation or algorithm that may be evaluated. Some optimized settings may be determined using parameters consumed by a code element as well as other parameters not consumed by the code element. The runtime system may apply settings to a process scheduler, memory manager, or other operating system component.


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 for optimizing an application from tracing data.



FIG. 2 is a diagram illustration of an embodiment showing a network environment for optimization from tracing data.



FIG. 3 is a flowchart illustration of an embodiment showing a method for gathering and analyzing tracing data.



FIG. 4 is a diagram illustration of an example embodiment showing patterns that may be recognized from tracer data.



FIG. 5 is a flowchart illustration of an embodiment showing a method for network analysis of tracer data.



FIG. 6 is a flowchart illustration of an embodiment showing a method for optimization for runtime configuration.



FIG. 7 is a flowchart illustration of an embodiment showing a method for a runtime execution system.



FIG. 8 is a flowchart illustration of an embodiment showing a method for incorporating runtime configuration during compilation.



FIG. 9 is a diagram illustration of an embodiment showing a process for developing and distributing applications.



FIG. 10 is a diagram illustration of an embodiment showing a device with self-learning and self-optimizing execution of an application.





DETAILED DESCRIPTION
Analyzing Tracer Data Using Network Analysis

An analyzer may use network analysis techniques on tracer data from an application. A tracing system may gather performance and other data while an application executes, from which relationships between code elements may be identified. The relationships may be derived from message passing relationships, shared memory objects, dependencies, spawn events, function calls, and other data that may be available. The tracing data may include performance and resource usage measurements.


The network analysis may examine the relationships between code elements and the characteristics of those relationships. In many embodiments, the relationships may include data passed over a relationship, frequency and directionality of communications, and other characteristics.


In many cases, the tracer data may include performance or dynamic data for the code elements and the relationships. For example, the tracer data may include resource consumption data for a code element, such as processor utilization, memory consumed, network or other peripheral accesses, and other data. The resource consumption may include idle time waiting for resources to become available or waiting for other code elements to complete execution. Some embodiments may include memory consumption information such as heap allocation, heap changes, garbage collection information, and other memory related data. Relationship data may include frequency and size of data passed across a relationship, speed of communication, latency, idle time, and other dynamic factors.


The network analysis may identify individual code elements or groups of code elements that may affect the performance of an application. In some cases, the analysis may identify bottlenecks, choke points, or other code elements that may have significant contributions to the performance of an application.


In many cases, the static analysis of an application may not reveal actual bottlenecks in an application. For example, a programmer may not be able to fully understand an application created with several disjointed components. However, analysis of tracer data may reveal one or more unexpected bottlenecks.


Such a situation may occur when using object oriented programming models, where different executable components may be joined together in manners that may never have been contemplated during design of the components. As such, the performance of the components themselves, as well as the overall application may be difficult to predict.


Such a situation may also occur when using functional programming models, where messages may be passed between independent sets of code and many processes spawned. The effects of spawning many processes may not be fully comprehended when an application may be under load and the bottlenecks may not be predictable when programming the application.


The network analysis may identify several categories of code elements, such as elements that are depended upon by other elements, branch points that spawn many other elements, collection points that depend on many other elements, groups of elements that frequently interact, pipelines of related code elements that may process things in series, code elements that operate largely independent of other elements, and other categories.


A programmer may use the network analysis to understand the interacting parts of an application to identify areas to improve performance, reliability, or for some other use. In some embodiments, the network analysis output may identify specific code elements that may fall in the various categories, and the programmer may refactor, improve, or otherwise improve the application in different ways.


In some embodiments, a network analyzer may perform a two-stage analysis. The first stage may collect high level performance data that may, for example, take a snapshot of various performance counters at a regular interval. A first analysis may be performed to identify candidates for deeper tracing. The second stage may gather more detailed data, such as capturing every message passed by a specific code element. The detailed data may be used for further analysis, optimization, or other uses.


Optimized Settings for Code Elements


A settings optimizer may generate optimized settings for code components of an application from tracer data. The settings optimizer may operate with an analyzer to highlight certain code elements, then determine a set of execution parameters to improve overall execution of an application. The execution parameters may be applied at runtime with an automated system, or may be manual settings that a programmer may add to executable code.


The settings optimizer may vary parameters relating to operating system-level functions, such as memory settings, processor settings, peripheral settings, and other lower level functions. In some embodiments, such functions may be made available to an application through a virtual machine, which may be a system virtual machine or process virtual machine. By varying operating system-level parameters, the settings optimizer may determine how to run an application faster or with less resources without changing the application itself.


In some cases, the settings optimizer may generate optimized parameters that may be implemented by a programmer or other human. The optimized parameters may highlight areas of an application that may be refactored, redesigned, or otherwise improved to address various issues such as performance, reliability, and other issues. In one use scenario, the settings optimizer may identify hardware and software settings that may an administrator may use to determine when to deploy an application and on which hardware platform to deploy an application.


The settings optimizer may determine optimized settings using tracer data gathered while monitoring a running application. In some cases, the tracer data may be raw, tabulated data that may be processed into a mathematical model that may be used to predict the behavior of an application when a specific parameter may be changed. In other cases, the tracer data may be analyzed to find maximums, minimums, standard deviation, median, mean, and other descriptive statistics that may be used with an algorithm or formula to determine optimized settings.


The term “optimized” as used in this specification and claims means only “changed”. An “optimized” setting may not be the absolute best setting, but one that may possibly improve an outcome. In many cases, a settings optimizer may have algorithms or mechanisms that may improve or change application behavior, but may not be “optimized” in a narrow definition of the word, as further improvements may still be possible. In some cases, an “optimized” setting create by a settings optimizer may actually cause performance or resource utilization to degrade. Throughout this specification and claims, the term “optimized” shall include any changes that may be made, whether or not those changes improve, degrade, or have no measurable effect.


The settings optimizer may classify a code element based in the behavior observed during tracing, then apply an optimization mechanism based on the classification. For example, the memory consumption and utilization patterns of a code element may cause a code element to be classified as one which may use a steady amount of memory but may create and delete memory objects quickly. Such a code element may be identified based on the memory usage and a set of optimized settings may be constructed that identify a garbage collection algorithm that optimizes memory consumption.


In many cases, the behavior of a code element or groups of code elements may not be known prior to running an application. In addition, the behavior may be effected by load. For example, a first code element may spawn a second code element, where the second code element may independently process a data item. While designing the software, a programmer may intend for the second code element to be lightweight enough that it may not adversely affect performance on a single processor. Under load, the first code element may spawn large numbers of the second code element, causing the behavior of the system under load to be different than may be contemplated by a programmer. An example optimized setting may be to launch the independent second code elements on separate processors as a large number of the second code element's processes may consume too many resources on the same processor as the first code element.


The settings optimizer may operate with a feedback loop to test new settings and determine whether or not the new settings had a desired effect. In such embodiments, the settings optimizer may operate with a tracer or other monitoring system to determine an effect based on a settings change. Such embodiments may use multiple feedback cycles to refine the settings.


A set of optimized settings may be stored in several different forms. In some cases, the optimized settings may be a human readable report that may include suggested settings that may be read, evaluated, and implemented by a human. In such cases, the report may include references to source code, and one embodiment may display the source code with the optimized settings as annotations to the source code.


The optimized settings may be stored in a computer readable form that may be evaluated at runtime. In such a form, the settings may be retrieved at runtime from a file or other database. Such a form may or may not include references to source code and may or may not be human readable.


Runtime Use of Analyzed Tracing Data


A runtime system may apply metadata generated from earlier tracing data to enhance the performance of a computer application. Code elements may be identified for non-standard settings during execution, then the settings applied when the code element is executed.


The code element may be a function, routine, method, or other individual code blocks to which a setting may be applied. In some cases, a library or other group of code elements may have a set of settings applied to the entire group of code elements. The code element may be a process, thread, or other independently executed code element in some embodiments.


In some embodiments, individual instances of a code element may be given different treatment than other instances. For example, an instance of a process that may be created with a specific input parameter may be given one set of execution settings while another instance of the same process with a different input parameter value may be given a different set of execution settings.


The execution settings may be generated from analyzing tracing data. The tracing data may include any type of data gathered during execution of the application, and may typically include identification of code elements and performance parameters relating to those elements.


The analysis may include identifying specific code elements that may be bottlenecks, then identifying execution settings that may cause those code elements to be executed faster. In an environment with multiple processors, some code elements may serve as dispersion points or collection points for other code elements.


In a simple example, a central or main process may spawn many independent processes that may be performed by on different, independent processors. In the example, the main process may execute on a single processor and while the main process is executing, the remaining processors may be idle, awaiting the spawned processes. In such an example, the overall performance of the application may be largely affected by the performance of the main process, so any performance increases that may be realized on just the main process may dramatically increase the performance of the overall application.


Such an example may highlight that some code elements may have a greater effect on overall performance than others. Such code elements may be identified by analyzing an application as a network of code elements, where the network contains code elements that communicate with each other. Network analysis techniques may analyze dependencies between code elements to identify bottlenecks, which may include bottlenecks that spawn other processes or that may collect data or otherwise depend on multiple other processes.


The network analysis techniques may identify communication paths or dependencies between code elements, then attempt to identify execution settings that may speed up the dependencies. In some embodiments, the analysis may identify parallel dependencies where several independent processes may feed a collection point, then identify the slowest of the processes to increase performance of that process. In some such embodiments, the fastest process of the parallel processes may be identified to lower the performance of the process so that resources may be allocated to one or more of the slower processes.


Throughout this specification and claims, the terms “profiler”, “tracer”, and “instrumentation” are used interchangeably. These terms refer to any mechanism that may collect data when an application is executed. In a classic definition, “instrumentation” may refer to stubs, hooks, or other data collection mechanisms that may be inserted into executable code and thereby change the executable code, whereas “profiler” or “tracer” may classically refer to data collection mechanisms that may not change the executable code. The use of any of these terms and their derivatives may implicate or imply the other. For example, data collection using a “tracer” may be performed using non-contact data collection in the classic sense of a “tracer” as well as data collection using the classic definition of “instrumentation” where the executable code may be changed. Similarly, data collected through “instrumentation” may include data collection using non-contact data collection mechanisms.


Further, data collected through “profiling”, “tracing”, and “instrumentation” may include any type of data that may be collected, including performance related data such as processing times, throughput, performance counters, and the like. The collected data may include function names, parameters passed, memory object names and contents, messages passed, message contents, registry settings, register contents, error flags, interrupts, or any other parameter or other collectable data regarding an application being traced.


Throughout this specification and claims, the term “execution environment” may be used to refer to any type of supporting software used to execute an application. An example of an execution environment is an operating system. In some illustrations, an “execution environment” may be shown separately from an operating system. This may be to illustrate a virtual machine, such as a process virtual machine, that provides various support functions for an application. In other embodiments, a virtual machine may be a system virtual machine that may include its own internal operating system and may simulate an entire computer system. Throughout this specification and claims, the term “execution environment” includes operating systems and other systems that may or may not have readily identifiable “virtual machines” or other supporting software.


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 sequence for optimizing the execution of an application based on tracer data. Embodiment 100 is an example of a sequence through which an application may be automatically sped up with or without any human intervention.


Embodiment 100 illustrates a high level sequence where data observed from executing an application may be used to generate optimized settings that may be applied to future runs of the application. The analysis and optimization steps may find specific types of patterns within the observed data, then apply optimizations based on those patterns. A runtime configuration may contain optimized parameter settings that may be applied to specific code elements, such as functions, methods, libraries. The optimized parameter settings may increase, decrease, or otherwise change various resources consumed by the code elements to maximize or minimize an optimization goal.


A simple example of a use scenario, an analyzer may identify a small set of functions within an application that cause the application to run slowly. These functions may be bottlenecks that, if sped up, may result in a large performance improvement.


The bottleneck functions may be found by analyzing an application as if the application were a network of interconnected code elements. The network may have communications that pass between code elements, and such communications may be explicit or implicit. An example of explicit communications may be messages passed within a message passing framework. An example of implicit communications may be shared memory objects that may be used to pass data from one code element to another.


In many programming technologies, the interaction between code elements may not be easily predictable. For example, many object oriented languages allow libraries of code elements to be joined together in different manners. In another example, many programming technologies allow for processes or threads to be spawned as a result of new input. The resource usage when spawning many independent processes or threads may not be predictable when writing the application.


The tracer data consumed by an analyzer may reflect observed behavior of an application. The observed behavior may show how an application actually behaves, as opposed to a static code analysis that may not show responses to loads placed on the application. In some embodiments, a system may use a combination of tracer data and static code analysis to identify various patterns and generate optimized settings for the application.


The analysis may include clustering analysis. Clustering analysis may identify groups of code elements that may be somehow interrelated, as well as identify different groups that may not be related. An optimization strategy for groups of code elements may be to place all the members of a group such that they share resources, such as processor or memory resources. The strategy may further identify groups that may be separated from each other. An example result of such analysis may place one group of code elements on one processor in one memory domain and a second group of code elements on another processor in another memory domain.


The analysis may also include identify pipeline patterns. A pipeline pattern may be made up of multiple code elements that may operate in series. Once identified, a pipeline may be analyzed to determine whether one or more of the code elements may be sped up.


Parallel patterns may also be identified through network analysis. A parallel pattern may identify two or more code elements that execute in parallel, and an optimization strategy may be to attempt to speed up a laggard. In some cases, a patient code element may be identified, which may be a code element that finishes executing but waits patiently for a laggard to finish. An optimization strategy for a patient code element may be to decrease the resources assigned to it, which may free up resources to be allocated to a laggard code element.


An application 102 may be traced using a tracer 104, which may generate tracer data 106. The application 102 may be any set of executable code for which a set of optimized settings may be generated. In some cases, the application 102 may contain a main application as well as various libraries, routines, or other code that may be called from the main application. In some cases, the application 102 may be merely one library, function, or other software component that may be analyzed.


The tracer 104 may collect observations that reflect the actual behavior of the application 102. In some embodiments, a load generator may create an artificial load on the application 102. In other embodiments, the application 102 may be observed in real-world conditions under actual load.


The tracer data 106 may identify code elements that may be independently monitored. The code elements may be functions, methods, routines, libraries, or any other section of executable code. For each of the code elements, the tracer data 106 may include resource usage data, such as the amount of memory consumed, processor usage, peripheral device accesses, and other usage data. Many embodiments may include performance data, such as the amount of time to complete a function, number of memory heap accesses, and many other parameters.


The tracer data 106 may have different levels of detail in different embodiments. Some embodiments may collect data over a time interval and create summary statistics for actions over a time interval. For example, a tracer may report data every two seconds that summarize activities performed during the time period. Some embodiments may trace each memory access or even every processor-level command performed by an application. Other embodiments may have different monitoring mechanisms and data collection schemes.


A network representation of an application may be created by an analyzer 108. In one embodiment, an application may be represented by nodes representing code elements and edges representing communications or other relationships between code elements. The network may change as the application executes, with nodes being added or removed while the application responds to different inputs, for example.


The analyzer 108 may identify certain code elements, memory objects, or other elements for which additional tracer data may be useful. In some embodiments, the analyzer 108 may send a request to the tracer 104 for such additional tracer data.


The analyzer output 110 may include those code elements, memory objects, or other application elements that may be of interest. An element of interest may be any element that, if changed, may have an effect on the overall application. In many embodiments, the elements of interest may be a small portion of the overall code elements, but where improving resource usage for these elements may improve the application as a while.


An optimizer 112 may apply various optimization algorithms to the elements of interest. In many cases, an analyzer 108 may assign specific classifications to code elements that may indicate which optimization algorithm to apply. For example, an analyzer 108 may identify an outgoing star pattern and the various components of the pattern. In turn, an optimizer 112 may apply optimization algorithms to each of the labeled code elements according to their classification.


A runtime configuration 114 may be the output of an optimizer 112 and an input to a runtime environment 116. The runtime configuration 114 may identify various code elements and the runtime settings that may be applied to the code elements, which the runtime environment 116 may apply as it executes the application 102.


The runtime configuration 114 may be a database that contains a code element and its corresponding settings that may be referenced during execution. In some embodiments, the runtime configuration 114 may be a simple tabulated file with predefined settings for certain code elements. In other embodiments, the runtime configuration 114 may be a mathematical model or algorithm from which an optimized setting may be computed at runtime. In such embodiments, an optimized setting may change from one condition to another.


Embodiment 100 illustrates an optimization cycle that may use observations of application behavior to identify potential code elements for optimization. Such a system may not necessarily optimize every code element, but may identify a subset of code elements that may be bottlenecks or have some other characteristic that may be addressed at runtime to improve the application.



FIG. 2 is a diagram of an embodiment 200 showing a network environment that may optimize an application using tracing data. Embodiment 200 illustrates hardware components that may implement the process of embodiment 100 in a distributed version.


The distributed nature of embodiment 200 may use separate devices as an analysis device 202, an optimizer device 236, a runtime system 268, and a tracing system 254. In such a system, tracer data may be captured by the tracing system 254 and the optimized runtime configuration may be deployed on a runtime system 268.


One use scenario of such an architecture may be when tracing operations may use hardware or software components that may not be available on a runtime system. For example, some runtime systems may have a limited amount of computing resources, such as a mobile computing device like a mobile telephone or tablet computer. In such an example, the tracing system may be a high powered computer system that contains an emulator for the target runtime system, where the emulator may contain many more monitoring connections and other capabilities to effectively monitor and trace an application.


Such a use scenario may also test, optimize, and refine a set of runtime configuration settings during a development stage of an application, then deploy the application with an optimized runtime configuration to various users.


In some use scenarios, the tracing and analysis steps may be performed as part of application development. In such a scenario, the tracing and analysis steps may monitor an application then identify code elements that may be actual or potential performance bottlenecks, inefficient uses of resources, or some other problem. These code elements may be presented to a developer so that the developer may investigate the code elements and may improve the application.


In some embodiments, the tracing, analysis, and optimization steps may result in a set of optimized parameters that a programmer may manually incorporate into an application.


The diagram of FIG. 2 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 execution environment 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 200 illustrates an analysis device 202 that may have a hardware platform 204 and various software components. The analysis device 202 as illustrated represents a conventional computing device, although other embodiments may have different configurations, architectures, or components.


In many embodiments, the analysis device 202 may be a server computer. In some embodiments, the analysis device 202 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 platform 204 may include a processor 208, random access memory 210, and nonvolatile storage 212. The hardware platform 204 may also include a user interface 214 and network interface 216.


The random access memory 210 may be storage that contains data objects and executable code that can be quickly accessed by the processors 208. In many embodiments, the random access memory 210 may have a high-speed bus connecting the memory 210 to the processors 208.


The nonvolatile storage 212 may be storage that persists after the device 202 is shut down. The nonvolatile storage 212 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 212 may be read only or read/write capable. In some embodiments, the nonvolatile storage 212 may be cloud based, network storage, or other storage that may be accessed over a network connection.


The user interface 214 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 216 may be any type of connection to another computer. In many embodiments, the network interface 216 may be a wired Ethernet connection. Other embodiments may include wired or wireless connections over various communication protocols.


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


An analyzer 220 may receive tracer data 222 and generate analyzer output 224. The tracer data 222 may be raw or preprocessed observations from a tracer that monitors an application while the application executes. The tracer data 222 may be generated from real-world or artificial loads placed on the application, and may reflect the behavior of the application and the various code elements that make up the application.


The analyzer 220 may have several components that may perform different types of analysis. For example, a network analyzer 226 may analyze the application as if the application were a network of code elements with communications and other relationships between the code elements. The network analyzer 226 may attempt to identify patterns, clusters, groups, and other characteristics from a network topology, as well as identify specific code elements that may be causing performance issues.


A performance characterizer 228 may be an analysis component that evaluates and characterizes or classifies the performance of various code elements. The classification may assist a network analyzer 226 or other component in identifying problem areas or in determining an appropriate optimization technique.


One type of characterization performed by a performance characterizer 228 may compare the performance of a particular code element to the average performance of other code elements in a single application or to the average performance of code elements observed from multiple applications. The characterization may identify outliers where code elements have above average or below average performance.


Another type of characterization from a performance characterizer 228 may identify the type or types of performance issues observed for a code element. For example, a characterization may indicate that a code element had excessive garbage collection, consumed large amounts of memory, or contended for various locks.


A relationship characterizer 230 may be an analysis component that evaluates and characterizes the relationships between code elements. The classifications may be derived from the actual behavior of the application. Examples of relationships characterizations may include message passing relationships, shared memory relationships, blocking relationships, non-blocking relationships, and other types of characterizations.


Each type of relationship may assist in classifying a code element for further evaluation or optimization. For example, a blocking relationship where one code element stalls or waits for another code element to finish may have a different optimization algorithm than a message passing relationship that may use a mailbox metaphor to process incoming messages.


The types of characterizations may reflect the underlying programming logic used for an application. For example, the relationship characterizations that may be found in a functional programming paradigm may be much different than the relationship characterizations from an object oriented programming paradigm.


A communications manager 232 may be a component that may manage communications between the various devices in embodiment 200. The communications manager 232 may, for example, retrieve tracer data 222 from the tracing system 254 and may transmit analyzer output 224 to an optimizer device 236.


In some embodiments, the communications manager 232 may automatically collect the tracer data 222 as it may become available, then cause the analyzer 220 to begin analysis. The communications manager 232 may also transmit the analyzer output 224 to the optimizer device 236 for further processing.


The optimizer device 236 may operate on a hardware platform 238, which may be similar to the hardware platform 204.


An optimizer 240 may receive analyzer output 242 and create a runtime configuration 228, which may be consumed by a runtime system 268. The optimizer 240 may have a memory settings optimizer 246, a process scheduler optimizer 248, as well as other optimizers 250.


The memory settings optimizer 246 may determine memory related settings that may be appropriate for a specific code element. The memory settings may include an initial heap size, garbage collection scheme, or other settings that may be memory related.


The process scheduler optimizer 248 may identify processor related settings for a code element. The processor related settings may include priority settings, processor affinity settings, and other settings. In some embodiments, the ordering or priority of multiple code elements may be defined. For example, a first process that has a dependency or lock on a second process may be scheduled to be executed after the second process.


The optimizer 240 may apply various optimizations based on the conditions and situations identified by the analyzer 220. Each situation may have a different optimizer algorithm that may determine runtime settings for an application. In many embodiments, the optimizer 240 may have various other optimizers 250 that may be added over time.


The optimizer device 236 may have a communications manager 252 similar to the communications manager 232 on the analysis device 202. The communications manager 252 may enable the various components in embodiment 200 to operate as a single system that may automatically trace, analyze, and optimize an application across the network 234.


A tracing system 254 may have a hardware platform 256 that may be similar to the hardware platform 204 of the analysis device. The tracing system may have an instrumented execution environment 258 in which a tracer 260 may monitor an application 262. Some embodiments may have a load generator 264, which may exercise the application 262 so that the tracer 260 may observe the application behavior under different use scenarios.


The tracing system 254 may also have a communications manager 266, which like its counterpart communication managers 232 and 252, may serve to automatically implement a sequence of gathering and analyzing tracer data.


The runtime systems 268 may represent the delivery hardware for the application 262. In some embodiments, the runtime systems 268 may have a different hardware platform 270 than the tracing system 254. For example, the instrumented execution environment 258 may be a virtual machine that may execute an operating system emulator for a mobile device, where the mobile device may be the runtime systems 268. In such an example, an application may be distributed with a runtime configuration that may allow the application to execute faster or using less resources.


The runtime system 268 may have a hardware platform 270 similar to the hardware platform 204, on which an execution environment 272 may execute an application 276. A runtime manager 274 may observe the application 276 as it executes, and may identify a code element prior to execution. The runtime manager 274 may look up the code element in the runtime configuration 280, and cause the code element to be executed with the settings defined in the runtime configuration 280.


In some embodiments, a runtime system 268 may include a tracer 278, which may collect tracer data that may be transmitted to the analysis device 202. A communications manager 282 may facilitate such a transmission, among other things.


In some embodiments, the runtime configuration 280 may be incorporated into an application 276 using a just in time compiler 284. In such an embodiment, the runtime configuration 280 may be consumed by a compiler 284 to add runtime settings to the application 276. When the application 276 may be executed, the runtime configuration settings may be embedded or otherwise incorporated into the compiled code. Such a compiler may be a just in time compiler, although in other embodiments, the compiler may be a conventional compiler that may compile code ahead of time.



FIG. 3 is a flowchart illustration of an embodiment 300 showing a method for gathering and analyzing tracer data. The operations of embodiment 300 may illustrate one method that may be performed by the tracer 104 and analyzer 108 of embodiment 100.


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 may illustrate a generalized process for gathering and analyzing tracer data. In block 302, an application may be started. During execution, tracer data may be gathered in block 304 and stored in block 306. The process may loop continuously to gather observations about the application. In many cases, the application may be subjected to loads, which may be generated in the real world or simulated using load generators.


The analysis of the tracer data may begin in block 308 when the tracer data is received. Code elements may be identified in block 310 and then processed in block 312.


For each code element in block 312, performance data may be collected in block 314. Wait states and locks encountered by the code element may be identified in block 316, as well as memory usage in block 318. The operational observations may be summarized in block 320.


While analyzing a code element, any message passing relationships may be identified in block 322 and any shared memory relationships may be identified in block 324. Message passing relationships and shared memory relationships may link two code elements together. In some cases, a relationship may be directional, such as message passing relationships, where the directionality may be determined from tracer data. In other cases, the directionality may not be detectable from tracer data.


In some embodiments, a shared memory object may indicate a relationship. A directionality of shared memory relationships may be indicated when one code element depends on another code element. In such a case, a lock or wait state of one of the code elements may indicate that it is dependent on another code element and may therefore be the receiver in a directional relationship. In some cases, the tracer data may not have sufficient granularity to determine directionality.


Each relationship may be analyzed in block 326. For each relationship in block 326, operational data may be collected in block 328, which may be summarized in block 330 and used to characterize the relationship in block 332.


In many embodiments, a relationship may be classified using various notions of strength. A strong relationship may be one in which many messages are passed or where a large amount of data may be shared. A weak relationship may have little shared data or few messages. Some such embodiments may use a numerical designator for strength, which may be a weighting applied during network analyses.


Once the code elements and relationships have been classified, network analysis may be performed in block 334. A more detailed example of a method for network analysis may be found later in this application.


The network analysis results may be post processed in block 336 and stored in block 338.



FIG. 4 is a diagram illustration of an embodiment 400 showing an example of a network analysis that may be performed using application trace data. An application may be analyzed by identifying code elements and relationships between code elements. In the example of embodiment 400, the various nodes may represent code elements and the relationships between nodes may be illustrated as edges or connections between the nodes. In the example of embodiment 400, the relationships may be illustrated as directional relationships.


Embodiment 400 is merely an example of some of the patterns that may be identified through network analysis. The various patterns may indicate different classifications of code elements, which may indicate the type of optimization that may be performed.


Node 402 may be connected to node 404, which may spawn nodes 406, 408, 410, and 412. An outbound star pattern 414 may be recognized through automatic network analysis. The outbound star pattern 414 may have a hub node 404 and several spoke nodes. In many cases, an outbound star pattern may be a highly scalable arrangement, where multiple code elements may be launched or spawned from a single element. The spoke nodes may represent code elements that may operate independently. Such spoke nodes may be placed on different processors, when available, which may speed up an application by operating in parallel.


A network analysis may also recognize groups 416 and 418. The groups may include code elements that interrelate, due to calling each other, sharing memory objects, or some other relationship. In general, groups may be identified as having tighter relationships within the group and weaker relationships outside the groups.


Groups may be optimized by combining the group members to the same hardware. For example, the members of a group may be assigned to the same memory domain or to the same processor in a multi-processor computer, while other groups may be assigned to different memory domains or other processors.


Node 402 may be connected to node 420, which may be connected to node 422, which may be connected to node 424. The series of nodes 402, 420, 422, and 424 may be identified as a pipeline pattern 426.


A pipeline pattern may be a sequence of several code elements that feed each other in series. When analyzing a pipeline pattern, one or more of the code elements may act as a bottleneck. By speeding up a slow element in a pipeline, the overall performance may increase linearly with the increase.


A pipeline pattern may also be treated as a group, where the members may be placed on the same processor or share the same memory locations. In many cases, a pipeline pattern may be identified when the relationships between the code elements are strong and may pass large amounts of data. By placing all of the pipeline members one the same processor, each member may be processed in sequence with little lag time or delay.


Node 424 may be connected to nodes 426, 428, and 430, each of which may be connected to node 436. The network analysis may identify an outgoing star pattern 432, an inbound star pattern 434, and a parallelism pattern 438.


The analysis of the outgoing star pattern 432 may be similar to the outbound star pattern 414.


An inbound star pattern 434 may indicate a bottleneck at the hub node 436, which may receive messages or share memory with several other nodes 426, 428, and 430. The degree to which node 436 may act as a bottleneck may be affected by the type of relationships. In the case where node 436 receives and processes messages from multiple nodes, the node 436 may experience a much higher workload than other nodes. As such, the amount of processing performed by node 436 may drastically affect the overall performance of an application.


The hub node of an inbound star pattern may limit the scaling of an application in a multi-processor system, as only one processor may perform the actions of node 436. As such, the hub node of an inbound star may be flagged for a programmer to consider refactoring or redesigning the code in this area.


A parallelism pattern 438 may have several processes that may operate in parallel. In applications where the receiving node 436 may depend on results from all three nodes 426, 428, and 430 before continuing execution, an optimization routine may identify the slowest node in the parallelism pattern for speed improvement.


In many cases, nodes that may be bottlenecks may be improved by applying more resources to the code element. The resources may be in the form of additional processor resources, which may be achieved by raising the priority of a code element, placing the code element on a processor that may be lightly loaded, or some other action. In some cases, the resources may be memory resources, which may be improved by increasing memory allocation, changing garbage collection schemes, or other changes.


When a parallelism pattern may be detected, some of the parallel code element may finish early and may be patiently waiting for other laggard code elements to finish. Those patent code elements may be adjusted to consume fewer resources during their operation. One such adjustment may lower the priority for a patient node or assign fewer memory resources.



FIG. 5 is a flowchart illustration of an embodiment 500 showing a method for performing network analysis on tracer data. The operations of embodiment 500 may illustrate one method that may be performed during the operations of block 334 of embodiment 300.


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 500 illustrates one method for performing network analysis on a graph composed of code elements as nodes and relationships between code elements as edges. Embodiment 500 may be performed on graphs such as the example graph of embodiment 400.


The network analysis may begin in block 502 using preprocessed data that may characterize nodes and relationships as described in embodiment 300. A graph of the various components may be constructed.


From the graph, star patterns may be identified in block 504. Each star pattern may be evaluated in block 506. For each star pattern, the hub nodes may be labeled in block 508 and the spoke nodes may be labeled in block 510.


The independence of the spokes may be analyzed in block 512. When the star pattern is an outgoing star pattern in block 514 and the outbound spokes are independent in block 516, the process may return to block 506 to process another star pattern.


When the star pattern is an outgoing star pattern in block 514 and there may be no independence between the outgoing spoke nodes in block 516, the laggards of the spoke nodes may be identified and labeled in block 518, and any patient elements may be identified and labeled in block 520.


When the star pattern may be an incoming star pattern in block 514, the laggards may be identified in block 518 and the patient elements may be identified in block 520. In an incoming star pattern, the laggard and patient elements may be useful to know when the hub of the incoming star may be in a lock state waiting for all of the incoming spokes to complete their work. In an embodiment where the incoming star pattern is not dependent on all of the spoke elements, the laggard and patient elements may not be labeled, but the hub element may be labeled as an incoming hub.


In block 522, pipeline patterns may be identified. For each pipeline pattern in block 524, the laggard elements in the pipeline may be identified in block 526. The laggards may be one or more elements in a pipeline pattern that may contribute to a performance bottleneck.


Parallelism patterns may be identified in block 528. For each parallelism pattern in block 530, the laggards may be identified in block 532 and the patient elements may be identified in block 534.


Clusters may be identified in block 536. For each cluster in block 538, the cohesiveness of the cluster may be identified in block 540.


The cohesiveness may be a weighting or strength of the grouping. In some embodiments, groups with weak cohesiveness may be divided across different processors or memory domains, while groups with strong cohesiveness may be kept together on the same hardware components.


The relationships between a given cluster and other clusters may be characterized in block 542. Clusters with strong inter-cluster relationships may have a higher likelihood for remaining together, while clusters with weak inter-cluster relationships may be more likely to be split.


Within the clusters, laggards may be labeled in block 544 and patient elements may be labeled in block 546.


The network analysis results may be stored in block 548.


The stored network analysis results may be automatically consumed by an optimizer routine to generate a runtime configuration. In some embodiments, the stored network analysis results may be used by a programmer to analyze code under development. Such an analysis may assist the programmer in finding bottlenecks and other areas that may adversely affect performance of the application.



FIG. 6 is a flowchart illustration of an embodiment 600 showing a method for optimizing tracer analysis results to create a runtime configuration. The operations of embodiment 600 may illustrate one method that may be performed by the optimizer 112 of embodiment 100.


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 600 illustrates one method for determining runtime configurations that may be optimized derived from patterns observed during network analysis. During network analysis, some of the code elements may be identified as laggards, patient elements, as well as members of groups. Each classification of elements may be optimized by identifying parameters that may speed up certain code elements, make more efficient usage of code elements, or apply settings across groups of code elements.


The analyzer output may be received in block 602. In some embodiments, some code elements may have been labeled as requesting more data in block 604, and identifiers for those code elements may be transmitted to a tracer in block 606.


In some embodiments, additional data may be requested in order to identify optimized settings. For example, an initial tracer may capture the various code elements, relationships, and high level performance metrics. After a network analysis identifies specific code elements as being a bottleneck, those code elements may be traced again, but at a more detailed level. The second tracing pass may gather information such as memory usage details, messages passed, processor utilization, or other details from which optimized runtime configuration may be derived.


For each laggard code element in block 608, process allocation and scheduler settings may be identified in block 616. Memory allocation, usage, and garbage collection settings may be identified in block 618. The settings may be stored in a runtime configuration in block 620.


The process allocation settings may assist in placing the laggard on a specific processor. In many embodiments, the process allocation settings may include an affinity or relationship to other code elements. At runtime, code elements that may have a strong positive affinity may be placed on the same processor, while code elements that may have a strong repulsive affinity may be placed on different processors.


The scheduler settings may assist a process scheduler in determining when and how to execute the laggard. In some embodiments, the scheduler settings may indicate that one code element may be executed before another code element, thereby hinting or expressly determining an order for processing. The scheduler settings may include prioritization of the laggard. In many cases, laggards may be given higher priority so that the laggard process may be executed faster than other processes.


The memory allocation settings may relate to the amount of memory allocated to a code element as well as various settings defining how memory may be managed while a code element executes. For example, a setting may define an initial heap allocation, while another setting may define the increment at which memory may be additionally allocated. The memory related settings may include garbage collection schemes, as well as any configurable parameters relating to garbage collection.


Each patient element may be analyzed in block 622. For each patient element, process allocation and scheduler settings may be determined in block 624, and memory allocation, usage, and garbage collection settings may be identified in block 626. The settings may be stored in a runtime configuration in block 628.


With a laggard code element, the optimized settings may attempt to cause the code element to speed up. Higher prioritization, more memory, or other settings may help the code element complete its work faster, thereby causing the entire application to execute faster.


With a patient code element, the optimized settings may attempt to limit the amount of resources. For example, lowering the priority of the process may cause a patient code element to be executed slower and may free up processor resources that may be allocated to laggard processes. Such an example may illustrate efficient deployment of resources that may improve an application's performance.


Each group or cluster may be evaluated in block 630. For each group in block 630, process allocation settings may be identified in block 632 and memory allocation settings may be identified in block 634. The settings may be stored in the runtime configuration in block 636.


For groups, the runtime settings may identify affinity between code elements such that group members may be processed on the same processor, have access to the same memory domain, or afforded some other similar treatment. In some cases, the group designation may permit elements to be separated at runtime when the group cohesiveness may be weak, but may otherwise attempt to keep the group together.



FIG. 7 is a flowchart illustration of an embodiment 700 showing a method using runtime configuration as an application executes. The operations of embodiment 700 may illustrate one method that may be performed by the runtime environment 116 of embodiment 100.


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 700 illustrates one example of how optimized runtime configuration may be applied. Embodiment 700 may be an example of an interpreted or compiled runtime environment that may identify when a code element may be executed, then look up and apply a setting to the code element.


An application may be received in block 702, and a runtime configuration may be received in block 704. Execution of the application may begin in block 706.


While the code executes, block 708 may detect that a code element is about to be executed. The code element may be looked up in the runtime configuration in block 710. When the code element is present in the runtime configuration in block 712, the settings may be retrieved in block 714 and any configuration changes made in block 716. The code element may be launched in block 718. If the code element is not found in the runtime configuration in block 712, the code element may be launched in block 718 with default settings.


Some embodiments may apply the same runtime configuration settings to each instance of a code element. Other embodiments may apply one set of runtime configuration settings to one instance and another set of runtime configuration settings to another instance. Such embodiments may evaluate the input parameters to a code element to determine which set of settings to apply. Some such embodiments may evaluate other external parameters or settings to identify conditions for when to apply optimized configuration settings.



FIG. 8 is a flowchart illustration of an embodiment 800 showing a method for incorporating runtime configuration during compiling.


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 800 may illustrate one method by which runtime configuration may be incorporated into a compiled version of an application. In one mechanism, the compiled version of an application may be tagged. A tag may cause a runtime environment to identify that a code element has optimized settings available, which may cause the settings to be retrieved and implemented.


In another mechanism of incorporation using a compiler, the optimized runtime configuration settings may be placed into the runtime executable by the compiler. Such settings may be added to the compiled code such that the execution may be performed without a runtime configuration.


The compilation may be performed as a just in time compilation. In a typical embodiment, an application may be compiled into an intermediate language, which may be compiled at runtime. In other embodiments, the compilation may be performed prior to execution and the executable code may be stored and retrieved prior to execution.


An application may be received in block 802 and the runtime configuration received in block 804. Compiling may begin in block 806.


A code element may be detected in block 808 and a lookup may be performed in block 810 to determine whether or not the runtime configuration may contain settings for the code element. When the settings are not present in block 812, the process may skip to block 820. If more elements are present in block 820, the process may return to block 808.


When the settings are present in block 812, the runtime configuration may be added to the executable in two manners. In a tagging manner in block 814, the executable code may be tagged in block 816 to have a lookup performed during execution. In a non-tagging manner in block 814, the runtime configuration settings may be inserted into the executable code in block 818.


The process may revert to block 808 if more elements exist in block 820. When all the elements have been compiled in block 820, the application may be launched in block 822.



FIG. 9 is a diagram illustration of an embodiment 900 showing one development and distribution mechanism for applications with runtime configurations. Embodiment 900 illustrates one system for using network analysis in an offline mode, then distributing an application with a runtime configuration to client devices.


A developer-level tracing system 902 may execute an application 904, from which analysis 906 and optimization 908 may be performed on the tracer data. The results of the analysis 906 and optimization 908 may be displayed in a programming environment 910. A programmer may view the results in the programming environment 910 and may update or change the application 904, then re-run the analysis and optimization.


In some embodiments, the programming environment 910 may include an editor, compiler, and other components. In some cases, the developer level tracer 902 and the analysis and optimization components may be parts of the programming environment.


Once the changes to the application may be complete, a product distribution system 912 may distribute the application 914 and runtime configuration 916 to various customer devices 918.


The customer devices 918 may have a runtime environment 920 that executes the application 922 with a runtime configuration 924. In some embodiments, a lightweight tracer 926 may collect some data that may be transmitted as customer provided tracer data 928, which may be incorporated back into the development process.



FIG. 10 is a diagram illustration of an embodiment 1000 showing a single device in which tracing, analysis, optimization, and execution of an application may occur. Embodiment 1000 may be a self-contained device that may learn or adapt to executing a particular application faster or with better resource utilization.


A device 1002 may contain a hardware platform 1004 on which a runtime environment 1006 may execute an application 1008. While the application 1008 executes, a tracer 1010 may collect tracer data 1012. An analyzer 1014 and optimizer 1016 may process the tracer data 1012 to generate a runtime configuration 1018. The runtime configuration 1018 may then be used to execute the application 1008. In some embodiments, a feedback loop may then again trace the application and continually refine the runtime configuration 1018, thereby continually improving the application.


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 performed by a computer processor, said method comprising: receiving trace data gathered by tracing an application;analyzing said trace data to identify a plurality of code elements, including at least a first code element;identifying a plurality of directional relationships among said code elements, said directional relationships being identified as occurring between two of said code elements and being identified as having a directionality;identifying one or more patterns of the code elements, based at least in part on the plurality of directional relationships, the one or more patterns being identified comprising at least one of a star pattern, a pipeline pattern, a parallelism pattern or a cluster pattern, and including at least the first code element;determining a performance metric for each of said code elements;determining a characterization for each of said directional relationships;analyzing said plurality of directional relationships to identify and distinguished between any laggard elements of the plurality of code elements that contribute to a performance bottleneck of the application and any patient elements of the plurality of code elements that do not contribute to a performance bottleneck of the application; andfor at least one laggard element, identifying a laggard optimization setting for increasing resource allocation to or prioritization of the at least one laggard element, while also identifying for at least one patient element, a patient optimization setting for decreasing resource allocation to or prioritization of the at least one patient element, at least one of the laggard optimization setting or the patient optimization setting being operable to improve overall application performance.
  • 2. The method of claim 1, wherein the one or more patterns include an outbound star pattern, said outbound star pattern being defined with relationships from said first code element to each of a first plurality of code elements.
  • 3. The method of claim 1, wherein the one or more patterns include an inbound star pattern, said inbound star pattern being defined with relationships to said first code element from each of a first plurality of code elements.
  • 4. The method of claim 1, wherein the one or more patterns include the star pattern comprising the first code element as a hub node and a plurality of code elements being spoke nodes on said star pattern that are connected to the first code element.
  • 5. The method of claim 4, said first code element being the at least one laggard element which contributes to the performance bottleneck of said application.
  • 6. The method of claim 1, said characterization of each of said directional relationships being determined at least in part from a number of communications.
  • 7. The method of claim 6, said characterization of each of said directional relationships being determined at least in part from a frequency of communications.
  • 8. The method of claim 7, said characterization of each of said directional relationships being determined at least in part from a size of data passed within said communications.
  • 9. The method of claim 1, said first code element being one of a series of code elements in the pipeline pattern.
  • 10. The method of claim 9, said first code element being downstream from a second code element and upstream from a third code element.
  • 11. The method of claim 10, said first code element being the only code element connecting said second code element to said third code element.
  • 12. The method of claim 1, said first code element being identified as the at least one laggard element which contributes to the performance bottleneck when said tracing data indicate that said first code element entered a wait state for a period of time exceeding a predefined threshold.
  • 13. A system comprising: a processor;an analyzer operating on said processor, said analyzer that: receiving trace data gathered by tracing an application;analyzing said trace data to identify a plurality of code elements, including at least a first code element;identifying a plurality of directional relationships among said code elements, said directional relationships being identified as occurring between two of said code elements and being identified as having a directionality;identifying one or more patterns of the code elements, based at least in part on the plurality of directional relationships, the one or more patterns being identified at least one of a star pattern, a pipeline pattern, a parallelism pattern or a cluster pattern, and including at least the first code element;determining a performance metric for each of said code elements;determining a characterization for each of said directional relationships;analyzing said plurality of directional relationships to identify and distinguished between any laggard elements of the plurality of code elements that contribute to a performance bottleneck of the application and any patient elements of the plurality of code elements that do not contribute to a performance bottleneck of the application; and an optimizer that identifies at least one of:for at least one laggard element, identifying a laggard optimization setting for increasing resource allocation to or prioritization of the at least one laggard element, orfor at least one patient element, a patient optimization setting for decreasing resource allocation to or prioritization of the at least one patient element, at least one of the laggard optimization setting or the patient optimization setting being operable to improve overall application performance.
  • 14. The system of claim 13, said analyzer that further: displays a bottleneck annotation on a user interface.
  • 15. The system of claim 14, said analyzer that further: displays a bottleneck annotation within a graph.
  • 16. The system of claim 13, said trace data gathered on a second processor.
  • 17. The system of claim 13, said trace data gathered on said processor.
  • 18. The system of claim 13, wherein the analyzer identifies said at least one laggard element and said at least one patient element in the plurality of code elements.
  • 19. The system of claim 18, wherein the optimizer identifies the laggard optimization setting and the patient optimization setting.
  • 20. The system of claim 19, wherein the system applies at least one of the laggard optimization setting and the patient optimization setting.
CROSS REFERENCE TO RELATED APPLICATIONS

This patent application claims the benefit of and priority to U.S. Provisional Patent Application Ser. No. 61/801,298 filed 15 Mar. 2013 by Ying Li, the entire contents of which are expressly incorporated by reference.

US Referenced Citations (673)
Number Name Date Kind
3643227 Rice et al. Feb 1972 A
4631674 Blandy et al. Dec 1986 A
4907151 Bartlett Mar 1990 A
5327568 Maejima et al. Jul 1994 A
5369570 Parad Nov 1994 A
5506987 Abramson et al. Apr 1996 A
5535393 Reeve et al. Jul 1996 A
5606688 McNutt et al. Feb 1997 A
5689363 Kleber et al. Nov 1997 A
5758183 Scales May 1998 A
5778004 Jennion et al. Jul 1998 A
5870606 Lindsey Feb 1999 A
5900001 Wolczko et al. May 1999 A
5903900 Knippel et al. May 1999 A
5937194 Sundaresan Aug 1999 A
5953736 O'Conner et al. Sep 1999 A
5978830 Nakaya et al. Nov 1999 A
6006235 Macdonald et al. Dec 1999 A
6032201 Tillery et al. Feb 2000 A
6038572 Schwartz et al. Mar 2000 A
6047295 Endicott et al. Apr 2000 A
6059842 Dumarot et al. May 2000 A
6083281 Diec Jul 2000 A
6098080 Endicott et al. Aug 2000 A
6104962 Sastry Aug 2000 A
6128642 Doraswamy et al. Oct 2000 A
6158049 Goodwin et al. Dec 2000 A
6195676 Spix et al. Feb 2001 B1
6202199 Wygodny et al. Mar 2001 B1
6230183 Yocom et al. May 2001 B1
6230313 Callahan et al. May 2001 B1
6282701 Wygodny et al. Aug 2001 B1
6286130 Poulsen et al. Sep 2001 B1
6289360 Kolodner Sep 2001 B1
6308319 Bush et al. Oct 2001 B1
6317756 Kolodner et al. Nov 2001 B1
6321204 Kazami et al. Nov 2001 B1
6321240 Chilimbi et al. Nov 2001 B1
6381735 Hunt Apr 2002 B1
6421704 Waldo et al. Jul 2002 B1
6484188 Kwong et al. Nov 2002 B1
6490599 Kolodner et al. Dec 2002 B2
6490612 Jones et al. Dec 2002 B1
6516461 Ichisugi Feb 2003 B1
6519615 Wollrath et al. Feb 2003 B1
6542978 Goldstein et al. Apr 2003 B2
6560773 Alexander et al. May 2003 B1
6564240 Waldo et al. May 2003 B2
6584487 Saboff Jun 2003 B1
6598141 Dussud et al. Jul 2003 B1
6629128 Glass Sep 2003 B1
6658449 Brenner et al. Dec 2003 B1
6662358 Berry et al. Dec 2003 B1
6735687 Kok May 2004 B1
6735769 Brenner et al. May 2004 B1
6738875 Wang May 2004 B1
6748420 Quatrano et al. Jun 2004 B1
6748593 Brenner et al. Jun 2004 B1
6754890 Berry et al. Jun 2004 B1
6760736 Waldo et al. Jul 2004 B2
6763520 Seeds Jul 2004 B1
6823515 Livecchi Nov 2004 B2
6826752 Thornley et al. Nov 2004 B1
6832370 Srinivasan et al. Dec 2004 B1
6856950 Abts et al. Feb 2005 B1
6868488 Garthwaite Mar 2005 B2
6873952 Bailey et al. Mar 2005 B1
6892226 Tso et al. May 2005 B1
6912554 Yuasa Jun 2005 B2
6918111 Damron et al. Jul 2005 B1
6925644 Waldo et al. Aug 2005 B2
6928488 De Jong et al. Aug 2005 B1
6954775 Shanklin et al. Oct 2005 B1
6970805 Bierma et al. Nov 2005 B1
6981265 Rees et al. Dec 2005 B1
6986140 Brenner et al. Jan 2006 B2
6993767 Brenner et al. Jan 2006 B2
6999979 Garthwaite Feb 2006 B2
7003760 Das Feb 2006 B1
7016923 Garthwaite Mar 2006 B2
7031990 Garthwaite Apr 2006 B2
7035884 Garthwaite Apr 2006 B2
7058670 Garthwaite Jun 2006 B2
7058928 Wygodny Jun 2006 B2
7062518 Garthwaite Jun 2006 B2
7062519 Garthwaite Jun 2006 B2
7065763 Martin et al. Jun 2006 B1
7069279 Rau et al. Jun 2006 B1
7069280 Garthwaite Jun 2006 B2
7069281 Garthwaite Jun 2006 B2
7076511 Lari et al. Jul 2006 B1
7092978 Garthwaite Aug 2006 B2
7093234 Hibbeler et al. Aug 2006 B2
7096238 Garthwaite Aug 2006 B2
7117504 Smith et al. Oct 2006 B2
7136887 Garthwaite Nov 2006 B2
7143124 Garthwaite Nov 2006 B2
7143412 Koenen Nov 2006 B2
7168068 Dawson Jan 2007 B2
7185367 Munson Feb 2007 B2
7188129 Garthwaite Mar 2007 B2
7194664 Fung et al. Mar 2007 B1
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
7356817 Cota-Robles et al. Apr 2008 B1
7386839 Golender et al. Jun 2008 B1
7389494 Cantrill Jun 2008 B1
7404182 Garthwaite Jul 2008 B1
7412580 Garthwaite Aug 2008 B1
7430733 Yaari Sep 2008 B1
7478371 Gove Jan 2009 B1
7487237 Lloyd et al. Feb 2009 B2
7493400 Loaiza et al. Feb 2009 B2
7500216 Blunno et al. Mar 2009 B1
7558935 Boucher et al. Jul 2009 B1
7565386 Pramod Jul 2009 B2
7565499 Garthwaite Jul 2009 B1
7580905 Lopez-Estrada Aug 2009 B2
7596683 Morrow Sep 2009 B2
7599973 Detlefs et al. Oct 2009 B2
7613753 Cornet et al. Nov 2009 B2
7640544 Flood et al. Dec 2009 B2
7643826 Brunet et al. Jan 2010 B2
7681182 Mistry Mar 2010 B1
7681188 Tirumalai et al. Mar 2010 B1
7685561 Deem et al. Mar 2010 B2
7734676 Dritschler et al. Jun 2010 B2
7739667 Callahan et al. Jun 2010 B2
7752417 Manczak et al. Jul 2010 B2
7797585 Sahin et al. Sep 2010 B1
7797670 Bumgarner et al. Sep 2010 B2
7827539 Wygodny Nov 2010 B1
7865707 Bittlingmayer et al. Jan 2011 B2
7870244 Chong et al. Jan 2011 B2
7890712 Bitner et al. Feb 2011 B2
7890771 England et al. Feb 2011 B2
7954094 Cascaval et al. May 2011 B2
7954095 Archer et al. May 2011 B2
7971010 Schmelter et al. Jun 2011 B2
7984083 Bacon et al. Jul 2011 B2
7996446 Bacon et al. Aug 2011 B2
8001538 Gray et al. Aug 2011 B2
8015385 Schopp Sep 2011 B2
8028277 Breitgand et al. Sep 2011 B2
8032866 Golender et al. Oct 2011 B1
8037465 Tian et al. Oct 2011 B2
8055725 Alam et al. Nov 2011 B2
8108689 Nicolson et al. Jan 2012 B2
8108863 Rakvic et al. Jan 2012 B2
8132162 Peterson Mar 2012 B2
8146053 Morrow Mar 2012 B2
8225297 Gray et al. Jul 2012 B2
8234105 Aldrich Jul 2012 B1
8312056 Peng et al. Nov 2012 B1
8312435 Wygodny et al. Nov 2012 B2
8336056 Gadir Dec 2012 B1
8473925 Gagliardi et al. Jun 2013 B2
8490087 Beaty et al. Jul 2013 B2
8495598 Gounares et al. Jul 2013 B2
8543907 Roskind Sep 2013 B1
8566800 Gagliardi Oct 2013 B2
8566804 Carrick et al. Oct 2013 B1
8595327 Lee et al. Nov 2013 B2
8595743 Gounares et al. Nov 2013 B2
8607018 Gounares et al. Dec 2013 B2
8615766 Gounares Dec 2013 B2
8645930 Lattner et al. Feb 2014 B2
8650538 Gounares Feb 2014 B2
8656134 Gounares et al. Feb 2014 B2
8656135 Gounares et al. Feb 2014 B2
8656378 Gounares et al. Feb 2014 B2
8694574 Gounares et al. Apr 2014 B2
8700838 Gounares Apr 2014 B2
8707326 Garrett Apr 2014 B2
8726255 Gounares et al. May 2014 B2
8752021 Li et al. Jun 2014 B2
8752034 Gounares et al. Jun 2014 B2
8756581 Castanos et al. Jun 2014 B2
8789030 Gounares et al. Jul 2014 B2
8789032 Li et al. Jul 2014 B1
8793669 Garrett Jul 2014 B2
8924941 Krajec et al. Dec 2014 B2
9015668 Michelsen Apr 2015 B1
9203894 Ginzburg Dec 2015 B1
9497136 Ramarao Nov 2016 B1
20010003822 Hibi et al. Jun 2001 A1
20010018701 Livecchi Aug 2001 A1
20010056456 Cota-Robles Dec 2001 A1
20020019887 Moore Feb 2002 A1
20020072830 Hunt Jun 2002 A1
20020073063 Faraj Jun 2002 A1
20020087949 Golender Jul 2002 A1
20020112033 Doemling et al. Aug 2002 A1
20020120815 Zahavi Aug 2002 A1
20020138506 Shuf et al. Sep 2002 A1
20020138788 Yenne et al. Sep 2002 A1
20020163498 Chang et al. Nov 2002 A1
20020165901 Rajan et al. Nov 2002 A1
20020184615 Sumner Dec 2002 A1
20020196184 Johnson et al. Dec 2002 A1
20020196229 Chen et al. Dec 2002 A1
20020199172 Bunnell Dec 2002 A1
20020199179 Lavery et al. Dec 2002 A1
20030023576 Gilson Jan 2003 A1
20030041069 Yorke Feb 2003 A1
20030056201 Degenaro et al. Mar 2003 A1
20030058277 Bowman-Amuah Mar 2003 A1
20030061574 Saluja et al. Mar 2003 A1
20030070161 Wong et al. Apr 2003 A1
20030088606 Miller et al. May 2003 A1
20030088854 Wygodny et al. May 2003 A1
20030093408 Brown et al. May 2003 A1
20030145314 Nguyen et al. Jul 2003 A1
20030149765 Hubbard Aug 2003 A1
20030200356 Hue Oct 2003 A1
20030212731 Brenner et al. Nov 2003 A1
20030217155 Greck et al. Nov 2003 A1
20030225917 Partamian et al. Dec 2003 A1
20030231207 Huang Dec 2003 A1
20040010510 Hotti Jan 2004 A1
20040015600 Tiwary et al. Jan 2004 A1
20040015929 Lewis et al. Jan 2004 A1
20040034853 Gibbons et al. Feb 2004 A1
20040054992 Nair et al. Mar 2004 A1
20040075690 Cirne Apr 2004 A1
20040088699 Suresh May 2004 A1
20040103400 Johnsen et al. May 2004 A1
20040103410 Sakai May 2004 A1
20040107329 Krejsa Jun 2004 A1
20040123274 Inagaki et al. Jun 2004 A1
20040139480 Delpuch et al. Jul 2004 A1
20040154019 Aamodt et al. Aug 2004 A1
20040177245 Murphy Sep 2004 A1
20040194073 Chan et al. Sep 2004 A1
20040194098 Chung et al. Sep 2004 A1
20040194104 Beresnevichiene et al. Sep 2004 A1
20040205718 Reynders Oct 2004 A1
20040210445 Veronese et al. Oct 2004 A1
20040225443 Kamps Nov 2004 A1
20040236922 Boucher et al. Nov 2004 A1
20040239681 Robotham et al. Dec 2004 A1
20050015368 Payton et al. Jan 2005 A1
20050041692 Kallstenius Feb 2005 A1
20050066149 Kanade Mar 2005 A1
20050071847 Bentley et al. Mar 2005 A1
20050091645 Chilimbi et al. Apr 2005 A1
20050091646 Chilimbi et al. Apr 2005 A1
20050108259 Watanabe et al. May 2005 A1
20050108517 Dillon et al. May 2005 A1
20050108687 Mountain et al. May 2005 A1
20050131995 Chase et al. Jun 2005 A1
20050138111 Aton et al. Jun 2005 A1
20050144364 Tu et al. Jun 2005 A1
20050149697 Enright et al. Jul 2005 A1
20050149912 Farcy et al. Jul 2005 A1
20050155019 Levine et al. Jul 2005 A1
20050166193 Smith et al. Jul 2005 A1
20050177836 Lari et al. Aug 2005 A1
20050180330 Shapiro Aug 2005 A1
20050188164 Ballantyne et al. Aug 2005 A1
20050188272 Bodorin et al. Aug 2005 A1
20050198332 Laertz et al. Sep 2005 A1
20050210472 Accapadi et al. Sep 2005 A1
20050234974 Bailey et al. Oct 2005 A1
20050235050 Baker Oct 2005 A1
20050240567 Klosterhalfen Oct 2005 A1
20050262181 Schmidt et al. Nov 2005 A1
20050262324 Mathiske Nov 2005 A1
20050262493 Schmidt et al. Nov 2005 A1
20050262512 Schmidt et al. Nov 2005 A1
20060005179 Kawahara et al. Jan 2006 A1
20060005194 Kawahara et al. Jan 2006 A1
20060013134 Neuse Jan 2006 A1
20060015612 Shimazaki et al. Jan 2006 A1
20060037022 Byrd et al. Feb 2006 A1
20060047752 Hornby Mar 2006 A1
20060069593 Estefania et al. Mar 2006 A1
20060074970 Narayanan et al. Apr 2006 A1
20060101033 Hu et al. May 2006 A1
20060101416 Callahan et al. May 2006 A1
20060101434 Lake et al. May 2006 A1
20060101467 Buco et al. May 2006 A1
20060106843 Middelfart et al. May 2006 A1
20060106926 Kato et al. May 2006 A1
20060155965 Altman et al. Jul 2006 A1
20060156017 McIsaac et al. Jul 2006 A1
20060167939 Seidman et al. Jul 2006 A1
20060168583 Basso et al. Jul 2006 A1
20060174165 Shaffer et al. Aug 2006 A1
20060179429 Eggers et al. Aug 2006 A1
20060190596 Horikawa Aug 2006 A1
20060195715 Herington Aug 2006 A1
20060195747 Pramanick et al. Aug 2006 A1
20060200738 Tarle et al. Sep 2006 A1
20060224375 Barnett et al. Oct 2006 A1
20060230319 Ryali et al. Oct 2006 A1
20060230387 Prakriya et al. Oct 2006 A1
20060242637 Betarbet Oct 2006 A1
20060248165 Sridhar et al. Nov 2006 A1
20060248177 Dostert et al. Nov 2006 A1
20060256805 Cho et al. Nov 2006 A1
20060271827 Cascaval et al. Nov 2006 A1
20060277477 Christenson Dec 2006 A1
20060294167 Borman et al. Dec 2006 A1
20070006159 Hecht et al. Jan 2007 A1
20070006188 Schroth et al. Jan 2007 A1
20070016949 Dunagan et al. Jan 2007 A1
20070050174 DeWitt et al. Mar 2007 A1
20070061241 Jovanovic et al. Mar 2007 A1
20070079298 Tian et al. Apr 2007 A1
20070088716 Brumme et al. Apr 2007 A1
20070089094 Levine et al. Apr 2007 A1
20070100967 Smith et al. May 2007 A1
20070118538 Ahern et al. May 2007 A1
20070136201 Sah et al. Jun 2007 A1
20070136320 Sah et al. Jun 2007 A1
20070136337 Sah et al. Jun 2007 A1
20070136443 Sah et al. Jun 2007 A1
20070140131 Malloy et al. Jun 2007 A1
20070143795 Tran Jun 2007 A1
20070150895 Kurland Jun 2007 A1
20070157177 Bouguet et al. Jul 2007 A1
20070168992 Cary Jul 2007 A1
20070169002 Kronlund et al. Jul 2007 A1
20070169042 Janczewski Jul 2007 A1
20070174410 Croft et al. Jul 2007 A1
20070180147 Leigh Aug 2007 A1
20070192468 Keeler Aug 2007 A1
20070198524 Branda et al. Aug 2007 A1
20070204010 Sah et al. Aug 2007 A1
20070204223 Bartels et al. Aug 2007 A1
20070214333 Nijhawan et al. Sep 2007 A1
20070220513 Hwang Sep 2007 A1
20070226696 Radhakrishnan et al. Sep 2007 A1
20070226698 Cascaval et al. Sep 2007 A1
20070226700 Gal et al. Sep 2007 A1
20070226758 Waldo et al. Sep 2007 A1
20070234002 Litke Oct 2007 A1
20070239528 Xie et al. Oct 2007 A1
20070245309 Gray et al. Oct 2007 A1
20070245310 Rosenstein et al. Oct 2007 A1
20070260849 Chen et al. Nov 2007 A1
20070271283 Maryka et al. Nov 2007 A1
20070277056 Varadarajan et al. Nov 2007 A1
20070288911 Martin et al. Dec 2007 A1
20070294581 Dean et al. Dec 2007 A1
20080005281 Hsueh et al. Jan 2008 A1
20080005719 Morris Jan 2008 A1
20080022285 Cherkasova et al. Jan 2008 A1
20080022286 Chung et al. Jan 2008 A1
20080034367 Patrick et al. Feb 2008 A1
20080049022 Sherb et al. Feb 2008 A1
20080082968 Chang et al. Apr 2008 A1
20080092128 Corry et al. Apr 2008 A1
20080098180 Larson et al. Apr 2008 A1
20080104362 Buros et al. May 2008 A1
20080104451 Blanchard et al. May 2008 A1
20080109792 O'Dowd May 2008 A1
20080117216 Dorie May 2008 A1
20080120400 Keller et al. May 2008 A1
20080126453 Cornet et al. May 2008 A1
20080126828 Girouard et al. May 2008 A1
20080127108 Ivanov et al. May 2008 A1
20080127109 Simeon May 2008 A1
20080127112 Kettley et al. May 2008 A1
20080127116 Kosche et al. May 2008 A1
20080127149 Kosche et al. May 2008 A1
20080139191 Melnyk et al. Jun 2008 A1
20080140985 Kitamorn et al. Jun 2008 A1
20080155090 Ruscin et al. Jun 2008 A1
20080155348 Ivanov et al. Jun 2008 A1
20080155349 Ivanov et al. Jun 2008 A1
20080155550 Tsafrir et al. Jun 2008 A1
20080162411 Buckler et al. Jul 2008 A1
20080163183 Li et al. Jul 2008 A1
20080168472 Wilson Jul 2008 A1
20080243970 Schmelter et al. Oct 2008 A1
20080271019 Stratton et al. Oct 2008 A1
20080271032 Twaddle Oct 2008 A1
20080271038 Rolia et al. Oct 2008 A1
20080276129 Cocker et al. Nov 2008 A1
20080282028 Balakrishnan et al. Nov 2008 A1
20080282232 Cong et al. Nov 2008 A1
20080288212 Greifeneder Nov 2008 A1
20080288741 Lee et al. Nov 2008 A1
20080295113 Breitgand et al. Nov 2008 A1
20080301676 Alpern et al. Dec 2008 A1
20080312980 Boulineau et al. Dec 2008 A1
20080313502 Mcfadden et al. Dec 2008 A1
20090019449 Choi et al. Jan 2009 A1
20090024414 Mansour et al. Jan 2009 A1
20090024679 Amundsen et al. Jan 2009 A1
20090037873 Ahadian et al. Feb 2009 A1
20090037879 Iyengar et al. Feb 2009 A1
20090049421 Meijer et al. Feb 2009 A1
20090049428 Cozmei Feb 2009 A1
20090055802 Crosby Feb 2009 A1
20090089552 Inchingolo et al. Apr 2009 A1
20090089765 Guo et al. Apr 2009 A1
20090100435 Papaefstathiou et al. Apr 2009 A1
20090106506 Skerlj et al. Apr 2009 A1
20090106746 Chaudhuri et al. Apr 2009 A1
20090125519 Robison et al. May 2009 A1
20090138858 Livshits et al. May 2009 A1
20090150613 Wang et al. Jun 2009 A1
20090150874 Chung et al. Jun 2009 A1
20090157723 De et al. Jun 2009 A1
20090165016 Bell, Jr. et al. Jun 2009 A1
20090177642 Chung et al. Jul 2009 A1
20090193402 Bashkansky et al. Jul 2009 A1
20090199047 Vaitheeswaran et al. Aug 2009 A1
20090271763 Varma et al. Oct 2009 A1
20090271799 Barsness et al. Oct 2009 A1
20090276183 Kusner et al. Nov 2009 A1
20090313525 Savin et al. Dec 2009 A1
20090313600 Ayers et al. Dec 2009 A1
20100011341 Baierl et al. Jan 2010 A1
20100018701 Peter et al. Jan 2010 A1
20100049941 Howard Feb 2010 A1
20100064035 Branca et al. Mar 2010 A1
20100064279 Stewart Mar 2010 A1
20100077388 Kimura Mar 2010 A1
20100082322 Cherkasova et al. Apr 2010 A1
20100106920 Anckaert et al. Apr 2010 A1
20100115172 Gillingham et al. May 2010 A1
20100123717 Jiao May 2010 A1
20100125565 Burger et al. May 2010 A1
20100125838 Kuusilinna et al. May 2010 A1
20100131945 Zeort May 2010 A1
20100138431 Bator et al. Jun 2010 A1
20100146489 Ortiz Jun 2010 A1
20100153443 Gaffga et al. Jun 2010 A1
20100162257 Hiltunen et al. Jun 2010 A1
20100180346 Nicolson et al. Jul 2010 A1
20100199130 Rolia et al. Aug 2010 A1
20100205583 Gebhardt et al. Aug 2010 A1
20100211756 Kaminski et al. Aug 2010 A1
20100223581 Manolescu et al. Sep 2010 A1
20100235603 Ravindranath et al. Sep 2010 A1
20100251220 Jeong Sep 2010 A1
20100257019 Chickering et al. Oct 2010 A1
20100262832 Tie et al. Oct 2010 A1
20100268816 Tarui et al. Oct 2010 A1
20100281458 Paladino et al. Nov 2010 A1
20100281488 Krishnamurthy et al. Nov 2010 A1
20100287541 Saunders et al. Nov 2010 A1
20100299671 Kinsey Nov 2010 A1
20100306854 Neergaard Dec 2010 A1
20100318630 Howell et al. Dec 2010 A1
20100318994 Holmberg Dec 2010 A1
20100333109 Milnor Dec 2010 A1
20110004443 Horikawa Jan 2011 A1
20110004598 Kikuchi Jan 2011 A1
20110022812 Van Der et al. Jan 2011 A1
20110055815 Squillace Mar 2011 A1
20110067008 Srivastava et al. Mar 2011 A1
20110067030 Isard et al. Mar 2011 A1
20110072420 Cha et al. Mar 2011 A1
20110078487 Nielsen et al. Mar 2011 A1
20110087387 Safa-Bakhsh et al. Apr 2011 A1
20110088021 Kruglick Apr 2011 A1
20110088038 Kruglick Apr 2011 A1
20110098973 Seidman Apr 2011 A1
20110107341 Longobardi et al. May 2011 A1
20110126286 Nazarov May 2011 A1
20110138363 Schmelter et al. Jun 2011 A1
20110138365 Schmelter et al. Jun 2011 A1
20110145609 Berard et al. Jun 2011 A1
20110153603 Adiba et al. Jun 2011 A1
20110153817 Wright et al. Jun 2011 A1
20110154289 Mannarswamy et al. Jun 2011 A1
20110154300 Rao Jun 2011 A1
20110167414 Lattner et al. Jul 2011 A1
20110179424 Saxe et al. Jul 2011 A1
20110202907 Dice et al. Aug 2011 A1
20110225458 Zuo Sep 2011 A1
20110258608 Li et al. Oct 2011 A1
20110258611 Dutta Oct 2011 A1
20110258612 Matthiesen et al. Oct 2011 A1
20110270857 Bommireddipalli et al. Nov 2011 A1
20110276951 Jain Nov 2011 A1
20110283071 Yokoya et al. Nov 2011 A1
20110283263 Gagliardi et al. Nov 2011 A1
20110289485 Mejdrich et al. Nov 2011 A1
20110302371 Lysko Dec 2011 A1
20110314448 Biggerstaff et al. Dec 2011 A1
20110314543 Treit et al. Dec 2011 A1
20120011519 Ganesh Jan 2012 A1
20120017123 Masser et al. Jan 2012 A1
20120023475 Surazski et al. Jan 2012 A1
20120042212 Laurenti Feb 2012 A1
20120047514 Seo et al. Feb 2012 A1
20120060142 Fliess et al. Mar 2012 A1
20120072579 Teather Mar 2012 A1
20120079108 Findeisen Mar 2012 A1
20120079456 Kannan et al. Mar 2012 A1
20120079460 Cho et al. Mar 2012 A1
20120089710 Rakowski et al. Apr 2012 A1
20120102029 Larson et al. Apr 2012 A1
20120102500 Waddington et al. Apr 2012 A1
20120110555 Bates May 2012 A1
20120117438 Shaffer et al. May 2012 A1
20120137273 Meijler et al. May 2012 A1
20120144374 Gallagher Jun 2012 A1
20120151396 Ramprasad et al. Jun 2012 A1
20120159091 Li Jun 2012 A1
20120159116 Lim et al. Jun 2012 A1
20120159391 Berry et al. Jun 2012 A1
20120159454 Barham et al. Jun 2012 A1
20120167081 Sedayao et al. Jun 2012 A1
20120173703 Lingen Jul 2012 A1
20120197868 Fauser et al. Aug 2012 A1
20120198375 Carter et al. Aug 2012 A1
20120198423 Bestgen et al. Aug 2012 A1
20120204156 Kettley et al. Aug 2012 A1
20120204189 Eichenberger et al. Aug 2012 A1
20120221314 Bourlatchkov et al. Aug 2012 A1
20120222019 Gounares et al. Aug 2012 A1
20120222043 Gounares et al. Aug 2012 A1
20120227040 Gounares Sep 2012 A1
20120233310 Agarwala et al. Sep 2012 A1
20120233592 Gounares Sep 2012 A1
20120233601 Gounares et al. Sep 2012 A1
20120233609 Blythe et al. Sep 2012 A1
20120246303 Petersen Sep 2012 A1
20120254266 Printezis et al. Oct 2012 A1
20120254900 Kumar et al. Oct 2012 A1
20120259962 Bose et al. Oct 2012 A1
20120260135 Beck et al. Oct 2012 A1
20120266014 Bhoovaraghavan et al. Oct 2012 A1
20120266143 Bhoovaraghavan et al. Oct 2012 A1
20120278504 Ang et al. Nov 2012 A1
20120278585 Gupta et al. Nov 2012 A1
20120278594 Kumar et al. Nov 2012 A1
20120278793 Jalan Nov 2012 A1
20120284730 Decusatis et al. Nov 2012 A1
20120290672 Robinson et al. Nov 2012 A1
20120296991 Spivack et al. Nov 2012 A1
20120297163 Breternitz et al. Nov 2012 A1
20120317276 Muniraju Dec 2012 A1
20120317371 Gounares et al. Dec 2012 A1
20120317389 Gounares et al. Dec 2012 A1
20120317421 Gounares et al. Dec 2012 A1
20120317551 Hecht et al. Dec 2012 A1
20120317556 Zhu et al. Dec 2012 A1
20120317557 Garrett et al. Dec 2012 A1
20120317577 Garrett et al. Dec 2012 A1
20120317587 Garrett et al. Dec 2012 A1
20120323827 Lakshmanan et al. Dec 2012 A1
20120324454 Gounares Dec 2012 A1
20120324527 Brown et al. Dec 2012 A1
20120330700 Garg et al. Dec 2012 A1
20130007116 Strack et al. Jan 2013 A1
20130018925 Pegg Jan 2013 A1
20130042156 Srinivasan et al. Feb 2013 A1
20130061212 Krause et al. Mar 2013 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
20130074050 Masser et al. Mar 2013 A1
20130074055 Gounares et al. Mar 2013 A1
20130074056 Gounares et al. Mar 2013 A1
20130074057 Gounares Mar 2013 A1
20130074058 Gounares et al. Mar 2013 A1
20130074092 Gounares et al. Mar 2013 A1
20130074093 Gounares et al. Mar 2013 A1
20130080641 Lui et al. Mar 2013 A1
20130080642 Adam 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
20130086348 Marathe et al. Apr 2013 A1
20130086564 Felch Apr 2013 A1
20130091387 Bohnet et al. Apr 2013 A1
20130091508 Srinivasan Apr 2013 A1
20130104107 De Smet et al. Apr 2013 A1
20130117753 Gounares et al. May 2013 A1
20130117759 Gounares et al. May 2013 A1
20130145015 Malloy et al. Jun 2013 A1
20130145350 Marinescu Jun 2013 A1
20130166886 Sasanka et al. Jun 2013 A1
20130185433 Zhu et al. Jul 2013 A1
20130185729 Vasic et al. Jul 2013 A1
20130198729 Turner et al. Aug 2013 A1
20130205009 Malloy et al. Aug 2013 A1
20130212594 Choi et al. Aug 2013 A1
20130219057 Li et al. Aug 2013 A1
20130219363 Wu Aug 2013 A1
20130219372 Li et al. Aug 2013 A1
20130227519 Maleport Aug 2013 A1
20130227529 Li et al. Aug 2013 A1
20130227536 Li et al. Aug 2013 A1
20130227560 McGrath Aug 2013 A1
20130227573 Morsi Aug 2013 A1
20130229416 Krajec et al. Sep 2013 A1
20130232174 Krajec et al. Sep 2013 A1
20130232433 Krajec et al. Sep 2013 A1
20130232452 Krajec et al. Sep 2013 A1
20130232463 Nagaraja Sep 2013 A1
20130235040 Jackson, Jr. Sep 2013 A1
20130254746 Balakrishnan et al. Sep 2013 A1
20130282545 Gounares et al. Oct 2013 A1
20130283102 Krajec et al. Oct 2013 A1
20130283240 Krajec et al. Oct 2013 A1
20130283241 Krajec et al. Oct 2013 A1
20130283242 Gounares Oct 2013 A1
20130283246 Krajec et al. Oct 2013 A1
20130283247 Krajec et al. Oct 2013 A1
20130283281 Krajec et al. Oct 2013 A1
20130298112 Gounares et al. Nov 2013 A1
20130318506 Sohm et al. Nov 2013 A1
20130332913 Dickenson Dec 2013 A1
20130340077 Salsamendi Dec 2013 A1
20130346479 Vilke Dec 2013 A1
20140013306 Gounares et al. Jan 2014 A1
20140013308 Gounares et al. Jan 2014 A1
20140013309 Gounares Jan 2014 A1
20140013311 Garrett et al. Jan 2014 A1
20140019598 Krajec Jan 2014 A1
20140019756 Krajec Jan 2014 A1
20140019879 Krajec et al. Jan 2014 A1
20140019985 Krajec Jan 2014 A1
20140025572 Krajec Jan 2014 A1
20140026142 Gounares et al. Jan 2014 A1
20140040591 Gounares Feb 2014 A1
20140047084 Breternitz Feb 2014 A1
20140047272 Breternitz Feb 2014 A1
20140053143 Conrod et al. Feb 2014 A1
20140068629 Boller Mar 2014 A1
20140109101 Radhakrishnan et al. Apr 2014 A1
20140109188 Pavlov Apr 2014 A1
20140189650 Gounares Jul 2014 A1
20140189651 Gounares Jul 2014 A1
20140189652 Gounares Jul 2014 A1
20140215443 Voccio Jul 2014 A1
20140215444 Voccio et al. Jul 2014 A1
20140281726 Garrett et al. Sep 2014 A1
20140282597 Garrett et al. Sep 2014 A1
20140317454 Gataullin et al. Oct 2014 A1
20140317603 Gataullin et al. Oct 2014 A1
20140317604 Gataullin et al. Oct 2014 A1
20140317605 Gataullin et al. Oct 2014 A1
20140317606 Gataullin et al. Oct 2014 A1
20150032971 Tian et al. Jan 2015 A1
20150066869 Seto et al. Mar 2015 A1
20150067652 Seto et al. Mar 2015 A1
20150067654 Seto et al. Mar 2015 A1
20150074278 Maes Mar 2015 A1
20150082285 Li et al. Mar 2015 A1
20150163288 Maes Jun 2015 A1
20150195372 Zheng Jul 2015 A1
20150205588 Bates et al. Jul 2015 A1
20150222548 Krajec et al. Aug 2015 A1
20150242303 Gautallin et al. Aug 2015 A1
20150301920 Krajec et al. Oct 2015 A1
20150304409 Steuer Oct 2015 A1
20150331720 Huetter et al. Nov 2015 A1
20150347268 Garrett et al. Dec 2015 A1
20150347273 Krajec et al. Dec 2015 A1
20150347277 Gataullin et al. Dec 2015 A1
20150347283 Gataullin et al. Dec 2015 A1
20160077951 Krajec et al. Mar 2016 A1
20160133035 Krajec et al. May 2016 A1
20160196201 Seto et al. Jul 2016 A1
20160266998 Gautallin et al. Sep 2016 A1
20160283345 Gounares et al. Sep 2016 A1
Foreign Referenced Citations (10)
Number Date Country
1527968 Aug 2004 CN
101595457 Dec 2009 CN
102567115 Jul 2012 CN
2390790 Nov 2011 EP
2012208830 Oct 2012 JP
2012138586 Dec 2012 KR
WO0007100 Feb 2000 WO
2011116988 Sep 2011 WO
2011142720 Nov 2011 WO
2012106571 Aug 2012 WO
Non-Patent Literature Citations (150)
Entry
Dong et al., Hybrid Checkpointing Using Emerging Nonvolatile Memories for Future Exascale Systems, Oct. 2004.
Erik-Svensson et. al, MPreplay Architecture Support for Deterministic Replay of Message Passing Programs on MessagePassing Many-core Processors, Sep. 2009.
Gerofi et al., Workload Adaptive Checkpoint Scheduling of Virtual Machine Replication, 2011.
International Search Authority, International Search Report and Written Opinion, Korea Intellectual Property Office, PCT/US2013/073935, Mar. 31, 2014.
International Search Authority, International Search Report and Written Opinion, Korea Intellectual Property Office, PCT/US2013/075876, Apr. 7, 2014.
Wu et. al, Error Recovery in Shared Memory Multiprocessors Using Private Caches, Apr. 1990.
Narayanasamy, et al., “BugNet Continuously Recording Program Execution for Deterministic Replay Debugging”, Jun. 2005, 12 pages.
U.S. Appl. No. 13/853,809, May 21, 2014, Office Action.
U.S. Appl. No. 13/853,769, May 9, 2014, Office Action.
U.S. Appl. No. 13/853,769, Jun. 22, 2015, Office Action.
U.S. Appl. No. 13/853,791, May 12, 2014, Office Action.
U.S. Appl. No. 13/853,791, Sep. 30, 2014, Office Action.
U.S. Appl. No. 13/853,791, Jan. 29, 2015, Office Action.
U.S. Appl. No. 13/853,791, Aug. 19, 2015, Office Action.
U.S. Appl. No. 13/866,014, Sep. 12, 2014, Office Action.
U.S. Appl. No. 13/866,014, Jan. 5, 2015, Office Action.
U.S. Appl. No. 13/866,020, Aug. 29, 2014, Office Action.
U.S. Appl. No. 13/866,020, Feb. 27, 2015, Office Action.
U.S. Appl. No. 13/866,022, Aug. 15, 2014, Office Action.
U.S. Appl. No. 13/866,022, Mar. 17, 2015, Office Action.
U.S. Appl. No. 13/866,014, Aug. 28, 2015, Notice of Allowance.
U.S. Appl. No. 13/866,022, Sep. 8, 2015, Notice of Allowance.
U.S. Appl. No. 13/866,014, Nov. 3, 2015, Notice of Allowance.
U.S. Appl. No. 13/866,022, Nov. 9, 2015, Notice of Allowance.
U.S. Appl. No. 13/853,791, Dec. 15, 2015, Office Action.
U.S. Appl. No. 13/853,769, Jul. 8, 2014, Office Action.
U.S. Appl. No. 13/853,769, Feb. 19, 2016, Office Action.
Office Action dated May 23, 2016 in U.S. Appl. No. 13/853,791.
Notice of Allowance dated Jun. 2, 2016 in U.S. Appl. No. 13/853,769.
Shuf et al. “Exploiting Prolific Types of Memory Management and Optimizations” Jan. 2002, ACM pp. 1-12.
Lenoski et al. “The Stanford Dash Multiprocessor” Mar. 1992, IEEE.
International Search Report and Written Opinion for PCT/US2013/037523 dated Jul. 31, 2013.
International Search Report and Written Opinion for PCT/US2013/041009 dated Aug. 19, 2013.
International Search Report and Written Opinion for PCT/US2013/041178 dated Aug. 29, 2013.
International Search Report and Written Opinion for PCT/US2013/041184 dated Sep. 27, 2013.
International Search Report and Written Opinion for PCT/US2012/066098 dated Mar. 12, 2013.
International Search Report and Written Opinion for PCT/US2012/045964 dated Jan 24, 2013.
International Search Report and Written Opinion for PCT/US2013/041165 dated Jul. 1, 2013.
International Search Report and Written Opinion for PCT/US2013/036968 dated Jun. 4, 2013.
International Search Report and Written Opinion for PCT/US2012/066076 dated Feb. 22, 2013.
International Search Report and Written Opinion for PCT/US2012/063040 dated May 15, 2013.
International Search Report and Written Opinion for PCT/US2012/043811 dated Jan. 29, 2013.
International Search Report and Written Opinion for PCT/US2012/056701 dated Feb. 27, 2013.
International Search Report and Written Opinion for PCT/US2012/056704 dated Feb. 5, 2013.
International Search Report and Written Opinion for PCT/US2012/041036 dated Jan. 25, 2013.
Kistler “Continuous Program Opitmization” PhD Dissertation, University of California, Irvine 1999.
Quintero et al. “Power Systems Enterprise Servers with PowerVM Virtualization and RAS” Redbooks, Dec. 2011, 424 pages.
Li et al. “Efficient Operating System Scheduling for Performance-Asymmetric Multi-Core Architectures” Copyright 2007, ACM.
Wang et al. “Using Dataflow Information to Improve Inter-Workflow Instance Concurrency” 2005, IEEE.
International Search Report and Written Opinion for PCT/US2013/037341 dated Jun. 3, 2013.
International Search Report and Written Opinion for PCT/US2013/073894 dated Apr. 1, 2014.
International Search Report and Written Opinion for PCT/US2013/047211 dated Nov. 27, 2013.
International Search Report and Written Opinion for PCT/US2013/043811 dated Nov. 28, 2013.
International Search Report and Written Opinion for PCT/US2013/046925 dated Nov. 25, 2013.
International Search Report and Written Opinion for PCT/US2013/046918 dated Nov. 25, 2013.
International Search Report and Written Opinion for PCT/US2013/043492 dated Nov. 6, 2013.
International Search Report and Written Opinion for PCT/US2013/044193 dated Oct. 29, 2013.
International Search Report and Written Opinion for PCT/US2013/046050 dated Nov. 8, 2013.
International Search Report and Written Opinion for PCT/US2013/046922 dated Dec. 17, 2013.
International Search Report and Written Opinion for PCT/US2013/043522 dated Nov. 6, 2013.
International Search Report and Written Opinion for PCT/US2013/046664 dated Nov. 20, 2013.
TLR “Automagically Wrapping JavaScript Callback Functions” Oct. 22, 2008.
Grossbart “JavaScript Profiling with the Chrome Developer Tools” Smashing Magazine website Jun. 12, 2012.
“Method and System for Automatically Tracking User Interactions and Providing Tags to the User Interactions” Dec. 4, 2010.
Whitehead “Java Run-Time Monitoring, Part 2:Postcompilation Instrumentation and Performance Monitoring Interception, Class Wrapping, and Bytecode Instrumentation” IBM.com Aug. 5, 2008.
Kinsey “Under the Hood: The JavaScript SDK—Error Handling” Nov. 1, 2012.
Cantrill “Instrumenting the Real-Time Web: Node.js in Production” Node Summit 2012 Presentation; Jan. 24-25, 2012.
International Search Report and Written Opinion for PCT/US2014/011727 dated May 16, 2014.
“Remote Debugging in Visual Studio 2012 on Windows 8” on Error Resume Next: Coding Through Life, One Day at the Time. Retreived Jun. 14, 2016.
Anonymous “Time Series Analysis” Mar. 7, 2008.
International Search Report and Written Opinion for PCT/US2013/042789 dated Sep. 30, 2013.
International Search Report and Written Opinion for PCT/US2013/042030 dated Oct. 24, 2013.
International Search Report and Written Opinion for PCT/US2013/042081 dated Oct. 24, 2013.
International Search Report and Written Opinion for PCT/US2013/042788 dated Sep. 5, 2013.
International Search Report and Written Opinion for PCT/IB2014/060233 dated Nov. 11, 2014.
Wu et al. “Error Recovery in Shared Memory Multiprocessors Using Private Caches” Apr. 1990.
International Search Report and Written Opinion for PCT/US2013/073935 dated Mar. 31, 2014.
Kuznicki “Threads vs. Processes for Program Parallelization” Sep. 2013.
U.S. Appl. No. 13/571,569, Dec. 19, 2013, Office Action.
U.S. Appl. No. 13/671,847, Jan. 21, 2014, Notice of Allowance.
U.S. Appl. No. 13/751,012, Jan. 29, 2014, Office Action.
U.S. Appl. No. 13/671,847, Mar. 9, 2014, Notice of Allowance.
U.S. Appl. No. 13/751,012, Mar. 11, 2014, Office Action.
U.S. Appl. No. 13/571,569, Apr. 9, 2014, Office Action.
U.S. Appl. No. 13/751,026, Apr. 16, 2014, Office Action.
U.S. Appl. No. 13/765,654, Jun. 26, 2014, Office Action.
U.S. Appl. No. 13/765,663, Jul. 11, 2014, Office Action.
U.S. Appl. No. 13/765,648, Jul. 28, 2014, Office Action.
U.S. Appl. No. 13/765,642, Jul. 31, 2014, Office Action.
U.S. Appl. No. 13/765,657, Aug. 1, 2014, Office Action.
U.S. Appl. No. 13/757,625, Aug. 13, 2014, Office Action.
U.S. Appl. No. 13/867,057, Aug. 14, 2014, Office Action.
U.S. Appl. No. 13/765,651, Aug. 14, 2014, Office Action.
U.S. Appl. No. 13/765,642, Aug. 15, 2014, Office Action.
U.S. Appl. No. 13/765,648, Aug. 19, 2014, Notice of Allowance.
U.S. Appl. No. 13/751,026, Aug. 20, 2014, Office Action.
U.S. Appl. No. 13/765,654, Aug. 21, 2014, Office Action.
U.S. Appl. No. 13/765,657, Aug. 27, 2014, Notice of Allowance.
U.S. Appl. No. 13/751,012, Sep. 30, 2014, Notice of Allowance.
U.S. Appl. No. 13/916,561, Oct. 2, 2014, Office Action.
U.S. Appl. No. 13/571,569, Dec. 17, 2014, Office Action.
U.S. Appl. No. 13/916,568, Jan. 14, 2015, Notice of Allowance.
U.S. Appl. No. 13/916,571, Jan. 15, 2015, Notice of Allowance.
U.S. Appl. No. 13/765,642, Jan. 26, 2015, Notice of Allowance.
U.S. Appl. No. 13/765,654, Jan. 26, 2015, Notice of Allowance.
U.S. Appl. No. 13/916,563, Feb. 12, 2015, Office Action.
U.S. Appl. No. 13/765,651, Feb. 13, 2015, Office Action.
U.S. Appl. No. 13/916,566, Feb. 13, 2015, Office Action.
U.S. Appl. No. 13/916,561, Mar. 4, 2015, Notice of Allowance.
U.S. Appl. No. 13/757,631, Mar. 17, 2015, Office Action.
U.S. Appl. No. 13/867,057, Mar. 19, 2015, Office Action.
U.S. Appl. No. 13/571,569, Apr. 1, 2015, Notice of Allowance.
U.S. Appl. No. 14/455,156, Jun. 3, 2015, Notice of Allowance.
U.S. Appl. No. 14/455,170, Jul. 2, 2015, Notice of Allowance.
U.S. Appl. No. 14/455,202, Jul. 30, 2015, Notice of Allowance.
U.S. Appl. No. 14/629,322, Aug. 26, 2015, Office Action.
U.S. Appl. No. 14/820,798, Sep. 24, 2015, Office Action.
U.S. Appl. No. 13/757,631, Sep. 25, 2015, Notice of Allowance.
U.S. Appl. No. 14/820,834, Sep. 29, 2015, Office Action.
U.S. Appl. No. 13/867,057, Oct. 6, 2015, Office Action.
U.S. Appl. No. 14/582,973, Nov. 4, 2015, Office Action.
U.S. Appl. No. 14/455,156, Nov. 9, 2015, Notice of Allowance.
U.S. Appl. No. 14/629,322, Nov. 20, 2015, Office Action.
U.S. Appl. No. 14/455,170, Nov. 24, 2015, Notice of Allowance.
U.S. Appl. No. 14/455,202, Dec. 9, 2015, Notice of Allowance.
U.S. Appl. No. 13/757,625, Jan. 2, 2016, Office Action.
U.S. Appl. No. 13/867,057, Jan. 13, 2016, Office Action.
U.S. Appl. No. 14/455,202, Feb. 4, 2016, Notice of Allowance.
U.S. Appl. No. 14/455,170, Feb. 10, 2016, Notice of Allowance.
U.S. Appl. No. 14/995,872, Feb. 26, 2016, Office Action.
U.S. Appl. No. 14/820,798, Apr. 6, 2016, Notice of Allowance.
U.S. Appl. No. 14/820,834, Apr. 20, 2016, Notice of Allowance.
U.S. Appl. No. 14/642,192, May 23, 2016, Notice of Allowance.
U.S. Appl. No. 13/867,057, Jun. 3, 2016, Office Action.
U.S. Appl. No. 14/995,872, Jun. 9, 2016, Notice of Allowance.
U.S. Appl. No. 14/617,509, Jul. 20, 2016, Office Action.
U.S. Appl. No. 14/582,973, Aug. 11, 2016, Notice of Allowance.
U.S. Appl. No. 13/853,791, Oct. 12, 2016, Office Action.
“Supplementary Search Report Issued in European Patent Application No. 13875046.8”, Mailed Date: Sep. 5, 2016, 13 Pages.
“Supplementary Search Report Issued in European Patent Application No. 13874921”, Mailed Date: Sep. 8, 2016.
“Supplementary Search Report Issued in European Patent Application No. 14785777”, Mailed Date: Nov. 3, 2016.
Ravindranath, et al. “Appinsight: Mobile App Performance Monitoring in the Wild”, Usenix, Apr. 11, 2013 pp. 1-14.
Graham et al. “Gprof: A Call Graph Execution Profiler”, PLDI 09: Proceedings of the 2009 ACM Sigplan Conference on Programming Language Design and Implementation, Jun. 15-20, 2009.
U.S. Appl. No. 14/820,957, Dec. 1, 2016, Office Action.
Office Action dated Dec. 14, 2016 issued in U.S. Appl. No. 13/867,057.
“Supplementary Search Report Issued in European Patent Application No. 13875228.2”, Mailed Date: Dec. 16, 2016.
U.S. Appl. No. 14/617,509, Dec. 23, 2016, Office Action.
Chinese Office Action issued on China Patent Application No. 201380075071.1. Mail Date: Mar. 3, 2017.
Chinese Office Action issued in China Patent Application No. 201380072861.4. Maild date: Mar. 9, 2017.
Extended European Search Report issued in EPO application No. 14785777.5 mailed Mar. 16, 2017.
Related Publications (1)
Number Date Country
20130219057 A1 Aug 2013 US
Provisional Applications (1)
Number Date Country
61801298 Mar 2013 US