| 158 | } |
| 159 | |
| 160 | bool LibraryManager::IsFixedStringRef(uint8_t const * ref, char const * str) const |
| 161 | { |
| 162 | if (ref >= moduleStart_ && ref < moduleStart_ + moduleSize_) { |
| 163 | auto fsx = (FixedString const *)ref; |
| 164 | if (*fsx && strcmp(fsx->Str, str) == 0) { |
| 165 | return true; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | return false; |
| 170 | } |
| 171 | |
| 172 | uint8_t const * AsmCallToAbsoluteAddress(uint8_t const * call) |
| 173 | { |
nothing calls this directly
no outgoing calls
no test coverage detected