2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-07 15:13:23 +00:00
|
|
|
#include <AK/IterationDecision.h>
|
2019-07-24 06:16:59 +00:00
|
|
|
#include <AK/Platform.h>
|
2020-03-08 09:36:51 +00:00
|
|
|
#include <AK/StdLibExtras.h>
|
2019-06-07 15:13:23 +00:00
|
|
|
|
2020-11-11 22:21:01 +00: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 10:41:38 +00:00
|
|
|
|
2019-04-20 10:58:02 +00:00
|
|
|
#ifdef __serenity__
|
2019-07-01 13:57:06 +00:00
|
|
|
|
2020-11-11 22:21:01 +00:00
|
|
|
using size_t = __SIZE_TYPE__;
|
2021-04-10 13:59:06 +00:00
|
|
|
using ssize_t = MakeSigned<size_t>;
|
2018-10-18 13:03:10 +00:00
|
|
|
|
2020-11-11 22:21:01 +00:00
|
|
|
using ptrdiff_t = __PTRDIFF_TYPE__;
|
2018-11-08 10:37:01 +00:00
|
|
|
|
2020-11-11 22:21:01 +00:00
|
|
|
using intptr_t = __INTPTR_TYPE__;
|
|
|
|
using uintptr_t = __UINTPTR_TYPE__;
|
2020-01-20 12:05:55 +00:00
|
|
|
|
2020-11-11 22:21:01 +00:00
|
|
|
using uint8_t = u8;
|
|
|
|
using uint16_t = u16;
|
|
|
|
using uint32_t = u32;
|
|
|
|
using uint64_t = u64;
|
2018-11-08 10:37:01 +00:00
|
|
|
|
2020-11-11 22:21:01 +00:00
|
|
|
using int8_t = i8;
|
|
|
|
using int16_t = i16;
|
|
|
|
using int32_t = i32;
|
|
|
|
using int64_t = i64;
|
2018-11-08 10:37:01 +00:00
|
|
|
|
2020-11-11 22:21:01 +00:00
|
|
|
using pid_t = int;
|
2020-03-28 08:47:16 +00:00
|
|
|
|
2018-10-16 10:10:01 +00:00
|
|
|
#else
|
2020-06-12 13:21:49 +00:00
|
|
|
# include <stddef.h>
|
2020-08-05 13:10:08 +00:00
|
|
|
# include <stdint.h>
|
2019-05-28 09:53:16 +00:00
|
|
|
# include <sys/types.h>
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2020-03-28 08:47:16 +00:00
|
|
|
# ifdef __ptrdiff_t
|
2020-11-11 22:21:01 +00:00
|
|
|
using __ptrdiff_t = __PTRDIFF_TYPE__;
|
2020-03-28 08:47:16 +00:00
|
|
|
# endif
|
2020-01-30 23:03:58 +00:00
|
|
|
|
2018-10-16 11:59:28 +00:00
|
|
|
#endif
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2021-04-10 13:59:06 +00:00
|
|
|
using FlatPtr = Conditional<sizeof(void*) == 8, u64, u32>;
|
2020-03-08 09:36:51 +00:00
|
|
|
|
2021-03-17 17:34:13 +00: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 10:10:01 +00:00
|
|
|
|
|
|
|
namespace std {
|
2020-11-11 22:21:01 +00:00
|
|
|
using nullptr_t = decltype(nullptr);
|
2018-10-16 10:10:01 +00:00
|
|
|
}
|
2019-06-19 18:52:12 +00:00
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
static constexpr u32 explode_byte(u8 b)
|
2019-06-19 18:52:12 +00:00
|
|
|
{
|
|
|
|
return b << 24 | b << 16 | b << 8 | b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static_assert(explode_byte(0xff) == 0xffffffff);
|
|
|
|
static_assert(explode_byte(0x80) == 0x80808080);
|
|
|
|
static_assert(explode_byte(0x7f) == 0x7f7f7f7f);
|
|
|
|
static_assert(explode_byte(0) == 0);
|
2019-08-15 18:52:25 +00:00
|
|
|
|
2020-10-20 16:08:13 +00:00
|
|
|
constexpr size_t align_up_to(const size_t value, const size_t alignment)
|
2019-09-07 13:39:26 +00:00
|
|
|
{
|
|
|
|
return (value + (alignment - 1)) & ~(alignment - 1);
|
|
|
|
}
|
|
|
|
|
2020-08-05 13:10:08 +00:00
|
|
|
enum class [[nodiscard]] TriState : u8 {
|
|
|
|
False,
|
2020-03-28 08:47:16 +00:00
|
|
|
True,
|
2020-08-05 13:10:08 +00:00
|
|
|
Unknown
|
|
|
|
};
|
2021-01-03 23:43:10 +00: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
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|