| 155 | } |
| 156 | |
| 157 | bool IsAddressInJit(uint64_t Address) { |
| 158 | if (IsDispatcherAddress(Address)) { |
| 159 | return true; |
| 160 | } |
| 161 | |
| 162 | auto Thread = GetTLS().ThreadState(); |
| 163 | return Thread->CTX->IsAddressInCodeBuffer(Thread, Address); |
| 164 | } |
| 165 | |
| 166 | void LoadImageVolatileMetadata(const fextl::string& ModuleName, uint64_t Address) { |
| 167 | const auto Module = reinterpret_cast<HMODULE>(Address); |
no test coverage detected