| Program execution |
|---|
| General concepts |
| Types of code |
| Compilation strategies |
| Notable runtimes |
|
| Notable compilers & toolchains |
|
Android Runtime (ART) is an applicationruntime environment used by theAndroidoperating system. ReplacingDalvik, theprocess virtual machine originally used by Android, ART performs thetranslation of some of the application'sbytecode intonative instructions that are later executed by the device's runtime environment.[2]

Android 2.2 "Froyo" broughttrace-based just-in-time (JIT) compilation into Dalvik, optimizing the execution of applications by continuallyprofiling applications each time they run and dynamicallycompiling frequently executed short segments of their bytecode into nativemachine code. While Dalvikinterprets the rest of an application's bytecode, native execution of those short bytecode segments, called "traces", provides significant performance improvements.[3][4]
Unlike Dalvik, ART introduces the use ofahead-of-time (AOT) compilation by compiling the most performance-critical parts of applications (previously, the entire app) into native machine code upon their installation. This way, ART improves the overall execution efficiency and reduces power consumption, which results in improved battery autonomy onmobile devices. At the same time, ART brings faster execution of applications, improvedmemory allocation andgarbage collection (GC) mechanisms, new applicationsdebugging features, and more accurate high-level profiling of applications.[2][5][6]
To maintainbackward compatibility, ART uses the same input bytecode as Dalvik, supplied through standard.dex files as part ofAPK files, while the.odex files are replaced withExecutable and Linkable Format (ELF) executables. Once an application is compiled by using ART's on-devicedex2oat utility, it is run from the compiled ELF executable; as a result, ART eliminates various application execution overheads associated with Dalvik's interpretation and trace-based JIT compilation.
A disadvantage of ART is that additional time is required for compilation when an application is installed, and applications take up slightly moresecondary storage (usuallyflash memory) to store the compiled code.[2][5][6] Long AOT compilation became especially problematic when monthly security updates became the norm, locking users out of the OS for a long time after each update.
To improve on these, a hybrid approach was introduced in Android 7.0 (Nougat) which originally relies on JIT compilation, but later, when the device is idle and charging, compiles the most frequently used code as well as that on the UI thread to native code.[7]
Android 4.4 "KitKat" introduced atechnology preview of ART as an alternative runtime environment to Dalvik, which remained the default virtual machine.[8][9] In the subsequent major Android release,Android 5.0 "Lollipop", Dalvik was entirely replaced by ART.
Android 7.0 "Nougat" turned the ART from a pure AOT to a hybrid JIT/AOT solution, while switching itsJava Runtime Environment from the discontinuedApache Harmony toOpenJDK, introducing a JIT compiler with code profiling.[10] The JIT compiler complements ART's AOT compiler, helping to improve runtime performance and save storage space by identifying "hot code" (code which is frequently used, runs on the UI thread or affects startup time), which the AOT compiler compiles to machine code while the device is idle and charging. Less-frequently used code relies on JIT compilation.[11][12]
Android 9 "Pie" reduced the amount of storage used byAPKs by using compressedbytecode files, andprofiler data can be uploaded toGoogle Play servers to be bundled with apps when downloaded by users with a similar device, which shortens download time from Google Play by up to 40%. Google Play cloud profiles allow apps to be optimized on installation, which helps avoid the initial performance issues present on Android 7.0 to 8.1.[13]
In July 2021,[14] the concept of baseline profiles was introduced. Baseline profiles are ART profiles that define methods and classes which should undergo AOT compilation from an app's first launch, and are compatible with Android 7.0 and later. They provide similar functionality to Android 9's Google Play cloud profiles when they are not available and automatically merge with cloud profiles when they are available. Baseline profiles are included with releases of AndroidX libraries andJetpack Compose.[15]
ART was updated with a newgarbage collector (GC) utilizing theLinux userfaultfdsystem call inAndroid 13.[16][17][18] It reduces memory pressure, compiled code size andjank, and prevents the risk of killing apps because of low memory duringgarbage collection.[18] Other changes also improve app startup, reduce jank and improve performance.[18] Because of the Mainline project,Android 12's ART will also be updated.[16]