2020-06-27 23:25:56 +02:00
|
|
|
// The Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) The Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2020 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_SIMD_H
|
|
|
|
|
|
|
|
#include "type.h"
|
2020-10-07 02:42:06 +02:00
|
|
|
#include "unaligned.h"
|
2020-06-27 23:25:56 +02:00
|
|
|
#include "traits.h"
|
2020-06-29 01:37:00 +02:00
|
|
|
#include "lane_cast.h"
|
2020-07-16 02:25:32 +02:00
|
|
|
#include "broad_cast.h"
|
2020-09-04 08:43:10 +02:00
|
|
|
#include "split.h"
|
|
|
|
#include "lower.h"
|
|
|
|
#include "upper.h"
|
2020-09-20 09:23:56 +02:00
|
|
|
#include "mask.h"
|
2020-09-19 02:53:59 +02:00
|
|
|
#include "gather.h"
|
2020-09-20 15:25:29 +02:00
|
|
|
#include "scatter.h"
|
2020-09-20 07:48:54 +02:00
|
|
|
#include "shl.h"
|
|
|
|
#include "shr.h"
|
2020-09-20 08:39:06 +02:00
|
|
|
#include "rol.h"
|
|
|
|
#include "ror.h"
|
2020-07-18 01:41:22 +02:00
|
|
|
#include "popcnt.h"
|
|
|
|
#include "lzcnt.h"
|
|
|
|
#include "tzcnt.h"
|
2020-09-05 23:16:30 +02:00
|
|
|
#include "lateral.h"
|
2020-09-28 08:31:05 +02:00
|
|
|
#include "any.h"
|
2020-09-28 09:02:45 +02:00
|
|
|
#include "all.h"
|
2020-10-09 09:39:10 +02:00
|
|
|
#include "istream.h"
|
|
|
|
#include "iostream.h"
|
2020-10-07 02:50:43 +02:00
|
|
|
#include "accumulate.h"
|
2020-06-27 23:25:56 +02:00
|
|
|
#include "print.h"
|
|
|
|
|
|
|
|
namespace ircd
|
|
|
|
{
|
2020-07-06 15:51:01 +02:00
|
|
|
using simd::lane_cast;
|
2020-07-18 01:41:22 +02:00
|
|
|
|
2020-06-27 23:25:56 +02:00
|
|
|
using simd::shl;
|
|
|
|
using simd::shr;
|
2020-06-30 06:05:09 +02:00
|
|
|
|
2020-09-20 08:39:06 +02:00
|
|
|
using simd::rol;
|
|
|
|
using simd::ror;
|
|
|
|
|
2020-07-18 01:41:22 +02:00
|
|
|
using simd::lzcnt;
|
|
|
|
using simd::tzcnt;
|
2020-07-17 15:39:52 +02:00
|
|
|
|
2020-07-18 01:41:22 +02:00
|
|
|
using simd::popcnt;
|
|
|
|
using simd::popmask;
|
|
|
|
using simd::boolmask;
|
2020-09-05 23:16:30 +02:00
|
|
|
|
|
|
|
using simd::lateral;
|
2020-06-30 06:05:09 +02:00
|
|
|
}
|