163 lines
4.3 KiB
C++
163 lines
4.3 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2013 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef XENIA_CPU_EXPORT_RESOLVER_H_
|
|
#define XENIA_CPU_EXPORT_RESOLVER_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "xenia/base/math.h"
|
|
#include "xenia/cpu/ppc/ppc_context.h"
|
|
|
|
namespace xe {
|
|
namespace cpu {
|
|
|
|
enum class ExportCategory : uint8_t {
|
|
kNone = 0,
|
|
kAudio,
|
|
kAvatars,
|
|
kContent,
|
|
kDebug,
|
|
kFileSystem,
|
|
kInput,
|
|
kMemory,
|
|
kMisc,
|
|
kModules,
|
|
kNetworking,
|
|
kThreading,
|
|
kUI,
|
|
kUserProfiles,
|
|
kVideo,
|
|
};
|
|
|
|
struct ExportTag {
|
|
typedef uint32_t type;
|
|
|
|
// packed like so:
|
|
// ll...... cccccccc ........ ..bihssi
|
|
|
|
static const int CategoryShift = 16;
|
|
|
|
// Export is implemented in some form and can be used.
|
|
static const type kImplemented = 1u << 0;
|
|
// Export is a stub and is probably bad.
|
|
static const type kStub = 1u << 1;
|
|
// Export is known to cause problems, or may not be complete.
|
|
static const type kSketchy = 1u << 2;
|
|
// Export is called *a lot*.
|
|
static const type kHighFrequency = 1u << 3;
|
|
// Export is important and should always be logged.
|
|
static const type kImportant = 1u << 4;
|
|
// Export blocks the calling thread
|
|
static const type kBlocking = 1u << 5;
|
|
|
|
// Export will be logged on each call.
|
|
static const type kLog = 1u << 30;
|
|
// Export's result will be logged on each call.
|
|
static const type kLogResult = 1u << 31;
|
|
};
|
|
|
|
// DEPRECATED
|
|
typedef void (*xe_kernel_export_shim_fn)(void*, void*);
|
|
|
|
typedef void (*ExportTrampoline)(ppc::PPCContext* ppc_context);
|
|
|
|
class Export {
|
|
public:
|
|
enum class Type {
|
|
kFunction = 0,
|
|
kVariable = 1,
|
|
};
|
|
|
|
Export(uint16_t ordinal, Type type, const char* name,
|
|
ExportTag::type tags = 0)
|
|
: ordinal(ordinal),
|
|
type(type),
|
|
tags(tags),
|
|
function_data({nullptr, nullptr, 0}) {
|
|
std::strncpy(this->name, name, xe::countof(this->name));
|
|
}
|
|
|
|
uint16_t ordinal;
|
|
Type type;
|
|
char name[96];
|
|
ExportTag::type tags;
|
|
|
|
bool is_implemented() const {
|
|
return (tags & ExportTag::kImplemented) == ExportTag::kImplemented;
|
|
}
|
|
|
|
union {
|
|
// Variable data. Only valid when kXEKernelExportFlagVariable is set.
|
|
// This is an address in the client memory space that the variable can
|
|
// be found at.
|
|
uint32_t variable_ptr;
|
|
|
|
struct {
|
|
// DEPRECATED
|
|
xe_kernel_export_shim_fn shim;
|
|
|
|
// Trampoline that is called from the guest-to-host thunk.
|
|
// Expects only PPC context as first arg.
|
|
ExportTrampoline trampoline;
|
|
uint64_t call_count;
|
|
} function_data;
|
|
};
|
|
};
|
|
|
|
class ExportResolver {
|
|
public:
|
|
class Table {
|
|
public:
|
|
Table(const char* module_name, const std::vector<Export*>* exports);
|
|
|
|
const char* module_name() const { return module_name_; }
|
|
const std::vector<Export*>& exports_by_ordinal() const {
|
|
return *exports_by_ordinal_;
|
|
}
|
|
const std::vector<Export*>& exports_by_name() const {
|
|
return exports_by_name_;
|
|
}
|
|
|
|
private:
|
|
char module_name_[32] = {0};
|
|
const std::vector<Export*>* exports_by_ordinal_ = nullptr;
|
|
std::vector<Export*> exports_by_name_;
|
|
};
|
|
|
|
ExportResolver();
|
|
~ExportResolver();
|
|
|
|
void RegisterTable(const char* module_name,
|
|
const std::vector<Export*>* exports);
|
|
const std::vector<Table>& tables() const { return tables_; }
|
|
const std::vector<Export*>& all_exports_by_name() const {
|
|
return all_exports_by_name_;
|
|
}
|
|
|
|
Export* GetExportByOrdinal(const char* module_name, uint16_t ordinal);
|
|
|
|
void SetVariableMapping(const char* module_name, uint16_t ordinal,
|
|
uint32_t value);
|
|
void SetFunctionMapping(const char* module_name, uint16_t ordinal,
|
|
xe_kernel_export_shim_fn shim);
|
|
void SetFunctionMapping(const char* module_name, uint16_t ordinal,
|
|
ExportTrampoline trampoline);
|
|
|
|
private:
|
|
std::vector<Table> tables_;
|
|
std::vector<Export*> all_exports_by_name_;
|
|
};
|
|
|
|
} // namespace cpu
|
|
} // namespace xe
|
|
|
|
#endif // XENIA_CPU_EXPORT_RESOLVER_H_
|