808 lines
30 KiB
C++
808 lines
30 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. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#include "xenia/cpu/xex_module.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include "xenia/base/byte_order.h"
|
|
#include "xenia/base/logging.h"
|
|
#include "xenia/base/math.h"
|
|
#include "xenia/base/memory.h"
|
|
#include "xenia/cpu/cpu_flags.h"
|
|
#include "xenia/cpu/export_resolver.h"
|
|
#include "xenia/cpu/processor.h"
|
|
#include "xenia/kernel/kernel_state.h"
|
|
#include "xenia/kernel/objects/xmodule.h"
|
|
|
|
#include "third_party/crypto/rijndael-alg-fst.h"
|
|
|
|
namespace xe {
|
|
namespace cpu {
|
|
|
|
using namespace xe::cpu;
|
|
using namespace xe::kernel;
|
|
|
|
using PPCContext = xe::cpu::frontend::PPCContext;
|
|
|
|
void UndefinedImport(PPCContext* ppc_context,
|
|
kernel::KernelState* kernel_state) {
|
|
XELOGE("call to undefined import");
|
|
}
|
|
|
|
XexModule::XexModule(Processor* processor, KernelState* kernel_state)
|
|
: Module(processor),
|
|
processor_(processor),
|
|
kernel_state_(kernel_state),
|
|
xex_(nullptr),
|
|
xex_header_(nullptr),
|
|
base_address_(0),
|
|
low_address_(0),
|
|
high_address_(0) {}
|
|
|
|
XexModule::~XexModule() {
|
|
xe_xex2_dealloc(xex_);
|
|
|
|
if (xex_header_) {
|
|
delete[] xex_header_;
|
|
xex_header_ = nullptr;
|
|
}
|
|
}
|
|
|
|
bool XexModule::GetOptHeader(const xex2_header* header, xe_xex2_header_keys key,
|
|
void** out_ptr) {
|
|
assert_not_null(header);
|
|
assert_not_null(out_ptr);
|
|
|
|
for (uint32_t i = 0; i < header->header_count; i++) {
|
|
const xex2_opt_header& opt_header = header->headers[i];
|
|
if (opt_header.key == key) {
|
|
// Match!
|
|
switch (key & 0xFF) {
|
|
case 0x00: {
|
|
// We just return the value of the optional header.
|
|
// Assume that the output pointer points to a uint32_t.
|
|
*(uint32_t*)out_ptr = (uint32_t)opt_header.value;
|
|
} break;
|
|
case 0x01: {
|
|
// Pointer to the value on the optional header.
|
|
*out_ptr = (void*)&opt_header.value;
|
|
} break;
|
|
default: {
|
|
// Pointer to the header.
|
|
*out_ptr = (void*)((uint8_t*)header + opt_header.offset);
|
|
} break;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool XexModule::GetOptHeader(xe_xex2_header_keys key, void** out_ptr) const {
|
|
return XexModule::GetOptHeader(xex_header_, key, out_ptr);
|
|
}
|
|
|
|
const xex2_security_info* XexModule::GetSecurityInfo(
|
|
const xex2_header* header) {
|
|
return reinterpret_cast<const xex2_security_info*>((uint8_t*)header +
|
|
header->security_offset);
|
|
}
|
|
|
|
uint32_t XexModule::GetProcAddress(uint16_t ordinal) const {
|
|
// First: Check the xex2 export table.
|
|
if (xex_security_info()->export_table) {
|
|
auto export_table = memory()->TranslateVirtual<const xex2_export_table*>(
|
|
xex_security_info()->export_table);
|
|
|
|
if (ordinal > export_table->count) {
|
|
XELOGE("GetProcAddress(%.3X): ordinal out of bounds", ordinal);
|
|
return 0;
|
|
}
|
|
|
|
uint32_t num = ordinal - export_table->base;
|
|
uint32_t ordinal_offset = export_table->ordOffset[num];
|
|
ordinal_offset += export_table->imagebaseaddr << 16;
|
|
return ordinal_offset;
|
|
}
|
|
|
|
// Second: Check the PE exports.
|
|
xe::be<uint32_t>* exe_address = nullptr;
|
|
GetOptHeader(XEX_HEADER_IMAGE_BASE_ADDRESS, &exe_address);
|
|
assert_not_null(exe_address);
|
|
|
|
xex2_opt_data_directory* pe_export_directory = 0;
|
|
if (GetOptHeader(XEX_HEADER_EXPORTS_BY_NAME, &pe_export_directory)) {
|
|
auto e = memory()->TranslateVirtual<const X_IMAGE_EXPORT_DIRECTORY*>(
|
|
*exe_address + pe_export_directory->offset);
|
|
assert_not_null(e);
|
|
|
|
uint32_t* function_table = (uint32_t*)((uint8_t*)e + e->AddressOfFunctions);
|
|
|
|
if (ordinal < e->NumberOfFunctions) {
|
|
return xex_security_info()->load_address + function_table[ordinal];
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
uint32_t XexModule::GetProcAddress(const char* name) const {
|
|
xe::be<uint32_t>* exe_address = nullptr;
|
|
GetOptHeader(XEX_HEADER_IMAGE_BASE_ADDRESS, &exe_address);
|
|
assert_not_null(exe_address);
|
|
|
|
xex2_opt_data_directory* pe_export_directory = 0;
|
|
if (!GetOptHeader(XEX_HEADER_EXPORTS_BY_NAME, &pe_export_directory)) {
|
|
// No exports by name.
|
|
return 0;
|
|
}
|
|
|
|
auto e = memory()->TranslateVirtual<const X_IMAGE_EXPORT_DIRECTORY*>(
|
|
*exe_address + pe_export_directory->offset);
|
|
assert_not_null(e);
|
|
|
|
// e->AddressOfX RVAs are relative to the IMAGE_EXPORT_DIRECTORY!
|
|
uint32_t* function_table = (uint32_t*)((uint64_t)e + e->AddressOfFunctions);
|
|
|
|
// Names relative to directory
|
|
uint32_t* name_table = (uint32_t*)((uint64_t)e + e->AddressOfNames);
|
|
|
|
// Table of ordinals (by name)
|
|
uint16_t* ordinal_table = (uint16_t*)((uint64_t)e + e->AddressOfNameOrdinals);
|
|
|
|
const char* mod_name = (const char*)((uint64_t)e + e->Name);
|
|
|
|
for (uint32_t i = 0; i < e->NumberOfNames; i++) {
|
|
const char* fn_name = (const char*)((uint64_t)e + name_table[i]);
|
|
uint16_t ordinal = ordinal_table[i];
|
|
uint32_t addr = *exe_address + function_table[ordinal];
|
|
|
|
if (!strcmp(name, fn_name)) {
|
|
// We have a match!
|
|
return addr;
|
|
}
|
|
}
|
|
|
|
// No match
|
|
return 0;
|
|
}
|
|
|
|
bool XexModule::ApplyPatch(XexModule* module) {
|
|
auto header = reinterpret_cast<const xex2_header*>(module->xex_header());
|
|
if (!(header->module_flags &
|
|
(XEX_MODULE_MODULE_PATCH | XEX_MODULE_PATCH_DELTA |
|
|
XEX_MODULE_PATCH_FULL))) {
|
|
// This isn't a XEX2 patch.
|
|
return false;
|
|
}
|
|
|
|
// Grab the delta descriptor and get to work.
|
|
xex2_opt_delta_patch_descriptor* patch_header = nullptr;
|
|
GetOptHeader(header, XEX_HEADER_DELTA_PATCH_DESCRIPTOR,
|
|
(void**)&patch_header);
|
|
assert_not_null(patch_header);
|
|
|
|
// TODO!
|
|
|
|
return true;
|
|
}
|
|
|
|
bool XexModule::Load(const std::string& name, const std::string& path,
|
|
const void* xex_addr, size_t xex_length) {
|
|
// TODO: Move loading code here
|
|
xex_ = xe_xex2_load(memory(), xex_addr, xex_length, {0});
|
|
if (!xex_) {
|
|
return false;
|
|
}
|
|
|
|
// Make a copy of the xex header.
|
|
auto src_header = reinterpret_cast<const xex2_header*>(xex_addr);
|
|
xex_header_ = (xex2_header*)new char[src_header->header_size];
|
|
|
|
std::memcpy(xex_header_, src_header, src_header->header_size);
|
|
|
|
return Load(name, path, xex_);
|
|
}
|
|
|
|
bool XexModule::Load(const std::string& name, const std::string& path,
|
|
xe_xex2_ref xex) {
|
|
xex_ = xex;
|
|
auto header = xex_header_;
|
|
auto old_header = xe_xex2_get_header(xex_);
|
|
|
|
// Setup debug info.
|
|
name_ = std::string(name);
|
|
path_ = std::string(path);
|
|
// TODO(benvanik): debug info
|
|
|
|
// Scan and find the low/high addresses.
|
|
// All code sections are continuous, so this should be easy.
|
|
// TODO: Use the new xex header to do this.
|
|
low_address_ = UINT_MAX;
|
|
high_address_ = 0;
|
|
for (uint32_t n = 0, i = 0; n < old_header->section_count; n++) {
|
|
const xe_xex2_section_t* section = &old_header->sections[n];
|
|
const uint32_t start_address =
|
|
old_header->exe_address + (i * section->page_size);
|
|
const uint32_t end_address =
|
|
start_address + (section->info.page_count * section->page_size);
|
|
if (section->info.type == XEX_SECTION_CODE) {
|
|
low_address_ = std::min(low_address_, start_address);
|
|
high_address_ = std::max(high_address_, end_address);
|
|
}
|
|
i += section->info.page_count;
|
|
}
|
|
|
|
// Notify backend that we have an executable range.
|
|
processor_->backend()->CommitExecutableRange(low_address_, high_address_);
|
|
|
|
// Add all imports (variables/functions).
|
|
xex2_opt_import_libraries* opt_import_header = nullptr;
|
|
GetOptHeader(XEX_HEADER_IMPORT_LIBRARIES, &opt_import_header);
|
|
assert_not_null(opt_import_header);
|
|
|
|
// FIXME: Don't know if 32 is the actual limit, but haven't seen more than 2.
|
|
const char* string_table[32];
|
|
std::memset(string_table, 0, sizeof(string_table));
|
|
|
|
// Parse the string table
|
|
for (size_t i = 0, j = 0; i < opt_import_header->string_table_size; j++) {
|
|
assert_true(j < xe::countof(string_table));
|
|
const char* str = opt_import_header->string_table + i;
|
|
|
|
string_table[j] = str;
|
|
i += std::strlen(str) + 1;
|
|
|
|
// Padding
|
|
if ((i % 4) != 0) {
|
|
i += 4 - (i % 4);
|
|
}
|
|
}
|
|
|
|
auto libraries =
|
|
(uint8_t*)opt_import_header + opt_import_header->string_table_size + 12;
|
|
uint32_t library_offset = 0;
|
|
for (uint32_t i = 0; i < opt_import_header->library_count; i++) {
|
|
auto library = reinterpret_cast<xex2_import_library*>((uint8_t*)libraries +
|
|
library_offset);
|
|
SetupLibraryImports(string_table[library->name_index], library);
|
|
|
|
library_offset += library->size;
|
|
}
|
|
|
|
// Find __savegprlr_* and __restgprlr_* and the others.
|
|
// We can flag these for special handling (inlining/etc).
|
|
if (!FindSaveRest()) {
|
|
return false;
|
|
}
|
|
|
|
// Load a specified module map and diff.
|
|
if (FLAGS_load_module_map.size()) {
|
|
if (!ReadMap(FLAGS_load_module_map.c_str())) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool XexModule::Unload() {
|
|
// Just deallocate the memory occupied by the exe
|
|
xe::be<uint32_t>* exe_address = 0;
|
|
GetOptHeader(XEX_HEADER_IMAGE_BASE_ADDRESS, &exe_address);
|
|
assert_not_zero(exe_address);
|
|
|
|
memory()->LookupHeap(*exe_address)->Release(*exe_address);
|
|
|
|
assert_not_null(xex_header_); // Unloading a module that wasn't loaded?
|
|
delete[] xex_header_;
|
|
xex_header_ = nullptr;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool XexModule::SetupLibraryImports(const char* name,
|
|
const xex2_import_library* library) {
|
|
ExportResolver* kernel_resolver = nullptr;
|
|
if (kernel_state_->IsKernelModule(name)) {
|
|
kernel_resolver = processor_->export_resolver();
|
|
}
|
|
|
|
auto user_module = kernel_state_->GetModule(name);
|
|
|
|
std::string libbasename = name;
|
|
auto dot = libbasename.find_last_of('.');
|
|
if (dot != libbasename.npos) {
|
|
libbasename = libbasename.substr(0, dot);
|
|
}
|
|
|
|
// Imports are stored as {import descriptor, thunk addr, import desc, ...}
|
|
// Even thunks have an import descriptor (albeit unused/useless)
|
|
for (uint32_t i = 0; i < library->count; i++) {
|
|
uint32_t record_addr = library->import_table[i];
|
|
assert_not_zero(record_addr);
|
|
|
|
auto record_slot =
|
|
memory()->TranslateVirtual<xe::be<uint32_t>*>(record_addr);
|
|
uint32_t record_value = *record_slot;
|
|
|
|
uint16_t record_type = (record_value & 0xFF000000) >> 24;
|
|
uint16_t ordinal = record_value & 0xFFFF;
|
|
|
|
Export* kernel_export = nullptr;
|
|
uint32_t user_export_addr = 0;
|
|
|
|
if (kernel_resolver) {
|
|
kernel_export = kernel_resolver->GetExportByOrdinal(name, ordinal);
|
|
} else {
|
|
user_export_addr = user_module->GetProcAddressByOrdinal(ordinal);
|
|
}
|
|
|
|
// Import not resolved?
|
|
assert_not_zero(kernel_export || user_export_addr);
|
|
if (!kernel_export && !user_export_addr) {
|
|
XELOGW(
|
|
"WARNING: an import variable was not resolved! (library: %s, import "
|
|
"lib: %s, ordinal: %.3X)",
|
|
name_.c_str(), name, ordinal);
|
|
}
|
|
|
|
StringBuffer import_name;
|
|
if (record_type == 0) {
|
|
// Variable.
|
|
import_name.AppendFormat("__imp__");
|
|
if (kernel_export) {
|
|
import_name.AppendFormat("%s", kernel_export->name);
|
|
} else if (user_export_addr) {
|
|
import_name.AppendFormat("%s_%.3X", libbasename.c_str(), ordinal);
|
|
}
|
|
|
|
if (kernel_export) {
|
|
if (kernel_export->type == Export::Type::kFunction) {
|
|
// Not exactly sure what this should be...
|
|
// Appears to be ignored.
|
|
*record_slot = 0xDEADC0DE;
|
|
} else if (kernel_export->type == Export::Type::kVariable) {
|
|
// Kernel import variable
|
|
if (kernel_export->is_implemented()) {
|
|
// Implemented - replace with pointer.
|
|
*record_slot = kernel_export->variable_ptr;
|
|
} else {
|
|
// Not implemented - write with a dummy value.
|
|
*record_slot = 0xD000BEEF | (kernel_export->ordinal & 0xFFF) << 16;
|
|
XELOGCPU("WARNING: imported a variable with no value: %s",
|
|
kernel_export->name);
|
|
}
|
|
}
|
|
} else if (user_export_addr) {
|
|
*record_slot = user_export_addr;
|
|
} else {
|
|
*record_slot = 0xF00DF00D;
|
|
}
|
|
|
|
// Setup a variable and define it.
|
|
VariableInfo* var_info;
|
|
DeclareVariable(record_addr, &var_info);
|
|
var_info->set_name(import_name.GetString());
|
|
var_info->set_status(SymbolStatus::kDeclared);
|
|
DefineVariable(var_info);
|
|
var_info->set_status(SymbolStatus::kDefined);
|
|
} else if (record_type == 1) {
|
|
// Thunk.
|
|
if (kernel_export) {
|
|
import_name.AppendFormat("%s", kernel_export->name);
|
|
} else if (user_export_addr) {
|
|
import_name.AppendFormat("__%s_%.3X", libbasename.c_str(), ordinal);
|
|
}
|
|
|
|
FunctionInfo* fn_info;
|
|
DeclareFunction(record_addr, &fn_info);
|
|
fn_info->set_end_address(record_addr + 16 - 4);
|
|
fn_info->set_name(import_name.GetString());
|
|
|
|
if (kernel_export) {
|
|
// On load we have something like this in memory:
|
|
// li r3, 0
|
|
// li r4, 0x1F5
|
|
// mtspr CTR, r11
|
|
// bctr
|
|
// Real consoles rewrite this with some code that sets r11.
|
|
// If we did that we'd still have to put a thunk somewhere and do the
|
|
// dynamic lookup. Instead, we rewrite it to use syscalls, as they
|
|
// aren't used on the 360. CPU backends can either take the syscall
|
|
// or do something smarter.
|
|
// sc
|
|
// blr
|
|
// nop
|
|
// nop
|
|
uint8_t* p = memory()->TranslateVirtual(record_addr);
|
|
xe::store_and_swap<uint32_t>(p + 0x0, 0x44000002);
|
|
xe::store_and_swap<uint32_t>(p + 0x4, 0x4E800020);
|
|
xe::store_and_swap<uint32_t>(p + 0x8, 0x60000000);
|
|
xe::store_and_swap<uint32_t>(p + 0xC, 0x60000000);
|
|
|
|
FunctionInfo::ExternHandler handler = 0;
|
|
if (kernel_export) {
|
|
if (kernel_export->function_data.trampoline) {
|
|
handler = (FunctionInfo::ExternHandler)
|
|
kernel_export->function_data.trampoline;
|
|
} else {
|
|
handler =
|
|
(FunctionInfo::ExternHandler)kernel_export->function_data.shim;
|
|
}
|
|
} else {
|
|
XELOGW("WARNING: Imported kernel function %s is unimplemented!",
|
|
import_name.GetString());
|
|
handler = UndefinedImport;
|
|
}
|
|
|
|
fn_info->SetupExtern(handler);
|
|
} else if (user_export_addr) {
|
|
// Rewrite PPC code to set r11 to the target address
|
|
// So we'll have:
|
|
// lis r11, user_export_addr
|
|
// ori r11, r11, user_export_addr
|
|
// mtspr CTR, r11
|
|
// bctr
|
|
uint16_t hi_addr = (user_export_addr >> 16) & 0xFFFF;
|
|
uint16_t low_addr = user_export_addr & 0xFFFF;
|
|
|
|
uint8_t* p = memory()->TranslateVirtual(record_addr);
|
|
xe::store_and_swap<uint32_t>(p + 0x0, 0x3D600000 | hi_addr);
|
|
xe::store_and_swap<uint32_t>(p + 0x4, 0x616B0000 | low_addr);
|
|
} else {
|
|
// Import not resolved.
|
|
// We're gonna rewrite the PPC to trigger a debug trap:
|
|
// trap
|
|
// blr
|
|
// nop
|
|
// nop
|
|
uint8_t* p = memory()->TranslateVirtual(record_addr);
|
|
xe::store_and_swap<uint32_t>(p + 0x0, 0x7FE00008);
|
|
xe::store_and_swap<uint32_t>(p + 0x4, 0x4E800020);
|
|
xe::store_and_swap<uint32_t>(p + 0x8, 0x60000000);
|
|
xe::store_and_swap<uint32_t>(p + 0xC, 0x60000000);
|
|
}
|
|
|
|
fn_info->set_status(SymbolStatus::kDeclared);
|
|
} else {
|
|
// Bad.
|
|
assert_always();
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool XexModule::ContainsAddress(uint32_t address) {
|
|
return address >= low_address_ && address < high_address_;
|
|
}
|
|
|
|
bool XexModule::FindSaveRest() {
|
|
// Special stack save/restore functions.
|
|
// http://research.microsoft.com/en-us/um/redmond/projects/invisible/src/crt/md/ppc/xxx.s.htm
|
|
// It'd be nice to stash these away and mark them as such to allow for
|
|
// special codegen.
|
|
// __savegprlr_14 to __savegprlr_31
|
|
// __restgprlr_14 to __restgprlr_31
|
|
static const uint32_t gprlr_code_values[] = {
|
|
0x68FFC1F9, // __savegprlr_14
|
|
0x70FFE1F9, // __savegprlr_15
|
|
0x78FF01FA, // __savegprlr_16
|
|
0x80FF21FA, // __savegprlr_17
|
|
0x88FF41FA, // __savegprlr_18
|
|
0x90FF61FA, // __savegprlr_19
|
|
0x98FF81FA, // __savegprlr_20
|
|
0xA0FFA1FA, // __savegprlr_21
|
|
0xA8FFC1FA, // __savegprlr_22
|
|
0xB0FFE1FA, // __savegprlr_23
|
|
0xB8FF01FB, // __savegprlr_24
|
|
0xC0FF21FB, // __savegprlr_25
|
|
0xC8FF41FB, // __savegprlr_26
|
|
0xD0FF61FB, // __savegprlr_27
|
|
0xD8FF81FB, // __savegprlr_28
|
|
0xE0FFA1FB, // __savegprlr_29
|
|
0xE8FFC1FB, // __savegprlr_30
|
|
0xF0FFE1FB, // __savegprlr_31
|
|
0xF8FF8191, 0x2000804E,
|
|
0x68FFC1E9, // __restgprlr_14
|
|
0x70FFE1E9, // __restgprlr_15
|
|
0x78FF01EA, // __restgprlr_16
|
|
0x80FF21EA, // __restgprlr_17
|
|
0x88FF41EA, // __restgprlr_18
|
|
0x90FF61EA, // __restgprlr_19
|
|
0x98FF81EA, // __restgprlr_20
|
|
0xA0FFA1EA, // __restgprlr_21
|
|
0xA8FFC1EA, // __restgprlr_22
|
|
0xB0FFE1EA, // __restgprlr_23
|
|
0xB8FF01EB, // __restgprlr_24
|
|
0xC0FF21EB, // __restgprlr_25
|
|
0xC8FF41EB, // __restgprlr_26
|
|
0xD0FF61EB, // __restgprlr_27
|
|
0xD8FF81EB, // __restgprlr_28
|
|
0xE0FFA1EB, // __restgprlr_29
|
|
0xE8FFC1EB, // __restgprlr_30
|
|
0xF0FFE1EB, // __restgprlr_31
|
|
0xF8FF8181, 0xA603887D, 0x2000804E,
|
|
};
|
|
// __savefpr_14 to __savefpr_31
|
|
// __restfpr_14 to __restfpr_31
|
|
static const uint32_t fpr_code_values[] = {
|
|
0x70FFCCD9, // __savefpr_14
|
|
0x78FFECD9, // __savefpr_15
|
|
0x80FF0CDA, // __savefpr_16
|
|
0x88FF2CDA, // __savefpr_17
|
|
0x90FF4CDA, // __savefpr_18
|
|
0x98FF6CDA, // __savefpr_19
|
|
0xA0FF8CDA, // __savefpr_20
|
|
0xA8FFACDA, // __savefpr_21
|
|
0xB0FFCCDA, // __savefpr_22
|
|
0xB8FFECDA, // __savefpr_23
|
|
0xC0FF0CDB, // __savefpr_24
|
|
0xC8FF2CDB, // __savefpr_25
|
|
0xD0FF4CDB, // __savefpr_26
|
|
0xD8FF6CDB, // __savefpr_27
|
|
0xE0FF8CDB, // __savefpr_28
|
|
0xE8FFACDB, // __savefpr_29
|
|
0xF0FFCCDB, // __savefpr_30
|
|
0xF8FFECDB, // __savefpr_31
|
|
0x2000804E,
|
|
0x70FFCCC9, // __restfpr_14
|
|
0x78FFECC9, // __restfpr_15
|
|
0x80FF0CCA, // __restfpr_16
|
|
0x88FF2CCA, // __restfpr_17
|
|
0x90FF4CCA, // __restfpr_18
|
|
0x98FF6CCA, // __restfpr_19
|
|
0xA0FF8CCA, // __restfpr_20
|
|
0xA8FFACCA, // __restfpr_21
|
|
0xB0FFCCCA, // __restfpr_22
|
|
0xB8FFECCA, // __restfpr_23
|
|
0xC0FF0CCB, // __restfpr_24
|
|
0xC8FF2CCB, // __restfpr_25
|
|
0xD0FF4CCB, // __restfpr_26
|
|
0xD8FF6CCB, // __restfpr_27
|
|
0xE0FF8CCB, // __restfpr_28
|
|
0xE8FFACCB, // __restfpr_29
|
|
0xF0FFCCCB, // __restfpr_30
|
|
0xF8FFECCB, // __restfpr_31
|
|
0x2000804E,
|
|
};
|
|
// __savevmx_14 to __savevmx_31
|
|
// __savevmx_64 to __savevmx_127
|
|
// __restvmx_14 to __restvmx_31
|
|
// __restvmx_64 to __restvmx_127
|
|
static const uint32_t vmx_code_values[] = {
|
|
0xE0FE6039, // __savevmx_14
|
|
0xCE61CB7D, 0xF0FE6039, 0xCE61EB7D, 0x00FF6039, 0xCE610B7E, 0x10FF6039,
|
|
0xCE612B7E, 0x20FF6039, 0xCE614B7E, 0x30FF6039, 0xCE616B7E, 0x40FF6039,
|
|
0xCE618B7E, 0x50FF6039, 0xCE61AB7E, 0x60FF6039, 0xCE61CB7E, 0x70FF6039,
|
|
0xCE61EB7E, 0x80FF6039, 0xCE610B7F, 0x90FF6039, 0xCE612B7F, 0xA0FF6039,
|
|
0xCE614B7F, 0xB0FF6039, 0xCE616B7F, 0xC0FF6039, 0xCE618B7F, 0xD0FF6039,
|
|
0xCE61AB7F, 0xE0FF6039, 0xCE61CB7F, 0xF0FF6039, // __savevmx_31
|
|
0xCE61EB7F, 0x2000804E,
|
|
|
|
0x00FC6039, // __savevmx_64
|
|
0xCB610B10, 0x10FC6039, 0xCB612B10, 0x20FC6039, 0xCB614B10, 0x30FC6039,
|
|
0xCB616B10, 0x40FC6039, 0xCB618B10, 0x50FC6039, 0xCB61AB10, 0x60FC6039,
|
|
0xCB61CB10, 0x70FC6039, 0xCB61EB10, 0x80FC6039, 0xCB610B11, 0x90FC6039,
|
|
0xCB612B11, 0xA0FC6039, 0xCB614B11, 0xB0FC6039, 0xCB616B11, 0xC0FC6039,
|
|
0xCB618B11, 0xD0FC6039, 0xCB61AB11, 0xE0FC6039, 0xCB61CB11, 0xF0FC6039,
|
|
0xCB61EB11, 0x00FD6039, 0xCB610B12, 0x10FD6039, 0xCB612B12, 0x20FD6039,
|
|
0xCB614B12, 0x30FD6039, 0xCB616B12, 0x40FD6039, 0xCB618B12, 0x50FD6039,
|
|
0xCB61AB12, 0x60FD6039, 0xCB61CB12, 0x70FD6039, 0xCB61EB12, 0x80FD6039,
|
|
0xCB610B13, 0x90FD6039, 0xCB612B13, 0xA0FD6039, 0xCB614B13, 0xB0FD6039,
|
|
0xCB616B13, 0xC0FD6039, 0xCB618B13, 0xD0FD6039, 0xCB61AB13, 0xE0FD6039,
|
|
0xCB61CB13, 0xF0FD6039, 0xCB61EB13, 0x00FE6039, 0xCF610B10, 0x10FE6039,
|
|
0xCF612B10, 0x20FE6039, 0xCF614B10, 0x30FE6039, 0xCF616B10, 0x40FE6039,
|
|
0xCF618B10, 0x50FE6039, 0xCF61AB10, 0x60FE6039, 0xCF61CB10, 0x70FE6039,
|
|
0xCF61EB10, 0x80FE6039, 0xCF610B11, 0x90FE6039, 0xCF612B11, 0xA0FE6039,
|
|
0xCF614B11, 0xB0FE6039, 0xCF616B11, 0xC0FE6039, 0xCF618B11, 0xD0FE6039,
|
|
0xCF61AB11, 0xE0FE6039, 0xCF61CB11, 0xF0FE6039, 0xCF61EB11, 0x00FF6039,
|
|
0xCF610B12, 0x10FF6039, 0xCF612B12, 0x20FF6039, 0xCF614B12, 0x30FF6039,
|
|
0xCF616B12, 0x40FF6039, 0xCF618B12, 0x50FF6039, 0xCF61AB12, 0x60FF6039,
|
|
0xCF61CB12, 0x70FF6039, 0xCF61EB12, 0x80FF6039, 0xCF610B13, 0x90FF6039,
|
|
0xCF612B13, 0xA0FF6039, 0xCF614B13, 0xB0FF6039, 0xCF616B13, 0xC0FF6039,
|
|
0xCF618B13, 0xD0FF6039, 0xCF61AB13, 0xE0FF6039, 0xCF61CB13,
|
|
0xF0FF6039, // __savevmx_127
|
|
0xCF61EB13, 0x2000804E,
|
|
|
|
0xE0FE6039, // __restvmx_14
|
|
0xCE60CB7D, 0xF0FE6039, 0xCE60EB7D, 0x00FF6039, 0xCE600B7E, 0x10FF6039,
|
|
0xCE602B7E, 0x20FF6039, 0xCE604B7E, 0x30FF6039, 0xCE606B7E, 0x40FF6039,
|
|
0xCE608B7E, 0x50FF6039, 0xCE60AB7E, 0x60FF6039, 0xCE60CB7E, 0x70FF6039,
|
|
0xCE60EB7E, 0x80FF6039, 0xCE600B7F, 0x90FF6039, 0xCE602B7F, 0xA0FF6039,
|
|
0xCE604B7F, 0xB0FF6039, 0xCE606B7F, 0xC0FF6039, 0xCE608B7F, 0xD0FF6039,
|
|
0xCE60AB7F, 0xE0FF6039, 0xCE60CB7F, 0xF0FF6039, // __restvmx_31
|
|
0xCE60EB7F, 0x2000804E,
|
|
|
|
0x00FC6039, // __restvmx_64
|
|
0xCB600B10, 0x10FC6039, 0xCB602B10, 0x20FC6039, 0xCB604B10, 0x30FC6039,
|
|
0xCB606B10, 0x40FC6039, 0xCB608B10, 0x50FC6039, 0xCB60AB10, 0x60FC6039,
|
|
0xCB60CB10, 0x70FC6039, 0xCB60EB10, 0x80FC6039, 0xCB600B11, 0x90FC6039,
|
|
0xCB602B11, 0xA0FC6039, 0xCB604B11, 0xB0FC6039, 0xCB606B11, 0xC0FC6039,
|
|
0xCB608B11, 0xD0FC6039, 0xCB60AB11, 0xE0FC6039, 0xCB60CB11, 0xF0FC6039,
|
|
0xCB60EB11, 0x00FD6039, 0xCB600B12, 0x10FD6039, 0xCB602B12, 0x20FD6039,
|
|
0xCB604B12, 0x30FD6039, 0xCB606B12, 0x40FD6039, 0xCB608B12, 0x50FD6039,
|
|
0xCB60AB12, 0x60FD6039, 0xCB60CB12, 0x70FD6039, 0xCB60EB12, 0x80FD6039,
|
|
0xCB600B13, 0x90FD6039, 0xCB602B13, 0xA0FD6039, 0xCB604B13, 0xB0FD6039,
|
|
0xCB606B13, 0xC0FD6039, 0xCB608B13, 0xD0FD6039, 0xCB60AB13, 0xE0FD6039,
|
|
0xCB60CB13, 0xF0FD6039, 0xCB60EB13, 0x00FE6039, 0xCF600B10, 0x10FE6039,
|
|
0xCF602B10, 0x20FE6039, 0xCF604B10, 0x30FE6039, 0xCF606B10, 0x40FE6039,
|
|
0xCF608B10, 0x50FE6039, 0xCF60AB10, 0x60FE6039, 0xCF60CB10, 0x70FE6039,
|
|
0xCF60EB10, 0x80FE6039, 0xCF600B11, 0x90FE6039, 0xCF602B11, 0xA0FE6039,
|
|
0xCF604B11, 0xB0FE6039, 0xCF606B11, 0xC0FE6039, 0xCF608B11, 0xD0FE6039,
|
|
0xCF60AB11, 0xE0FE6039, 0xCF60CB11, 0xF0FE6039, 0xCF60EB11, 0x00FF6039,
|
|
0xCF600B12, 0x10FF6039, 0xCF602B12, 0x20FF6039, 0xCF604B12, 0x30FF6039,
|
|
0xCF606B12, 0x40FF6039, 0xCF608B12, 0x50FF6039, 0xCF60AB12, 0x60FF6039,
|
|
0xCF60CB12, 0x70FF6039, 0xCF60EB12, 0x80FF6039, 0xCF600B13, 0x90FF6039,
|
|
0xCF602B13, 0xA0FF6039, 0xCF604B13, 0xB0FF6039, 0xCF606B13, 0xC0FF6039,
|
|
0xCF608B13, 0xD0FF6039, 0xCF60AB13, 0xE0FF6039, 0xCF60CB13,
|
|
0xF0FF6039, // __restvmx_127
|
|
0xCF60EB13, 0x2000804E,
|
|
};
|
|
|
|
// TODO(benvanik): these are almost always sequential, if present.
|
|
// It'd be smarter to search around the other ones to prevent
|
|
// 3 full module scans.
|
|
uint32_t gplr_start = 0;
|
|
uint32_t fpr_start = 0;
|
|
uint32_t vmx_start = 0;
|
|
const xe_xex2_header_t* header = xe_xex2_get_header(xex_);
|
|
for (uint32_t n = 0, i = 0; n < header->section_count; n++) {
|
|
const xe_xex2_section_t* section = &header->sections[n];
|
|
const uint32_t start_address =
|
|
header->exe_address + (i * section->page_size);
|
|
const uint32_t end_address =
|
|
start_address + (section->info.page_count * section->page_size);
|
|
if (section->info.type == XEX_SECTION_CODE) {
|
|
if (!gplr_start) {
|
|
gplr_start = memory_->SearchAligned(start_address, end_address,
|
|
gprlr_code_values,
|
|
xe::countof(gprlr_code_values));
|
|
}
|
|
if (!fpr_start) {
|
|
fpr_start =
|
|
memory_->SearchAligned(start_address, end_address, fpr_code_values,
|
|
xe::countof(fpr_code_values));
|
|
}
|
|
if (!vmx_start) {
|
|
vmx_start =
|
|
memory_->SearchAligned(start_address, end_address, vmx_code_values,
|
|
xe::countof(vmx_code_values));
|
|
}
|
|
if (gplr_start && fpr_start && vmx_start) {
|
|
break;
|
|
}
|
|
}
|
|
i += section->info.page_count;
|
|
}
|
|
|
|
// Add function stubs.
|
|
char name[32];
|
|
if (gplr_start) {
|
|
uint32_t address = gplr_start;
|
|
for (int n = 14; n <= 31; n++) {
|
|
snprintf(name, xe::countof(name), "__savegprlr_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_end_address(address + (31 - n) * 4 + 2 * 4);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagSaveGprLr;
|
|
symbol_info->set_behavior(FunctionBehavior::kProlog);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 4;
|
|
}
|
|
address = gplr_start + 20 * 4;
|
|
for (int n = 14; n <= 31; n++) {
|
|
snprintf(name, xe::countof(name), "__restgprlr_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_end_address(address + (31 - n) * 4 + 3 * 4);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagRestGprLr;
|
|
symbol_info->set_behavior(FunctionBehavior::kEpilogReturn);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 4;
|
|
}
|
|
}
|
|
if (fpr_start) {
|
|
uint32_t address = fpr_start;
|
|
for (int n = 14; n <= 31; n++) {
|
|
snprintf(name, xe::countof(name), "__savefpr_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_end_address(address + (31 - n) * 4 + 1 * 4);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagSaveFpr;
|
|
symbol_info->set_behavior(FunctionBehavior::kProlog);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 4;
|
|
}
|
|
address = fpr_start + (18 * 4) + (1 * 4);
|
|
for (int n = 14; n <= 31; n++) {
|
|
snprintf(name, xe::countof(name), "__restfpr_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_end_address(address + (31 - n) * 4 + 1 * 4);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagRestFpr;
|
|
symbol_info->set_behavior(FunctionBehavior::kEpilog);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 4;
|
|
}
|
|
}
|
|
if (vmx_start) {
|
|
// vmx is:
|
|
// 14-31 save
|
|
// 64-127 save
|
|
// 14-31 rest
|
|
// 64-127 rest
|
|
uint32_t address = vmx_start;
|
|
for (int n = 14; n <= 31; n++) {
|
|
snprintf(name, xe::countof(name), "__savevmx_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagSaveVmx;
|
|
symbol_info->set_behavior(FunctionBehavior::kProlog);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 2 * 4;
|
|
}
|
|
address += 4;
|
|
for (int n = 64; n <= 127; n++) {
|
|
snprintf(name, xe::countof(name), "__savevmx_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagSaveVmx;
|
|
symbol_info->set_behavior(FunctionBehavior::kProlog);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 2 * 4;
|
|
}
|
|
address = vmx_start + (18 * 2 * 4) + (1 * 4) + (64 * 2 * 4) + (1 * 4);
|
|
for (int n = 14; n <= 31; n++) {
|
|
snprintf(name, xe::countof(name), "__restvmx_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagRestVmx;
|
|
symbol_info->set_behavior(FunctionBehavior::kEpilog);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 2 * 4;
|
|
}
|
|
address += 4;
|
|
for (int n = 64; n <= 127; n++) {
|
|
snprintf(name, xe::countof(name), "__restvmx_%d", n);
|
|
FunctionInfo* symbol_info;
|
|
DeclareFunction(address, &symbol_info);
|
|
symbol_info->set_name(name);
|
|
// TODO(benvanik): set type fn->type = FunctionSymbol::User;
|
|
// TODO(benvanik): set flags fn->flags |= FunctionSymbol::kFlagRestVmx;
|
|
symbol_info->set_behavior(FunctionBehavior::kEpilog);
|
|
symbol_info->set_status(SymbolStatus::kDeclared);
|
|
address += 2 * 4;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace cpu
|
|
} // namespace xe
|