Research and Advances
Computing Applications Review articles

Energy Efficiency: A New Concern For Application Software Developers

Development of energy-efficient software is hindered by a lack of knowledge and a lack of tools.
Posted
  1. Introduction
  2. Key Insights
  3. A Formative Study
  4. Energy-Related Problems
  5. Energy-Related Solutions
  6. Conclusion
  7. References
  8. Authors
  9. Footnotes
Energy Efficiency: A New Concern for Application Software Developers, illustration

The prevalence and ubiquity of mobile computing platforms, such as smartphones, tablets, smart watches, and smart glasses, have changed the way people use and interact with software. In particular, these platforms share a common yet challenging requirement: they are battery-driven. As users interact with them, they tend to be less available, since even simple, well-optimized operations (for example, texting a friend) consume energy. At the same time, wasteful, poorly optimized software can deplete a device’s battery much faster than necessary. Heavy resource usage has been shown to be a reason leading to poor app reviews in online app stores.22

Back to Top

Key Insights

  • Developers currently do not fully understand how to write, maintain, and evolve energy-efficientssoftware applications.
  • Two main problems are identified:
  • Developers lack knowledge on how to measure, profile, and optimize energy efficiency, and they lack tools to help them in these tasks, in particular, tools that work with abstractions they are familiar with.
  • Software energy consumption research is evolving to mitigate these problems and this article highlights promising research avenues.

This concern, however, pertains not only to mobile platforms. Indeed, big players in the software industry are also reaching the same conclusion, as stated in one of the very few energy-efficient software development guides: “Even small inefficiencies in apps add up across the system, significantly affecting battery life, performance, responsiveness, and temperature.”a Corporations that maintain datacenters struggle with soaring energy costs. These costs can be attributed in part to overprovisioning with servers constantly operating under their maximum capacity (for example, U.S. datacenters are wasting huge amount of energy15), and to the developers of the apps running on these datacenters generally not taking energy into consideration.36

Unfortunately, during the last decades, little attention has been placed on creating techniques, tools, and processes to empower software developers to better understand and use energy resources. As a consequence, software developers still lack textbooks, guidelines, courses, and tools to reference when dealing with energy consumption issues.36,45 Moreover, most of the research that connects computing and energy efficiency has concentrated on the lower levels of the hardware and software stack. However, recent studies show these lower-level solutions do not capture the whole picture2,9,25 when it comes to energy consumption. Although software systems do not consume energy themselves, they affect hardware utilization, leading to indirect energy consumption.

How is software related to energy consumption? Energy consumption E is an accumulation of power dissipation P over time t, that is, E = P x t. Power P is measured in watts, whereas energy E is measured in joules. As an example, if one operation takes 10 seconds to complete and dissipates five watts, it consumes 50 joules of energy. In particular, when taking about software energy consumption, one should pay attention to:

  • a given software system under execution,
  • on a given hardware platform,
  • on a given context, and
  • during a given time.

To understand the importance of a hardware platform, consider an application that uses the network. Any commodity smartphone today supports, at least, WiFi, 3G, and 4G. A recent study observed that 3G can consume about 1.7x more energy than WiFi, whereas 4G can consume about 1.3x more energy than 3G, while performing the same task, on the same hardware platform.23

Context also plays a key role, since the way software is built and used has a critical influence on energy consumption. For instance, software can stress energy consumption on CPUs, when performing CPU-intensive computations,46 on DRAMs, when performing random accesses to data structures,34 on networks, when running several HTTP requests,9,28 and on displays, when using lighter backgrounds29,32 or playing videos.

Finally, time plays a key role in this equation. A common misconception among developers is that reducing execution time also reduces energy consumption,36,45 the t of the equation. However, chances are this reduction in execution time might increase the number of CPU cycles (for example, using multi-core CPUs) and, therefore, the number of context switches. This, in turn, might increase the P of the equation, impacting the resulting energy consumption.

Software engineering meets energy consumption. While the strategy of leaving the energy consumption optimization problem to the lower-level layers has been successful, recent studies show that even better energy savings can be achieved by empowering and encouraging software developers to participate in the process.9,23,34,42 However, the application level, which is the focus of most mainstream software being developed these days, has been the target of few studies.

This lack of evaluation was observed in a recent paper,48 where the authors surveyed the papers published during a period of 10 years in top software engineering venues, and found only 20 research papers that have “power” or “energy” on their titles or abstracts. More interestingly, however, the authors observed that none of them were published before 2012. In 2012, three papers were published, whereas six papers were published in 2013 and 11 papers in 2014. That shows the emerging character of the field.

The need for studies that focus on the higher levels of the software stack is important from at least two important perspectives:

Software engineer’s perspective. Battery usage is a key factor for adopting and evaluating mobile applications. Users of an energy-inefficient app might review it badly, encouraging other users not to use it. This can negatively impact the app’s revenue.

End user’s perspective. The last mile in energy efficiency comes from the choices of end users. To make better choices, and further minimize energy consumption, end users should be aware of the different energy characteristics of software applications that serve the same purpose.

This article is a review of the most prominent software engineering approaches for writing, maintaining, and evolving energy-efficient software applications. We organize the contributions according to the Guide to the Software Engineering Body of Knowledge (SWEBOK),1 a common practice in software engineering studies (for example, Murphy-Hill et al.39). When conducing such review, we found the literature does not cover effectively certain areas of the SWEBOK. For these cases, we share our visions of possible research avenues that energy-aware researchers can follow to reduce this gap.

We unveil the perceptions of mobile developers when dealing with energy consumption issues, scratching their problems and possible solutions. We acknowledge that most of the energy-related problems, in fact, can be reduced to two main problems: the lack of knowledge and the lack of tools and present recent literature to understand how software engineering researchers are tackling these two problems.

Back to Top

A Formative Study

Energy consumption issues are now knocking on the door of application software developers. To shed light on this matter, similarly to Pang et al.,42 we conducted a survey with software developers to understand their perceptions about software energy consumption issues. Compared to previous research, which surveyed a wide range of software developers, our target population is more focused and consists of 62 software developers who have performed at least one commit to a mobile open source application.

Among the respondents, 68.75% have more than eight years of software development experience, 57.81% have more than two years of mobile development experience, and 77.41% have more than two years of open source development experience. The majority of them (57.8%) are source code contributors or project owners (35.9%). More interestingly, 70.31% of the respondents agree that energy consumption could be an issue in their mobile applications. Also, 37 respondents have already faced energy-related problems, as a respondent said: “We have a limited energy envelope for the whole system and we must make sure even our power hungry components don’t cause the system to go beyond this limit.” Also, some respondents are aware that energy inefficiencies can impact on app popularity and, therefore, revenue: “Users will leave bad reviews if you drain the battery.”

When asked if they found the root cause for the energy-related problems, 50% of the respondents did not answer. For those who answered, background activities, GPS, and unnecessary resource usage are among the recurring answers. Interestingly, these problems were also observed in other studies.36,45 However, 31.81% of the respondents did not observe any significant improvement in energy consumption after applying their solutions. For those who observed an improvement, only five of them made use of specialized tools. The majority of them have the perception of an improvement, for example: “The battery is lasting longer,” “Less heat from device,” or “I really do not measure before and after. It’s just a perception.” When we asked where they find reliable information about what solutions can be used to save energy, seven of them refer to the official documentation, five of them use Stack-Over flow, and five use other channels (blogs, YouTube, open source repositories). Unfortunately, the solutions described in such sources of documentation often are not supported by empirical evidence.38,45 To make the matter worse, two respondents rely on “trial and error,” which is far from accurate.

Moreover, 67% of the respondents said that energy-related features are “important” or “very important” to have in well known IDEs. Only eight of the overall respondents have actually used software energy consumption tools. Respondents said that the most important energy-related features to have in well-known IDEs are profiling tools (16 answers), varying from CPU, network, method, wake locks, thread, and live profile. Indeed, one respondent synthesize that well-known IDEs, such as Android Studio, lack these features: “Android Studio needs a good energy profiler to check the Android power consumption from all power consumers (radios, CPU, memory, storage, everything).” These results not only corroborate with the findings of Pang et al.,42 but also reinforce that application-level energy management is in high demand among application software developers, although better support is urgently needed.

We also asked five leading researchers in the area of software energy consumption to identify the most significant contributions and biggest open challenges in this area. All the researchers agreed that tool support is still lacking when it comes to energy measurement, reengineering, refactoring, and other related activities. Even though there is a recent interest from IDE builders to provide an energy consumption perspective of the software systems under development,b this finding suggests there is still much to do.

Back to Top

Energy-Related Problems

As observed in our formative study, software developers currently have to rely on Q&A websites, blog posts, or You-Tube videos when trying to optimize energy consumption, which are anecdotal, not supported by empirical evidence, or even incorrect.24,36 The consequence of the lack of appropriate textbooks, guidelines, and cookbooks for green software development is the lack of knowledge on how to write, maintain, and evolve energy-efficient software applications. Furthermore, our respondents also mentioned they believe that energy-related features are very important to have in well-known IDEs. In particular, energy profiling techniques can be very helpful. This lack of energy-related features incurs in the lack of tools to find, refactor, and fix energy-inefficient code.

The lack of knowledge and the lack of tools to write energy-efficient software is also discussed in the literature. For instance, Pinto et al.45 noticed that a common misconception is to confuse concepts such as “power” and “energy.” Manotas et al.36 observed that developers believe in panaceas, that is, solutions that are presented as universal but, in fact, only work in specific contexts. For instance, while one developer suggested, “offloading computation to the cloud” as a way to improve energy consumption, another developer mentioned, “decreased radio use increases battery life.” As a result, developers should consider the underlying thresholds to take proper advantage of each solution. These are examples of lack of knowledge. To further complicate matters, optimizing performance does not always help to save energy.25,26,31,46 Thus, the extensive performance textbooks and guidelines are not always useful.

The aforementioned lack of knowledge is intrinsically connected to the lack of tools. Moura et al.38 observed that energy-aware developers often employ low-level solutions that sometimes result in hard-to-detect correctness problems. The following commit message provides an example of a correctness problem: “Disable Auto Power Saving when resetting the modem. This can cause several bugs with serial communication.”c High-level energy saving tools might be useful in mitigating this problem. In addition, Pang et al.42 found that 88% of the respondents of their survey do not know what tool they can use to measure the energy consumption of their software. These are examples of lack of tools. Although software energy consumption tools do exist, they have yet-to-be-addressed limitations:

  • They require an in-depth knowledge of low-level implementation details and programmers under time pressure have little chance to learn how to use them;
  • They do not provide direct guidance on energy optimization, that is, bridging the gap between understanding where energy is consumed and understanding how the code can be modified in order to reduce energy consumption.

Here, we discuss how current software engineering research is addressing these two key problems.

Back to Top

Energy-Related Solutions

Since there is no single solution for conserving energy, we organize the contributions in terms of the topics of the SWEBOK,1 a common practice in software engineering studies (for example, Murphy-Hill et al.39). Although energy consumption can be related to any software engineering topic, we chose to focus only on topics directly related to software coding, since it is one of the main activities of software developers, and it is the target of most of the recent research contributions. Therefore, we do not cover the following topics: software configuration management, software engineering management, software engineering process, and software requirements.


Energy consumption issues are now knocking on the door of application software developers.


Software tools and methods. We organize our discussion of software engineering tools and methods in terms of enhancement methods, measurement tools, and static analysis tools.

Enhancement methods. These methods refer to energy-saving techniques that developers can use, even though they have no prior knowledge of the application domain. For instance, software developers often leverage modern CPUs to dynamically change their operating frequencies, thus reducing power dissipation.38 However, when applying this technique, software developers should use low-level system interfaces that are error-prone and platform dependent. Notwithstanding, blindly downscaling CPU frequency might increase energy consumption while reducing performance.20,34 This is an important example of the lack of tools. To mitigate this problem, novel approaches are based on dynamic adaptation through an energy profiler module, energy policies, and energy adaptation APIs.49, 50 The energy profiler module can recognize the system states and estimate the energy potentially demanded by an application.

Another example is method reallocation,10 which refers to the analysis of a software system considering all the levels of the stack (for example, kernel, library, and source code level), and reorganizing the classes and methods through the levels of the stack, in a way in which they can be placed in the level where the energy consumption is minimal. As a limitation, this technique can be utilized only if the operating system and the software development environment allow application software developers to go through the different levels (for example, from source code level to kernel level). In a similar strategy, cloud offloading23 is a technique in which heavy computations are sent to a remote computer; after the remote execution the result is sent back to the local machine. This approach aims to re-organize the implementation of the system at the source code level, thus saving energy by minimizing processing. Interestingly, when we asked the respondents if they found any solution to overcome the energy-related problems, one of the respondents said: “Offload intensive work to workers in the cloud.” However, this technique is only effective if the savings can compensate the extra energy toll required to send a computation through a network. Therefore, trade-offs exist and, as discussed previously, different components have different energy usage characteristics.

Measurement tools. Some measurement tools include methods that use data collected from different system interfaces to assess the energy consumption at the application level. One example is the Running Average Power Limit (RAPL). This module enables architectures monitor energy consumption and store it in Machine-Specific Registers (MSRs).d Several energy-consumption studies are based on this module (for example, Lima et al.,30 Liu et al.,34 Pinto et al.47). With such techniques, it is possible to profile a system and analyze, for instance, what are the system calls that have a major contribution to power dissipation.10,34 System calls, in particular, are being actively used for predicting and estimating energy consumption of a software system.2,3,8

Other tools leverage energy models. This strategy utilizes a model developed by physically measuring the energy consumption of a device.17,23,26 Energy models have a higher level of confidence only when approximating the energy consumption on the hardware based on which the model was created. Other hardware architectures can only consider the model as a rough estimation.

Although there are already some software tools for energy measurement (for example, Hindle et al.17 and Li et al.26), such tools have well-known drawbacks. First, energy measurement tools may pay an additional overhead on energy consumption, mostly due to the sampling mechanism. Data acquisition (that is, sampling) is the result of the process of acquiring information from the surrounding environment, processing the data, and sending it to another collection point to be consumed. Therefore, sampling techniques might impact energy consumption. This poses a challenge, since a recent study provides evidence that a high sampling rate is necessary to obtain reliable information.51 Even though this problem can be circumvented by employing software-based measurement approaches,34 these approaches are often regarded as less rigorous than hardware-based ones.


Interestingly, when we asked the respondents if they found any solution to overcome the energy-related problems, one said: “Offload intensive work to workers in the cloud.”


Second, hardware- and software-based approaches often do not provide the granularity level that application software developers are interested in.36,45 For instance, there is no tool support to measure energy consumption per thread per system module. It is difficult to link the energy measurements across the running threads with fine-grained events that happen during program execution, such as method calls. To make matters worse, the tail energy—that is, the high power state that remains long after the usage of a hardware component, such as the GPS26—should be taken into consideration, even in the presence of context switches. As a result, there is a mismatch between the noise introduced by coarse-grained measurements and the tiny energy impact of methods calls. Still, in our survey, 11 respondents mentioned that measurement tools are among the most important energy-related features to have available in well-known IDEs.

Static analysis tools. One of the main challenges of software energy consumption research is to bring analysis to the static level. Currently, software energy consumption instrumentation can only be conducted at runtime. This approach has several limitations; such as sophisticated (and expensive) hardware equipment46 or applicability only to specific hardware configurations.34 This fact has the potential of limiting the usability of software energy consumption tools.

Although there are few studies in this direction (for example, a static analysis technique for estimating the energy consumption of embedded programs33), these tools often combine static analysis with dynamic analysis techniques (for example, Li et al.26,28), which makes them hardware-dependent, and do not exhibit maturity, nor the breadth of scope necessary for use in real software development. One of the main challenges for deriving static analysis tools for energy consumption is the need for a body of knowledge on how language constructs and design decisions impact energy consumption. Due to the emerging character of the field,48 we believe that new empirical energy consumption studies will be conducted in the following years, which in turn will help researchers to create such static analysis tools.

Software maintenance. We organize our discussion of software maintenance in terms of refactoring, reengineering, and visualization.

Refactoring. Refactoring tools can take advantage of cutting-edge research and incorporate such knowledge into refactoring engines. However, as a researcher respondent said, “There is a lot of work showing how different programming styles, techniques, structures influence the consumption, but there is still no real cataloging … based on these concrete software practices.” Although researchers have been speculating on this subject during the last years,14 to the best of our knowledge, there is only a handful of studies that deals with the problem of introducing novel refactoring tools for improving the energy efficiency of a software system.5,12 In one of these studies, the authors present a set of energy efficiency guidelines that are specifically tailored for Android apps, such as location updates and resource leaks. When applied, the authors observed improvements of up to 29% of the overall energy consumption.

This lack of contributions is not related to a lack of opportunities. As mentioned, there are several opportunities for application software developers to save energy by refactoring existing systems.19,48 For example, Pinto et al.47 observed that just updating from Hashtable to Concurrent HashMap in a Java program can yield a 3.5x energy savings. In particular, this transformation yields a 1.4x and a 9.2x energy savings in CPU and DRAM, respectively. As another example, Pathak et al.43 observed that I/O operations consume more energy partly because of the tail energy phenomenon. According to the authors, bundling I/O operations together can mitigate this tail energy leak. These results have a clear implication: Tools to aid developers in quickly refactoring programs can be useful if energy is important.

Reengineering. Compared to refactoring tools, which are more localized, reengineering efforts can be broader in scope and have a systemwide impact on the structure of an application. As mentioned, method reallocation10 and method offloading23 are two common strategies to implement reengineering energy-aware methods. This is corroborated by the work of Othman et al., which found that up to 20% energy savings can be achieved by uploading tasks from mobile devices to fixed servers.41 Using a different strategy, Manotas et al.37 proposed SEEDS, a general decision making framework for optimizing software energy consumption. The SEEDS framework can identify energy-inefficient uses of Java collections, and automate the process of selecting more efficient ones. Similarly, Fernandes et al.13 developed a tool that leverages static and dynamic analysis to recommend the most energy-efficient data structures. Search-based software engineering approaches were used to reengineer a software system in order to minimize energy usage,6 yielding an energy reduction of up to 25%. These approaches mitigate the problem of lack of tools.

Visualization techniques are useful to support the understanding of software systems in order to discover and analyze their anomalies. Li et al.26 proposed a technique that overlays energy consumption information with application’s source code. This technique colors different amount of energy consumed in a given line of code—blue lines describe low energy consumption whereas red lines indicate high-energy consumption. This visualization technique is fine-grained and works at the source code level. On the other hand, the study of Couto et al.11 focuses on a coarser granularity: It identifies the energy consumption per method, and aggregates this energy in terms of classes, packages, and the whole software system. The result is presented in a sunburst diagram that allows developers to easily and quickly identify the most energy-inefficient parts of the code. These studies combine art and technology as a way to represent energy consumption. With a better understanding of the whole program energy behavior, such visualization techniques can be useful to mitigate both lack of knowledge and lack of tools.

Software design and construction. Researchers have been studying different strategies for designing and constructing energy-efficient software.16,25,29,31,43 These studies focus on understanding how a particular programming practice or design implementation might impact on energy consumption. To gain further confidence in the results, these studies often analyze dozens (for example, Kambadur20), or even hundreds (for example, Li et al.25), of software applications, and they mitigate the lack of knowledge by providing high-level guidelines for designing energy-efficient software. We organize our discussions of software design and construction in terms of mobile, network, data structures, and parallel programming techniques.

Mobile development. Linares-Vasquez et al.31 investigated API calls that might cause high-energy consumption. For example, they observed that the method Activity.findViewById, which is commonly used, is one of the most energy-consuming among the Android APIs. Similarly, Malik et al.35 found that the BroadcastReceiver and the Location APIs are the most often discussed among Android energy questions on StackOver flow. Furthermore, since the display is one of the smartphone’s most energy-intensive components,7 Li et al.29 discussed how to improve energy efficiency by favoring darker colors instead of lighter ones for smartphones with OLED displays. Using a search-based multi-objective approach, Linares-Vasquez et al.32 automatically optimized energy consumption and contrast, while using consistent colors with respect to the original color palette. Oliveira Jr. et al.19 analyzed the energy consumption of Android app development approaches, Java, JavaScript, and Java + C++, in both benchmarks and real apps. In both scenarios it was observed that different approaches have different impacts on energy. In particular, combining different approaches can yield more than an order of magnitude energy savings in compute-intensive apps.

Network usage. Li et al.25 analyzed more than 400 real-world Android apps, and found that an HTTP request is the most energy-consuming operation of the network. In a follow-up study, the same authors observed that bulking HTTP requests is a good practice for energy saving.28 Also regarding HTTP usage, Chowdhury et al.9 observed that HTTP/2 is more energy efficient than its predecessor, HTTP/1.1, for networks with higher Round Trip time (RTTs). Since most mobile apps use network,25 we expect more contributions on this direction. Besides of bulking requests, researchers can evaluate the benefits of, for instance, reducing transactions, compressing data, and appropriately handling errors to conserve energy.

Data structures. The energy behavior of different data structures, one of the building blocks of computer programming, have been extensively studied in the last few years.16,30,37,47 Hasan et al.16 investigated data structures grouped with three interfaces (List, Set, and Map). Among the findings, they found that the position where an element is inserted in a list can greatly impact energy consumption. Pinto et al.47 studied the same group of interfaces, but focused on thread-safe data structures. They also observed that using a newer version of a thread-safe data structure can yield a 2.19x energy savings when compared to the old associative implementation. Lima et al.30 studied the energy consumption of data structures in concurrent functional programs. Although they found that there is no clear universal winner, in certain circumstances, choosing one data sharing primitive (MVar) over another (TMVar) can yield 60% energy savings.

Parallel programming. Parallel programming techniques have also been the subject of several studies. Pinto et al.46 observed that a high-level, work-stealing parallel framework is more energy-friendly when performing fine-grained CPU intensive computations than a thread-based implementation. Still, Ribic and Liu proposed a set of run-time systems for improving the energy efficiency of fine-grained CPU-intensive computations.49,50 To better leverage the energy savings reported by these studies, we believe they can be integrated with well-known runtime systems, such as the Java Virtual Machine (JVM). If so, the whole chain of programming languages, software systems, and endusers that rely on the JVM can benefit from these findings.

Although these studies provide a comprehensive set of findings with practical and timely implications and can be useful to mitigate the problem of lack of knowledge, they are far from covering the whole spectrum of programming language constructs and libraries.

Software quality and testing. Here we organize our discussions in terms of software testing and software debugging techniques.

Software testing. Although there are several studies aimed at characterizing energy bugs (for example, Pathak et al.44), there are relatively few studies that propose new energy-aware testing techniques.18,21,27 Ding et al.27 presented an energy-efficient testing suite minimization technique that can be used to perform post-deployment testing on embedded systems. Results suggest the approach can promote a reduction of over 95% of the energy consumed by the original test suite. Similarly, Jabbarvand et al.18 present another test suite minimization approach, but focusing on Android apps. The authors reported a reduction of, on average, 84%, while maintaining the effectiveness for revealing bugs. Kan21 proposes a similar approach: To use DVFS to scale frequency down when running the test suites. Although some researchers argued that DVFS techniques can lead to increased energy consumption and performance loss,34 the authors showed that important energy savings can be achieved. Banerjee et al.4 proposed a technique that generates test inputs that are likely to capture energy bugs. This technique focuses on creating tests that use I/O components, which are one of the primary sources of energy consumption in a smartphone.7,43

Followed by these promising initial results, we believe that new testing techniques will be evaluated in terms of energy consumption. At best, energy testing will become a research area. Several possible areas of interest can be envisioned. One of them is what we call “green assertions,” that is, the possibility to define an energy budget where the test case asserts whether the computation satisfies that budget. The test fails if the energy consumed is greater than the suggested budget. For instance, the code snippet double max- Energy = 200; assertTrue(render(), expected, maxEnergy); defines that the render() method should consume, at most, 200 Joules. This technique can be further improved to cover additional hardware characteristics, for instance, asserting whether the computation consumes 100 Joules due to network communication or 50 Joules due to the CPU.

Software debugging. Practitioners commonly use debugging tools to catch bugs in program formulation. However, debugging an energy-inefficient piece of code is more challenging than traditional debugging because such inefficiencies depend on the contextual information about where a program is running, such as the state of the hardware devices. In this regard, Banerjee and colleagues5 propose a framework for debugging energy consumption-related field failures in mobile apps. The authors found that tool support could localize energy bugs in a short amount of time, even for nontrivial Android apps. The authors observed energy savings of up to 29% after patching the energy bug. Pathak et al.43 propose eprof, a fine-grained profiling energy consumption technique for applications running on smartphones. Similar to the work of Banerjee and colleagues,4 Pathak et al. focus on understanding and monitoring system calls that are related to I/O operations. As a results, they found that most of the energy consumed in free apps is related to third-party advertisement modules (which can be responsible for up to 75% of the overall energy consumed by an app). Using a collaborative blackbox approach, Oliner et al40 propose a method for diagnosing anomalies, estimating their severity, and identifying the device features that lead to the anomaly. Using feedback received by the proposed tool, end users improved their battery life by 21%.

We believe that debugging tools will have the capability of inspecting the energy consumption of fine-grained program constructs during runtime, as well as their common ability to identify which value was attributed to a given variable. Debugging tools can go further and highlight the CPU intensive lines of code, or the memory-intensive methods, in a way that developers can refactor them in an energy-savvy manner. Novel energy-related testing and debugging tools can mitigate the lack of tools.

Back to Top

Conclusion

Energy consumption is a ubiquitous problem and the years to come will require developers to be even more aware of it. However, developers currently do not fully understand how to write, maintain, and evolve energy-efficient software systems. In this study we suggest this is primarily due to two problems: the lack of knowledge and the lack of tools. With these problems in mind, this article reviewed most of the recent energy-related contributions in the software engineering community. We discuss how software energy consumption research is evolving to mitigate these two problems and, when appropriate, we highlight key research gaps that need better attention.

ins02.gif Figure. Watch the authors discuss their work in this exclusive Communications video. https://cacm.acm.org/videos/energy-efficiency-a-new-concern-for-application-software-developers

Back to Top

Back to Top

Back to Top

    1. Abran, A., Bourque, P., Dupuis, R., and Moore, J.W., editors. Guide to the Software Engineering Body of Knowledge (SWEBOK), 2001.

    2. Aggarwal, K., Hindle, A., and Stroulia, E. GreenAdvisor: A tool for analyzing the impact of software evolution on energy consumption. In Proceedings of ICSME (Sept. 2015), 311–320.

    3. Aggarwal, K., Zhang, C., Campbell, J.C., Hindle, A., and Stroulia, E. The power of system call traces: Predicting the software energy consumption impact of changes. In Proceedings of CASCON, 2014, 219–233.

    4. Banerjee A., Chong, L.K., Chattopadhyay, S., and Roychoudhury, A.. Detecting energy bugs and hotspots in mobile apps. In Proceedings of ESEC/FSE, 2014, 588–598.

    5. Banerjee, A. and Roychoudhury, A. Automated refactoring of android apps to enhance energy-efficiency. In Proceedings of MOBILESoft, 2016, 139–150.

    6. Bruce, B.R., Petke, J., and Harman, M. Reducing energy consumption using genetic improvement. In Proceedings of GECCO, 2015, 1327–1334.

    7. Carroll, A. and Heiser, G. An analysis of power consumption in a smartphone. In Proceedings of USENIX, 2010.

    8. Chowdhury, S.A. and Hindle, A. Greenoracle: Estimating software energy consumption with energy measurement corpora. In Proceedings of MSR, 2016, 49–60.

    9. Chowdhury, S.A., Sapra, V, and Hindle, A. Client-side energy efficiency of HTTP/2 for web and mobile app developers. In Proceedings of SANER, 2016, 529–540.

    10. Corral, L., Georgiev, A.B., Sillitti, A., and Succi, G. Method reallocation to reduce energy consumption: anan implementation in android OS. In Proceedings of SAC, 2014, 1213–1218.

    11. Couto, M., Carcao, T., Cunha, J., Fernandes, J.P., and Saraiva, J. Detecting anomalous energy consumption in android applications. In Proceedings of SBLP, 2014, 77–91.

    12. Cruz, L., Abreu, R., and Rouvignac, J.-N. Leafactor: Improving energy efficiency of android apps via automatic refactoring. In Proceedings of MobileSoft, (Buenos Aires, Argentina, 2017).

    13. Fernandes, B., Pinto, G., and Castor, F. Assisting non-specialist developers to build energy-efficient software. In Proceedings of the Companion to the 39th International Conference on Software Engineering, (Buenos Aires, Argentina, 2017).

    14. Fraser, S., Murphy-Hill, E., Wild, W., Yoder, J., and Zhu, B.Q. Going green with refactoring: Sustaining the 'worldwide virtual machine.' In Proceedings of OOPSLA, 2011, 171–174.

    15. Gelenbe, E. and Caseau, Y. The impact of information technology on energy consumption and carbon emissions. Ubiquity, (June 2015) 1–15.

    16. Hasan, S., King, Z., Hafiz, M., Sayagh, M., Adams, B., and Hindle, A. Energy profiles of Java collections classes. In Proceedings of ICSE, 2016, 225–236.

    17. Hindle, A., Wilson, A., Rasmussen, K., Barlow, E.J., Campbell, J.C., and Romansky, S. Greenminer: A hardware based mining software repositories software energy consumption framework. In Proceedings of MSR, 2014, 12–21.

    18. Jabbarvand, R., Sadeghi, A., Bagheri, H., and Malek, S. Energy-aware test-suite minimization for android apps. In Proceedings of ISSTA, 2016, 425–436.

    19. Oliveira Jr., W.O.R., and Castor, F. A study on the energy consumption of android app development approaches. In Proceedings of MSR (Buenos Aires, Argentina, 2017).

    20. Kambadur, M. and Kim, M.A. An experimental survey of energy management across the stack. In Proceedings of OOPSLA, 2014, 329–344.

    21. Kan, E.Y.Y. Energy efficiency in testing and regression testing—A comparison of DVFS techniques. In Proceedings of QSIC'13, 2013, 280–283.

    22. Khalid, H., Shihab, E., Nagappan, M., and Hassan, A.E. What do mobile app users complain about? IEEE Software 32, 3 (2015), 70–77.

    23. Kwon, Y. and Tilevich, E. Reducing the energy consumption of mobile applications behind the scenes. In Proceedings of ICSM, 2013, 170–179.

    24. Li, D. and Halfond, W.G.J. An investigation into energy-saving programming practices for android smartphone app development. In Proceedings of GREENS 2014, 46–53.

    25. Li, D., Hao, S., Gui, J., and Halfond, W.G.J. An empirical study of the energy consumption of Android applications. In Proceedings of ICSME, 2014, 121–130.

    26. Li, D., Hao, S., Halfond, W.G.J., and Govindan, R. Calculating source line level energy information for android applications. In Proceedings of ISSTA, 2013, 78–89.

    27. Li, D., Jin, Y., Sahin, C., Clause, J., and Halfond, W.G.J. Integrated energy-directed test suite optimization. In Proceedings of ISSTA, 2014, 339–350.

    28. Li, D., Lyu, Y., Gui, J., and Halfond, W.G.J. Automated energy optimization of http requests for mobile applications. In Proceedings of ICSE, 2016, 249–260.

    29. Li, D., Tran, A.H., and Halfond, W.G.J. Making web applications more energy efficient for OLED smartphones. In Proceedings of ICSE, 2014, 527–538.

    30. Lima, L.G., Soares-Neto, F., Lieuthier, P., Castor, F., Melfe, G., and Fernandes, J.P. Haskell in green land: Analyzing the energy behavior of a purely functional language. In Proceedings of SANER, 2016, 517–528.

    31. Linares-Vasquez, M., Bavota, G., Bernal-Cardenas, C., Oliveto, R., Di Penta, M., and Poshyvanyk, D. Mining energy-greedy api usage patterns in android apps: An empirical study. In Proceedings of MSR, 2014, 2–11.

    32. Linares-Vasquez, M., Bavota, G., Bernal-Cardenas, C., Oliveto, R., Di Penta, M., and Poshyvanyk, D. Optimizing energy consumption of GUIs in android apps: A multi-objective approach. In Proceedings of ESEC/FSE, 2015, 143–154.

    33. Liqat, U., et.al. Energy consumption analysis of programs based on XMOS isa-level models. In Proceedings of the 23rd International Symposium on Logic-Based Program Synthesis and Transformation, 2013, 72–90.

    34. Liu, K., Pinto, G., and Liu, Y.D. Data-oriented characterization of application-level energy optimization. In Proceedings of FASE, 2015.

    35. Malik, H., Zhao, P., and Godfrey, M.W. Going green: An exploratory analysis of energy-related questions. In Proceedings of MSR, 2015, 418–421.

    36. Manotas, I., et al. An empirical study of practitioners' perspectives on green software engineering. In Proceedings of ICSE, 2016, 237–248.

    37. Manotas, I., Pollock, L., and Clause, J. Seeds: A software engineer's energy-optimization decision support framework. In Proceedings of ICSE, 2014, 503–514.

    38. Moura, I., Pinto, G., Ebert, F., and Castor, F. Mining energy-aware commits. In Proceedings of MSR, (2015), 56–67.

    39. Murphy-Hill, E., Zimmermann, T., and Nagappan, N. Cowboys, ankle sprains, and keepers of quality: How is video game development different from software development? In Proceedings of ICSE, 2014, 1–11.

    40. Oliner, A.J., Iyer, A.P., Stoica, I., Lagerspetz, E., and Tarkoma, S. Carat: Collaborative energy diagnosis for mobile devices. In Proceedings of the 11th ACM Conference on Embedded Networked Sensor Systems, 2013, 10:1–10:14.

    41. Othman, M. and Hailes, S. Power conservation strategy for mobile computers using load sharing. SIGMOBILE Mob. Comput. Commun. Rev. 2, 1 (Jan. 1998), 44–51.

    42. Pang, C., Hindle, A., Adams, B., and Hassan, A.E. What do programmers know about software energy consumption? IEEE Software 33, 3 (2016), 83–89.

    43. Pathak, A., Hu, Y.C., and Zhang, M. Where is the energy spent inside my app? Fine grained energy accounting on smartphones with eprof. In Proceedings of EuroSys, 2012, 29–42.

    44. Pathak, A., Jindal, A., Hu, Y.C., and Midkiff, S.P. What is keeping my phone awake? Characterizing and detecting no-sleep energy bugs in smartphone apps. In Proceedings of MobiSys, 2012, 267–280.

    45. Pinto, G., Castor, F., and Liu, Y.D. Mining questions about software energy consumption. In Proceedings of MSR, 2014, 22–31.

    46. Pinto, G., Castor, F., and Liu, Y.D. Understanding energy behaviors of thread management constructs. In Proceedings of OOPSLA, 2014, 345–360.

    47. Pinto, G., Liu, K., Castor, F., and Liu, Y.D. A comprehensive study on the energy efficiency of Java thread-safe collections. In Proceedings of ICSME, 2016.

    48. Pinto G., Soares-Neto, F., and Castor, F. Refactoring for energy efficiency: A reflection on the state of the art. In Proceedings of GREENS, 2015.

    49. Ribic, H. and Liu, Y.D. Energy-efficient work-stealing language runtimes. In Proceedings of ASPLOS, 2014, 513–528.

    50. Ribic, H. and Liu, Y.D. Aequitas: Coordinated energy management across parallel applications. In Proceedings of the 2016 International Conference on Supercomputing, 2016, 4:1–4:12.

    51. Saborido, R., Arnaoudova, V., Beltrame, G., Khomh, F., and Antoniol, G. On the impact of sampling frequency on software energy measurements. Peer J PrePrints, 2015, 3:e1219.

Join the Discussion (0)

Become a Member or Sign In to Post a Comment

The Latest from CACM

Shape the Future of Computing

ACM encourages its members to take a direct hand in shaping the future of the association. There are more ways than ever to get involved.

Get Involved

Communications of the ACM (CACM) is now a fully Open Access publication.

By opening CACM to the world, we hope to increase engagement among the broader computer science community and encourage non-members to discover the rich resources ACM has to offer.

Learn More