summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_accelerated.h
blob: e6c0ea87a6413d772eb2953655c3a014f2ccd6a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <array>
#include <atomic>

#include "common/common_types.h"
#include "video_core/rasterizer_interface.h"

namespace Core::Memory {
class Memory;
}

namespace VideoCore {

/// Implements the shared part in GPU accelerated rasterizers in RasterizerInterface.
class RasterizerAccelerated : public RasterizerInterface {
public:
    explicit RasterizerAccelerated(Core::Memory::Memory& cpu_memory_);
    ~RasterizerAccelerated() override;

    void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) override;

private:
    class CacheEntry final {
    public:
        CacheEntry() = default;

        std::atomic_uint16_t& Count(std::size_t page) {
            return values[page & 3];
        }

        const std::atomic_uint16_t& Count(std::size_t page) const {
            return values[page & 3];
        }

    private:
        std::array<std::atomic_uint16_t, 4> values{};
    };
    static_assert(sizeof(CacheEntry) == 8, "CacheEntry should be 8 bytes!");

    using CachedPages = std::array<CacheEntry, 0x2000000>;
    std::unique_ptr<CachedPages> cached_pages;
    Core::Memory::Memory& cpu_memory;
};

} // namespace VideoCore