| /RvlSDK-3.3/build/demos/reldemo/src/ |
| D | static.c | 95 static void DumpModuleHeader(OSModuleHeader* module) in DumpModuleHeader() argument 97 DumpModuleInfo(&module->info); in DumpModuleHeader() 98 OSReport("bssSize %d\n", module->bssSize); in DumpModuleHeader() 99 OSReport("relOffset %08xh\n", module->relOffset); in DumpModuleHeader() 100 OSReport("impOffset %08xh\n", module->impOffset); in DumpModuleHeader() 101 OSReport("impSize %08xh\n", module->impSize); in DumpModuleHeader() 102 OSReport("prolog %08xh\n", module->prolog); in DumpModuleHeader() 103 OSReport("epilog %08xh\n", module->epilog); in DumpModuleHeader() 104 OSReport("unresolved %08xh\n", module->unresolved); in DumpModuleHeader() 105 if (2 <= module->info.version) in DumpModuleHeader() [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/LinkMem2/src/ |
| D | static.c | 45 RSOObjectHeader* module; in RsoLoad() local 52 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad() 53 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad() 58 if (module->bssSize > 0) in RsoLoad() 60 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad() 62 RSOLinkList(module, bss); in RsoLoad() 64 return module; in RsoLoad() 73 RSOObjectHeader* module; in RsoLoadMem2() local 80 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2() 81 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2() [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/LinkJump/src/ |
| D | static.c | 66 RSOObjectHeader* module; in RsoLoad() local 73 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad() 74 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad() 79 if (module->bssSize > 0) in RsoLoad() 81 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad() 83 RSOLinkList(module, bss); in RsoLoad() 85 return module; in RsoLoad() 94 RSOObjectHeader* module; in RsoLoadMem2() local 101 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2() 103 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2() [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/LinkFar/src/ |
| D | static.c | 115 RSOObjectHeader* module; in RsoLoad() local 122 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad() 123 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad() 128 if (module->bssSize > 0) in RsoLoad() 130 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad() 132 RSOLinkList(module, bss); in RsoLoad() 134 return module; in RsoLoad() 143 RSOObjectHeader* module; in RsoLoadMem2() local 150 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2() 151 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2() [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/LinkListFixed0/src/ |
| D | static.c | 44 RSOObjectHeader* module; in RsoLoadFixed() local 53 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoadFixed() 54 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadFixed() 59 fixed_size = RSOGetFixedSize(module,i_fixed_level); in RsoLoadFixed() 64 bss = (u8 *)((u32)module + fixed_size); in RsoLoadFixed() 68 new_arenaLo = ((u32)bss + (u32)module->bssSize); in RsoLoadFixed() 72 if (module->bssSize > 0) { in RsoLoadFixed() 82 RSOLinkListFixed(module,bss,i_fixed_level); in RsoLoadFixed() 87 return module; in RsoLoadFixed() 96 RSOObjectHeader* module; in StaticRsoLoad() local [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/MakeInc/src/ |
| D | static.c | 57 RSOObjectHeader* module; in RsoLoad() local 64 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad() 65 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad() 70 if (module->bssSize > 0) in RsoLoad() 72 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad() 74 RSOLinkList(module, bss); in RsoLoad() 76 return module; in RsoLoad() 85 RSOObjectHeader* module; in StaticRsoLoad() local 91 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad() 92 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad() [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/LinkList/src/ |
| D | static.c | 45 RSOObjectHeader* module; in RsoLoad() local 52 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad() 53 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad() 58 if (module->bssSize > 0) in RsoLoad() 60 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad() 62 RSOLinkList(module, bss); in RsoLoad() 64 return module; in RsoLoad() 73 RSOObjectHeader* module; in StaticRsoLoad() local 79 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad() 80 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad() [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/Manually/src/ |
| D | static.c | 47 RSOObjectHeader* module; in RsoLoad() local 54 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad() 55 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad() 60 if (module->bssSize > 0) in RsoLoad() 62 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad() 66 RSOLocateObject(&module->info, bss); in RsoLoad() 68 return module; in RsoLoad() 77 RSOObjectHeader* module; in StaticRsoLoad() local 83 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad() 84 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad() [all …]
|
| /RvlSDK-3.3/include/revolution/os/ |
| D | OSModule.h | 140 #define OSGetSectionInfo(module) \ argument 141 ((OSSectionInfo*) (((OSModuleInfo*) (module))->sectionInfoOffset)) 209 void OSNotifyLink ( OSModuleInfo* module ); 210 void OSNotifyUnlink ( OSModuleInfo* module ); 211 void OSNotifyPreLink ( OSModuleHeader* newModule, OSModuleHeader* module ); 212 void OSNotifyPostLink( OSModuleHeader* newModule, OSModuleHeader* module );
|
| /RvlSDK-3.3/build/demos/hbmdemo/rsodemo/src/ |
| D | rsodemo.cpp | 222 static void RSOResolvedModuleA(const RSOObjectHeader* module); 841 RSOObjectHeader* module; in RsoLoad() local 843 module = (RSOObjectHeader*)ReadDvdFile(moduleName, &s_mem1Allocator); in RsoLoad() 844 if (module->bssSize > 0) in RsoLoad() 846 bss = (u8*)allocMem1( module->bssSize ); in RsoLoad() 849 RSOLinkList(module, bss); in RsoLoad() 851 return module; in RsoLoad() 868 RSOObjectHeader* module; in StaticRsoLoad() local 870 module = (RSOObjectHeader*)ReadDvdFile(moduleName, &s_mem1Allocator); in StaticRsoLoad() 871 RSOListInit(module); in StaticRsoLoad() [all …]
|
| /RvlSDK-3.3/build/demos/rsodemo/MakeInc/include/ |
| D | d.inc | 17 static void ResolvedModule_moduleD(const RSOObjectHeader* module) 22 (u32)RSOFindExportSymbolAddr(module, exp_tbl_moduleD[i].symbol_name);
|
| /RvlSDK-3.3/build/buildtools/ |
| D | modulerules | 15 # This makefile can support one library per module, and any number of 17 # The library is specified by the following variables in the module makefile: 27 # bottom of the module makefile, such as : 34 # FULLBIN_ROOT - a pointer to the binary directory of this module 86 # Paths relevant to this module - they are all based off of PROJ_ROOT 792 echo ">>> Building autotest module" ; \
|