#include <new>
#include <cstdint>
#include "virtual_machine.hpp"
#include "jit_compiler.hpp"
#include "allocator.hpp"
#include "dataset.hpp"
Go to the source code of this file.
|
| using | randomx::CompiledVmDefault = CompiledVm<AlignedAllocator<CacheLineSize>, true, false> |
| using | randomx::CompiledVmHardAes = CompiledVm<AlignedAllocator<CacheLineSize>, false, false> |
| using | randomx::CompiledVmLargePage = CompiledVm<LargePageAllocator, true, false> |
| using | randomx::CompiledVmLargePageHardAes = CompiledVm<LargePageAllocator, false, false> |
| using | randomx::CompiledVmDefaultSecure = CompiledVm<AlignedAllocator<CacheLineSize>, true, true> |
| using | randomx::CompiledVmHardAesSecure = CompiledVm<AlignedAllocator<CacheLineSize>, false, true> |
| using | randomx::CompiledVmLargePageSecure = CompiledVm<LargePageAllocator, true, true> |
| using | randomx::CompiledVmLargePageHardAesSecure = CompiledVm<LargePageAllocator, false, true> |