Move and extend local memory DRM allocations

Signed-off-by: Daniel Chabrowski daniel.chabrowski@intel.com
Related-To: NEO-6591
This commit is contained in:
Daniel Chabrowski
2022-02-17 10:58:04 +00:00
committed by Compute-Runtime-Automation
parent ad6fc15bc0
commit b84b0015d5
12 changed files with 221 additions and 41 deletions

View File

@@ -5062,7 +5062,7 @@ typedef struct tagMI_STORE_DATA_IMM {
ADDRESS_ALIGN_SIZE = 0x4,
} ADDRESS;
inline void setAddress(const uint64_t value) {
UNRECOVERABLE_IF(value > 0x3fffffffffffffffL);
UNRECOVERABLE_IF((value >> ADDRESS_BIT_SHIFT) > 0x3fffffffffffffffL);
TheStructure.Common.Address = value >> ADDRESS_BIT_SHIFT;
}
inline uint64_t getAddress() const {