Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Dalvik (software)

From Wikipedia, the free encyclopedia
Virtual machine used by Android for executing Java apps
Dalvik
Original author(s)Dan Bornstein
Repository
Operating systemLinux kernel
PlatformAndroid
SuccessorAndroid Runtime
TypeVirtual machine
LicenseApache License 2.0
Websitesource.android.com/devices/tech/dalvik/index.html

Dalvik is a discontinuedprocess virtual machine (VM) in theAndroid operating system that executes applications written for Android.[1] (Dalvik bytecode format is still used as a distribution format, but no longer at runtime in newer Android versions.) Dalvik was an integral part of the Android software stack in the (now unsupported)Android versions4.4 "KitKat" and earlier, which were commonly used on mobile devices such asmobile phones andtablet computers, and more in some devices such assmart TVs andwearables. Dalvik isopen-source software, originally written by Dan Bornstein, who named it after the fishing village ofDalvík inEyjafjörður,Iceland.[2][3]

Programs for Android are commonly written inJava and compiled tobytecode for theJava Virtual Machine, which is then translated to Dalvik bytecode and stored in.dex (Dalvik EXecutable) and.odex (Optimized Dalvik EXecutable) files; related termsodex andde-odex are associated with respective bytecode conversions. The compact Dalvik Executable format is designed for systems that are constrained in terms ofmemory andprocessor speed.

The successor of Dalvik isAndroid Runtime (ART), which uses the same bytecode and .dex files (but not .odex files), with the succession aiming at performance improvements. The new runtime environment was included for the first time in Android 4.4 "KitKat" as atechnology preview,[4][5] and replaced Dalvik entirely in later versions;Android 5.0 "Lollipop" is the first version in which ART is the only included runtime.

History

[edit]

Dalvik, named aftera town in Iceland by its creator Dan Bornstein,[6] was designed for embedded devices with very low RAM and CPU[7] to run Java code, and eventually supportC++ for "heavy-duty apps" andJavaScript for "light-weight widget-like apps" as first-class languages with Java catering to the rest.Android Native Development Kit which eventually paved way for C++ support has existed since Dalvik's first public release. According to Bornstein,Memory-mapping executables and libraries across multiple process and building a faster interpreter with register-based semantics drove much of the early design of the byte-aligned instruction set and the Virtual Machine. Experience working withJ2ME onSidekick atDanger, Bornstein found it was too stripped down and fairly constrained for Android. While improvements such asIsolates as then planned bySun madeprocess isolation infeasible as it broke Android's intra-Device security model. For Dalvik VM, Bornstein particularly took inspiration fromThe Case for Register Machines[6] authored by Brian Davis et al ofTrinity College, Dublin.[8]

Dalvik was open sourced underApache License v2 as rest of theAndroid Open Source Project in 2008.[9]

Architecture

[edit]
A comparison of Dalvik andART architectures

UnlikeJava Virtual Machines, which arestack machines, the Dalvik VM uses aregister-based architecture that requires fewer, typically more complex, virtual machine instructions. Dalvik programs are written in Java using the Androidapplication programming interface (API), compiled to Java bytecode, and converted to Dalvik instructions as necessary.

A tool calleddx is used to convert Java.class files into the .dex format. Multipleclasses are included in a single .dex file. Duplicatestrings and other constants used in multiple class files are included only once in the .dex output to conserve space. Javabytecode is also converted into an alternativeinstruction set used by the Dalvik VM. An uncompressed .dex file is typically a few percent smaller in size than acompressedJava archive (JAR) derived from the same .class files.[10]

The Dalvik executables may be modified again when installed onto a mobile device. In order to gain furtheroptimizations,byte order may be swapped in certain data, simpledata structures andfunctionlibraries may belinkedinline, and empty class objects may be short-circuited, for example.

Being optimized for low memory requirements, Dalvik has some specific characteristics that differentiate it from other standard VMs:[11]

  • The VM was slimmed down to use less space.
  • Theconstant pool has been modified to use only32-bit indices to simplify theinterpreter.
  • StandardJava bytecode executes8-bit stack instructions. Local variables must be copied to or from the operand stack by separate instructions. Dalvik instead uses its own16-bit instruction set that works directly on local variables. The local variable is commonly picked by a4-bit "virtual register" field. This lowers Dalvik's instruction count and raises its interpreter speed.

The design of Dalvik permits a device to run multiple instances of the VM efficiently.[12][13]

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 application's bytecode, native execution of those short bytecode segments, called "traces", provides significant performance improvements.[14][15][16] The potential traceheads are identified in the front-end of the compiler at the parsing stage and after the bytecode conversion. A translation cache is maintained during the runtime. Multiple traces can be chained to reduce synchronisation between the compiler and the interpreter. The trace is optimized by converting it into theSingle Static Assignment form, enabling optimizations like dead store elimination, variable folding, and inlining getters and setters.[12]

Performance

[edit]
A Dalvik-powered phone

The relative merits ofstack machines versusregister-based approaches are a subject of ongoing debate.[17]

Generally, stack-based machines must useinstructions to load data on the stack and manipulate that data, and, thus, require more instructions than register machines to implement the samehigh-level code, but the instructions in a register machine must encode the source and destination registers and, therefore, tend to be larger. This difference is of importance to VM interpreters, for whichopcode dispatch tends to be expensive, along with other factors similarly relevant tojust-in-time compilation.

Tests performed onARMv7 devices in 2010 byOracle (owner of the Java technology) with standard non-graphical Java benchmarks showed theHotSpot VM ofJava SE embedded to be 2–3 times faster than theJIT-based Dalvik VM ofAndroid 2.2 (the initial Android release that included a JIT compiler).[18] In 2012, academic benchmarks confirmed the factor of 3 betweenHotSpot and Dalvik on the same Android board, also noting that Dalvik code was not smaller than Hotspot.[19]

Furthermore, as of March 2014[update], benchmarks performed on an Android device still show up to a factor 100 between native applications and a Dalvik application on the same Android device.[20][original research?][improper synthesis?] Upon running benchmarks using the early interpreter of 2009, bothJava Native Interface (JNI) and native code showed an order of magnitude speedup.[21]

Licensing and patents

[edit]
Main article:Oracle v. Google

Dalvik is published under the terms of theApache License 2.0.[22] Some[who?] say that Dalvik is aclean-room implementation rather than a development on top of a standard Java runtime, which would mean it does not inherit copyright-based license restrictions from either the standard-edition or open-source-edition Java runtimes.[23]Oracle and some reviewers dispute this.[24]

On August 12, 2010,Oracle, which acquiredSun Microsystems in April 2009 and therefore owns the rights to Java, sued Google over claimed infringement of copyrights and patents. Oracle alleged that Google, in developing Android, knowingly, directly and repeatedly infringed Oracle's Java-related intellectual property.[25][26][27] In May 2012, the jury in this case found that Google did not infringe on Oracle's patents, and the trial judge ruled that the structure of the Java APIs used by Google was not copyrightable.[28][29] The parties agreed to zero dollars instatutory damages for 9 lines of copied code.[30][31]

See also

[edit]

References

[edit]
  1. ^"Debugging ART Garbage Collection". Retrieved6 October 2015.The Dalvik runtime is no longer maintained or available [in current versions of Android] and its byte-code format is now used by ART.
  2. ^Journal entry referencing the source of the name
  3. ^"Google Calling: Inside Android, the gPhone SDK".onlamp.com. Archived fromthe original on 2017-01-10. Retrieved2008-02-05.
  4. ^Sean Buckley (2013-11-06)."'ART' experiment in Android KitKat improves battery life and speeds up apps".Engadget. Retrieved2014-07-05.
  5. ^Daniel P. (2013-11-07)."Experimental Google ART runtime in Android KitKat can bring twice faster app executions".phonearena.com. Retrieved2014-07-05.
  6. ^abLive Q&A with Dan Bornstein, Creator of the Dalvik VM.InfoQ. 29 Sep 2015 – via YouTube.
  7. ^Google I/O 2008 - Dalvik Virtual Machine Internals.Google. 4 Jun 2008 – via YouTube.
  8. ^Davis, Brian; Beatty, Andrew; Casey, Kevin; Gregg, David; T Waldron, John (8 Jun 2003)."The case for virtual register machines"(PDF).Proceedings of the 2003 workshop on Interpreters, virtual machines and emulators. pp. 41–49.doi:10.1145/858570.858575.ISBN 1-58113-655-2. Archived fromthe original(PDF) on 1 Feb 2024.{{cite book}}:|journal= ignored (help)
  9. ^Beschizza, Rob (12 Nov 2007)."Android SDK Open For Code".WIRED. Archived fromthe original on 31 January 2024.
  10. ^Bornstein, Dan (2008-05-29)."Presentation of Dalvik VM Internals"(PDF). p. 22. Archived fromthe original(PDF) on 2017-04-16. Retrieved2010-08-16.
  11. ^Rose, John (2008-05-31)."with Android and Dalvik at Google I/O". Archived fromthe original on 2008-06-04. Retrieved2008-06-08.
  12. ^abRamanan, Neeraja (12 Dec 2011)."JIT through the ages"(PDF).
  13. ^Google (2009-04-13)."What is Android?". Archived fromthe original on 2009-06-27. Retrieved2009-04-19.
  14. ^Ben Cheng; Bill Buzbee (May 2010)."A JIT Compiler for Android's Dalvik VM"(PDF).android-app-developer.co.uk. pp. 5–14. Archived fromthe original(PDF) on 2015-11-06. RetrievedMarch 18, 2015.
  15. ^Phil Nickinson (May 26, 2010)."Google Android developer explains more about Dalvik and the JIT in Froyo".androidcentral.com. Archived fromthe original on 2014-07-14. RetrievedJuly 8, 2014.
  16. ^"Nexus One Is Running Android 2.2 Froyo. How Fast Is It Compared To 2.1? Oh, Only About 450% Faster". 2010-05-13. Retrieved2010-05-21.
  17. ^Shi, Yunhe; Gregg, David; Beatty, Andrew; Ertl, M. Anton (2005-06-11)."Virtual Machine Showdown: Stack Versus Registers"(PDF). Retrieved2009-12-22.
  18. ^Vandette, Bob (2010-11-22)."Java SE Embedded Performance Versus Android 2.2".Oracle Corporation. Archived fromthe original on 2011-06-28. Retrieved2011-09-04.The results show that although Androids new JIT is an improvement over its interpreter only implementation, Android is still lagging behind the performance of our Hotspot enabled Java SE Embedded. As you can see from the above results, Java SE Embedded can execute Java bytecodes from 2 to 3 times faster than Android 2.2.
  19. ^Hyeong-Seok Oh; Beom-Jun Kim; Hyung-Kyu Choi; Soo-Mook Moon (2012).Proceedings of the 10th International Workshop on Java Technologies for Real-time and Embedded Systems - JTRES '12.Association for Computing Machinery. p. 115.doi:10.1145/2388936.2388956.ISBN 9781450316880.S2CID 36316611.In the JITC mode, however, Dakvik is slower than HotSpot by more than 2.9 times and its generated code size is not smaller than HotSpot's due to its worse code quality and trace-chaining code.
  20. ^"Top AndEBench Scores". www.eembc.org. Retrieved2014-03-23.
  21. ^Batyuk, Leonid; Schmidt, Aubrey-Derrick; Schmidt, Hans-Gunther; Camtepe, Ahmet; Albayrak, Sahin (2009-04-29). "Developing and Benchmarking Native Linux Applications on Android".MobileWireless Middleware, Operating Systems, and Applications. Lecture Notes of the Institute for Computer Sciences, Social Informatics and Telecommunications Engineering. Vol. 7. pp. 381–392.Bibcode:2009mmos.book..381B.doi:10.1007/978-3-642-01802-2_28.ISBN 978-3-642-01801-5.S2CID 12131309.The results show that native C applications can be up to 30 times as fast as an identical algorithm running in Dalvik VM. Java applications can become a speed-up of up to 10 times if utilizing JNI.
  22. ^"Downloading the Source Tree - Android Open Source". Android.git.kernel.org. Archived fromthe original on 2009-04-17. Retrieved2012-06-07.
  23. ^Garling, Caleb."Google and Oracle 'Experts' Clash over Android's Java Mimic".Wired.
  24. ^Ed Bott (September 8, 2011)."The real history of Java and Android, as told by Google".ZDNet. Retrieved2011-11-27.The definition of a "clean room" implementation is that the engineers writing the code have no direct exposure to the original, copyrighted material, including code, specifications, and other documentation. That's a problem for Google, as I noted in yesterday's post, because there is substantial evidence that the engineers working on the project had direct access to the copyrighted material.
  25. ^"Oracle Sues Google Over Java in Android Devices". digitaltrends.com. 2010-08-13. Retrieved2011-08-08.
  26. ^James Niccolai (2010-08-12)."Oracle sues Google over Java use in Android".Computerworld. Retrieved2010-08-13.
  27. ^Mark Hachman (2010-08-13)."Oracle Sues Google Over Android Java Use".PC Magazine.Ziff Davis.
  28. ^Josh Lowensohn (May 23, 2012)."Jury clears Google of infringing on Oracle's patents".ZDNet. Retrieved2012-05-25.
  29. ^Joe Mullin (May 31, 2012)."Google wins crucial API ruling, Oracle's case decimated".Ars Technica. Retrieved2012-06-01.
  30. ^Niccolai, James (June 20, 2012)."Oracle agrees to 'zero' damages in Google lawsuit, eyes appeal". Archived fromthe original on 2023-04-01. Retrieved2012-06-23.
  31. ^Adam Outler (May 16, 2012)."Update on the Oracle Versus Google Trial". Archived fromthe original on 2013-05-16. Retrieved2013-01-18.A major portion of the Oracle's claims are based on 9 lines of code contained within Java.Util.Arrays.rangeCheck(). Here is the code in question:...

External links

[edit]
Software
development
Development tools
Official
Other
Integrated development
environments
(IDE)
Languages,databases
Extended reality (XR)
Events,communities
Releases
Derivatives
Devices
Pixel
Nexus
Play edition
Custom
distributions
Booting and
recovery
APIs
AlternativeUIs
Rooting
Lists
Related topics
Hardware
(hypervisors)
Native
Hosted
Specialized
Independent
Tools
Operating
system
OS containers
Application containers
Virtual kernel architectures
Related kernel features
Orchestration
Desktop
Application
Network
See also
Retrieved from "https://en.wikipedia.org/w/index.php?title=Dalvik_(software)&oldid=1274084388"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp