| 87 | } |
| 88 | |
| 89 | void |
| 90 | insert_fix_map(const intptr_t idx, uint32_t *bp, uint32_t ls = 0u, uint32_t ad = 0xffffffffu) { |
| 91 | for (auto &f : this->dat[idx].fmap) { |
| 92 | if (f.bp == NULL) { |
| 93 | f.bp = bp; |
| 94 | f.ls = ls; |
| 95 | f.ad = ad; |
| 96 | return; |
| 97 | } //if |
| 98 | } |
| 99 | // What? GGing.. |
| 100 | } |
| 101 | |
| 102 | void process_fix_map(const intptr_t idx) { |
| 103 | for (auto &f : this->dat[idx].fmap) { |
nothing calls this directly
no outgoing calls
no test coverage detected