mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-27 10:04:16 +01:00
Added some logging
This commit is contained in:
parent
7b8a421d7a
commit
7fe051d2cf
@ -88,8 +88,9 @@ bool ResolveRelocations() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
extern "C" void doStart(int argc, char **argv) {
|
extern "C" void doStart(int argc, char **argv) {
|
||||||
|
DEBUG_FUNCTION_LINE("Resolve relocations\n");
|
||||||
|
DEBUG_FUNCTION_LINE("Number of modules %d\n", gModuleData->number_used_modules);
|
||||||
ResolveRelocations();
|
ResolveRelocations();
|
||||||
|
|
||||||
for(int i = 0; i<gModuleData->number_used_modules; i++) {
|
for(int i = 0; i<gModuleData->number_used_modules; i++) {
|
||||||
DEBUG_FUNCTION_LINE("About to call %08X\n",gModuleData->module_data[i].entrypoint);
|
DEBUG_FUNCTION_LINE("About to call %08X\n",gModuleData->module_data[i].entrypoint);
|
||||||
int ret = ( (int (*)(int, char **))(gModuleData->module_data[i].entrypoint) )(argc, argv);
|
int ret = ( (int (*)(int, char **))(gModuleData->module_data[i].entrypoint) )(argc, argv);
|
||||||
|
@ -127,8 +127,11 @@ int main(int argc, char **argv) {
|
|||||||
ModuleData * moduleData = ModuleDataFactory::load(modules.GetFilepath(i), 0x00900000, 0x01000000 - textSectionStart, gModuleData->trampolines, DYN_LINK_TRAMPOLIN_LIST_LENGTH);
|
ModuleData * moduleData = ModuleDataFactory::load(modules.GetFilepath(i), 0x00900000, 0x01000000 - textSectionStart, gModuleData->trampolines, DYN_LINK_TRAMPOLIN_LIST_LENGTH);
|
||||||
|
|
||||||
if(moduleData != NULL) {
|
if(moduleData != NULL) {
|
||||||
|
DEBUG_FUNCTION_LINE("Successfully loaded %s", modules.GetFilepath(i));
|
||||||
ModuleDataPersistence::saveModuleData(gModuleData, moduleData);
|
ModuleDataPersistence::saveModuleData(gModuleData, moduleData);
|
||||||
delete moduleData;
|
delete moduleData;
|
||||||
|
}else{
|
||||||
|
DEBUG_FUNCTION_LINE("Failed to load %s", modules.GetFilepath(i));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,15 +10,18 @@ bool ModuleDataPersistence::saveModuleData(module_information_t * moduleInformat
|
|||||||
int32_t module_count = moduleInformation->number_used_modules;
|
int32_t module_count = moduleInformation->number_used_modules;
|
||||||
|
|
||||||
if(module_count >= MAXIMUM_MODULES) {
|
if(module_count >= MAXIMUM_MODULES) {
|
||||||
|
DEBUG_FUNCTION_LINE("Reached maximum module count of %d", MAXIMUM_MODULES);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Copy data to global struct.
|
// Copy data to global struct.
|
||||||
module_information_single_t * module_data = &(moduleInformation->module_data[module_count]);
|
module_information_single_t * module_data = &(moduleInformation->module_data[module_count]);
|
||||||
|
|
||||||
|
DEBUG_FUNCTION_LINE("Saving reloation data for module at %08X", module->getEntrypoint());
|
||||||
// Relocation
|
// Relocation
|
||||||
std::vector<RelocationData *> relocationData = module->getRelocationDataList();
|
std::vector<RelocationData *> relocationData = module->getRelocationDataList();
|
||||||
for (auto const& reloc : relocationData) {
|
for (auto const& reloc : relocationData) {
|
||||||
if(!DynamicLinkingHelper::addReloationEntry(&(moduleInformation->linking_data), module_data->linking_entries, DYN_LINK_RELOCATION_LIST_LENGTH, reloc)) {
|
if(!DynamicLinkingHelper::addReloationEntry(&(moduleInformation->linking_data), module_data->linking_entries, DYN_LINK_RELOCATION_LIST_LENGTH, reloc)) {
|
||||||
|
DEBUG_FUNCTION_LINE("Failed to add relocation entry\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user