Check that <clinit> methods have a single tail RETURN

The code for splicing an initializer into the method relies on this
assumption.

Signed-off-by: Graham <gpe@openrs2.dev>
pull/132/head
Graham 4 years ago
parent 7d9b1c61e8
commit 71413256da
  1. 11
      asm/src/main/java/dev/openrs2/asm/classpath/LibraryRemapper.kt

@ -2,6 +2,7 @@ package dev.openrs2.asm.classpath
import dev.openrs2.asm.ClassVersionUtils
import dev.openrs2.asm.MemberRef
import dev.openrs2.asm.nextReal
import dev.openrs2.asm.remap
import org.objectweb.asm.Opcodes
import org.objectweb.asm.tree.ClassNode
@ -160,7 +161,10 @@ class LibraryRemapper(
}
val clinit = clazz.methods.find { it.name == "<clinit>" } ?: createClinitMethod(clazz)
// TODO(gpe): check the <clinit> method only has a single RETURN and that it is the last instruction
check(hasSingleTailExit(clinit.instructions)) {
"${clazz.name}'s <clinit> method does not have a single RETURN at the end of the InsnList"
}
clinit.maxStack = max(clinit.maxStack, field.initializer.maxStack)
clinit.instructions.insertBefore(clinit.instructions.last, field.initializer.instructions)
}
@ -169,6 +173,11 @@ class LibraryRemapper(
clazz.fields.add(field.node)
}
private fun hasSingleTailExit(instructions: InsnList): Boolean {
val insn = instructions.singleOrNull { it.opcode == Opcodes.RETURN }
return insn != null && insn.nextReal == null
}
private fun spliceMethods() {
for (method in methods) {
val clazz = classes.computeIfAbsent(method.owner, ::createClass)

Loading…
Cancel
Save