Home
last modified time | relevance | path

Searched refs:module (Results 1 – 12 of 12) sorted by relevance

/RvlSDK-3.1.4/build/demos/reldemo/src/
Dstatic.c92 static void DumpModuleHeader(OSModuleHeader* module) in DumpModuleHeader() argument
94 DumpModuleInfo(&module->info); in DumpModuleHeader()
95 OSReport("bssSize %d\n", module->bssSize); in DumpModuleHeader()
96 OSReport("relOffset %08xh\n", module->relOffset); in DumpModuleHeader()
97 OSReport("impOffset %08xh\n", module->impOffset); in DumpModuleHeader()
98 OSReport("impSize %08xh\n", module->impSize); in DumpModuleHeader()
99 OSReport("prolog %08xh\n", module->prolog); in DumpModuleHeader()
100 OSReport("epilog %08xh\n", module->epilog); in DumpModuleHeader()
101 OSReport("unresolved %08xh\n", module->unresolved); in DumpModuleHeader()
102 if (2 <= module->info.version) in DumpModuleHeader()
[all …]
/RvlSDK-3.1.4/build/demos/rsodemo/LinkMem2/src/
Dstatic.c46 RSOObjectHeader* module; in RsoLoad() local
53 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
54 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
59 if (module->bssSize > 0) in RsoLoad()
61 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
63 RSOLinkList(module, bss); in RsoLoad()
65 return module; in RsoLoad()
74 RSOObjectHeader* module; in RsoLoadMem2() local
81 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2()
82 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2()
[all …]
/RvlSDK-3.1.4/build/demos/rsodemo/LinkJump/src/
Dstatic.c65 RSOObjectHeader* module; in RsoLoad() local
72 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
73 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
78 if (module->bssSize > 0) in RsoLoad()
80 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
82 RSOLinkList(module, bss); in RsoLoad()
84 return module; in RsoLoad()
93 RSOObjectHeader* module; in RsoLoadMem2() local
100 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2()
101 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2()
[all …]
/RvlSDK-3.1.4/build/demos/rsodemo/LinkFar/src/
Dstatic.c110 RSOObjectHeader* module; in RsoLoad() local
117 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
118 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
123 if (module->bssSize > 0) in RsoLoad()
125 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
127 RSOLinkList(module, bss); in RsoLoad()
129 return module; in RsoLoad()
138 RSOObjectHeader* module; in RsoLoadMem2() local
145 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2()
146 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2()
[all …]
/RvlSDK-3.1.4/build/demos/rsodemo/MakeInc/src/
Dstatic.c58 RSOObjectHeader* module; in RsoLoad() local
65 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
66 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
71 if (module->bssSize > 0) in RsoLoad()
73 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
75 RSOLinkList(module, bss); in RsoLoad()
77 return module; in RsoLoad()
86 RSOObjectHeader* module; in StaticRsoLoad() local
92 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad()
93 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad()
[all …]
/RvlSDK-3.1.4/build/demos/rsodemo/LinkListFixed0/src/
Dstatic.c45 RSOObjectHeader* module; in RsoLoadFixed() local
54 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoadFixed()
55 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadFixed()
60 fixed_size = RSOGetFixedSize(module,i_fixed_level); in RsoLoadFixed()
65 bss = (u8 *)((u32)module + fixed_size); in RsoLoadFixed()
69 new_arenaLo = ((u32)bss + (u32)module->bssSize); in RsoLoadFixed()
73 if (module->bssSize > 0) { in RsoLoadFixed()
83 RSOLinkListFixed(module,bss,i_fixed_level); in RsoLoadFixed()
88 return module; in RsoLoadFixed()
97 RSOObjectHeader* module; in StaticRsoLoad() local
[all …]
/RvlSDK-3.1.4/build/demos/rsodemo/LinkList/src/
Dstatic.c46 RSOObjectHeader* module; in RsoLoad() local
53 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
54 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
59 if (module->bssSize > 0) in RsoLoad()
61 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
63 RSOLinkList(module, bss); in RsoLoad()
65 return module; in RsoLoad()
74 RSOObjectHeader* module; in StaticRsoLoad() local
80 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad()
81 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad()
[all …]
/RvlSDK-3.1.4/build/demos/rsodemo/Manually/src/
Dstatic.c48 RSOObjectHeader* module; in RsoLoad() local
55 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
56 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
61 if (module->bssSize > 0) in RsoLoad()
63 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
67 RSOLocateObject(&module->info, bss); in RsoLoad()
69 return module; in RsoLoad()
78 RSOObjectHeader* module; in StaticRsoLoad() local
84 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad()
85 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad()
[all …]
/RvlSDK-3.1.4/include/revolution/os/
DOSModule.h134 #define OSGetSectionInfo(module) \ argument
135 ((OSSectionInfo*) (((OSModuleInfo*) (module))->sectionInfoOffset))
202 void OSNotifyLink ( OSModuleInfo* module );
203 void OSNotifyUnlink ( OSModuleInfo* module );
/RvlSDK-3.1.4/build/demos/rsodemo/MakeInc/include/
Dd.inc17 static void ResolvedModule_moduleD(const RSOObjectHeader* module)
22 (u32)RSOFindExportSymbolAddr(module, exp_tbl_moduleD[i].symbol_name);
/RvlSDK-3.1.4/include/revolution/
Drso.h114 #define RSOGetSectionInfo(module) \ argument
115 ((RSOSectionInfo*) (((RSOObjectInfo*) (module))->sectionInfoOffset))
/RvlSDK-3.1.4/build/buildtools/
Dmodulerules15 # 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
80 # Paths relevant to this module - they are all based off of PROJ_ROOT