| 918 | } |
| 919 | |
| 920 | void ContextImpl::ThreadRemoveCodeEntryFromJit(FEXCore::Core::CpuStateFrame* Frame, uint64_t GuestRIP) { |
| 921 | static_cast<ContextImpl*>(Frame->Thread->CTX)->SyscallHandler->InvalidateGuestCodeRange(Frame->Thread, GuestRIP, 1); |
| 922 | } |
| 923 | |
| 924 | std::optional<CustomIRResult> |
| 925 | ContextImpl::AddCustomIREntrypoint(uintptr_t Entrypoint, CustomIREntrypointHandler Handler, void* Creator, void* Data) { |
nothing calls this directly
no test coverage detected