mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
switch_jmp is a conditional jump after all.
This commit is contained in:
parent
cd70d22da2
commit
4e65cc1882
@ -11,13 +11,12 @@ enum class BranchType {
|
||||
None,
|
||||
|
||||
/**
|
||||
* ret
|
||||
* ret.
|
||||
*/
|
||||
Return,
|
||||
|
||||
/**
|
||||
* jmp or switch_jmp. switch_jmp is a non-conditional jump because it always jumps even though
|
||||
* the jump location is dynamic.
|
||||
* jmp.
|
||||
*/
|
||||
Jump,
|
||||
|
||||
@ -200,7 +199,7 @@ private fun createBasicBlocks(cfg: ControlFlowGraphBuilder, segment: Instruction
|
||||
branchLabels = listOf(inst.args[2].value as Int)
|
||||
}
|
||||
OP_SWITCH_JMP.code -> {
|
||||
branchType = BranchType.Jump
|
||||
branchType = BranchType.ConditionalJump
|
||||
branchLabels = inst.args.drop(1).map { it.value as Int }
|
||||
}
|
||||
|
||||
|
@ -411,7 +411,7 @@ private fun parseInstructionsSegment(
|
||||
for (i in instructions.size - 1 downTo 0) {
|
||||
val opcode = instructions[i].opcode.code
|
||||
|
||||
if (opcode == OP_RET.code || opcode == OP_JMP.code || opcode == OP_SWITCH_JMP.code) {
|
||||
if (opcode == OP_RET.code || opcode == OP_JMP.code) {
|
||||
dropThrough = false
|
||||
break
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user