commit | 8a669b7de6b29a670bab55ecbc35d75303e3c14c | [log] [tgz] |
---|---|---|
author | Denis Vnukov <vnukov@google.com> | Wed Jun 14 09:56:54 2017 -0700 |
committer | Denis Vnukov <vnukov@google.com> | Wed Jun 14 16:57:44 2017 +0000 |
tree | 6504ffda74f2fccf7f8ff3f326502d115df7881a | |
parent | 3a7cf2dbbd31eca41a428bbf6ce5e8599485f312 [diff] |
Introducing ClassMap to represent a class collection. This CL introduces a new abstraction ClassMap to represent a collection of classes of a particular kind which supports lazy loading and various class sources/providers. Key changes: ** ResourceProvider renamed into ClassFileResourceProvider since DEX resource apparently does not fit very well into ResourceProvider API. ** ClassProvider interface is introduced to unify the way ClassMap gets its classes populated. ** Raw class maps are hidden behind ClassMap abstraction. Three separate class collection types are created to represent program, classpath and library collections. ** Program classes are always considered preloaded, but they are still represented by ProgramClassCollection rather than bare map. ** Some of the classes are still pre-loaded by ApplicationReader and are submitted into collections by using special ClassProvider for preloaded classes. This works for DEX files and resources submitted NOT via resource providers. We might improve this later. BUG= Change-Id: Ied59ce75e13793ff54b6bbcc1a799fc0991c9e34
The R8 repo contains two tools.
D8 is a dexer that converts java byte code to dex code.
R8 is a java program shrinking and minification tool.