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