2022-03-06 16:29:30 +00:00
|
|
|
package prog8tests.ast
|
|
|
|
|
2022-03-06 19:35:15 +00:00
|
|
|
import io.kotest.assertions.fail
|
2022-03-06 16:29:30 +00:00
|
|
|
import io.kotest.core.spec.style.FunSpec
|
2022-03-06 19:35:15 +00:00
|
|
|
import io.kotest.matchers.ints.shouldBeGreaterThan
|
2022-03-06 16:29:30 +00:00
|
|
|
import io.kotest.matchers.shouldBe
|
2022-03-13 11:52:12 +00:00
|
|
|
import prog8.code.ast.PtAssignment
|
|
|
|
import prog8.code.ast.PtPipe
|
2022-03-10 21:38:16 +00:00
|
|
|
import prog8.code.ast.PtVariable
|
2022-03-13 11:52:12 +00:00
|
|
|
import prog8.code.core.DataType
|
2022-03-11 19:35:25 +00:00
|
|
|
import prog8.code.target.C64Target
|
2022-03-10 20:28:35 +00:00
|
|
|
import prog8.compiler.IntermediateAstMaker
|
2022-03-06 16:29:30 +00:00
|
|
|
import prog8tests.helpers.compileText
|
|
|
|
|
|
|
|
class TestIntermediateAst: FunSpec({
|
|
|
|
|
|
|
|
test("creation") {
|
|
|
|
val text="""
|
|
|
|
%import textio
|
|
|
|
%import graphics
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
ubyte cc
|
|
|
|
ubyte[] array = [1,2,3]
|
|
|
|
cc = 11 in array
|
|
|
|
cc = cc |> sin8u() |> cos8u()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
2022-03-07 20:44:50 +00:00
|
|
|
val result = compileText(C64Target(), false, text, writeAssembly = false)!!
|
2022-03-13 11:52:12 +00:00
|
|
|
val ast = IntermediateAstMaker(result.program).transform()
|
2022-03-06 16:29:30 +00:00
|
|
|
ast.name shouldBe result.program.name
|
2022-03-12 22:28:17 +00:00
|
|
|
ast.allBlocks().any() shouldBe true
|
2022-03-06 19:35:15 +00:00
|
|
|
val entry = ast.entrypoint() ?: fail("no main.start() found")
|
2022-03-13 11:52:12 +00:00
|
|
|
entry.children.size shouldBe 5
|
2022-03-06 19:35:15 +00:00
|
|
|
entry.name shouldBe "start"
|
2022-03-08 00:37:13 +00:00
|
|
|
entry.scopedName shouldBe listOf("main", "start")
|
2022-03-06 19:35:15 +00:00
|
|
|
val blocks = ast.allBlocks().toList()
|
|
|
|
blocks.size shouldBeGreaterThan 1
|
|
|
|
blocks[0].name shouldBe "main"
|
2022-03-08 00:37:13 +00:00
|
|
|
blocks[0].scopedName shouldBe listOf("main")
|
|
|
|
val ccdecl = entry.children[0] as PtVariable
|
|
|
|
ccdecl.name shouldBe "cc"
|
|
|
|
ccdecl.scopedName shouldBe listOf("main", "start", "cc")
|
2022-03-13 11:52:12 +00:00
|
|
|
ccdecl.type shouldBe DataType.UBYTE
|
|
|
|
val arraydecl = entry.children[2] as PtVariable
|
|
|
|
arraydecl.name shouldBe "array"
|
|
|
|
arraydecl.type shouldBe DataType.ARRAY_UB
|
|
|
|
val pipe = (entry.children[4] as PtAssignment).value as PtPipe
|
|
|
|
pipe.void shouldBe false
|
|
|
|
pipe.type shouldBe DataType.UBYTE
|
2022-03-06 16:29:30 +00:00
|
|
|
ast.print()
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|