| 2810 | } |
| 2811 | |
| 2812 | Ref OpDispatchBuilder::CalculateAFForDecimal(Ref A) { |
| 2813 | auto Nibble = _And(OpSize::i64Bit, A, Constant(0xF)); |
| 2814 | auto Greater = Select01(OpSize::i64Bit, CondClassType {COND_UGT}, Nibble, Constant(9)); |
| 2815 | |
| 2816 | return _Or(OpSize::i64Bit, LoadAF(), Greater); |
| 2817 | } |
| 2818 | |
| 2819 | void OpDispatchBuilder::DAAOp(OpcodeArgs) { |
| 2820 | CalculateDeferredFlags(); |
nothing calls this directly
no outgoing calls
no test coverage detected