2020-01-18 09:38:21 +01: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 11:53:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-07 17:13:23 +02:00
|
|
|
#include <AK/IterationDecision.h>
|
2019-07-24 08:16:59 +02:00
|
|
|
#include <AK/Platform.h>
|
2020-03-08 10:36:51 +01:00
|
|
|
#include <AK/StdLibExtras.h>
|
2019-06-07 17:13:23 +02:00
|
|
|
|
2020-11-11 15:21:01 -07: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 12:41:38 +02:00
|
|
|
|
2019-04-20 12:58:02 +02:00
|
|
|
#ifdef __serenity__
|
2019-07-01 15:57:06 +02:00
|
|
|
|
2020-11-11 15:21:01 -07:00
|
|
|
using size_t = __SIZE_TYPE__;
|
|
|
|
using ssize_t = MakeSigned<size_t>::Type;
|
2018-10-18 15:03:10 +02:00
|
|
|
|
2020-11-11 15:21:01 -07:00
|
|
|
using ptrdiff_t = __PTRDIFF_TYPE__;
|
2018-11-08 11:37:01 +01:00
|
|
|
|
2020-11-11 15:21:01 -07:00
|
|
|
using intptr_t = __INTPTR_TYPE__;
|
|
|
|
using uintptr_t = __UINTPTR_TYPE__;
|
2020-01-20 13:05:55 +01:00
|
|
|
|
2020-11-11 15:21:01 -07:00
|
|
|
using uint8_t = u8;
|
|
|
|
using uint16_t = u16;
|
|
|
|
using uint32_t = u32;
|
|
|
|
using uint64_t = u64;
|
2018-11-08 11:37:01 +01:00
|
|
|
|
2020-11-11 15:21:01 -07:00
|
|
|
using int8_t = i8;
|
|
|
|
using int16_t = i16;
|
|
|
|
using int32_t = i32;
|
|
|
|
using int64_t = i64;
|
2018-11-08 11:37:01 +01:00
|
|
|
|
2020-11-11 15:21:01 -07:00
|
|
|
using pid_t = int;
|
2020-03-28 11:47:16 +03:00
|
|
|
|
2018-10-16 12:10:01 +02:00
|
|
|
#else
|
2020-06-12 16:21:49 +03:00
|
|
|
# include <stddef.h>
|
2020-08-05 06:10:08 -07:00
|
|
|
# include <stdint.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
# include <sys/types.h>
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2020-03-28 11:47:16 +03:00
|
|
|
# ifdef __ptrdiff_t
|
2020-11-11 15:21:01 -07:00
|
|
|
using __ptrdiff_t = __PTRDIFF_TYPE__;
|
2020-03-28 11:47:16 +03:00
|
|
|
# endif
|
2020-01-30 17:03:58 -06:00
|
|
|
|
2018-10-16 13:59:28 +02:00
|
|
|
#endif
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2020-11-11 15:21:01 -07:00
|
|
|
using FlatPtr = Conditional<sizeof(void*) == 8, u64, u32>::Type;
|
2020-03-08 10:36:51 +01:00
|
|
|
|
AK: Rename KB, MB, GB to KiB, MiB, GiB
The SI prefixes "k", "M", "G" mean "10^3", "10^6", "10^9".
The IEC prefixes "Ki", "Mi", "Gi" mean "2^10", "2^20", "2^30".
Let's use the correct name, at least in code.
Only changes the name of the constants, no other behavior change.
2020-08-15 13:55:00 -04:00
|
|
|
constexpr unsigned KiB = 1024;
|
|
|
|
constexpr unsigned MiB = KiB * KiB;
|
|
|
|
constexpr unsigned GiB = KiB * KiB * KiB;
|
2018-10-16 12:10:01 +02:00
|
|
|
|
|
|
|
namespace std {
|
2020-11-11 15:21:01 -07:00
|
|
|
using nullptr_t = decltype(nullptr);
|
2018-10-16 12:10:01 +02:00
|
|
|
}
|
2019-06-19 20:52:12 +02:00
|
|
|
|
2019-07-03 21:17:35 +02:00
|
|
|
static constexpr u32 explode_byte(u8 b)
|
2019-06-19 20:52:12 +02: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 20:52:25 +02:00
|
|
|
|
2020-10-20 10:08:13 -06:00
|
|
|
constexpr size_t align_up_to(const size_t value, const size_t alignment)
|
2019-09-07 15:39:26 +02:00
|
|
|
{
|
|
|
|
return (value + (alignment - 1)) & ~(alignment - 1);
|
|
|
|
}
|
|
|
|
|
2020-08-05 06:10:08 -07:00
|
|
|
enum class [[nodiscard]] TriState : u8 {
|
|
|
|
False,
|
2020-03-28 11:47:16 +03:00
|
|
|
True,
|
2020-08-05 06:10:08 -07:00
|
|
|
Unknown
|
|
|
|
};
|