2022-09-19 16:09:56 +00:00
|
|
|
import io.kotest.core.spec.style.FunSpec
|
|
|
|
import io.kotest.matchers.shouldBe
|
|
|
|
import prog8.code.core.*
|
|
|
|
import prog8.code.target.VMTarget
|
2022-09-19 17:41:43 +00:00
|
|
|
import prog8.codegen.intermediate.IRPeepholeOptimizer
|
2022-09-19 16:09:56 +00:00
|
|
|
import prog8.intermediate.*
|
|
|
|
|
|
|
|
class TestIRPeepholeOpt: FunSpec({
|
|
|
|
fun makeIRProgram(lines: List<IRCodeLine>): IRProgram {
|
|
|
|
val block = IRBlock("main", null, IRBlock.BlockAlignment.NONE, Position.DUMMY)
|
|
|
|
val sub = IRSubroutine("main.start", emptyList(), null, Position.DUMMY)
|
|
|
|
val chunk = IRCodeChunk(Position.DUMMY)
|
|
|
|
for(line in lines)
|
|
|
|
chunk += line
|
|
|
|
sub += chunk
|
|
|
|
block += sub
|
|
|
|
val target = VMTarget()
|
|
|
|
val options = CompilationOptions(
|
|
|
|
OutputType.RAW,
|
|
|
|
CbmPrgLauncherType.NONE,
|
|
|
|
ZeropageType.DONTUSE,
|
|
|
|
emptyList(),
|
|
|
|
floats = false,
|
|
|
|
noSysInit = true,
|
|
|
|
compTarget = target,
|
|
|
|
loadAddress = target.machine.PROGRAM_LOAD_ADDRESS
|
|
|
|
)
|
2022-09-25 15:14:44 +00:00
|
|
|
val prog = IRProgram("test", IRSymbolTable(null), options, target)
|
2022-09-19 16:09:56 +00:00
|
|
|
prog.addBlock(block)
|
|
|
|
return prog
|
|
|
|
}
|
|
|
|
|
|
|
|
fun IRProgram.lines(): List<IRCodeLine> = this.blocks.flatMap { it.subroutines }.flatMap { it.chunks }.flatMap { it.lines }
|
|
|
|
|
|
|
|
test("remove nops") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.JUMP, labelSymbol = "dummy"),
|
|
|
|
IRInstruction(Opcode.NOP),
|
|
|
|
IRInstruction(Opcode.NOP)
|
2022-09-19 16:09:56 +00:00
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 3
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
irProg.lines().size shouldBe 1
|
|
|
|
}
|
|
|
|
|
|
|
|
test("remove jmp to label below") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.JUMP, labelSymbol = "label"), // removed
|
2022-09-19 16:09:56 +00:00
|
|
|
IRCodeLabel("label"),
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.JUMP, labelSymbol = "label2"), // removed
|
|
|
|
IRInstruction(Opcode.NOP), // removed
|
2022-09-19 16:09:56 +00:00
|
|
|
IRCodeLabel("label2"),
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.JUMP, labelSymbol = "label3"),
|
|
|
|
IRInstruction(Opcode.INC, VmDataType.BYTE, reg1=1),
|
2022-09-19 16:09:56 +00:00
|
|
|
IRCodeLabel("label3")
|
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 8
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
val lines = irProg.lines()
|
|
|
|
lines.size shouldBe 5
|
|
|
|
(lines[0] as IRCodeLabel).name shouldBe "label"
|
|
|
|
(lines[1] as IRCodeLabel).name shouldBe "label2"
|
2022-09-26 17:46:44 +00:00
|
|
|
(lines[2] as IRInstruction).opcode shouldBe Opcode.JUMP
|
|
|
|
(lines[3] as IRInstruction).opcode shouldBe Opcode.INC
|
2022-09-19 16:09:56 +00:00
|
|
|
(lines[4] as IRCodeLabel).name shouldBe "label3"
|
|
|
|
}
|
|
|
|
|
|
|
|
test("remove double sec/clc") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.SEC),
|
|
|
|
IRInstruction(Opcode.SEC),
|
|
|
|
IRInstruction(Opcode.SEC),
|
|
|
|
IRInstruction(Opcode.CLC),
|
|
|
|
IRInstruction(Opcode.CLC),
|
|
|
|
IRInstruction(Opcode.CLC)
|
2022-09-19 16:09:56 +00:00
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 6
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
val lines = irProg.lines()
|
|
|
|
lines.size shouldBe 1
|
2022-09-26 17:46:44 +00:00
|
|
|
(lines[0] as IRInstruction).opcode shouldBe Opcode.CLC
|
2022-09-19 16:09:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test("push followed by pop") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.PUSH, VmDataType.BYTE, reg1=42),
|
|
|
|
IRInstruction(Opcode.POP, VmDataType.BYTE, reg1=42),
|
|
|
|
IRInstruction(Opcode.PUSH, VmDataType.BYTE, reg1=99),
|
|
|
|
IRInstruction(Opcode.POP, VmDataType.BYTE, reg1=222)
|
2022-09-19 16:09:56 +00:00
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 4
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
val lines = irProg.lines()
|
|
|
|
lines.size shouldBe 1
|
2022-09-26 17:46:44 +00:00
|
|
|
(lines[0] as IRInstruction).opcode shouldBe Opcode.LOADR
|
|
|
|
(lines[0] as IRInstruction).reg1 shouldBe 222
|
|
|
|
(lines[0] as IRInstruction).reg2 shouldBe 99
|
2022-09-19 16:09:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test("remove useless div/mul, add/sub") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.DIV, VmDataType.BYTE, reg1=42, value = 1),
|
|
|
|
IRInstruction(Opcode.DIVS, VmDataType.BYTE, reg1=42, value = 1),
|
|
|
|
IRInstruction(Opcode.MUL, VmDataType.BYTE, reg1=42, value = 1),
|
|
|
|
IRInstruction(Opcode.MOD, VmDataType.BYTE, reg1=42, value = 1),
|
|
|
|
IRInstruction(Opcode.DIV, VmDataType.BYTE, reg1=42, value = 2),
|
|
|
|
IRInstruction(Opcode.DIVS, VmDataType.BYTE, reg1=42, value = 2),
|
|
|
|
IRInstruction(Opcode.MUL, VmDataType.BYTE, reg1=42, value = 2),
|
|
|
|
IRInstruction(Opcode.MOD, VmDataType.BYTE, reg1=42, value = 2),
|
|
|
|
IRInstruction(Opcode.ADD, VmDataType.BYTE, reg1=42, value = 0),
|
|
|
|
IRInstruction(Opcode.SUB, VmDataType.BYTE, reg1=42, value = 0)
|
2022-09-19 16:09:56 +00:00
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 10
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
val lines = irProg.lines()
|
|
|
|
lines.size shouldBe 4
|
|
|
|
}
|
|
|
|
|
|
|
|
test("replace add/sub 1 by inc/dec") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.ADD, VmDataType.BYTE, reg1=42, value = 1),
|
|
|
|
IRInstruction(Opcode.SUB, VmDataType.BYTE, reg1=42, value = 1)
|
2022-09-19 16:09:56 +00:00
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 2
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
val lines = irProg.lines()
|
|
|
|
lines.size shouldBe 2
|
2022-09-26 17:46:44 +00:00
|
|
|
(lines[0] as IRInstruction).opcode shouldBe Opcode.INC
|
|
|
|
(lines[1] as IRInstruction).opcode shouldBe Opcode.DEC
|
2022-09-19 16:09:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test("remove useless and/or/xor") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.AND, VmDataType.BYTE, reg1=42, value = 255),
|
|
|
|
IRInstruction(Opcode.AND, VmDataType.WORD, reg1=42, value = 65535),
|
|
|
|
IRInstruction(Opcode.OR, VmDataType.BYTE, reg1=42, value = 0),
|
|
|
|
IRInstruction(Opcode.XOR, VmDataType.BYTE, reg1=42, value = 0),
|
|
|
|
IRInstruction(Opcode.AND, VmDataType.BYTE, reg1=42, value = 200),
|
|
|
|
IRInstruction(Opcode.AND, VmDataType.WORD, reg1=42, value = 60000),
|
|
|
|
IRInstruction(Opcode.OR, VmDataType.BYTE, reg1=42, value = 1),
|
|
|
|
IRInstruction(Opcode.XOR, VmDataType.BYTE, reg1=42, value = 1)
|
2022-09-19 16:09:56 +00:00
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 8
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
val lines = irProg.lines()
|
|
|
|
lines.size shouldBe 4
|
|
|
|
}
|
|
|
|
|
|
|
|
test("replace and/or/xor by constant number") {
|
|
|
|
val irProg = makeIRProgram(listOf(
|
2022-09-26 17:46:44 +00:00
|
|
|
IRInstruction(Opcode.AND, VmDataType.BYTE, reg1=42, value = 0),
|
|
|
|
IRInstruction(Opcode.AND, VmDataType.WORD, reg1=42, value = 0),
|
|
|
|
IRInstruction(Opcode.OR, VmDataType.BYTE, reg1=42, value = 255),
|
|
|
|
IRInstruction(Opcode.OR, VmDataType.WORD, reg1=42, value = 65535)
|
2022-09-19 16:09:56 +00:00
|
|
|
))
|
|
|
|
irProg.lines().size shouldBe 4
|
|
|
|
val opt = IRPeepholeOptimizer(irProg)
|
|
|
|
opt.optimize()
|
|
|
|
val lines = irProg.lines()
|
|
|
|
lines.size shouldBe 4
|
2022-09-26 17:46:44 +00:00
|
|
|
(lines[0] as IRInstruction).opcode shouldBe Opcode.LOAD
|
|
|
|
(lines[1] as IRInstruction).opcode shouldBe Opcode.LOAD
|
|
|
|
(lines[2] as IRInstruction).opcode shouldBe Opcode.LOAD
|
|
|
|
(lines[3] as IRInstruction).opcode shouldBe Opcode.LOAD
|
|
|
|
(lines[0] as IRInstruction).value shouldBe 0
|
|
|
|
(lines[1] as IRInstruction).value shouldBe 0
|
|
|
|
(lines[2] as IRInstruction).value shouldBe 255
|
|
|
|
(lines[3] as IRInstruction).value shouldBe 65535
|
2022-09-19 16:09:56 +00:00
|
|
|
}
|
|
|
|
})
|