mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-30 19:24:42 +01:00
By far, one of the most common things to check for is whether or not a value is zero, as it typically allows folding away unnecesary operations (other close contenders that can help with eliding operations are 1 and -1). So instead of requiring a check for an immediate and then actually retrieving the integral value and checking it, we can wrap it within a function to make it more convenient. |
||
|---|---|---|
| .. | ||
| basic_block.cpp | ||
| basic_block.h | ||
| cond.h | ||
| ir_emitter.cpp | ||
| ir_emitter.h | ||
| location_descriptor.cpp | ||
| location_descriptor.h | ||
| microinstruction.cpp | ||
| microinstruction.h | ||
| opcodes.cpp | ||
| opcodes.h | ||
| opcodes.inc | ||
| terminal.h | ||
| type.cpp | ||
| type.h | ||
| value.cpp | ||
| value.h | ||