forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 714
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MOVEONLY] Move cpuid code from random to compat/cpuid
- Loading branch information
Showing
3 changed files
with
28 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (c) 2017-2019 The Bitcoin Core developers | ||
// Distributed under the MIT software license, see the accompanying | ||
// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
#ifndef BITCOIN_COMPAT_CPUID_H | ||
#define BITCOIN_COMPAT_CPUID_H | ||
|
||
#if defined(__x86_64__) || defined(__amd64__) || defined(__i386__) | ||
#define HAVE_GETCPUID | ||
|
||
#include <cpuid.h> | ||
|
||
// We can't use cpuid.h's __get_cpuid as it does not support subleafs. | ||
void static inline GetCPUID(uint32_t leaf, uint32_t subleaf, uint32_t& a, uint32_t& b, uint32_t& c, uint32_t& d) | ||
{ | ||
#ifdef __GNUC__ | ||
__cpuid_count(leaf, subleaf, a, b, c, d); | ||
#else | ||
__asm__ ("cpuid" : "=a"(a), "=b"(b), "=c"(c), "=d"(d) : "0"(leaf), "2"(subleaf)); | ||
#endif | ||
} | ||
|
||
#endif // defined(__x86_64__) || defined(__amd64__) || defined(__i386__) | ||
#endif // BITCOIN_COMPAT_CPUID_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters