project cleanup (#2895)

* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
This commit is contained in:
TakaRikka
2025-11-30 14:23:42 -08:00
committed by GitHub
parent 434415337d
commit a6e76c0841
2375 changed files with 24683 additions and 71069 deletions
+1 -33
View File
@@ -8,7 +8,6 @@
#include <dolphin/base/PPCArch.h>
#include "m_Do/m_Do_ext.h"
/* 80450B98-80450B9C -00001 0004+00 0/0 6/6 0/0 .sbss None */
u8 __OSReport_disable;
u8 __OSReport_Error_disable;
@@ -17,10 +16,8 @@ u8 __OSReport_Warning_disable;
u8 __OSReport_System_disable;
/* 80450B9C-80450BA0 00009C 0004+00 0/0 3/3 0/0 .sbss None */
u8 __OSReport_enable;
/* 80006798-800067C8 0010D8 0030+00 1/1 0/0 0/0 .text OSSwitchFiberEx__FUlUlUlUlUlUl */
#ifdef __GEKKO__
asm void OSSwitchFiberEx(register u32 param_0, register u32 param_1, register u32 param_2, register u32 param_3, register u32 code, register u32 stack) {
nofralloc
@@ -49,17 +46,14 @@ asm void OSSwitchFiberEx(register u32 param_0, register u32 param_1, register u3
}
#endif
/* 800067C8-800067F4 001108 002C+00 3/3 0/0 0/0 .text my_PutString__FPCc */
void my_PutString(const char* string) {
fputs(string, stdout);
}
/* 800067F4-80006814 001134 0020+00 3/3 0/0 0/0 .text OSVAttention__FPCcP16__va_list_struct */
void OSVAttention(const char* fmt, va_list args) {
mDoPrintf_vprintf(fmt, args);
}
/* 80006814-80006894 001154 0080+00 1/1 1/1 0/0 .text OSAttention */
void OSAttention(const char* fmt, ...) {
va_list args;
va_start(args, fmt);
@@ -67,27 +61,22 @@ void OSAttention(const char* fmt, ...) {
va_end(args);
}
/* 80006894-800068A0 0011D4 000C+00 0/0 1/1 0/0 .text OSReportDisable */
void OSReportDisable() {
__OSReport_disable = true;
}
/* 800068A0-800068AC 0011E0 000C+00 0/0 1/1 0/0 .text OSReportEnable */
void OSReportEnable() {
__OSReport_disable = false;
}
/* 800068AC-800068B8 0011EC 000C+00 4/4 0/0 0/0 .text OSReportForceEnableOn */
void OSReportForceEnableOn() {
__OSReport_enable = true;
}
/* 800068B8-800068C4 0011F8 000C+00 4/4 0/0 0/0 .text OSReportForceEnableOff */
void OSReportForceEnableOff() {
__OSReport_enable = false;
}
/* 80450BA0-80450BA4 0000A0 0004+00 1/1 0/0 0/0 .sbss __OSReport_MonopolyThread */
static OSThread* __OSReport_MonopolyThread;
#if DEBUG
@@ -99,24 +88,18 @@ u8 print_callerPC;
u8 print_callerPCLevel = 3;
#endif
/* 80450BA4-80450BA8 0000A4 0004+00 1/1 0/0 0/0 .sbss print_counts */
u32 print_counts;
/* 80450BA8-80450BAC 0000A8 0004+00 2/2 0/0 0/0 .sbss print_errors */
u32 print_errors;
/* 80450BAC-80450BB0 0000AC 0004+00 1/1 0/0 0/0 .sbss print_warings */
u32 print_warings;
/* 80450BB0-80450BB4 0000B0 0004+00 1/1 0/0 0/0 .sbss print_systems */
u32 print_systems;
/* 80450BB4-80450BB8 -00001 0004+00 3/3 0/0 0/0 .sbss None */
u8 print_initialized;
static bool data_80450BB5;
/* 800068C4-800068DC 001204 0018+00 1/1 1/1 0/0 .text OSReportInit__Fv */
void OSReportInit() {
BOOL enabled;
@@ -135,11 +118,8 @@ void OSReportInit() {
}
}
/* 803DB740-803DBF40 008460 0800+00 1/1 0/0 0/0 .bss mDoPrintf_FiberStack */
static u8 mDoPrintf_FiberStack[2048] ALIGN_DECL(32);
static u8 mDoPrintf_FiberStack[2048] ATTRIBUTE_ALIGN(32);
/* 800068DC-80006964 00121C 0088+00 1/1 0/0 0/0 .text
* mDoPrintf_vprintf_Interrupt__FPCcP16__va_list_struct */
void mDoPrintf_vprintf_Interrupt(char const* fmt, va_list args) {
BOOL interruptStatus = OSDisableInterrupts();
if (!data_80450BB5) {
@@ -152,8 +132,6 @@ void mDoPrintf_vprintf_Interrupt(char const* fmt, va_list args) {
OSRestoreInterrupts(interruptStatus);
}
/* 80006964-80006984 0012A4 0020+00 1/1 0/0 0/0 .text
* mDoPrintf_vprintf_Thread__FPCcP16__va_list_struct */
void mDoPrintf_vprintf_Thread(char const* fmt, va_list args) {
#if DEBUG
OSLockMutex(&print_mutex);
@@ -177,8 +155,6 @@ void mDoPrintf_vprintf_Thread(char const* fmt, va_list args) {
#endif
}
/* 80006984-80006A10 0012C4 008C+00 4/4 0/0 0/0 .text mDoPrintf_vprintf__FPCcP16__va_list_struct
*/
void mDoPrintf_vprintf(char const* fmt, va_list args) {
OSThread* currentThread = mDoExt_GetCurrentRunningThread();
if (currentThread == NULL) {
@@ -197,7 +173,6 @@ void mDoPrintf_vprintf(char const* fmt, va_list args) {
}
}
/* 80006A10-80006A9C 001350 008C+00 1/1 0/0 0/0 .text mDoPrintf_VReport */
void mDoPrintf_VReport(const char* fmt, va_list args) {
if (!print_initialized) {
OSReportInit();
@@ -211,12 +186,10 @@ void mDoPrintf_VReport(const char* fmt, va_list args) {
}
}
/* 80006A9C-80006ABC 0013DC 0020+00 2/2 0/0 0/0 .text OSVReport */
void OSVReport(const char* fmt, va_list args) {
mDoPrintf_VReport(fmt, args);
}
/* 80006ABC-80006B3C 0013FC 0080+00 0/0 97/97 10/10 .text OSReport */
void OSReport(const char* fmt, ...) {
va_list args;
va_start(args, fmt);
@@ -224,7 +197,6 @@ void OSReport(const char* fmt, ...) {
va_end(args);
}
/* 80006B3C-80006C0C 00147C 00D0+00 0/0 2/2 0/0 .text OSReport_FatalError */
void OSReport_FatalError(const char* fmt, ...) {
va_list args;
va_start(args, fmt);
@@ -240,7 +212,6 @@ void OSReport_FatalError(const char* fmt, ...) {
va_end(args);
}
/* 80006C0C-80006CEC 00154C 00E0+00 0/0 31/31 10/10 .text OSReport_Error */
void OSReport_Error(const char* fmt, ...) {
print_errors++;
if (!__OSReport_Error_disable) {
@@ -269,7 +240,6 @@ void OSReport_Error(const char* fmt, ...) {
}
}
/* 80006CEC-80006DCC 00162C 00E0+00 0/0 6/6 0/0 .text OSReport_Warning */
void OSReport_Warning(const char* fmt, ...) {
print_warings++;
if (!__OSReport_Warning_disable) {
@@ -285,7 +255,6 @@ void OSReport_Warning(const char* fmt, ...) {
}
}
/* 80006DCC-80006E7C 00170C 00B0+00 0/0 1/1 0/0 .text OSReport_System */
void OSReport_System(const char* fmt, ...) {
print_systems++;
if (!__OSReport_System_disable) {
@@ -298,7 +267,6 @@ void OSReport_System(const char* fmt, ...) {
}
}
/* 80006E7C-80006FB4 0017BC 0138+00 0/0 9/9 0/0 .text OSPanic */
void OSPanic(const char* file, int line, const char* fmt, ...) {
va_list args;
u32 i;