| 2893 | |
| 2894 | |
| 2895 | ExprId LowLevelILFunction::SetRegisterStackTopRelativeSSA(size_t size, uint32_t regStack, size_t destVersion, |
| 2896 | size_t srcVersion, ExprId entry, const SSARegister& top, ExprId val, const ILSourceLocation& loc) |
| 2897 | { |
| 2898 | return AddExprWithLocation(LLIL_SET_REG_STACK_REL_SSA, loc, size, 0, |
| 2899 | AddExprWithLocation(LLIL_REG_STACK_DEST_SSA, loc, size, 0, regStack, destVersion, srcVersion), entry, |
| 2900 | AddExprWithLocation(LLIL_REG_SSA, loc, 0, 0, top.reg, top.version), val); |
| 2901 | } |
| 2902 | |
| 2903 | |
| 2904 | ExprId LowLevelILFunction::SetRegisterStackAbsoluteSSA(size_t size, uint32_t regStack, size_t destVersion, |