2014-04-08 16:15:46 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 16:15:46 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2013-09-05 15:33:46 -07:00
|
|
|
|
2014-04-08 17:15:08 -07:00
|
|
|
#include "common/common_types.h"
|
2013-09-05 15:33:46 -07:00
|
|
|
|
2015-07-09 18:52:15 -07:00
|
|
|
namespace Kernel {
|
|
|
|
class VMManager;
|
|
|
|
}
|
|
|
|
|
2015-01-10 19:56:28 -08:00
|
|
|
namespace Memory {
|
2014-08-28 11:20:55 -07:00
|
|
|
|
2013-09-05 15:33:46 -07:00
|
|
|
void Init();
|
2015-07-09 18:52:15 -07:00
|
|
|
void InitLegacyAddressSpace(Kernel::VMManager& address_space);
|
2013-09-05 15:33:46 -07:00
|
|
|
void Shutdown();
|
|
|
|
|
2014-04-24 19:32:26 -07:00
|
|
|
/**
|
|
|
|
* Maps a block of memory on the heap
|
|
|
|
* @param size Size of block in bytes
|
|
|
|
* @param operation Memory map operation type
|
2014-11-18 05:31:24 -08:00
|
|
|
* @param permissions Memory allocation permissions
|
2014-04-24 19:32:26 -07:00
|
|
|
*/
|
|
|
|
u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions);
|
|
|
|
|
2014-04-17 20:05:31 -07:00
|
|
|
/**
|
|
|
|
* Maps a block of memory on the GSP heap
|
|
|
|
* @param size Size of block in bytes
|
2014-04-24 19:32:26 -07:00
|
|
|
* @param operation Memory map operation type
|
2014-04-17 20:05:31 -07:00
|
|
|
* @param permissions Control memory permissions
|
|
|
|
*/
|
2014-11-22 19:35:45 -08:00
|
|
|
u32 MapBlock_HeapLinear(u32 size, u32 operation, u32 permissions);
|
2014-04-17 20:05:31 -07:00
|
|
|
|
2013-09-05 15:33:46 -07:00
|
|
|
} // namespace
|