| 328 | } |
| 329 | |
| 330 | void HandleImageMap(uint64_t Address) { |
| 331 | fextl::string ModuleName = FEX::Windows::GetSectionFilePath(Address); |
| 332 | LogMan::Msg::DFmt("Load module {}: {:X}", ModuleName, Address); |
| 333 | FEX_CONFIG_OPT(VolatileMetadata, VOLATILEMETADATA); |
| 334 | if (VolatileMetadata) { |
| 335 | LoadImageVolatileMetadata(ModuleName, Address); |
| 336 | } |
| 337 | InvalidationTracker->HandleImageMap(ModuleName, Address); |
| 338 | } |
| 339 | } // namespace |
| 340 | |
| 341 | namespace Exception { |
no test coverage detected