microinstruction: Implement HasAssociatedPseudoOperation

This commit is contained in:
MerryMage 2017-04-04 13:10:50 +01:00
parent c6c980dfd7
commit 523ae542f4
2 changed files with 6 additions and 0 deletions

View file

@ -251,6 +251,10 @@ void Inst::DecrementRemainingUses() {
use_count--;
}
bool Inst::HasAssociatedPseudoOperation() const {
return carry_inst || overflow_inst || ge_inst;
}
Inst* Inst::GetAssociatedPseudoOperation(Opcode opcode) {
// This is faster than doing a search through the block.
switch (opcode) {