#ifndef V8_UTILS_UTILS_H_
#define V8_UTILS_UTILS_H_
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <string>
#include <type_traits>
#include "src/base/bits.h"
#include "src/base/compiler-specific.h"
#include "src/base/logging.h"
#include "src/base/macros.h"
#include "src/base/safe_conversions.h"
#include "src/base/vector.h"
#include "src/common/globals.h"
#if defined(V8_USE_SIPHASH)
#include "src/third_party/siphash/halfsiphash.h"
#endif
#if defined(V8_OS_AIX)
#include <fenv.h>
#endif
#ifdef _MSC_VER
#ifdef __AVX__
#ifndef __SSE3__
#define __SSE3__
#endif
#endif
#endif
#ifdef __SSE3__
#include <immintrin.h>
#endif
#if defined(V8_TARGET_ARCH_ARM64) && \
(defined(__ARM_NEON) || defined(__ARM_NEON__))
#define V8_OPTIMIZE_WITH_NEON
#include <arm_neon.h>
#endif
namespace v8 {
internal
}
#endif