2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2019-07-09 13:46:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __i386__
|
2020-02-19 14:58:54 +00:00
|
|
|
# define AK_ARCH_I386 1
|
2019-07-09 13:46:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __x86_64__
|
2020-02-19 14:58:54 +00:00
|
|
|
# define AK_ARCH_X86_64 1
|
2019-07-09 13:46:22 +00:00
|
|
|
#endif
|
|
|
|
|
2020-12-27 22:38:32 +00:00
|
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
|
|
# define AK_OS_MACOS
|
|
|
|
# define AK_OS_BSD_GENERIC
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
|
|
|
|
# define AK_OS_BSD_GENERIC
|
|
|
|
#endif
|
|
|
|
|
2019-07-09 13:46:22 +00:00
|
|
|
#define ARCH(arch) (defined(AK_ARCH_##arch) && AK_ARCH_##arch)
|
|
|
|
|
2020-04-30 09:43:25 +00:00
|
|
|
#ifdef ALWAYS_INLINE
|
2020-08-25 13:11:15 +00:00
|
|
|
# undef ALWAYS_INLINE
|
2020-04-30 09:43:25 +00:00
|
|
|
#endif
|
|
|
|
#define ALWAYS_INLINE [[gnu::always_inline]] inline
|
|
|
|
|
|
|
|
#ifdef NEVER_INLINE
|
2020-08-25 13:11:15 +00:00
|
|
|
# undef NEVER_INLINE
|
2020-04-30 09:43:25 +00:00
|
|
|
#endif
|
|
|
|
#define NEVER_INLINE [[gnu::noinline]]
|
|
|
|
|
|
|
|
#ifdef FLATTEN
|
2020-08-25 13:11:15 +00:00
|
|
|
# undef FLATTEN
|
2020-04-30 09:43:25 +00:00
|
|
|
#endif
|
|
|
|
#define FLATTEN [[gnu::flatten]]
|
|
|
|
|
2019-07-25 09:51:24 +00:00
|
|
|
#ifndef __serenity__
|
2021-03-12 16:29:37 +00:00
|
|
|
# include <unistd.h>
|
2020-02-19 14:58:54 +00:00
|
|
|
# define PAGE_SIZE sysconf(_SC_PAGESIZE)
|
2019-07-25 09:51:24 +00:00
|
|
|
#endif
|
2019-07-25 12:25:45 +00:00
|
|
|
|
2020-04-30 09:43:25 +00:00
|
|
|
ALWAYS_INLINE int count_trailing_zeroes_32(unsigned int val)
|
2020-03-23 14:31:37 +00:00
|
|
|
{
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
2020-08-25 13:11:15 +00:00
|
|
|
return __builtin_ctz(val);
|
2020-03-23 14:31:37 +00:00
|
|
|
#else
|
2020-08-25 13:11:15 +00:00
|
|
|
for (u8 i = 0; i < 32; ++i) {
|
|
|
|
if ((val >> i) & 1) {
|
|
|
|
return i;
|
2020-03-23 14:31:37 +00:00
|
|
|
}
|
2020-08-25 13:11:15 +00:00
|
|
|
}
|
|
|
|
return 0;
|
2020-03-23 14:31:37 +00:00
|
|
|
#endif
|
2021-01-30 00:24:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE int count_trailing_zeroes_32_safe(unsigned int val)
|
|
|
|
{
|
|
|
|
if (val == 0)
|
|
|
|
return 32;
|
|
|
|
return count_trailing_zeroes_32(val);
|
|
|
|
}
|
2020-12-27 22:38:32 +00:00
|
|
|
|
|
|
|
#ifdef AK_OS_BSD_GENERIC
|
|
|
|
# define CLOCK_MONOTONIC_COARSE CLOCK_MONOTONIC
|
|
|
|
# define CLOCK_REALTIME_COARSE CLOCK_REALTIME
|
|
|
|
#endif
|