summaryrefslogtreecommitdiff
path: root/test/MultiDex
AgeCommit message (Collapse)Author
2023-11-17Revert^2 "Add support for dex containers (DEX v41)." David Srbecky
This reverts commit a3b8c73d8ae9943c8aaabf49349302b4c05cea71. Reason for revert: Reland Test: ./art/test.py -b --host --optimizing --64 Test: device boots with container dex enabled for framework Test: tests pass with compax dex re-enabled Change-Id: I100a796f5105c351a531a45dcbea8b0245f598a8
2023-11-15Revert "Add support for dex containers (DEX v41)." David Srbecky
This reverts commit 854b363b284592d0bbfdbe31eb487fa64a4b9471. Reason for revert: PlayStore Scanner failures Change-Id: I7807aba1bfe1f662129f90c870c82427ca6d121f
2023-11-13Add support for dex containers (DEX v41). David Srbecky
Allow multiple dex files within single "container" (either a zip entry or a plain on-disk dex file). This allows sharing of string (and other) dex data, since the offsets can point to shared data payload. Bug: 266950186 Test: test.py -b --host Change-Id: I4f5901fd2f26a5a9dba427eb48c0fa5ddb6243d8
2017-07-18Don't encode OatQuickMethodHeader for non-compiled methods. Nicolas Geoffray
Requires changes to the quickening info format stored in vdex. Large app: Before odex size: 5.5MB vdex size: 48MB (49308168 bytes) After: odex size: 1.2MB -78% vdex size: 48MB (49701846 bytes) +1% bug: 62120170 Test: test.py Change-Id: I5ae0b103dc57bdd17aa772f4e43db954d109fd44
2015-03-11Properly compile multidex for tests when using Jack. Richard Uhler
Bug: 19687200 Change-Id: I8c5771ccd474aa06001c3a48cc82550589ac7055
2015-03-09Create OatFileAssistant class for assisting with oat files. Richard Uhler
The oat file assistant is used for determining whether dex2oat or patchoat is needed, for running dex2oat or patchoat as needed to make an oat file up to date, and to load dex files associated with a given dex location. The introduction of the OatFileAssistant class is meant to clean up and consolidate code related to the management of oat files that was duplicated and spread across dalvik_system_DexFile.cc and class_linker.cc. Bug: 11301553 Change-Id: I0c16027b9bae4570c2c50faa9c14f581c0cbafb8