mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
3f3f45580a
Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
69 lines
2.8 KiB
C++
69 lines
2.8 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Checked.h>
|
|
#include <AK/Format.h>
|
|
#include <AK/Types.h>
|
|
|
|
typedef u64 PhysicalPtr;
|
|
typedef u64 PhysicalSize;
|
|
|
|
class PhysicalAddress {
|
|
public:
|
|
ALWAYS_INLINE static PhysicalPtr physical_page_base(PhysicalPtr page_address) { return page_address & ~(PhysicalPtr)0xfff; }
|
|
ALWAYS_INLINE static size_t physical_page_index(PhysicalPtr page_address)
|
|
{
|
|
auto page_index = page_address >> 12;
|
|
if constexpr (sizeof(size_t) < sizeof(PhysicalPtr))
|
|
VERIFY(!(page_index & ~(PhysicalPtr)((size_t)-1)));
|
|
return (size_t)(page_index);
|
|
}
|
|
|
|
PhysicalAddress() = default;
|
|
explicit PhysicalAddress(PhysicalPtr address)
|
|
: m_address(address)
|
|
{
|
|
}
|
|
|
|
[[nodiscard]] PhysicalAddress offset(PhysicalPtr o) const { return PhysicalAddress(m_address + o); }
|
|
[[nodiscard]] bool offset_addition_would_overflow(PhysicalPtr o) const { return Checked<PhysicalPtr>::addition_would_overflow(m_address, o); }
|
|
[[nodiscard]] PhysicalPtr get() const { return m_address; }
|
|
void set(PhysicalPtr address) { m_address = address; }
|
|
void mask(PhysicalPtr m) { m_address &= m; }
|
|
|
|
[[nodiscard]] bool is_null() const { return m_address == 0; }
|
|
|
|
// NOLINTNEXTLINE(readability-make-member-function-const) const PhysicalAddress shouldn't be allowed to modify the underlying memory
|
|
[[nodiscard]] u8* as_ptr() { return reinterpret_cast<u8*>(m_address); }
|
|
[[nodiscard]] u8 const* as_ptr() const { return reinterpret_cast<u8 const*>(m_address); }
|
|
|
|
[[nodiscard]] PhysicalAddress page_base() const { return PhysicalAddress(physical_page_base(m_address)); }
|
|
[[nodiscard]] PhysicalPtr offset_in_page() const { return PhysicalAddress(m_address & 0xfff).get(); }
|
|
|
|
bool operator==(PhysicalAddress const& other) const { return m_address == other.m_address; }
|
|
bool operator!=(PhysicalAddress const& other) const { return m_address != other.m_address; }
|
|
bool operator>(PhysicalAddress const& other) const { return m_address > other.m_address; }
|
|
bool operator>=(PhysicalAddress const& other) const { return m_address >= other.m_address; }
|
|
bool operator<(PhysicalAddress const& other) const { return m_address < other.m_address; }
|
|
bool operator<=(PhysicalAddress const& other) const { return m_address <= other.m_address; }
|
|
|
|
private:
|
|
PhysicalPtr m_address { 0 };
|
|
};
|
|
|
|
template<>
|
|
struct AK::Formatter<PhysicalAddress> : AK::Formatter<FormatString> {
|
|
ErrorOr<void> format(FormatBuilder& builder, PhysicalAddress value)
|
|
{
|
|
if constexpr (sizeof(PhysicalPtr) == sizeof(u64))
|
|
return AK::Formatter<FormatString>::format(builder, "P{:016x}"sv, value.get());
|
|
else
|
|
return AK::Formatter<FormatString>::format(builder, "P{}"sv, value.as_ptr());
|
|
}
|
|
};
|