| 2870 | |
| 2871 | |
| 2872 | ExprId LowLevelILFunction::SetRegisterSplitSSA( |
| 2873 | size_t size, const SSARegister& high, const SSARegister& low, ExprId val, const ILSourceLocation& loc) |
| 2874 | { |
| 2875 | return AddExprWithLocation(LLIL_SET_REG_SPLIT_SSA, loc, size, 0, |
| 2876 | AddExprWithLocation(LLIL_REG_SPLIT_DEST_SSA, loc, size, 0, high.reg, high.version), |
| 2877 | AddExprWithLocation(LLIL_REG_SPLIT_DEST_SSA, loc, size, 0, low.reg, low.version), val); |
| 2878 | } |
| 2879 | |
| 2880 | |
| 2881 | ExprId LowLevelILFunction::SetRegisterStackTopRelative( |