| 150 | } |
| 151 | |
| 152 | bool IsDispatcherAddress(uint64_t Address) { |
| 153 | const auto& Config = SignalDelegator->GetConfig(); |
| 154 | return Address >= Config.DispatcherBegin && Address < Config.DispatcherEnd; |
| 155 | } |
| 156 | |
| 157 | bool IsAddressInJit(uint64_t Address) { |
| 158 | if (IsDispatcherAddress(Address)) { |
no outgoing calls
no test coverage detected