#include "global.h" #include "vt.h" f32 LogUtils_CheckFloatRange(const char* exp, s32 line, const char* valueName, f32 value, const char* minName, f32 min, const char* maxName, f32 max) { if (value < min || max < value) { osSyncPrintf("%s %d: range error %s(%f) < %s(%f) < %s(%f)\n", exp, line, minName, min, valueName, value, maxName, max); } return value; } s32 LogUtils_CheckIntRange(const char* exp, s32 line, const char* valueName, s32 value, const char* minName, s32 min, const char* maxName, s32 max) { if (value < min || max < value) { osSyncPrintf("%s %d: range error %s(%d) < %s(%d) < %s(%d)\n", exp, line, minName, min, valueName, value, maxName, max); } return value; } void LogUtils_LogHexDump(void* ptr, ptrdiff_t size0) { u8* addr = (u8*)ptr; ptrdiff_t size = size0; s32 rest; s32 i; u32 off; osSyncPrintf("dump(%08x, %u)\n", addr, size); osSyncPrintf("address off +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +a +b +c +d +e +f 0123456789abcdef\n"); off = 0; while (size > 0) { osSyncPrintf("%08x %04x", addr, off); rest = (size < 0x10) ? size : 0x10; i = 0; while (true) { if (i < rest) { osSyncPrintf(" %02x", *((u8*)addr + i)); } else { osSyncPrintf(" "); } i++; if (i > 0xF) { break; } } osSyncPrintf(" "); i = 0; while (true) { if (i < rest) { u8 a = *(addr + i); osSyncPrintf("%c", (a >= 0x20 && a < 0x7F) ? a : '.'); } else { osSyncPrintf(" "); } i++; if (i > 0xF) { break; } } osSyncPrintf("\n"); size -= rest; addr += rest; off += rest; } } void LogUtils_LogPointer(s32 value, u32 max, void* ptr, const char* name, const char* file, s32 line) { osSyncPrintf(VT_COL(RED, WHITE) "%s %d %s[%d] max=%u ptr=%08x\n" VT_RST, file, line, name, value, max, ptr); } void LogUtils_CheckBoundary(const char* name, s32 value, s32 unk, const char* file, s32 line) { u32 mask = (unk - 1); if (value & mask) { osSyncPrintf(VT_COL(RED, WHITE) "%s %d:%s(%08x) は バウンダリ(%d)違反です\n" VT_RST, file, line, name, value, unk); } } void LogUtils_CheckNullPointer(const char* exp, void* ptr, const char* file, s32 line) { if (ptr == NULL) { osSyncPrintf(VT_COL(RED, WHITE) "%s %d:%s は はヌルポインタです\n" VT_RST, file, line, exp); } } void LogUtils_CheckValidPointer(const char* exp, void* ptr, const char* file, s32 line) { if (ptr == NULL || (uintptr_t)ptr < 0x80000000 || (0x80000000 + osMemSize) <= (uintptr_t)ptr) { osSyncPrintf(VT_COL(RED, WHITE) "%s %d:ポインタ %s(%08x) が異常です\n" VT_RST, file, line, exp, ptr); } } void LogUtils_LogThreadId(const char* name, s32 line) { osSyncPrintf("<%d %s %d>", osGetThreadId(NULL), name, line); } void LogUtils_HungupThread(const char* name, s32 line) { osSyncPrintf("*** HungUp in thread %d, [%s:%d] ***\n", osGetThreadId(NULL), name, line); Fault_AddHungupAndCrash(name, line); } void LogUtils_ResetHungup(void) { osSyncPrintf("*** Reset ***\n"); Fault_AddHungupAndCrash("Reset", 0); }