Returns an expression that does any post-incrementing on an operand, if it exists */
| 292 | |
| 293 | /* Returns an expression that does any post-incrementing on an operand, if it exists */ |
| 294 | static ExprId GetILOperandPostIndex(LowLevelILFunction& il, InstructionOperand& operand) |
| 295 | { |
| 296 | if (operand.operandClass != MEM_POST_IDX) |
| 297 | return 0; |
| 298 | |
| 299 | return GetILOperandPreOrPostIndex(il, operand); |
| 300 | } |
| 301 | |
| 302 | /* Returns an IL expression that reads (and only reads) from the operand. |
| 303 | It accounts for, but does not generate IL that executes, pre and post indexing. |
no test coverage detected