1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
/*
* Copyright (C) 2020-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/debug_helpers.h"
#include "shared/source/kernel/kernel_arg_metadata.h"
#include "shared/source/utilities/arrayref.h"
#include <type_traits>
namespace NEO {
using CrossThreadDataOffset = uint16_t;
using DynamicStateHeapOffset = uint16_t;
using SurfaceStateHeapOffset = uint16_t;
using InlineDataOffset = uint8_t;
template <typename T>
static constexpr T undefined = std::numeric_limits<T>::max();
template <typename T>
constexpr bool isUndefined(T value) {
return value == undefined<T>;
}
template <typename T>
constexpr bool isDefined(T value) {
return value != undefined<T>;
}
template <typename T>
requires(!std::is_pointer_v<T>)
constexpr bool isUndefinedOffset(T offset) {
return undefined<T> == offset;
}
template <typename T>
constexpr bool isValidOffset(T offset) {
return false == isUndefinedOffset<T>(offset);
}
struct ArgDescPointer final {
SurfaceStateHeapOffset bindful = undefined<SurfaceStateHeapOffset>;
CrossThreadDataOffset stateless = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset bindless = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset bufferOffset = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset bufferSize = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset slmOffset = undefined<CrossThreadDataOffset>;
uint8_t requiredSlmAlignment = 0;
uint8_t pointerSize = 0;
bool accessedUsingStatelessAddressingMode = true;
bool isPureStateful() const {
return false == accessedUsingStatelessAddressingMode;
}
};
struct ArgDescInlineDataPointer {
InlineDataOffset offset = undefined<InlineDataOffset>;
uint8_t pointerSize = undefined<uint8_t>;
};
enum class NEOImageType : uint8_t {
imageTypeUnknown,
imageTypeBuffer,
imageType1D,
imageType1DArray,
imageType2D,
imageType2DArray,
imageType3D,
imageTypeCube,
imageTypeCubeArray,
imageType2DDepth,
imageType2DArrayDepth,
imageType2DMSAA,
imageType2DMSAADepth,
imageType2DArrayMSAA,
imageType2DArrayMSAADepth,
imageType2DMedia,
imageType2DMediaBlock,
};
struct ArgDescImage final {
SurfaceStateHeapOffset bindful = undefined<SurfaceStateHeapOffset>; // stateful with BTI
CrossThreadDataOffset bindless = undefined<CrossThreadDataOffset>;
struct {
CrossThreadDataOffset imgWidth = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset imgHeight = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset imgDepth = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset channelDataType = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset channelOrder = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset arraySize = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset numSamples = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset numMipLevels = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset flatBaseOffset = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset flatWidth = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset flatHeight = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset flatPitch = undefined<CrossThreadDataOffset>;
} metadataPayload;
NEOImageType imageType;
uint8_t size = undefined<uint8_t>;
};
struct ArgDescSampler final {
uint32_t samplerType = 0;
DynamicStateHeapOffset bindful = undefined<DynamicStateHeapOffset>;
CrossThreadDataOffset bindless = undefined<CrossThreadDataOffset>;
struct {
CrossThreadDataOffset samplerSnapWa = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset samplerAddressingMode = undefined<CrossThreadDataOffset>;
CrossThreadDataOffset samplerNormalizedCoords = undefined<CrossThreadDataOffset>;
} metadataPayload;
uint8_t index = undefined<uint8_t>;
uint8_t size = undefined<uint8_t>;
};
struct ArgDescValue final {
struct Element {
CrossThreadDataOffset offset = undefined<CrossThreadDataOffset>;
uint16_t size = 0U;
uint16_t sourceOffset = 0U;
bool isPtr = false;
};
StackVec<Element, 1> elements;
};
struct ArgDescriptor final {
enum ArgType : uint8_t {
argTUnknown,
argTPointer,
argTImage,
argTSampler,
argTValue
};
struct ExtendedTypeInfo {
ExtendedTypeInfo() {
packed = 0U;
}
union {
struct {
bool isMediaBlockImage : 1;
bool isTransformable : 1;
bool needsPatch : 1;
};
uint32_t packed;
};
};
ArgDescriptor(ArgType type);
ArgDescriptor()
: ArgDescriptor(argTUnknown) {
}
ArgDescriptor &operator=(const ArgDescriptor &rhs);
ArgDescriptor(const ArgDescriptor &rhs) {
*this = rhs;
}
template <typename T>
const T &as() const;
template <typename T>
T &as(bool initIfUnknown = false);
template <ArgType type>
bool is() const {
return type == this->type;
}
ArgTypeTraits &getTraits() {
return traits;
}
const ArgTypeTraits &getTraits() const {
return traits;
}
ExtendedTypeInfo &getExtendedTypeInfo() {
return extendedTypeInfo;
}
const ExtendedTypeInfo &getExtendedTypeInfo() const {
return extendedTypeInfo;
}
bool isReadOnly() const {
switch (type) {
default:
return true;
case argTImage:
return (KernelArgMetadata::AccessReadOnly == traits.accessQualifier);
case argTPointer:
return (KernelArgMetadata::AddrConstant == traits.addressQualifier) ||
(KernelArgMetadata::AccessReadOnly == traits.accessQualifier) ||
traits.typeQualifiers.constQual;
}
}
protected:
ArgDescValue asByValue;
ArgTypeTraits traits;
union {
ArgDescPointer asPointer;
ArgDescImage asImage;
ArgDescSampler asSampler;
};
ExtendedTypeInfo extendedTypeInfo;
public:
ArgType type;
};
namespace {
constexpr auto argSize = sizeof(ArgDescriptor);
static_assert(argSize <= 72, "Keep it small");
} // namespace
template <>
inline const ArgDescPointer &ArgDescriptor::as<ArgDescPointer>() const {
UNRECOVERABLE_IF(type != argTPointer);
return this->asPointer;
}
template <>
inline const ArgDescImage &ArgDescriptor::as<ArgDescImage>() const {
UNRECOVERABLE_IF(type != argTImage);
return this->asImage;
}
template <>
inline const ArgDescSampler &ArgDescriptor::as<ArgDescSampler>() const {
UNRECOVERABLE_IF(type != argTSampler);
return this->asSampler;
}
template <>
inline const ArgDescValue &ArgDescriptor::as<ArgDescValue>() const {
UNRECOVERABLE_IF(type != argTValue);
return this->asByValue;
}
template <>
inline ArgDescPointer &ArgDescriptor::as<ArgDescPointer>(bool initIfUnknown) {
if ((argTUnknown == type) && initIfUnknown) {
this->type = argTPointer;
this->asPointer = {};
}
UNRECOVERABLE_IF(type != argTPointer);
return this->asPointer;
}
template <>
inline ArgDescImage &ArgDescriptor::as<ArgDescImage>(bool initIfUnknown) {
if ((argTUnknown == type) && initIfUnknown) {
this->type = argTImage;
this->asImage = {};
}
UNRECOVERABLE_IF(type != argTImage);
return this->asImage;
}
template <>
inline ArgDescSampler &ArgDescriptor::as<ArgDescSampler>(bool initIfUnknown) {
if ((argTUnknown == type) && initIfUnknown) {
this->type = argTSampler;
this->asSampler = {};
}
UNRECOVERABLE_IF(type != argTSampler);
return this->asSampler;
}
template <>
inline ArgDescValue &ArgDescriptor::as<ArgDescValue>(bool initIfUnknown) {
if ((argTUnknown == type) && initIfUnknown) {
this->type = argTValue;
this->asByValue.elements.clear();
}
UNRECOVERABLE_IF(type != argTValue);
return this->asByValue;
}
template <uint32_t vecSize, typename T>
inline void setOffsetsVec(CrossThreadDataOffset (&dst)[vecSize], const T (&src)[vecSize]) {
for (uint32_t i = 0; i < vecSize; ++i) {
dst[i] = src[i];
}
}
template <typename DstT, typename SrcT>
inline bool patchNonPointer(ArrayRef<uint8_t> buffer, CrossThreadDataOffset location, const SrcT &value) {
if (undefined<CrossThreadDataOffset> == location) {
return false;
}
DEBUG_BREAK_IF(location + sizeof(DstT) > buffer.size());
*reinterpret_cast<DstT *>(buffer.begin() + location) = static_cast<DstT>(value);
return true;
}
template <uint32_t vecSize, typename T>
inline void patchVecNonPointer(ArrayRef<uint8_t> buffer, const CrossThreadDataOffset (&location)[vecSize], const T (&value)[vecSize]) {
for (uint32_t i = 0; i < vecSize; ++i) {
patchNonPointer<T, T>(buffer, location[i], value[i]);
}
return;
}
inline bool patchPointer(ArrayRef<uint8_t> buffer, const ArgDescPointer &arg, uintptr_t value) {
if (arg.pointerSize == 8) {
return patchNonPointer<uint64_t, uint64_t>(buffer, arg.stateless, static_cast<uint64_t>(value));
} else {
UNRECOVERABLE_IF((arg.pointerSize != 4) && isValidOffset(arg.stateless));
return patchNonPointer<uint32_t, uint32_t>(buffer, arg.stateless, static_cast<uint32_t>(value));
}
}
inline ArgDescriptor &ArgDescriptor::operator=(const ArgDescriptor &rhs) {
if (this == &rhs) {
return *this;
}
this->type = argTUnknown;
switch (rhs.type) {
default:
break;
case argTPointer:
this->as<ArgDescPointer>(true) = rhs.as<ArgDescPointer>();
break;
case argTImage:
this->as<ArgDescImage>(true) = rhs.as<ArgDescImage>();
break;
case argTSampler:
this->as<ArgDescSampler>(true) = rhs.as<ArgDescSampler>();
break;
case argTValue:
this->as<ArgDescValue>(true) = rhs.as<ArgDescValue>();
break;
}
this->type = rhs.type;
this->traits = rhs.traits;
this->extendedTypeInfo = rhs.extendedTypeInfo;
return *this;
}
inline ArgDescriptor::ArgDescriptor(ArgType type) : type(type) {
switch (type) {
default:
break;
case argTPointer:
this->as<ArgDescPointer>(true);
break;
case argTImage:
this->as<ArgDescImage>(true);
break;
case argTSampler:
this->as<ArgDescSampler>(true);
break;
case argTValue:
this->as<ArgDescValue>(true);
break;
}
}
} // namespace NEO
|