2019-05-16 09:52:28 +02:00
|
|
|
/*
|
2020-02-22 09:28:27 +01:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-05-16 09:52:28 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-10-16 12:10:52 +02:00
|
|
|
#include "shared/source/aub/aub_helper_base.inl"
|
2019-05-16 09:52:28 +02:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
|
int AubHelperHw<GfxFamily>::getDataHintForPml4Entry() const {
|
|
|
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
|
int AubHelperHw<GfxFamily>::getDataHintForPdpEntry() const {
|
|
|
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
|
int AubHelperHw<GfxFamily>::getDataHintForPdEntry() const {
|
|
|
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
|
int AubHelperHw<GfxFamily>::getDataHintForPtEntry() const {
|
|
|
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|