xmrig/src/backend/cpu/CpuWorker.h

100 lines
2.9 KiB
C
Raw Normal View History

/* 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>
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
* Copyright 2018 Lee Clagett <https://github.com/vtnerd>
* Copyright 2018-2019 SChernykh <https://github.com/SChernykh>
* Copyright 2016-2019 XMRig <https://github.com/xmrig>, <support@xmrig.com>
*
* 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
#include "backend/common/Worker.h"
2019-07-13 15:15:53 +00:00
#include "backend/common/WorkerJob.h"
#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"
namespace xmrig {
2019-07-10 03:14:33 +00:00
class RxVm;
template<size_t N>
2019-07-13 15:15:53 +00:00
class CpuWorker : public Worker
{
public:
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
protected:
bool selfTest() override;
void start() override;
2017-06-11 03:52:23 +00:00
inline const VirtualMemory *memory() const override { return m_memory; }
2017-06-11 03:52:23 +00:00
private:
inline cn_hash_fun fn(const Algorithm &algorithm) const { return CnHash::fn(algorithm, m_av, m_assembly); }
# ifdef XMRIG_ALGO_RANDOMX
void allocateRandomX_VM();
# endif
bool verify(const Algorithm &algorithm, const uint8_t *referenceValue);
bool verify2(const Algorithm &algorithm, const uint8_t *referenceValue);
void allocateCnCtx();
2017-06-11 03:52:23 +00:00
void consumeJob();
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];
uint8_t m_hash[N * 32];
VirtualMemory *m_memory = nullptr;
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
};
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>;
} // namespace xmrig
2019-07-13 15:15:53 +00:00
#endif /* XMRIG_CPUWORKER_H */