Files
compute-runtime/unit_tests/source_level_debugger/device_tests.cpp
Hoppe, Mateusz 2e46129d53 Source Level Debugger: initialization & notify new device
- add source level debugger to device
- load isDebuggerActive function from library
- rename interface to sourceLevelDebuggerInterface in SLD
- add DebugData to KernelInfo with kernel debug data

Change-Id: I2643ee633f8dc5c97e8bbdc9d4e7977ddcbf440d
2018-05-09 13:42:34 +02:00

100 lines
4.1 KiB
C++

/*
* Copyright (c) 2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "runtime/source_level_debugger/source_level_debugger.h"
#include "unit_tests/fixtures/device_fixture.h"
#include "unit_tests/helpers/debug_manager_state_restore.h"
#include "unit_tests/mocks/mock_builtins.h"
#include "unit_tests/mocks/mock_device.h"
#include "test.h"
using PreambleTest = ::testing::Test;
using namespace OCLRT;
class MockDeviceWithActiveDebugger : public MockDevice {
public:
class MockOsLibrary : public OsLibrary {
public:
void *getProcAddress(const std::string &procName) override {
return nullptr;
}
bool isLoaded() override {
return false;
}
};
MockDeviceWithActiveDebugger(const HardwareInfo &hwInfo, bool isRootDevice = true) : MockDevice(hwInfo, isRootDevice) {
sourceLevelDebugger.reset(new SourceLevelDebugger(new MockOsLibrary));
}
void initializeCaps() override {
MockDevice::initializeCaps();
this->setSourceLevelDebuggerActive(true);
}
};
TEST(DeviceCreation, givenDeviceWithMidThreadPreemptionAndDebuggingActiveWhenDeviceIsCreatedThenCorrectSipKernelIsCreated) {
DebugManagerStateRestore dbgRestorer;
{
BuiltIns::shutDown();
std::unique_ptr<MockBuiltins> mockBuiltins(new MockBuiltins);
EXPECT_EQ(nullptr, mockBuiltins->peekCurrentInstance());
mockBuiltins->overrideGlobalBuiltins();
EXPECT_EQ(mockBuiltins.get(), mockBuiltins->peekCurrentInstance());
EXPECT_FALSE(mockBuiltins->getSipKernelCalled);
DebugManager.flags.ForcePreemptionMode.set((int32_t)PreemptionMode::MidThread);
auto device = std::unique_ptr<MockDeviceWithActiveDebugger>(Device::create<MockDeviceWithActiveDebugger>(nullptr));
EXPECT_TRUE(mockBuiltins->getSipKernelCalled);
EXPECT_LE(SipKernelType::DbgCsr, mockBuiltins->getSipKernelType);
mockBuiltins->restoreGlobalBuiltins();
//make sure to release builtins prior to device as they use device
mockBuiltins.reset();
}
}
TEST(DeviceCreation, givenDeviceWithDisabledPreemptionAndDebuggingActiveWhenDeviceIsCreatedThenCorrectSipKernelIsCreated) {
DebugManagerStateRestore dbgRestorer;
{
BuiltIns::shutDown();
std::unique_ptr<MockBuiltins> mockBuiltins(new MockBuiltins);
EXPECT_EQ(nullptr, mockBuiltins->peekCurrentInstance());
mockBuiltins->overrideGlobalBuiltins();
EXPECT_EQ(mockBuiltins.get(), mockBuiltins->peekCurrentInstance());
EXPECT_FALSE(mockBuiltins->getSipKernelCalled);
DebugManager.flags.ForcePreemptionMode.set((int32_t)PreemptionMode::Disabled);
auto device = std::unique_ptr<MockDeviceWithActiveDebugger>(Device::create<MockDeviceWithActiveDebugger>(nullptr));
EXPECT_TRUE(mockBuiltins->getSipKernelCalled);
EXPECT_LE(SipKernelType::DbgCsr, mockBuiltins->getSipKernelType);
mockBuiltins->restoreGlobalBuiltins();
//make sure to release builtins prior to device as they use device
mockBuiltins.reset();
}
}