IR: Add IR instruction NZCVFromPackedFlags

This instruction expects NZCV to be in the high bits.
i.e.: The positions they were in PSTATE.
This commit is contained in:
MerryMage 2018-02-03 13:34:40 +00:00
parent 0bb4474fb9
commit 8931ee346b
4 changed files with 30 additions and 0 deletions

View file

@ -107,6 +107,10 @@ U32U64 IREmitter::ConditionalSelect(Cond cond, const U32U64& a, const U32U64& b)
}
}
NZCV IREmitter::NZCVFromPackedFlags(const U32& a) {
return Inst<NZCV>(Opcode::NZCVFromPackedFlags, a);
}
NZCV IREmitter::NZCVFrom(const Value& value) {
return Inst<NZCV>(Opcode::GetNZCVFromOp, value);
}