| 100 | } |
| 101 | |
| 102 | void process_fix_map(const intptr_t idx) { |
| 103 | for (auto &f : this->dat[idx].fmap) { |
| 104 | if (f.bp == NULL) break; |
| 105 | *(f.bp) = *(f.bp) | |
| 106 | (((int32_t(this->dat[idx].ins - reinterpret_cast<int64_t>(f.bp)) >> 2) |
| 107 | << f.ls) & f.ad); |
| 108 | f.bp = NULL; |
| 109 | } |
| 110 | } |
| 111 | } context; |
| 112 | |
| 113 | //------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected