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