Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
openrs2/asm/src/main/java/dev/openrs2/asm/InsnListUtils.kt

41 lines
1.1 KiB

package dev.openrs2.asm
import org.objectweb.asm.tree.AbstractInsnNode
import org.objectweb.asm.tree.InsnList
fun getSimpleExpression(last: AbstractInsnNode): List<AbstractInsnNode>? {
val expr = mutableListOf<AbstractInsnNode>()
var height = 0
var insn: AbstractInsnNode? = last
do {
val (pops, pushes) = insn!!.stackMetadata()
if (insn !== last) {
expr.add(insn)
height -= pushes
}
height += pops
if (height == 0) {
return expr.asReversed()
}
insn = insn.previous
} while (insn != null && insn.type != AbstractInsnNode.LABEL && insn.pure)
return null
}
fun InsnList.replaceSimpleExpression(last: AbstractInsnNode, replacement: AbstractInsnNode): Boolean {
val expr = getSimpleExpression(last) ?: return false
expr.forEach(this::remove)
this[last] = replacement
return true
}
fun InsnList.deleteSimpleExpression(last: AbstractInsnNode): Boolean {
val expr = getSimpleExpression(last) ?: return false
expr.forEach(this::remove)
remove(last)
return true
}