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