Browse Source
Merge pull request #8039 from ameerj/core-include
general: Reduce core.h includes
pull/15/merge
Morph
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with
23 additions and
12 deletions
-
src/core/CMakeLists.txt
-
src/core/hle/kernel/k_page_buffer.cpp
-
src/core/hle/kernel/k_page_buffer.h
-
src/core/hle/kernel/k_thread_local_page.cpp
-
src/video_core/fence_manager.h
-
src/video_core/query_cache.h
-
src/video_core/renderer_opengl/gl_state_tracker.h
-
src/video_core/renderer_vulkan/vk_state_tracker.h
|
|
|
@ -209,6 +209,7 @@ add_library(core STATIC |
|
|
|
hle/kernel/k_memory_region.h |
|
|
|
hle/kernel/k_memory_region_type.h |
|
|
|
hle/kernel/k_page_bitmap.h |
|
|
|
hle/kernel/k_page_buffer.cpp |
|
|
|
hle/kernel/k_page_buffer.h |
|
|
|
hle/kernel/k_page_heap.cpp |
|
|
|
hle/kernel/k_page_heap.h |
|
|
|
|
|
|
|
@ -0,0 +1,19 @@ |
|
|
|
// Copyright 2022 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/alignment.h"
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/device_memory.h"
|
|
|
|
#include "core/hle/kernel/k_page_buffer.h"
|
|
|
|
#include "core/hle/kernel/memory_types.h"
|
|
|
|
|
|
|
|
namespace Kernel { |
|
|
|
|
|
|
|
KPageBuffer* KPageBuffer::FromPhysicalAddress(Core::System& system, PAddr phys_addr) { |
|
|
|
ASSERT(Common::IsAligned(phys_addr, PageSize)); |
|
|
|
return reinterpret_cast<KPageBuffer*>(system.DeviceMemory().GetPointer(phys_addr)); |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace Kernel
|
|
|
|
@ -6,12 +6,10 @@ |
|
|
|
|
|
|
|
#include <array> |
|
|
|
|
|
|
|
#include "common/alignment.h" |
|
|
|
#include "common/assert.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
#include "core/core.h" |
|
|
|
#include "core/device_memory.h" |
|
|
|
#include "core/hle/kernel/memory_types.h" |
|
|
|
#include "core/hle/kernel/slab_helpers.h" |
|
|
|
|
|
|
|
namespace Kernel { |
|
|
|
|
|
|
|
@ -19,10 +17,7 @@ class KPageBuffer final : public KSlabAllocated<KPageBuffer> { |
|
|
|
public: |
|
|
|
KPageBuffer() = default; |
|
|
|
|
|
|
|
static KPageBuffer* FromPhysicalAddress(Core::System& system, PAddr phys_addr) { |
|
|
|
ASSERT(Common::IsAligned(phys_addr, PageSize)); |
|
|
|
return reinterpret_cast<KPageBuffer*>(system.DeviceMemory().GetPointer(phys_addr)); |
|
|
|
} |
|
|
|
static KPageBuffer* FromPhysicalAddress(Core::System& system, PAddr phys_addr); |
|
|
|
|
|
|
|
private: |
|
|
|
[[maybe_unused]] alignas(PageSize) std::array<u8, PageSize> m_buffer{}; |
|
|
|
|
|
|
|
@ -3,6 +3,7 @@ |
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/scope_exit.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/hle/kernel/k_memory_block.h"
|
|
|
|
#include "core/hle/kernel/k_page_table.h"
|
|
|
|
#include "core/hle/kernel/k_process.h"
|
|
|
|
|
|
|
|
@ -8,8 +8,6 @@ |
|
|
|
#include <queue> |
|
|
|
|
|
|
|
#include "common/common_types.h" |
|
|
|
#include "common/settings.h" |
|
|
|
#include "core/core.h" |
|
|
|
#include "video_core/delayed_destruction_ring.h" |
|
|
|
#include "video_core/gpu.h" |
|
|
|
#include "video_core/memory_manager.h" |
|
|
|
|
|
|
|
@ -18,7 +18,6 @@ |
|
|
|
|
|
|
|
#include "common/assert.h" |
|
|
|
#include "common/settings.h" |
|
|
|
#include "core/core.h" |
|
|
|
#include "video_core/engines/maxwell_3d.h" |
|
|
|
#include "video_core/gpu.h" |
|
|
|
#include "video_core/memory_manager.h" |
|
|
|
|
|
|
|
@ -9,7 +9,6 @@ |
|
|
|
#include <glad/glad.h> |
|
|
|
|
|
|
|
#include "common/common_types.h" |
|
|
|
#include "core/core.h" |
|
|
|
#include "video_core/dirty_flags.h" |
|
|
|
#include "video_core/engines/maxwell_3d.h" |
|
|
|
|
|
|
|
|
|
|
|
@ -8,7 +8,6 @@ |
|
|
|
#include <limits> |
|
|
|
|
|
|
|
#include "common/common_types.h" |
|
|
|
#include "core/core.h" |
|
|
|
#include "video_core/dirty_flags.h" |
|
|
|
#include "video_core/engines/maxwell_3d.h" |
|
|
|
|
|
|
|
|