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
20 files changed
tree: 6504ffda74f2fccf7f8ff3f326502d115df7881a
  1. buildSrc/
  2. scripts/
  3. src/
  4. tests/
  5. third_party/
  6. tools/
  7. .gitignore
  8. AUTHORS
  9. build.gradle
  10. codereview.settings
  11. CONTRIBUTING.md
  12. copyAdditionalJctfCommonFiles.gradle
  13. LICENSE
  14. README.md
README.md

The R8 repo contains two tools.

  1. D8 is a dexer that converts java byte code to dex code.

  2. R8 is a java program shrinking and minification tool.