2017-06-10 04:05:00 +00:00
|
|
|
/* XMRig
|
|
|
|
* Copyright 2010 Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
* Copyright 2012-2014 pooler <pooler@litecoinpool.org>
|
|
|
|
* Copyright 2014 Lucas Jones <https://github.com/lucasjones>
|
|
|
|
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
|
|
|
|
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
|
2018-03-06 10:06:07 +00:00
|
|
|
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
|
|
|
|
* Copyright 2018 Lee Clagett <https://github.com/vtnerd>
|
2019-01-18 14:44:44 +00:00
|
|
|
* Copyright 2018-2019 SChernykh <https://github.com/SChernykh>
|
2019-01-13 08:03:36 +00:00
|
|
|
* Copyright 2016-2019 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
2017-06-10 04:05:00 +00:00
|
|
|
*
|
|
|
|
* 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, 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-07-13 15:15:53 +00:00
|
|
|
#ifndef XMRIG_CPUWORKER_H
|
|
|
|
#define XMRIG_CPUWORKER_H
|
2017-06-10 04:05:00 +00:00
|
|
|
|
|
|
|
|
2019-07-16 15:10:50 +00:00
|
|
|
#include "backend/common/Worker.h"
|
2019-07-13 15:15:53 +00:00
|
|
|
#include "backend/common/WorkerJob.h"
|
2019-07-16 15:10:50 +00:00
|
|
|
#include "backend/cpu/CpuLaunchData.h"
|
2019-03-14 18:50:35 +00:00
|
|
|
#include "base/net/stratum/Job.h"
|
2018-04-15 04:08:47 +00:00
|
|
|
#include "Mem.h"
|
2017-06-11 07:58:46 +00:00
|
|
|
#include "net/JobResult.h"
|
2019-07-13 17:35:38 +00:00
|
|
|
|
|
|
|
|
2019-06-13 15:08:52 +00:00
|
|
|
namespace xmrig {
|
2017-06-10 04:05:00 +00:00
|
|
|
|
|
|
|
|
2019-07-10 03:14:33 +00:00
|
|
|
class RxVm;
|
|
|
|
|
|
|
|
|
2018-04-14 15:14:57 +00:00
|
|
|
template<size_t N>
|
2019-07-13 15:15:53 +00:00
|
|
|
class CpuWorker : public Worker
|
2017-06-10 04:05:00 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-07-16 15:10:50 +00:00
|
|
|
CpuWorker(size_t index, const CpuLaunchData &data);
|
2019-07-13 15:15:53 +00:00
|
|
|
~CpuWorker() override;
|
2017-06-10 06:41:08 +00:00
|
|
|
|
2019-07-13 17:35:38 +00:00
|
|
|
inline const MemInfo &memory() const { return m_memory; }
|
|
|
|
|
2018-04-14 15:14:57 +00:00
|
|
|
protected:
|
|
|
|
bool selfTest() override;
|
|
|
|
void start() override;
|
2017-06-11 03:52:23 +00:00
|
|
|
|
|
|
|
private:
|
2019-07-16 15:10:50 +00:00
|
|
|
inline cn_hash_fun fn(const Algorithm &algorithm) const { return CnHash::fn(algorithm, m_av, m_assembly); }
|
|
|
|
|
2019-06-18 18:16:51 +00:00
|
|
|
# ifdef XMRIG_ALGO_RANDOMX
|
2019-06-18 17:53:11 +00:00
|
|
|
void allocateRandomX_VM();
|
2019-06-18 18:16:51 +00:00
|
|
|
# endif
|
2019-06-18 17:53:11 +00:00
|
|
|
|
2019-06-13 15:08:52 +00:00
|
|
|
bool verify(const Algorithm &algorithm, const uint8_t *referenceValue);
|
|
|
|
bool verify2(const Algorithm &algorithm, const uint8_t *referenceValue);
|
2017-06-11 03:52:23 +00:00
|
|
|
void consumeJob();
|
2018-04-14 15:14:57 +00:00
|
|
|
|
2019-07-16 15:10:50 +00:00
|
|
|
const Algorithm m_algorithm;
|
|
|
|
const Assembly m_assembly;
|
|
|
|
const bool m_hwAES;
|
|
|
|
const CnHash::AlgoVariant m_av;
|
|
|
|
const Miner *m_miner;
|
2018-04-15 04:08:47 +00:00
|
|
|
cryptonight_ctx *m_ctx[N];
|
2019-07-13 17:35:38 +00:00
|
|
|
MemInfo m_memory;
|
2018-04-15 04:08:47 +00:00
|
|
|
uint8_t m_hash[N * 32];
|
2019-07-11 09:15:51 +00:00
|
|
|
WorkerJob<N> m_job;
|
|
|
|
|
2019-06-17 23:11:53 +00:00
|
|
|
# ifdef XMRIG_ALGO_RANDOMX
|
2019-07-10 03:14:33 +00:00
|
|
|
RxVm *m_vm = nullptr;
|
2019-06-17 23:11:53 +00:00
|
|
|
# endif
|
2017-06-10 04:05:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-07-13 15:15:53 +00:00
|
|
|
template<>
|
|
|
|
bool CpuWorker<1>::verify2(const Algorithm &algorithm, const uint8_t *referenceValue);
|
|
|
|
|
|
|
|
|
|
|
|
extern template class CpuWorker<1>;
|
|
|
|
extern template class CpuWorker<2>;
|
|
|
|
extern template class CpuWorker<3>;
|
|
|
|
extern template class CpuWorker<4>;
|
|
|
|
extern template class CpuWorker<5>;
|
|
|
|
|
|
|
|
|
2019-06-13 15:08:52 +00:00
|
|
|
} // namespace xmrig
|
|
|
|
|
|
|
|
|
2019-07-13 15:15:53 +00:00
|
|
|
#endif /* XMRIG_CPUWORKER_H */
|