dynarmic/src
Lioncash 8248999c5d constant_propagation_pass: Fold division operations where applicable
We can fold division operations if:

1. The divisor is zero, then we can replace the result with zero (as this is how
ARM platforms expect it).
2. Both values are known, in which case we can just do the operation and
store the result
3. The divisor is 1, in which case just return the other operand.
2020-04-22 20:57:37 +01:00
..
backend/x64 value: Move ImmediateToU64() to be a part of Value's interface 2020-04-22 20:55:50 +01:00
common ir: Add opcodes for performing unsigned reciprocal square root estimates 2020-04-22 20:55:05 +01:00
frontend a64: Add ARMv8.4+ instructions encodings to the encoding table 2020-04-22 20:57:37 +01:00
ir_opt constant_propagation_pass: Fold division operations where applicable 2020-04-22 20:57:37 +01:00
CMakeLists.txt CMakeLists: Add missing cond.h header to file listing 2020-04-22 20:55:05 +01:00