Fixed incorrect number of history entries

This commit is contained in:
2025-02-12 15:00:19 +01:00
parent c10395eddc
commit be384c5136
9 changed files with 39 additions and 20 deletions

34
src/asm/CanSkip.go Normal file
View File

@ -0,0 +1,34 @@
package asm
import "git.akyoto.dev/cli/q/src/cpu"
// CanSkip returns true if the register/register operation can be skipped.
func (a *Assembler) CanSkip(mnemonic Mnemonic, left cpu.Register, right cpu.Register) bool {
if mnemonic == MOVE && left == right {
return true
}
if len(a.Instructions) == 0 {
return false
}
last := a.Instructions[len(a.Instructions)-1]
if mnemonic == MOVE && last.Mnemonic == MOVE {
lastData, isRegReg := last.Data.(*RegisterRegister)
if !isRegReg {
return false
}
if lastData.Destination == left && lastData.Source == right {
return true
}
if lastData.Destination == right && lastData.Source == left {
return true
}
}
return false
}