97 lines
2.2 KiB
C
97 lines
2.2 KiB
C
/*
|
|
* This file is a part of Pcompress, a chunked parallel multi-
|
|
* algorithm lossless compression and decompression program.
|
|
*
|
|
* Copyright (C) 2012-2013 Moinak Ghosh. All rights reserved.
|
|
* Use is subject to license terms.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this program.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* moinakg@belenix.org, http://moinakg.wordpress.com/
|
|
*
|
|
*/
|
|
|
|
/*
|
|
BLAKE2 reference source code package - optimized C implementations
|
|
|
|
Written in 2012 by Samuel Neves <sneves@dei.uc.pt>
|
|
|
|
To the extent possible under law, the author(s) have dedicated all copyright
|
|
and related and neighboring rights to this software to the public domain
|
|
worldwide. This software is distributed without any warranty.
|
|
|
|
You should have received a copy of the CC0 Public Domain Dedication along with
|
|
this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
*/
|
|
#pragma once
|
|
#ifndef __BLAKE2_CONFIG_H__
|
|
#define __BLAKE2_CONFIG_H__
|
|
|
|
// These don't work everywhere
|
|
#if defined(__SSE2__)
|
|
#define HAVE_SSE2
|
|
#endif
|
|
|
|
#if defined(__SSSE3__)
|
|
#define HAVE_SSSE3
|
|
#endif
|
|
|
|
#if defined(__SSE4_1__)
|
|
#define HAVE_SSE41
|
|
#endif
|
|
|
|
#if defined(__AVX__)
|
|
#define HAVE_AVX
|
|
#endif
|
|
|
|
#if defined(__XOP__)
|
|
#define HAVE_XOP
|
|
#endif
|
|
|
|
|
|
#ifdef HAVE_AVX2
|
|
#ifndef HAVE_AVX
|
|
#define HAVE_AVX
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HAVE_XOP
|
|
#ifndef HAVE_AVX
|
|
#define HAVE_AVX
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HAVE_AVX
|
|
#ifndef HAVE_SSE41
|
|
#define HAVE_SSE41
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HAVE_SSE41
|
|
#ifndef HAVE_SSSE3
|
|
#define HAVE_SSSE3
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HAVE_SSSE3
|
|
#define HAVE_SSE2
|
|
#endif
|
|
|
|
#if !defined(HAVE_SSE2)
|
|
#error "This code requires at least SSE2."
|
|
#endif
|
|
|
|
#endif
|
|
|