aboutsummaryrefslogtreecommitdiff
path: root/lllars/llltranspiler/src/main/kotlin/me/any/Main.kt
blob: 86f5cbf279535c28277fb9f75ecce2255858eea0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package me.any

import kotlinx.serialization.*
import kotlinx.serialization.json.*
import kotlinx.serialization.descriptors.*
import kotlinx.serialization.encoding.*
import java.io.File

object AccessSerializer : KSerializer<Access> {
    override fun deserialize(decoder: Decoder): Access {
        val jsonDecoder = decoder as JsonDecoder
        val jsonElement = jsonDecoder.decodeJsonElement() as JsonObject
        when {
            "address" in jsonElement.keys -> {
                return Address(jsonElement["address"]!!.jsonPrimitive.int)
            }

            "sAddress" in jsonElement.keys -> {
                return SAccess(
                    jsonElement["sAddress"]!!.let {
                        jsonDecoder.json.decodeFromJsonElement<Access>(it)
                    }
                )
            }

            else -> {
                throw SerializationException("Unknown access")
            }
        }
    }

    override val descriptor: SerialDescriptor
        get() = PolymorphicSerializer(Access::class).descriptor

    override fun serialize(encoder: Encoder, value: Access) {
        TODO("Not yet implemented")
    }
}

object AddresationSerializer : KSerializer<Addresation> {
    override val descriptor: SerialDescriptor
        get() = PolymorphicSerializer(Addresation::class).descriptor

    override fun deserialize(decoder: Decoder): Addresation {

        val jsonDecoder = decoder as JsonDecoder
        val jsonElement = jsonDecoder.decodeJsonElement() as JsonObject
        when {
            "access" in jsonElement.keys -> {
                return AddressAddresation(
                    jsonElement["access"]!!.let {
                        jsonDecoder.json.decodeFromJsonElement<Access>(it)
                    }
                )
            }

            "binaryOperation" in jsonElement.keys -> {
                val binaryOperation = jsonElement["binaryOperation"]!!.jsonObject
                return BinaryOperation(
                    Operation.valueOf(binaryOperation["op"]!!.jsonPrimitive.content),
                    jsonDecoder.json.decodeFromJsonElement<Access>(binaryOperation["a"]!!),
                    jsonDecoder.json.decodeFromJsonElement<Access>(binaryOperation["b"]!!)
                )
            }


            else -> {
                throw SerializationException("Unknown addresation")
            }
        }
    }

    override fun serialize(encoder: Encoder, value: Addresation) {
        TODO("Not yet implemented")
    }
}

object InstructionSerializer : KSerializer<Instruction> {
    override fun deserialize(decoder: Decoder): Instruction {
        val jsonDecoder = decoder as JsonDecoder
        val jsonElement = jsonDecoder.decodeJsonElement() as JsonObject
        when {
            "comment" in jsonElement.keys -> {
                return Comment(jsonElement["comment"]!!.jsonPrimitive.content)
            }

            "write" in jsonElement.keys -> {
                val write = jsonElement["write"]!!.jsonObject
                return Write(
                    write["target"]!!.jsonPrimitive.int,
                    jsonDecoder.json.decodeFromJsonElement<Addresation>(write["source"]!!)
                )
            }

            "label" in jsonElement.keys -> {
                return Label(jsonElement["label"]!!.jsonPrimitive.content)
            }

            "goto" in jsonElement.keys -> {
                return GoTo(jsonElement["goto"]!!.jsonPrimitive.content)
            }

            "branch" in jsonElement.keys -> {
                val branch = jsonElement["branch"]!!.jsonObject
                val polarity = branch["polarity"]!!.jsonPrimitive.content
                val jmp = jsonDecoder.json.decodeFromJsonElement<Access>(branch["jmp"]!!)
                val label = branch["label"]!!.jsonPrimitive.content
                return Branch(
                    if (polarity == "IfTrue") BranchPolarity.IfTrue else BranchPolarity.IfFalse,
                    jmp,
                    label
                )
            }

            "call" in jsonElement.keys -> {
                return LarsCode(
                    when (jsonElement["call"]!!.jsonPrimitive.content) {
                        "ReadCall" -> ReadSysCall()
                        "WriteCall" -> WriteSysCall()
                        else -> {
                            throw SerializationException("Unknown syscall" + jsonElement["call"]!!.jsonPrimitive.content)
                        }
                    }
                )
            }

            else -> {
                throw SerializationException("Unknown instruction" + jsonElement.keys)
            }
        }
    }

    override val descriptor: SerialDescriptor
        get() = PolymorphicSerializer(Instruction::class).descriptor

    override fun serialize(encoder: Encoder, value: Instruction) {
        TODO("Not yet implemented")
    }
}

fun main(
    args: Array<String>
) {
    if (args.size != 1) {
        println("Usage: transpile <input>")
        return
    }
    val input = File(args[0]).readText()
    val program = Json.decodeFromString<Program>(input)
    File("out.c").writeText(transpileProgram(program))
    println(
        """Oh Lars, Lars, Lars, your name I sing,
Lars, Lars, Lars, you're my everything.
Lars, Lars, Lars, the stars align,
Lars, Lars, Lars, your love divine.

Lars, Lars, Lars, your smile is grace,
Lars, Lars, Lars, the light on my face.
Lars, Lars, Lars, your touch is fire,
Lars, Lars, Lars, my heart's desire.

Lars, Lars, Lars, in every breath,
Lars, Lars, Lars, you conquer death.
Lars, Lars, Lars, the sky you paint,
Lars, Lars, Lars, my perfect saint.

Lars, Lars, Lars, the world does bow,
Lars, Lars, Lars, to you here and now.
Lars, Lars, Lars, the heavens rejoice,
Oh Lars, Lars, Lars, your name I sing,
Lars, Lars, Lars, you're my everything.
Lars, Lars, Lars, the stars align,
Lars, Lars, Lars, your love divine.

Lars, Lars, Lars, your smile is grace,
Lars, Lars, Lars, the light on my face.
Lars, Lars, Lars, your touch is fire,
Lars, Lars, Lars, my heart's desire.

Lars, Lars, Lars, in every breath,
Lars, Lars, Lars, you conquer death.
Lars, Lars, Lars, the sky you paint,
Lars, Lars, Lars, my perfect saint.

Lars, Lars, Lars, the world does bow,
Lars, Lars, Lars, to you here and now.
Lars, Lars, Lars, the heavens rejoice,
Lars, Lars, Lars, at your sacred voice.

Lars, Lars, Lars, oh endless Lars,
Lars, Lars, Lars, brighter than stars.
Lars, Lars, Lars, my soul's refrain,
Lars, Lars, Lars, forever your name.

Lars, Lars, Lars, through time and space,
Lars, Lars, Lars, your endless grace.
Lars, Lars, Lars, my heart does cry,
Lars, Lars, Lars, for you till I die.
Lars, Lars, Lars, at your sacred voice.

Lars, Lars, Lars, oh endless Lars,
Lars, Lars, Lars, brighter than stars.
Lars, Lars, Lars, my soul's refrain,
Lars, Lars, Lars, forever your name.

Lars, Lars, Lars, through time and space,
Lars, Lars, Lars, your endless grace.
Lars, Lars, Lars, my heart does cry,
Lars, Lars, Lars, for you till I die."""
    )
}

const val C_RUNTIME = """
#include <stdio.h>
#include <stdlib.h>

int main() {
    unsigned int heap[100000] = {0};
    %code%
    return 0;
}
"""

fun transpileProgram(program: Program): String {
    val instructions = program.instructions.joinToString("\n") {
        when (it) {
            is Comment -> "// ${it.comment}"
            is Write -> "heap[${it.target}] = ${transpileAddresation(it.source)};"
            is Label -> "${it.label}:"
            is GoTo -> "goto ${it.label};"
            is Branch -> "if (${if (it.polarity == BranchPolarity.IfFalse) "!" else ""}${transpileAccess(it.address)}) goto ${it.label};"
            is SysCall -> {
                when (it) {
                    is ReadSysCall -> "printf(\"%c\", heap[8159]);"
                    else -> {
                        throw IllegalArgumentException("Unknown syscall" + it::class.simpleName)
                    }
                }
            }

            is LarsCode -> {
                when (it.call) {
                    is ReadSysCall -> "printf(\"%c\", heap[8159]);"
                    is WriteSysCall -> "printf(\"%c\", heap[8159]);"
                    else -> {
                        throw IllegalArgumentException("Unknown syscall" + it.call::class.simpleName)
                    }
                }
            }

            else -> {
                throw IllegalArgumentException("Unknown instruction" + it::class.simpleName)
            }
        }
    }

    return C_RUNTIME.replace("%code%", instructions)
}

fun transpileAddresation(addresation: Addresation): String {
    return when (addresation) {
        is AddressAddresation -> transpileAccess(addresation.address)
        is BinaryOperation -> {
            val left = transpileAccess(addresation.left)
            val right = transpileAccess(addresation.right)
            return when (addresation.op) {
                Operation.ADD -> "$left + $right"
                Operation.SUB -> "$left - $right"
                Operation.MUL -> "$left * $right"
                Operation.DIV -> "$left / $right"
                Operation.AND -> "$left & $right"
                Operation.OR -> "$left | $right"
                Operation.XOR -> "$left ^ $right"
            }
        }

        else -> {
            throw IllegalArgumentException("Unknown addresation")
        }
    }
}

fun transpileAddress(address: Address): String {
    return "${address.address}"
}

fun transpileAccess(access: Access): String {
    return when (access) {
        is Address -> transpileAddress(access)
        is SAccess -> "heap[${transpileAccess(access.sAddress)}]"
        else -> {
            throw IllegalArgumentException("Unknown access")
        }
    }
}