Use control-flow graph to compute JarState for all blocks.

This uses a fixed-point algorithm to make sure that we merge the state
from all control-flow edges to a basic block. This ensures that if
we have a null type on one edge and something more specific on another
edge, we record the specific information.

The only case where this makes a difference is for loads from
byte and boolean arrays which we have to be able to distinguish
in order to generate the right dex instruction.

R=zerny@google.com

Bug: 62438166
Change-Id: Id8665893e0f4509924e8040a1c4e3f9c4e342449
9 files changed
tree: 2c8477fb6059ae7af364858f153843de1e4d975e
  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.