2021-06-01 19:21:33 +00:00
|
|
|
package prog8tests
|
|
|
|
|
2021-11-07 23:16:58 +00:00
|
|
|
import io.kotest.core.spec.style.FunSpec
|
|
|
|
import io.kotest.matchers.shouldBe
|
2021-06-01 19:21:33 +00:00
|
|
|
import prog8.ast.Module
|
|
|
|
import prog8.ast.Program
|
|
|
|
import prog8.ast.base.DataType
|
|
|
|
import prog8.ast.base.Position
|
|
|
|
import prog8.ast.base.VarDeclType
|
2021-10-10 22:22:04 +00:00
|
|
|
import prog8.ast.expressions.ArrayIndexedExpression
|
|
|
|
import prog8.ast.expressions.IdentifierReference
|
|
|
|
import prog8.ast.expressions.NumericLiteralValue
|
|
|
|
import prog8.ast.expressions.PrefixExpression
|
2021-06-01 19:21:33 +00:00
|
|
|
import prog8.ast.statements.*
|
2021-11-20 16:33:02 +00:00
|
|
|
import prog8.compiler.printProgram
|
2021-06-01 19:21:33 +00:00
|
|
|
import prog8.compiler.target.C64Target
|
2021-11-18 21:47:58 +00:00
|
|
|
import prog8.compilerinterface.isIOAddress
|
2021-10-13 16:55:56 +00:00
|
|
|
import prog8.parser.SourceCode
|
2021-10-29 14:20:53 +00:00
|
|
|
import prog8tests.helpers.DummyFunctions
|
|
|
|
import prog8tests.helpers.DummyMemsizer
|
2021-10-29 22:05:55 +00:00
|
|
|
import prog8tests.helpers.DummyStringEncoder
|
2021-06-01 19:21:33 +00:00
|
|
|
|
2021-07-11 17:04:53 +00:00
|
|
|
|
2021-11-07 23:16:58 +00:00
|
|
|
class TestMemory: FunSpec({
|
2021-10-10 22:22:04 +00:00
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
fun wrapWithProgram(statements: List<Statement>): Program {
|
|
|
|
val program = Program("test", DummyFunctions, DummyMemsizer, DummyStringEncoder)
|
|
|
|
val subroutine = Subroutine("test", mutableListOf(), emptyList(), statements.toMutableList(), false, Position.DUMMY)
|
|
|
|
val module = Module(mutableListOf(subroutine), Position.DUMMY, SourceCode.Generated("test"))
|
|
|
|
program.addModule(module)
|
|
|
|
return program
|
|
|
|
}
|
2021-06-01 19:21:33 +00:00
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("assignment target not in mapped IO space C64") {
|
|
|
|
|
|
|
|
var memexpr = NumericLiteralValue.optimalInteger(0x0002, Position.DUMMY)
|
2021-06-01 19:21:33 +00:00
|
|
|
var target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
var assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0x1000, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0x9fff, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0xa000, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0xc000, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0xcfff, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0xeeee, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0xffff, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("assign target in mapped IO space C64") {
|
2021-06-01 19:21:33 +00:00
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
var memexpr = NumericLiteralValue.optimalInteger(0x0000, Position.DUMMY)
|
2021-06-01 19:21:33 +00:00
|
|
|
var target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
var assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-06-01 19:21:33 +00:00
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0x0001, Position.DUMMY)
|
2021-06-01 19:21:33 +00:00
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-06-01 19:21:33 +00:00
|
|
|
|
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0xd000, Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-06-01 19:21:33 +00:00
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
memexpr = NumericLiteralValue.optimalInteger(0xdfff, Position.DUMMY)
|
2021-06-01 19:21:33 +00:00
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
fun createTestProgramForMemoryRefViaVar(address: Int, vartype: VarDeclType): AssignTarget {
|
2021-06-01 19:21:33 +00:00
|
|
|
val decl = VarDecl(vartype, DataType.BYTE, ZeropageWish.DONTCARE, null, "address", NumericLiteralValue.optimalInteger(address, Position.DUMMY), false, false, false, Position.DUMMY)
|
|
|
|
val memexpr = IdentifierReference(listOf("address"), Position.DUMMY)
|
|
|
|
val target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
|
|
|
val assignment = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
2021-11-18 21:47:58 +00:00
|
|
|
wrapWithProgram(listOf(decl, assignment))
|
2021-06-01 19:21:33 +00:00
|
|
|
return target
|
|
|
|
}
|
2021-11-18 21:47:58 +00:00
|
|
|
|
|
|
|
test("identifier mapped to IO memory on C64") {
|
|
|
|
var target = createTestProgramForMemoryRefViaVar(0x1000, VarDeclType.VAR)
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
target = createTestProgramForMemoryRefViaVar(0xd020, VarDeclType.VAR)
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
target = createTestProgramForMemoryRefViaVar(0x1000, VarDeclType.CONST)
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
target = createTestProgramForMemoryRefViaVar(0xd020, VarDeclType.CONST)
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
|
|
|
target = createTestProgramForMemoryRefViaVar(0x1000, VarDeclType.MEMORY)
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
target = createTestProgramForMemoryRefViaVar(0xd020, VarDeclType.MEMORY)
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-11-07 23:16:58 +00:00
|
|
|
}
|
2021-06-01 19:21:33 +00:00
|
|
|
|
2021-11-19 21:49:35 +00:00
|
|
|
test("memory expression mapped to IO memory on C64") {
|
2021-11-18 21:47:58 +00:00
|
|
|
var memexpr = PrefixExpression("+", NumericLiteralValue.optimalInteger(0x1000, Position.DUMMY), Position.DUMMY)
|
|
|
|
var target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
|
|
|
var assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
|
|
|
|
|
|
|
memexpr = PrefixExpression("+", NumericLiteralValue.optimalInteger(0xd020, Position.DUMMY), Position.DUMMY)
|
|
|
|
target = AssignTarget(null, null, DirectMemoryWrite(memexpr, Position.DUMMY), Position.DUMMY)
|
|
|
|
assign = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
|
|
|
wrapWithProgram(listOf(assign))
|
2021-11-20 16:33:02 +00:00
|
|
|
printProgram(target.definingModule.program)
|
2021-11-18 21:47:58 +00:00
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("regular variable not in mapped IO ram on C64") {
|
2021-06-01 19:21:33 +00:00
|
|
|
val decl = VarDecl(VarDeclType.VAR, DataType.BYTE, ZeropageWish.DONTCARE, null, "address", null, false, false, false, Position.DUMMY)
|
|
|
|
val target = AssignTarget(IdentifierReference(listOf("address"), Position.DUMMY), null, null, Position.DUMMY)
|
|
|
|
val assignment = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
2021-10-24 18:57:10 +00:00
|
|
|
val subroutine = Subroutine("test", mutableListOf(), emptyList(), emptyList(), emptyList(), emptySet(), null, false, false, mutableListOf(decl, assignment), Position.DUMMY)
|
2021-10-14 21:56:23 +00:00
|
|
|
val module = Module(mutableListOf(subroutine), Position.DUMMY, SourceCode.Generated("test"))
|
2021-11-18 21:54:49 +00:00
|
|
|
Program("test", DummyFunctions, DummyMemsizer, DummyStringEncoder)
|
2021-08-01 20:47:11 +00:00
|
|
|
.addModule(module)
|
2021-11-18 21:47:58 +00:00
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("memory mapped variable not in mapped IO ram on C64") {
|
2021-06-01 19:21:33 +00:00
|
|
|
val address = 0x1000
|
|
|
|
val decl = VarDecl(VarDeclType.MEMORY, DataType.UBYTE, ZeropageWish.DONTCARE, null, "address", NumericLiteralValue.optimalInteger(address, Position.DUMMY), false, false, false, Position.DUMMY)
|
|
|
|
val target = AssignTarget(IdentifierReference(listOf("address"), Position.DUMMY), null, null, Position.DUMMY)
|
|
|
|
val assignment = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
2021-10-24 18:57:10 +00:00
|
|
|
val subroutine = Subroutine("test", mutableListOf(), emptyList(), emptyList(), emptyList(), emptySet(), null, false, false, mutableListOf(decl, assignment), Position.DUMMY)
|
2021-10-14 21:56:23 +00:00
|
|
|
val module = Module(mutableListOf(subroutine), Position.DUMMY, SourceCode.Generated("test"))
|
2021-11-18 21:54:49 +00:00
|
|
|
Program("test", DummyFunctions, DummyMemsizer, DummyStringEncoder)
|
2021-08-01 20:47:11 +00:00
|
|
|
.addModule(module)
|
2021-11-18 21:47:58 +00:00
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("memory mapped variable in mapped IO ram on C64") {
|
2021-06-01 19:21:33 +00:00
|
|
|
val address = 0xd020
|
|
|
|
val decl = VarDecl(VarDeclType.MEMORY, DataType.UBYTE, ZeropageWish.DONTCARE, null, "address", NumericLiteralValue.optimalInteger(address, Position.DUMMY), false, false, false, Position.DUMMY)
|
|
|
|
val target = AssignTarget(IdentifierReference(listOf("address"), Position.DUMMY), null, null, Position.DUMMY)
|
|
|
|
val assignment = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
2021-10-24 18:57:10 +00:00
|
|
|
val subroutine = Subroutine("test", mutableListOf(), emptyList(), emptyList(), emptyList(), emptySet(), null, false, false, mutableListOf(decl, assignment), Position.DUMMY)
|
2021-10-14 21:56:23 +00:00
|
|
|
val module = Module(mutableListOf(subroutine), Position.DUMMY, SourceCode.Generated("test"))
|
2021-11-18 21:54:49 +00:00
|
|
|
Program("test", DummyFunctions, DummyMemsizer, DummyStringEncoder)
|
2021-08-01 20:47:11 +00:00
|
|
|
.addModule(module)
|
2021-11-18 21:47:58 +00:00
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("array not in mapped IO ram") {
|
2021-06-01 19:21:33 +00:00
|
|
|
val decl = VarDecl(VarDeclType.VAR, DataType.ARRAY_UB, ZeropageWish.DONTCARE, null, "address", null, false, false, false, Position.DUMMY)
|
|
|
|
val arrayindexed = ArrayIndexedExpression(IdentifierReference(listOf("address"), Position.DUMMY), ArrayIndex(NumericLiteralValue.optimalInteger(1, Position.DUMMY), Position.DUMMY), Position.DUMMY)
|
|
|
|
val target = AssignTarget(null, arrayindexed, null, Position.DUMMY)
|
|
|
|
val assignment = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
2021-10-24 18:57:10 +00:00
|
|
|
val subroutine = Subroutine("test", mutableListOf(), emptyList(), emptyList(), emptyList(), emptySet(), null, false, false, mutableListOf(decl, assignment), Position.DUMMY)
|
2021-10-14 21:56:23 +00:00
|
|
|
val module = Module(mutableListOf(subroutine), Position.DUMMY, SourceCode.Generated("test"))
|
2021-11-18 21:54:49 +00:00
|
|
|
Program("test", DummyFunctions, DummyMemsizer, DummyStringEncoder)
|
2021-08-01 20:47:11 +00:00
|
|
|
.addModule(module)
|
2021-11-18 21:47:58 +00:00
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("memory mapped array not in mapped IO ram") {
|
2021-06-01 19:21:33 +00:00
|
|
|
val address = 0x1000
|
|
|
|
val decl = VarDecl(VarDeclType.MEMORY, DataType.ARRAY_UB, ZeropageWish.DONTCARE, null, "address", NumericLiteralValue.optimalInteger(address, Position.DUMMY), false, false, false, Position.DUMMY)
|
|
|
|
val arrayindexed = ArrayIndexedExpression(IdentifierReference(listOf("address"), Position.DUMMY), ArrayIndex(NumericLiteralValue.optimalInteger(1, Position.DUMMY), Position.DUMMY), Position.DUMMY)
|
|
|
|
val target = AssignTarget(null, arrayindexed, null, Position.DUMMY)
|
|
|
|
val assignment = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
2021-10-24 18:57:10 +00:00
|
|
|
val subroutine = Subroutine("test", mutableListOf(), emptyList(), emptyList(), emptyList(), emptySet(), null, false, false, mutableListOf(decl, assignment), Position.DUMMY)
|
2021-10-14 21:56:23 +00:00
|
|
|
val module = Module(mutableListOf(subroutine), Position.DUMMY, SourceCode.Generated("test"))
|
2021-11-18 21:54:49 +00:00
|
|
|
Program("test", DummyFunctions, DummyMemsizer, DummyStringEncoder)
|
2021-08-01 20:47:11 +00:00
|
|
|
.addModule(module)
|
2021-11-18 21:47:58 +00:00
|
|
|
target.isIOAddress(C64Target.machine) shouldBe false
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 21:47:58 +00:00
|
|
|
test("memory mapped array in mapped IO ram") {
|
|
|
|
val address = 0xd800
|
2021-06-01 19:21:33 +00:00
|
|
|
val decl = VarDecl(VarDeclType.MEMORY, DataType.ARRAY_UB, ZeropageWish.DONTCARE, null, "address", NumericLiteralValue.optimalInteger(address, Position.DUMMY), false, false, false, Position.DUMMY)
|
|
|
|
val arrayindexed = ArrayIndexedExpression(IdentifierReference(listOf("address"), Position.DUMMY), ArrayIndex(NumericLiteralValue.optimalInteger(1, Position.DUMMY), Position.DUMMY), Position.DUMMY)
|
|
|
|
val target = AssignTarget(null, arrayindexed, null, Position.DUMMY)
|
|
|
|
val assignment = Assignment(target, NumericLiteralValue.optimalInteger(0, Position.DUMMY), Position.DUMMY)
|
2021-10-24 18:57:10 +00:00
|
|
|
val subroutine = Subroutine("test", mutableListOf(), emptyList(), emptyList(), emptyList(), emptySet(), null, false, false, mutableListOf(decl, assignment), Position.DUMMY)
|
2021-10-14 21:56:23 +00:00
|
|
|
val module = Module(mutableListOf(subroutine), Position.DUMMY, SourceCode.Generated("test"))
|
2021-11-18 21:54:49 +00:00
|
|
|
Program("test", DummyFunctions, DummyMemsizer, DummyStringEncoder)
|
2021-08-01 20:47:11 +00:00
|
|
|
.addModule(module)
|
2021-11-18 21:47:58 +00:00
|
|
|
target.isIOAddress(C64Target.machine) shouldBe true
|
2021-06-01 19:21:33 +00:00
|
|
|
}
|
2021-11-07 23:16:58 +00:00
|
|
|
})
|