]> source.dussan.org Git - javassist.git/commit
Fix insertAuxInitializer may cause inconsistent stack height problem 469/head
authorshifujun <shifujun@foxmail.com>
Mon, 11 Dec 2023 09:52:52 +0000 (17:52 +0800)
committershifujun <shifujun@foxmail.com>
Mon, 11 Dec 2023 09:53:08 +0000 (17:53 +0800)
commit2cdc0275b7c7d66a942708e22c07fdbd0246203a
treec7e0b6e7dbaf5e37794fd5f86d0c7bc51ac003a3
parentfbd20b1e112b3e74f6d970a8ced839e8ee0bab87
Fix insertAuxInitializer may cause inconsistent stack height problem

Usually, constructor only load super class's constructor's init params into stack.
After this() or super() called, stack will be empty. If so, we insertAuxInitializer
right after this() or super() can reuse max stack size if it enough.

But, there is some weird class out there, their constructors load all in-constructor
init field value into stack before this() or super() call. In this case,
after this() or super() call, stack is not empty, even maybe full.

In summary, insertAuxInitializer should increase MaxStack anyway.
src/main/javassist/CtClassType.java