mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
2538c7cf89
- Make accelerated checksum available to InnoDB and XtraDB. - Fall back to slice-by-eight if not available. The mode used is printed on startup. - Will only build on POWER systems at the moment until CMakeLists are modified to only add the crc32_power8/ files when building on POWER. running MySQL-5.7 unittest/gunit/innodb/ut0crc32-t Before: 1..2 Using software crc32 implementation, CPU is little-endian ok 1 Using software crc32 implementation, CPU is little-endian normal CRC32: real 0.148006 sec normal CRC32: user 0.148000 sec normal CRC32: sys 0.000000 sec big endian CRC32: real 0.144293 sec big endian CRC32: user 0.144000 sec big endian CRC32: sys 0.000000 sec ok 2 After: 1..2 Using POWER8 crc32 implementation, CPU is little-endian ok 1 Using POWER8 crc32 implementation, CPU is little-endian normal CRC32: real 0.008097 sec normal CRC32: user 0.008000 sec normal CRC32: sys 0.000000 sec big endian CRC32: real 0.147043 sec big endian CRC32: user 0.144000 sec big endian CRC32: sys 0.000000 sec ok 2 Author CRC32 ASM code: Anton Blanchard <anton@au.ibm.com> ref: https://github.com/antonblanchard/crc32-vpmsum Signed-off-by: Daniel Black <daniel.black@au.ibm.com>
52 lines
1.8 KiB
C
52 lines
1.8 KiB
C
/*****************************************************************************
|
|
|
|
Copyright (c) 2011, 2011, Oracle and/or its affiliates. All Rights Reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
Foundation; version 2 of the License.
|
|
|
|
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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
|
|
|
|
*****************************************************************************/
|
|
|
|
/**************************************************//**
|
|
@file include/ut0crc32.h
|
|
CRC32 implementation
|
|
|
|
Created Aug 10, 2011 Vasil Dimov
|
|
*******************************************************/
|
|
|
|
#ifndef ut0crc32_h
|
|
#define ut0crc32_h
|
|
|
|
#include "univ.i"
|
|
|
|
/********************************************************************//**
|
|
Initializes the data structures used by ut_crc32(). Does not do any
|
|
allocations, would not hurt if called twice, but would be pointless. */
|
|
UNIV_INTERN
|
|
void
|
|
ut_crc32_init();
|
|
/*===========*/
|
|
|
|
/********************************************************************//**
|
|
Calculates CRC32.
|
|
@param ptr - data over which to calculate CRC32.
|
|
@param len - data length in bytes.
|
|
@return CRC32 (CRC-32C, using the GF(2) primitive polynomial 0x11EDC6F41,
|
|
or 0x1EDC6F41 without the high-order bit) */
|
|
typedef ib_uint32_t (*ib_ut_crc32_t)(const byte* ptr, ulint len);
|
|
|
|
extern ib_ut_crc32_t ut_crc32;
|
|
|
|
extern bool ut_crc32_sse2_enabled;
|
|
extern bool ut_crc32_power8_enabled;
|
|
|
|
#endif /* ut0crc32_h */
|