| 156 | } |
| 157 | |
| 158 | bool idaapi retdec_place_t::deserialize( |
| 159 | const uchar** pptr, |
| 160 | const uchar* end) |
| 161 | { |
| 162 | if (!place_t__deserialize(this, pptr, end) || *pptr >= end) |
| 163 | { |
| 164 | return false; |
| 165 | } |
| 166 | auto fa = unpack_ea(pptr, end); |
| 167 | _fnc = RetDec::selectiveDecompilation(fa, false); |
| 168 | auto y = unpack_ea(pptr, end); |
| 169 | auto x = unpack_ea(pptr, end); |
| 170 | _yx = YX(y, x); |
| 171 | return true; |
| 172 | } |
| 173 | |
| 174 | int idaapi retdec_place_t::id() const |
| 175 | { |