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.
|
|
|
|
*/
|
|
|
|
|
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
|