refactor: Remove SourceLevelDebugger

Removed:
- SourceLevelDebugger (with tests)
- DebuggerLibrary
- DebuggerLibraryRestore
- debuggerSupported field from hwInfo.capabilityTable
- HasSourceLevelDebuggerSupport matcher
- ExperimentalEnableSourceLevelDebugger debug var
- EnableMockSourceLevelDebugger debug var
- DebuggerOptDisable debug var
- lib_names.h.in file
- third_party/source_level_debugger/igfx_debug_interchange_types.h

Related-To: NEO-7213
Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
This commit is contained in:
Fabian Zwolinski
2023-08-04 09:19:46 +00:00
committed by Compute-Runtime-Automation
parent 7330974116
commit 6fca8ee195
171 changed files with 203 additions and 4933 deletions

View File

@@ -106,10 +106,10 @@ size_t SipKernel::getStateSaveAreaSize(Device *device) const {
}
SipKernelType SipKernel::getSipKernelType(Device &device) {
if (device.getDebugger() != nullptr && !device.getDebugger()->isLegacy()) {
if (device.getDebugger() != nullptr) {
return SipKernelType::DbgBindless;
}
bool debuggingEnabled = device.getDebugger() != nullptr || device.isDebuggerActive();
bool debuggingEnabled = device.getDebugger() != nullptr;
return getSipKernelType(device, debuggingEnabled);
}