2020-02-10 15:57:49 +01:00
|
|
|
/*
|
2023-02-01 16:23:01 +00:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2020-02-10 15:57:49 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/debugger/debugger.h"
|
2020-02-10 15:57:49 +01:00
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/built_ins/sip_kernel_type.h"
|
2022-11-14 16:34:34 +00:00
|
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
2023-02-01 16:23:01 +00:00
|
|
|
#include "shared/source/helpers/gfx_core_helper.h"
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/helpers/hw_info.h"
|
2020-07-23 10:56:08 +02:00
|
|
|
#include "shared/source/indirect_heap/indirect_heap.h"
|
2021-04-16 12:52:30 +00:00
|
|
|
|
2020-02-10 15:57:49 +01:00
|
|
|
namespace NEO {
|
2020-07-23 10:56:08 +02:00
|
|
|
void *Debugger::getDebugSurfaceReservedSurfaceState(IndirectHeap &ssh) {
|
|
|
|
|
return ssh.getCpuBase();
|
|
|
|
|
}
|
2020-02-10 15:57:49 +01:00
|
|
|
} // namespace NEO
|