Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: fix 2 typos

...

It can also be useful to search the entire code base for certain allocations by looking through the disassemble disassembled code. A useful script to decompile all class files is the following:

...

From there, you can grep this file and determine where unexpected allocations may be taking place. For example, to find allocations oa of java.math.BigInteger:

Code Block
bash
bash
grep -a "new" -n disassembled.txt | grep "java/math/BigInteger"

...