blob: 87473505fe792c88e1bcd1deadcd931caf210cfd [file] [log] [blame]
Kostya Kortchinskyc4d8f3f2017-01-10 16:39:36 +00001//===-- scudo_crc32.cpp -----------------------------------------*- C++ -*-===//
2//
Chandler Carruth58d43602019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Kostya Kortchinskyc4d8f3f2017-01-10 16:39:36 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// CRC32 function leveraging hardware specific instructions. This has to be
10/// kept separated to restrict the use of compiler specific flags to this file.
11///
12//===----------------------------------------------------------------------===//
13
Kostya Kortchinskyb5a98092017-05-09 15:12:38 +000014#include "scudo_crc32.h"
Kostya Kortchinskyc4d8f3f2017-01-10 16:39:36 +000015
16namespace __scudo {
17
18#if defined(__SSE4_2__) || defined(__ARM_FEATURE_CRC32)
Kostya Kortchinsky90a89f02017-01-18 17:11:17 +000019u32 computeHardwareCRC32(u32 Crc, uptr Data) {
Kostya Kortchinskyc4d8f3f2017-01-10 16:39:36 +000020 return CRC32_INTRINSIC(Crc, Data);
21}
Kostya Kortchinskyc4d8f3f2017-01-10 16:39:36 +000022#endif // defined(__SSE4_2__) || defined(__ARM_FEATURE_CRC32)
23
24} // namespace __scudo