Files
eden/src/core/loader/nso.h
T

52 lines
1.4 KiB
C++
Raw Normal View History

// Copyright 2018 yuzu emulator team
2017-09-24 11:08:31 -04:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <optional>
2017-09-24 11:08:31 -04:00
#include "common/common_types.h"
#include "common/swap.h"
#include "core/file_sys/patch_manager.h"
2017-09-24 11:08:31 -04:00
#include "core/loader/loader.h"
namespace Kernel {
class Process;
}
2017-09-24 11:08:31 -04:00
namespace Loader {
constexpr u64 NSO_ARGUMENT_DATA_ALLOCATION_SIZE = 0x9000;
struct NSOArgumentHeader {
u32_le allocated_size;
u32_le actual_size;
INSERT_PADDING_BYTES(0x18);
};
static_assert(sizeof(NSOArgumentHeader) == 0x20, "NSOArgumentHeader has incorrect size.");
2017-09-24 11:08:31 -04:00
/// Loads an NSO file
class AppLoader_NSO final : public AppLoader {
2017-09-24 11:08:31 -04:00
public:
explicit AppLoader_NSO(FileSys::VirtualFile file);
2017-09-24 11:08:31 -04:00
/**
* Returns the type of the file
* @param file std::shared_ptr<VfsFile> open file
2017-09-24 11:08:31 -04:00
* @return FileType found, or FileType::Error if this loader doesn't know it
*/
static FileType IdentifyType(const FileSys::VirtualFile& file);
2017-09-24 11:08:31 -04:00
FileType GetFileType() const override {
return IdentifyType(file);
2017-09-24 11:08:31 -04:00
}
static std::optional<VAddr> LoadModule(Kernel::Process& process, const FileSys::VfsFile& file,
VAddr load_base, bool should_pass_arguments,
std::optional<FileSys::PatchManager> pm = {});
ResultStatus Load(Kernel::Process& process) override;
2017-09-24 11:08:31 -04:00
};
} // namespace Loader