... all1
The exception to this is the bytecode instructions for loading constants (LDC, LDC_W, and LDC2_W). We can handle this by introducing new pseudo-opcodes in the compressed files that describe the type of constant being loaded (e.g., LDC_Integer).
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
... think2
In fact, my implementation creates an encoding as it traverses the classfile without completely building an in-memory restructured classfile.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
William Pugh