2021-12-16 20:27:22 +01:00
|
|
|
package prog8tests.codegeneration
|
|
|
|
|
|
|
|
import io.kotest.core.spec.style.FunSpec
|
2024-02-04 23:41:01 +01:00
|
|
|
import io.kotest.matchers.shouldBe
|
2022-03-07 21:41:12 +01:00
|
|
|
import io.kotest.matchers.shouldNotBe
|
2024-02-04 23:41:01 +01:00
|
|
|
import io.kotest.matchers.string.shouldContain
|
2022-03-11 20:35:25 +01:00
|
|
|
import prog8.code.target.C64Target
|
2024-02-04 23:41:01 +01:00
|
|
|
import prog8tests.helpers.ErrorReporterForTests
|
2021-12-16 20:27:22 +01:00
|
|
|
import prog8tests.helpers.compileText
|
|
|
|
|
|
|
|
|
|
|
|
class TestVariables: FunSpec({
|
|
|
|
|
|
|
|
test("shared variables without refs not removed for inlined asm") {
|
|
|
|
val text = """
|
|
|
|
main {
|
|
|
|
sub start() {
|
2022-01-02 17:07:04 +01:00
|
|
|
ubyte[] @shared arrayvar = [1,2,3,4]
|
|
|
|
str @shared stringvar = "test"
|
2021-12-16 20:27:22 +01:00
|
|
|
ubyte @shared bytevar = 0
|
|
|
|
|
|
|
|
%asm {{
|
2023-12-20 22:20:12 +01:00
|
|
|
lda p8v_arrayvar
|
|
|
|
lda p8v_stringvar
|
|
|
|
lda p8v_bytevar
|
2021-12-16 20:27:22 +01:00
|
|
|
}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
2022-03-07 21:41:12 +01:00
|
|
|
compileText(C64Target(), true, text, writeAssembly = true) shouldNotBe null
|
2021-12-16 20:27:22 +01:00
|
|
|
}
|
2022-01-23 14:23:34 +01:00
|
|
|
|
|
|
|
test("array initialization with array literal") {
|
|
|
|
val text = """
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
ubyte[] @shared arrayvar = [1,2,3,4]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
2022-03-07 21:41:12 +01:00
|
|
|
compileText(C64Target(), true, text, writeAssembly = true) shouldNotBe null
|
2022-01-23 14:23:34 +01:00
|
|
|
}
|
|
|
|
|
2022-06-04 22:25:51 +02:00
|
|
|
test("pipe character in string literal") {
|
|
|
|
val text = """
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
str name = "first|second"
|
|
|
|
str name2 = "first | second"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
compileText(C64Target(), false, text, writeAssembly = true) shouldNotBe null
|
|
|
|
}
|
2022-11-27 16:50:44 +01:00
|
|
|
|
|
|
|
test("negation of unsigned via casts") {
|
|
|
|
val text = """
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
cx16.r0L = -(cx16.r0L as byte) as ubyte
|
|
|
|
cx16.r0 = -(cx16.r0 as word) as uword
|
|
|
|
ubyte ub
|
|
|
|
uword uw
|
|
|
|
ub = -(ub as byte) as ubyte
|
|
|
|
uw = -(uw as word) as uword
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
compileText(C64Target(), false, text, writeAssembly = true) shouldNotBe null
|
|
|
|
}
|
2022-06-04 22:25:51 +02:00
|
|
|
|
2024-02-04 23:41:01 +01:00
|
|
|
test("initialization of boolean array with array") {
|
|
|
|
val text = """
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
bool[3] sieve0 = [true, false, true]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
compileText(C64Target(), false, text, writeAssembly = true) shouldNotBe null
|
|
|
|
}
|
|
|
|
|
|
|
|
test("initialization of boolean array with wrong array type should fail") {
|
|
|
|
val text = """
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
bool[] sieve0 = [true, false, 1]
|
|
|
|
bool[] sieve1 = [true, false, 42]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
val errors = ErrorReporterForTests()
|
|
|
|
compileText(C64Target(), false, text, writeAssembly = true, errors=errors) shouldBe null
|
|
|
|
errors.errors.size shouldBe 2
|
2024-10-12 02:56:36 +02:00
|
|
|
errors.errors[0] shouldContain "value has incompatible type"
|
|
|
|
errors.errors[1] shouldContain "value has incompatible type"
|
2024-02-04 23:41:01 +01:00
|
|
|
}
|
2021-12-16 20:27:22 +01:00
|
|
|
})
|