MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / IsAddressInJit

Function IsAddressInJit

Source/Windows/WOW64/Module.cpp:157–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157bool 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
166void LoadImageVolatileMetadata(const fextl::string& ModuleName, uint64_t Address) {
167 const auto Module = reinterpret_cast<HMODULE>(Address);

Callers 1

Calls 3

GetTLSFunction · 0.85
IsDispatcherAddressFunction · 0.70
IsAddressInCodeBufferMethod · 0.45

Tested by

no test coverage detected