2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2018-10-10 12:53:07 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-07 18:13:23 +03:00
|
|
|
#include <AK/IterationDecision.h>
|
2019-07-24 09:16:59 +03:00
|
|
|
#include <AK/Platform.h>
|
2020-03-08 12:36:51 +03:00
|
|
|
#include <AK/StdLibExtras.h>
|
2019-06-07 18:13:23 +03:00
|
|
|
|
2020-11-12 01:21:01 +03:00
|
|
|
using u64 = __UINT64_TYPE__;
|
|
|
|
using u32 = __UINT32_TYPE__;
|
|
|
|
using u16 = __UINT16_TYPE__;
|
|
|
|
using u8 = __UINT8_TYPE__;
|
|
|
|
using i64 = __INT64_TYPE__;
|
|
|
|
using i32 = __INT32_TYPE__;
|
|
|
|
using i16 = __INT16_TYPE__;
|
|
|
|
using i8 = __INT8_TYPE__;
|
2020-05-23 13:41:38 +03:00
|
|
|
|
2019-04-20 13:58:02 +03:00
|
|
|
#ifdef __serenity__
|
2019-07-01 16:57:06 +03:00
|
|
|
|
2020-11-12 01:21:01 +03:00
|
|
|
using size_t = __SIZE_TYPE__;
|
2021-04-10 16:59:06 +03:00
|
|
|
using ssize_t = MakeSigned<size_t>;
|
2018-10-18 16:03:10 +03:00
|
|
|
|
2020-11-12 01:21:01 +03:00
|
|
|
using ptrdiff_t = __PTRDIFF_TYPE__;
|
2018-11-08 13:37:01 +03:00
|
|
|
|
2020-11-12 01:21:01 +03:00
|
|
|
using intptr_t = __INTPTR_TYPE__;
|
|
|
|
using uintptr_t = __UINTPTR_TYPE__;
|
2020-01-20 15:05:55 +03:00
|
|
|
|
2020-11-12 01:21:01 +03:00
|
|
|
using uint8_t = u8;
|
|
|
|
using uint16_t = u16;
|
|
|
|
using uint32_t = u32;
|
|
|
|
using uint64_t = u64;
|
2018-11-08 13:37:01 +03:00
|
|
|
|
2020-11-12 01:21:01 +03:00
|
|
|
using int8_t = i8;
|
|
|
|
using int16_t = i16;
|
|
|
|
using int32_t = i32;
|
|
|
|
using int64_t = i64;
|
2018-11-08 13:37:01 +03:00
|
|
|
|
2020-11-12 01:21:01 +03:00
|
|
|
using pid_t = int;
|
2020-03-28 11:47:16 +03:00
|
|
|
|
2018-10-16 13:10:01 +03:00
|
|
|
#else
|
2020-06-12 16:21:49 +03:00
|
|
|
# include <stddef.h>
|
2020-08-05 16:10:08 +03:00
|
|
|
# include <stdint.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
# include <sys/types.h>
|
2018-10-10 12:53:07 +03:00
|
|
|
|
2020-03-28 11:47:16 +03:00
|
|
|
# ifdef __ptrdiff_t
|
2020-11-12 01:21:01 +03:00
|
|
|
using __ptrdiff_t = __PTRDIFF_TYPE__;
|
2020-03-28 11:47:16 +03:00
|
|
|
# endif
|
2020-01-31 02:03:58 +03:00
|
|
|
|
2018-10-16 14:59:28 +03:00
|
|
|
#endif
|
2018-10-10 12:53:07 +03:00
|
|
|
|
2021-04-10 16:59:06 +03:00
|
|
|
using FlatPtr = Conditional<sizeof(void*) == 8, u64, u32>;
|
2020-03-08 12:36:51 +03:00
|
|
|
|
2021-03-17 20:34:13 +03:00
|
|
|
constexpr u64 KiB = 1024;
|
|
|
|
constexpr u64 MiB = KiB * KiB;
|
|
|
|
constexpr u64 GiB = KiB * KiB * KiB;
|
|
|
|
constexpr u64 TiB = KiB * KiB * KiB * KiB;
|
|
|
|
constexpr u64 PiB = KiB * KiB * KiB * KiB * KiB;
|
|
|
|
constexpr u64 EiB = KiB * KiB * KiB * KiB * KiB * KiB;
|
2018-10-16 13:10:01 +03:00
|
|
|
|
2021-11-06 20:55:32 +03:00
|
|
|
namespace std { //NOLINT(cert-dcl58-cpp) nullptr_t must be in ::std:: for some analysis tools
|
2020-11-12 01:21:01 +03:00
|
|
|
using nullptr_t = decltype(nullptr);
|
2018-10-16 13:10:01 +03:00
|
|
|
}
|
2019-06-19 21:52:12 +03:00
|
|
|
|
2021-06-28 14:44:38 +03:00
|
|
|
static constexpr FlatPtr explode_byte(u8 b)
|
2019-06-19 21:52:12 +03:00
|
|
|
{
|
2021-08-23 11:37:22 +03:00
|
|
|
FlatPtr value = b;
|
|
|
|
if constexpr (sizeof(FlatPtr) == 4)
|
|
|
|
return value << 24 | value << 16 | value << 8 | value;
|
|
|
|
else if (sizeof(FlatPtr) == 8)
|
|
|
|
return value << 56 | value << 48 | value << 40 | value << 32 | value << 24 | value << 16 | value << 8 | value;
|
2019-06-19 21:52:12 +03:00
|
|
|
}
|
|
|
|
|
2021-08-23 11:37:22 +03:00
|
|
|
static_assert(explode_byte(0xff) == (FlatPtr)0xffffffffffffffffull);
|
|
|
|
static_assert(explode_byte(0x80) == (FlatPtr)0x8080808080808080ull);
|
|
|
|
static_assert(explode_byte(0x7f) == (FlatPtr)0x7f7f7f7f7f7f7f7full);
|
2019-06-19 21:52:12 +03:00
|
|
|
static_assert(explode_byte(0) == 0);
|
2019-08-15 21:52:25 +03:00
|
|
|
|
2020-10-20 19:08:13 +03:00
|
|
|
constexpr size_t align_up_to(const size_t value, const size_t alignment)
|
2019-09-07 16:39:26 +03:00
|
|
|
{
|
|
|
|
return (value + (alignment - 1)) & ~(alignment - 1);
|
|
|
|
}
|
|
|
|
|
2020-08-05 16:10:08 +03:00
|
|
|
enum class [[nodiscard]] TriState : u8 {
|
|
|
|
False,
|
2020-03-28 11:47:16 +03:00
|
|
|
True,
|
2020-08-05 16:10:08 +03:00
|
|
|
Unknown
|
|
|
|
};
|
2021-01-04 02:43:10 +03:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
enum MemoryOrder {
|
|
|
|
memory_order_relaxed = __ATOMIC_RELAXED,
|
|
|
|
memory_order_consume = __ATOMIC_CONSUME,
|
|
|
|
memory_order_acquire = __ATOMIC_ACQUIRE,
|
|
|
|
memory_order_release = __ATOMIC_RELEASE,
|
|
|
|
memory_order_acq_rel = __ATOMIC_ACQ_REL,
|
|
|
|
memory_order_seq_cst = __ATOMIC_SEQ_CST
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|