mirror of
https://github.com/irmen/prog8.git
synced 2024-12-12 12:29:11 +00:00
89 lines
2.9 KiB
Kotlin
89 lines
2.9 KiB
Kotlin
package prog8tests.helpers
|
|
|
|
import prog8.ast.IBuiltinFunctions
|
|
import prog8.ast.expressions.Expression
|
|
import prog8.ast.expressions.InferredTypes
|
|
import prog8.ast.expressions.NumericLiteral
|
|
import prog8.code.core.*
|
|
import prog8.code.target.virtual.VirtualMachineDefinition
|
|
|
|
|
|
internal object DummyFunctions : IBuiltinFunctions {
|
|
override val names: Set<String> = emptySet()
|
|
override val purefunctionNames: Set<String> = emptySet()
|
|
override fun constValue(
|
|
funcName: String,
|
|
args: List<Expression>,
|
|
position: Position,
|
|
): NumericLiteral? = null
|
|
|
|
override fun returnType(funcName: String) = InferredTypes.InferredType.unknown()
|
|
}
|
|
|
|
internal object DummyMemsizer : IMemSizer {
|
|
override fun memorySize(dt: DataType, numElements: Int?): Int {
|
|
if(dt.isArray || dt.isSplitWordArray) {
|
|
require(numElements!=null)
|
|
return when(dt.sub?.dt) {
|
|
BaseDataType.BOOL, BaseDataType.BYTE, BaseDataType.UBYTE -> numElements
|
|
BaseDataType.UWORD, BaseDataType.WORD -> numElements*2
|
|
BaseDataType.FLOAT -> numElements*5
|
|
else -> throw IllegalArgumentException("invalid sub type")
|
|
}
|
|
}
|
|
return when {
|
|
dt.isByteOrBool -> 1 * (numElements ?: 1)
|
|
dt.isFloat -> 5 * (numElements ?: 1)
|
|
else -> 2 * (numElements ?: 1)
|
|
}
|
|
}
|
|
|
|
override fun memorySize(dt: SubType): Int {
|
|
return memorySize(DataType.forDt(dt.dt), null)
|
|
}
|
|
}
|
|
|
|
internal object DummyStringEncoder : IStringEncoding {
|
|
override val defaultEncoding: Encoding = Encoding.ISO
|
|
|
|
override fun encodeString(str: String, encoding: Encoding): List<UByte> {
|
|
return emptyList()
|
|
}
|
|
|
|
override fun decodeString(bytes: Iterable<UByte>, encoding: Encoding): String {
|
|
return ""
|
|
}
|
|
}
|
|
|
|
internal object AsciiStringEncoder : IStringEncoding {
|
|
override val defaultEncoding: Encoding = Encoding.ISO
|
|
|
|
override fun encodeString(str: String, encoding: Encoding): List<UByte> = str.map { it.code.toUByte() }
|
|
|
|
override fun decodeString(bytes: Iterable<UByte>, encoding: Encoding): String {
|
|
return bytes.joinToString()
|
|
}
|
|
}
|
|
|
|
internal object DummyCompilationTarget : ICompilationTarget {
|
|
override val name: String = "dummy"
|
|
override val machine: IMachineDefinition = VirtualMachineDefinition() // not really true but I don't want to implement a full dummy machinedef
|
|
override val defaultEncoding = Encoding.PETSCII
|
|
|
|
override fun encodeString(str: String, encoding: Encoding): List<UByte> {
|
|
throw NotImplementedError("dummy")
|
|
}
|
|
|
|
override fun decodeString(bytes: Iterable<UByte>, encoding: Encoding): String {
|
|
throw NotImplementedError("dummy")
|
|
}
|
|
|
|
override fun memorySize(dt: DataType, numElements: Int?): Int {
|
|
throw NotImplementedError("dummy")
|
|
}
|
|
|
|
override fun memorySize(dt: SubType): Int {
|
|
throw NotImplementedError("dummy")
|
|
}
|
|
}
|