mirror of
https://github.com/irmen/prog8.git
synced 2025-01-13 10:29:52 +00:00
improved asm generation for conditions that compare byte/word to zero
This commit is contained in:
parent
2388359a99
commit
33d17afc32
@ -94,7 +94,26 @@ internal class ExpressionsAsmGen(private val program: Program, private val asmge
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
DataType.BYTE, DataType.WORD -> {
|
DataType.BYTE, DataType.WORD -> {
|
||||||
TODO("signed BYTE/UWORD comparison $operator")
|
if(dt==DataType.BYTE) {
|
||||||
|
asmgen.assignExpressionToRegister(left, RegisterOrPair.A)
|
||||||
|
if (left is FunctionCall && !left.isSimple)
|
||||||
|
asmgen.out(" cmp #0")
|
||||||
|
} else {
|
||||||
|
asmgen.assignExpressionToRegister(left, RegisterOrPair.AY)
|
||||||
|
asmgen.out(" sty P8ZP_SCRATCH_B1 | ora P8ZP_SCRATCH_B1") // TODO PROBABLY NOT OKAY FOR WORDS
|
||||||
|
}
|
||||||
|
when (operator) {
|
||||||
|
"==" -> asmgen.out(" bne $jumpIfFalseLabel")
|
||||||
|
"!=" -> asmgen.out(" beq $jumpIfFalseLabel")
|
||||||
|
">" -> asmgen.out(" beq $jumpIfFalseLabel | bmi $jumpIfFalseLabel")
|
||||||
|
"<" -> asmgen.out(" bpl $jumpIfFalseLabel")
|
||||||
|
">=" -> asmgen.out(" bmi $jumpIfFalseLabel")
|
||||||
|
"<=" -> asmgen.out("""
|
||||||
|
beq +
|
||||||
|
bpl $jumpIfFalseLabel
|
||||||
|
+ """)
|
||||||
|
else -> throw AssemblyError("invalid comparison operator $operator")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
DataType.FLOAT -> {
|
DataType.FLOAT -> {
|
||||||
asmgen.assignExpressionToRegister(left, RegisterOrPair.FAC1)
|
asmgen.assignExpressionToRegister(left, RegisterOrPair.FAC1)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
main {
|
main {
|
||||||
|
|
||||||
sub start() {
|
sub start() {
|
||||||
ubyte xx
|
byte xx
|
||||||
|
|
||||||
xx=0
|
xx=0
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ main {
|
|||||||
if xx<=0 {
|
if xx<=0 {
|
||||||
txt.print("xx<=0\n")
|
txt.print("xx<=0\n")
|
||||||
} else {
|
} else {
|
||||||
txt.print("error1\n")
|
txt.print("error1qq\n")
|
||||||
}
|
}
|
||||||
if xx>0 {
|
if xx>0 {
|
||||||
txt.print("xx>0 error\n")
|
txt.print("xx>0 error\n")
|
||||||
@ -53,27 +53,27 @@ main {
|
|||||||
}
|
}
|
||||||
txt.nl()
|
txt.nl()
|
||||||
|
|
||||||
; xx=-11
|
xx=-11
|
||||||
; if xx>=0 {
|
if xx>=0 {
|
||||||
; txt.print("xx>=0 error\n")
|
txt.print("xx>=0 error\n")
|
||||||
; } else {
|
} else {
|
||||||
; txt.print("ok3\n")
|
txt.print("ok3\n")
|
||||||
; }
|
}
|
||||||
; if xx<=0 {
|
if xx<=0 {
|
||||||
; txt.print("xx<=0\n")
|
txt.print("xx<=0\n")
|
||||||
; } else {
|
} else {
|
||||||
; txt.print("error3\n")
|
txt.print("error3\n")
|
||||||
; }
|
}
|
||||||
; if xx>0 {
|
if xx>0 {
|
||||||
; txt.print("xx>0 error\n")
|
txt.print("xx>0 error\n")
|
||||||
; } else {
|
} else {
|
||||||
; txt.print("ok3\n")
|
txt.print("ok3\n")
|
||||||
; }
|
}
|
||||||
; if xx<0 {
|
if xx<0 {
|
||||||
; txt.print("xx<0\n")
|
txt.print("xx<0\n")
|
||||||
; } else {
|
} else {
|
||||||
; txt.print("error3\n")
|
txt.print("error3\n")
|
||||||
; }
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user