| 187 | } |
| 188 | |
| 189 | void HandleImageMap(uint64_t Address) { |
| 190 | fextl::string ModuleName = FEX::Windows::GetSectionFilePath(Address); |
| 191 | LogMan::Msg::DFmt("Load module {}: {:X}", ModuleName, Address); |
| 192 | FEX_CONFIG_OPT(VolatileMetadata, VOLATILEMETADATA); |
| 193 | if (VolatileMetadata) { |
| 194 | LoadImageVolatileMetadata(ModuleName, Address); |
| 195 | } |
| 196 | InvalidationTracker->HandleImageMap(ModuleName, Address); |
| 197 | } |
| 198 | } // namespace |
| 199 | |
| 200 | namespace Context { |
no test coverage detected