mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Related-To: NEO-4744 Change-Id: I7e574d7cf003ed01467c72e797187c0717bb76f2 Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
20 lines
405 B
C++
20 lines
405 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <limits>
|
|
|
|
namespace PageTableEntry {
|
|
const uint32_t presentBit = 0;
|
|
const uint32_t writableBit = 1;
|
|
const uint32_t userSupervisorBit = 2;
|
|
const uint32_t localMemoryBit = 11;
|
|
const uint64_t nonValidBits = std::numeric_limits<uint64_t>::max();
|
|
} // namespace PageTableEntry
|