2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:15:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2015-08-06 00:26:52 +00:00
|
|
|
#include <memory>
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/common_types.h"
|
2015-08-06 00:26:52 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
|
|
|
|
2015-07-10 01:52:15 +00:00
|
|
|
namespace Kernel {
|
2015-08-06 00:26:52 +00:00
|
|
|
|
2015-07-10 01:52:15 +00:00
|
|
|
class VMManager;
|
2015-08-06 00:26:52 +00:00
|
|
|
|
|
|
|
struct MemoryRegionInfo {
|
|
|
|
u32 base; // Not an address, but offset from start of FCRAM
|
|
|
|
u32 size;
|
2015-11-27 03:00:16 +00:00
|
|
|
u32 used;
|
2015-08-06 00:26:52 +00:00
|
|
|
|
|
|
|
std::shared_ptr<std::vector<u8>> linear_heap_memory;
|
|
|
|
};
|
|
|
|
|
|
|
|
void MemoryInit(u32 mem_type);
|
|
|
|
void MemoryShutdown();
|
|
|
|
MemoryRegionInfo* GetMemoryRegion(MemoryRegion region);
|
2015-07-10 01:52:15 +00:00
|
|
|
|
2017-05-06 06:11:06 +00:00
|
|
|
void HandleSpecialMapping(VMManager& address_space, const AddressMapping& mapping);
|
|
|
|
void MapSharedPages(VMManager& address_space);
|
2017-07-22 03:22:59 +00:00
|
|
|
|
|
|
|
extern MemoryRegionInfo memory_regions[3];
|
2017-05-06 06:11:06 +00:00
|
|
|
} // namespace Kernel
|